mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-12-05 01:10:36 +00:00
Compare commits
61 Commits
0fb216c2fc
...
ca35d13c5c
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ca35d13c5c | ||
|
|
c211247f50 | ||
|
|
cdc002f1cd | ||
|
|
495a9d7491 | ||
|
|
8071b91b88 | ||
|
|
33796f8a0d | ||
|
|
8ed9805492 | ||
|
|
892dbef485 | ||
|
|
8587d76da2 | ||
|
|
e3576ebe8a | ||
|
|
d00b3a9068 | ||
|
|
17d4467b98 | ||
|
|
43cd19da3d | ||
|
|
fafa22efc2 | ||
|
|
0a04383efc | ||
|
|
910fd840bb | ||
|
|
3de9909bfc | ||
|
|
e1be5f2b01 | ||
|
|
591ff813a6 | ||
|
|
8450bbbfa7 | ||
|
|
f9e82ef37b | ||
|
|
17fc05b262 | ||
|
|
0e6ae1b19b | ||
|
|
054cc5c4ed | ||
|
|
f2d018cb45 | ||
|
|
628bf9fec4 | ||
|
|
f50a2963b8 | ||
|
|
d3a68da76b | ||
|
|
a9b36e15ee | ||
|
|
f58f82fe90 | ||
|
|
353b0a262e | ||
|
|
0f729f1bdf | ||
|
|
d0125bcd5e | ||
|
|
7803f9099c | ||
|
|
df8b5d2fbc | ||
|
|
1a8e859146 | ||
|
|
4995f2917e | ||
|
|
1b85fc7946 | ||
|
|
b7c3b41a59 | ||
|
|
cd34fa559d | ||
|
|
ff5de07f69 | ||
|
|
ae38b30e0a | ||
|
|
669be47ca5 | ||
|
|
f057aa9601 | ||
|
|
f3bafb1989 | ||
|
|
6f241fa3a4 | ||
|
|
c85264a17b | ||
|
|
3e4ea5958e | ||
|
|
409cb54dcf | ||
|
|
2c06d50a88 | ||
|
|
3a9bfc73d9 | ||
|
|
fa9e08d898 | ||
|
|
ca7317ec83 | ||
|
|
d7196e6162 | ||
|
|
d4f328e574 | ||
|
|
caa926248e | ||
|
|
69dfd8d81d | ||
|
|
dadd420134 | ||
|
|
68318403e0 | ||
|
|
64baa00edf | ||
|
|
dc3209e3b6 |
92
CHANGELOG.md
92
CHANGELOG.md
@@ -1,5 +1,97 @@
|
||||
# Changelog
|
||||
|
||||
|
||||
## v8.0.0-rc.1
|
||||
|
||||
### IMPORTANT NOTES
|
||||
|
||||
* Database migrations of this version can take a long time (up to 30 minutes on an instance with many users/federation actors and a slow database disk)
|
||||
* You need to manually execute a migration script **after your upgrade** while PeerTube is running and the database migration is complete (`Migrations finished. New migration version schema: 965` in PeerTube startup logs):
|
||||
* Classic installation: `cd /var/www/peertube/peertube-latest && sudo -u peertube NODE_CONFIG_DIR=/var/www/peertube/config NODE_ENV=production node dist/scripts/migrations/peertube-8.0.js`
|
||||
* Docker installation: `cd /var/www/peertube-docker && docker compose exec -u peertube peertube node dist/scripts/migrations/peertube-8.0.js`
|
||||
* `yarn` NodeJS packages manager has been removed in favor of `pnpm`. Follow the [dependencies guide](https://docs.joinpeertube.org/support/doc/dependencies) to install `pnpm` on your system **before the upgrade**
|
||||
* For Docker users, please read the Docker section below
|
||||
* Supported NodeJS versions are `>= 20.19 and < 21` or `>= 22.12 and <23`
|
||||
|
||||
### Configuration
|
||||
|
||||
* Remove `http_server` unused section from `.yaml` configuration files
|
||||
* Introduce `views.videos.local.max_age` configuration to cleanup old views from local videos
|
||||
* Add more STUN Servers to `webrtc.stun_servers` to improve P2P robustness
|
||||
* Add ability to increase video transcription timeout in `video_transcription.timeout`
|
||||
* Add `client.new_features_info` configuration to disable popups explaining new features to users
|
||||
* Add `user.password_constraints.min_length` config to specify user password minimum length [#6945](https://github.com/Chocobozzz/PeerTube/pull/6945)
|
||||
|
||||
### Docker
|
||||
|
||||
* PeerTube Dockerfile is now based on Debian Trixie. `chocobozzz/peertube:production` can be used instead of `chocobozzz/peertube:production-bookworm` (Debian suffix version is deprecated)
|
||||
* PostgreSQL version has been upgraded in [Docker Compose](https://github.com/Chocobozzz/PeerTube/blob/develop/support/docker/production/docker-compose.yml). Please follow [this guide](https://docs.joinpeertube.org/install/docker#upgrade-postgresql-container) if you want to upgrade PostgreSQL in your Docker Compose
|
||||
* Redis version has been upgraded in [Docker Compose](https://github.com/Chocobozzz/PeerTube/blob/develop/support/docker/production/docker-compose.yml). No maintenance task is required if you upgrade Redis in your Docker Compose
|
||||
|
||||
### Plugins/Themes/Embed/REST APIs
|
||||
|
||||
* REST API:
|
||||
* Remove deprecated `filename` field from `VideoSource` object
|
||||
* Remove deprecated `commentsEnabled` field from `Video` object
|
||||
* Remove deprecated `redundancies.files`field from `VideoRedundancy` object
|
||||
* Deprecate `captionPath` field from `VideoCaption` object. Use `fileUrl` instead
|
||||
* Deprecate `storyboardPath` from `Storyboard` object. Use `fileUrl` instead
|
||||
* Deprecate `path` from `ActorImage` object (avatars, banners). Use `fileUrl` instead
|
||||
* The HTTP response code for password-protected videos can be either 401 or 403, depending on the request headers
|
||||
* Theme:
|
||||
* Rename `--input-placeholder` CSS variables into `--input-placeholder-color`
|
||||
* Introduce `--input-placeholder-font-size` CSS variable
|
||||
|
||||
### Features
|
||||
|
||||
* :tada: Add channel collaboration :tada:
|
||||
* Channel owners can invite users of their instance to become editors of their channel
|
||||
* Editors can accept or reject the invitation
|
||||
* Editors can manage videos, playlists & comments of the channel
|
||||
* An *Activity* page has been added to list actions performed within a channel
|
||||
* :tada: Video player redesign :tada:
|
||||
* Introduce a new clean and modern theme named **Lucide**
|
||||
* Original theme is still used by default, and has been renamed to **Galaxy**
|
||||
* The player theme can be changed by the admin for the entire instance or by the channel for all its videos. It can also be changed for individual videos.
|
||||
* Use vertical audio volume control for **Galaxy** player theme
|
||||
* Improve video imports UX
|
||||
* Introduce an *Import failed* state to clearly identify failed imports
|
||||
* Display import state in video manage page and watch page
|
||||
* Add ability to retry video imports
|
||||
* Channel synchronization automatically retry failed imports
|
||||
* Redesign notifications popup and page
|
||||
* Replace `yarn` package manager by `pnpm` to provide faster PeerTube installation/upgrade and faster plugin installation/upgrade
|
||||
* Add admin options to customize default *Browse videos* behaviour [#7193](https://github.com/Chocobozzz/PeerTube/pull/7193)
|
||||
* Add ability to handle storyboard generation job by runners [#7191](https://github.com/Chocobozzz/PeerTube/pull/7191)
|
||||
* Add *Resend verification email* button to admin users list [#7272](https://github.com/Chocobozzz/PeerTube/pull/7272)
|
||||
* Improve video manage and admin config forms accessibility
|
||||
* Add ability to insert a new playlist at first position in the channel
|
||||
* Add ability to copy codecs, if possible, for HLS transcoding
|
||||
* Also search by account name when searching for channels
|
||||
* Faster start time seek on HLS videos
|
||||
|
||||
### Bug fixes
|
||||
|
||||
* Fix avatar max size information
|
||||
* Fix scroll issue when navigating from homepage
|
||||
* Fix viewers stats date filter label after a reset
|
||||
* Fix select languages component label
|
||||
* Correctly load user video language settings in video filters
|
||||
* Accept non-HTTPS URLs for the search index
|
||||
* Fix admin abuse URL in emails
|
||||
* Show videos to owners even if they are muted on the instance
|
||||
* Correctly sort scheduled videos when listing my videos
|
||||
* Fix account mention redirection
|
||||
* Display all countries/regions labels in viewer stats graph
|
||||
* Keep videos order after user import
|
||||
* Fix HTML headings hierarchy to improve SEO
|
||||
* Users logged-in by an external auth plugin can choose to display their email publicly (required by Apple for the podcast feed)
|
||||
* Fix podcast feed video bitrate attribute that can be refused by some podcast applications
|
||||
* Fix video quota information estimation
|
||||
* Translate RSS feeds title
|
||||
* Fix transcription CORS issue if the caption file is stored externally
|
||||
|
||||
|
||||
## v7.3.0
|
||||
|
||||
### IMPORTANT NOTES
|
||||
|
||||
@@ -76,8 +76,8 @@ export class MyAccountPage {
|
||||
await passwordInput.setValue(password)
|
||||
|
||||
const submit = $('my-account-change-email input[type=submit]')
|
||||
await submit.waitForClickable()
|
||||
await submit.scrollIntoView({ block: 'center' }) // Avoid issues with fixed header
|
||||
await submit.waitForClickable()
|
||||
await submit.click()
|
||||
}
|
||||
|
||||
|
||||
@@ -84,9 +84,9 @@ export class PlayerPage {
|
||||
}
|
||||
|
||||
async hasPoster () {
|
||||
const property = await $('.video-js .vjs-poster').getCSSProperty('background-image')
|
||||
const img = $('.video-js .vjs-poster img')
|
||||
|
||||
return property.value.startsWith('url(')
|
||||
return await img.isDisplayed() && (await img.getAttribute('src')).startsWith('http')
|
||||
}
|
||||
|
||||
private async clickOnPlayButton () {
|
||||
|
||||
@@ -15,6 +15,7 @@ export class SignupPage {
|
||||
async validateStep () {
|
||||
const next = $('button[type=submit]')
|
||||
|
||||
await next.scrollIntoView({ block: 'center' })
|
||||
await next.waitForClickable()
|
||||
await next.click()
|
||||
}
|
||||
|
||||
@@ -82,31 +82,14 @@ export class VideoWatchPage {
|
||||
return $('.modal-content .modal-footer .primary-button').click()
|
||||
}
|
||||
|
||||
private async getVideoNameElement () {
|
||||
// We have 2 video info name block, pick the first that is not empty
|
||||
const elem = async () => {
|
||||
const elems = await $$('.video-info-first-row .video-info-name').filter(e => e.isDisplayed())
|
||||
|
||||
return elems[0]
|
||||
}
|
||||
|
||||
await browser.waitUntil(async () => {
|
||||
const e = await elem()
|
||||
|
||||
return e?.isDisplayed()
|
||||
})
|
||||
|
||||
return elem()
|
||||
private getVideoNameElement () {
|
||||
return $('.video-info-first-row .video-info-name')
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------
|
||||
// Video password
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
isPasswordProtected () {
|
||||
return $('#confirmInput').isExisting()
|
||||
}
|
||||
|
||||
async fillVideoPassword (videoPassword: string) {
|
||||
const videoPasswordInput = $('input#confirmInput')
|
||||
await videoPasswordInput.waitForClickable()
|
||||
@@ -151,7 +134,7 @@ export class VideoWatchPage {
|
||||
await this.clickOnMoreDropdownIcon()
|
||||
|
||||
// We need the await expression
|
||||
return $$('.dropdown-menu.show .dropdown-item').mapSeries(async item => {
|
||||
return $$('.dropdown-menu.show .dropdown-item').forEach(async item => {
|
||||
const content = await item.getText()
|
||||
|
||||
if (content.includes('Manage')) {
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import { LoginPage } from '../po/login.po'
|
||||
import { VideoPublishPage } from '../po/video-publish.po'
|
||||
import { VideoWatchPage } from '../po/video-watch.po'
|
||||
import { getScreenshotPath, go, isMobileDevice, isSafari, prepareWebBrowser, waitServerUp } from '../utils'
|
||||
import { go, isMobileDevice, isSafari, prepareWebBrowser, waitServerUp } from '../utils'
|
||||
|
||||
describe('Custom server defaults', () => {
|
||||
let videoPublishPage: VideoPublishPage
|
||||
@@ -15,7 +15,7 @@ describe('Custom server defaults', () => {
|
||||
videoPublishPage = new VideoPublishPage()
|
||||
videoWatchPage = new VideoWatchPage(isMobileDevice(), isSafari())
|
||||
|
||||
await prepareWebBrowser()
|
||||
await prepareWebBrowser({ hidePrivacyConcerns: false })
|
||||
})
|
||||
|
||||
describe('Publish default values', function () {
|
||||
@@ -92,8 +92,4 @@ describe('Custom server defaults', () => {
|
||||
await checkP2P(false)
|
||||
})
|
||||
})
|
||||
|
||||
after(async () => {
|
||||
await browser.saveScreenshot(getScreenshotPath('after-test.png'))
|
||||
})
|
||||
})
|
||||
|
||||
@@ -95,7 +95,7 @@ describe('NSFW', () => {
|
||||
await goOnPage()
|
||||
|
||||
for (const video of videos) {
|
||||
await browser.saveScreenshot(getScreenshotPath('before-test.png'))
|
||||
await browser.saveScreenshot(getScreenshotPath('before-nsfw-test.png'))
|
||||
await checkVideo({ policy, videoName: video, nsfwTooltip })
|
||||
}
|
||||
}
|
||||
@@ -103,7 +103,7 @@ describe('NSFW', () => {
|
||||
for (const video of videos) {
|
||||
await videoSearchPage.search(video)
|
||||
|
||||
await browser.saveScreenshot(getScreenshotPath('before-test.png'))
|
||||
await browser.saveScreenshot(getScreenshotPath('before-nsfw-test.png'))
|
||||
await checkVideo({ policy, videoName: video, nsfwTooltip })
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,7 +3,7 @@ import { LoginPage } from '../po/login.po'
|
||||
import { MyAccountPage } from '../po/my-account.po'
|
||||
import { VideoPublishPage } from '../po/video-publish.po'
|
||||
import { VideoWatchPage } from '../po/video-watch.po'
|
||||
import { getScreenshotPath, go, isMobileDevice, isSafari, prepareWebBrowser, waitServerUp } from '../utils'
|
||||
import { go, isMobileDevice, isSafari, prepareWebBrowser, waitServerUp } from '../utils'
|
||||
|
||||
describe('Player settings', () => {
|
||||
let videoPublishPage: VideoPublishPage
|
||||
@@ -21,7 +21,7 @@ describe('Player settings', () => {
|
||||
myAccountPage = new MyAccountPage()
|
||||
anonymousSettingsPage = new AnonymousSettingsPage()
|
||||
|
||||
await prepareWebBrowser()
|
||||
await prepareWebBrowser({ hidePrivacyConcerns: false })
|
||||
})
|
||||
|
||||
describe('P2P', function () {
|
||||
@@ -80,8 +80,4 @@ describe('Player settings', () => {
|
||||
await checkP2P(false)
|
||||
})
|
||||
})
|
||||
|
||||
after(async () => {
|
||||
await browser.saveScreenshot(getScreenshotPath('after-test.png'))
|
||||
})
|
||||
})
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import { AdminPluginPage } from '../po/admin-plugin.po'
|
||||
import { LoginPage } from '../po/login.po'
|
||||
import { VideoPublishPage } from '../po/video-publish.po'
|
||||
import { getCheckbox, getScreenshotPath, isMobileDevice, prepareWebBrowser, waitServerUp } from '../utils'
|
||||
import { getCheckbox, isMobileDevice, prepareWebBrowser, waitServerUp } from '../utils'
|
||||
|
||||
describe('Plugins', () => {
|
||||
let videoPublishPage: VideoPublishPage
|
||||
@@ -83,8 +83,4 @@ describe('Plugins', () => {
|
||||
|
||||
await expectSubmitError(false)
|
||||
})
|
||||
|
||||
after(async () => {
|
||||
await browser.saveScreenshot(getScreenshotPath('after-test.png'))
|
||||
})
|
||||
})
|
||||
|
||||
@@ -2,7 +2,7 @@ import { AdminConfigPage } from '../po/admin-config.po'
|
||||
import { LoginPage } from '../po/login.po'
|
||||
import { VideoPublishPage } from '../po/video-publish.po'
|
||||
import { VideoWatchPage } from '../po/video-watch.po'
|
||||
import { getScreenshotPath, isMobileDevice, isSafari, prepareWebBrowser, waitServerUp } from '../utils'
|
||||
import { isMobileDevice, isSafari, prepareWebBrowser, waitServerUp } from '../utils'
|
||||
|
||||
describe('Publish live', function () {
|
||||
let videoPublishPage: VideoPublishPage
|
||||
@@ -54,8 +54,4 @@ describe('Publish live', function () {
|
||||
|
||||
expect(await videoPublishPage.getLiveState()).toEqual('normal')
|
||||
})
|
||||
|
||||
after(async () => {
|
||||
await browser.saveScreenshot(getScreenshotPath('after-test.png'))
|
||||
})
|
||||
})
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import { LoginPage } from '../po/login.po'
|
||||
import { VideoPublishPage } from '../po/video-publish.po'
|
||||
import { VideoWatchPage } from '../po/video-watch.po'
|
||||
import { getScreenshotPath, isMobileDevice, isSafari, prepareWebBrowser, waitServerUp } from '../utils'
|
||||
import { isMobileDevice, isSafari, prepareWebBrowser, waitServerUp } from '../utils'
|
||||
|
||||
describe('Publish video', () => {
|
||||
let videoPublishPage: VideoPublishPage
|
||||
@@ -76,8 +76,4 @@ describe('Publish video', () => {
|
||||
await videoPublishPage.refresh('second video')
|
||||
})
|
||||
})
|
||||
|
||||
after(async () => {
|
||||
await browser.saveScreenshot(getScreenshotPath('after-test.png'))
|
||||
})
|
||||
})
|
||||
|
||||
@@ -5,7 +5,6 @@ import {
|
||||
browserSleep,
|
||||
findEmailTo,
|
||||
getEmailPort,
|
||||
getScreenshotPath,
|
||||
getVerificationLink,
|
||||
go,
|
||||
isMobileDevice,
|
||||
@@ -71,9 +70,7 @@ describe('User settings', () => {
|
||||
})
|
||||
})
|
||||
|
||||
after(async () => {
|
||||
after(() => {
|
||||
MockSMTPServer.Instance.kill()
|
||||
|
||||
await browser.saveScreenshot(getScreenshotPath('after-test.png'))
|
||||
})
|
||||
})
|
||||
|
||||
@@ -4,7 +4,7 @@ import { PlayerPage } from '../po/player.po'
|
||||
import { SignupPage } from '../po/signup.po'
|
||||
import { VideoPublishPage } from '../po/video-publish.po'
|
||||
import { VideoWatchPage } from '../po/video-watch.po'
|
||||
import { getScreenshotPath, go, isMobileDevice, isSafari, prepareWebBrowser, waitServerUp } from '../utils'
|
||||
import { go, isMobileDevice, isSafari, prepareWebBrowser, waitServerUp } from '../utils'
|
||||
|
||||
describe('Password protected videos', () => {
|
||||
let videoPublishPage: VideoPublishPage
|
||||
@@ -106,8 +106,6 @@ describe('Password protected videos', () => {
|
||||
it('Should play video without password', async function () {
|
||||
await go(passwordProtectedVideoUrl)
|
||||
|
||||
expect(!await videoWatchPage.isPasswordProtected())
|
||||
|
||||
await videoWatchPage.waitWatchVideoName(passwordProtectedVideoName)
|
||||
|
||||
expect(await videoWatchPage.getPrivacy()).toBe('Password protected')
|
||||
@@ -176,8 +174,6 @@ describe('Password protected videos', () => {
|
||||
it('Should requires password to play video', async function () {
|
||||
await go(passwordProtectedVideoUrl)
|
||||
|
||||
expect(await videoWatchPage.isPasswordProtected())
|
||||
|
||||
await videoWatchPage.fillVideoPassword(videoPassword)
|
||||
await videoWatchPage.waitWatchVideoName(passwordProtectedVideoName)
|
||||
|
||||
@@ -208,8 +204,6 @@ describe('Password protected videos', () => {
|
||||
it('Should requires password to play video', async function () {
|
||||
await go(passwordProtectedVideoUrl)
|
||||
|
||||
expect(await videoWatchPage.isPasswordProtected())
|
||||
|
||||
await videoWatchPage.fillVideoPassword(videoPassword)
|
||||
await videoWatchPage.waitWatchVideoName(passwordProtectedVideoName)
|
||||
|
||||
@@ -229,8 +223,4 @@ describe('Password protected videos', () => {
|
||||
await videoWatchPage.waitWatchVideoName(publicVideoName2, 40 * 1000)
|
||||
})
|
||||
})
|
||||
|
||||
after(async () => {
|
||||
await browser.saveScreenshot(getScreenshotPath('after-test.png'))
|
||||
})
|
||||
})
|
||||
|
||||
@@ -37,15 +37,24 @@ export async function go (url: string) {
|
||||
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
export async function prepareWebBrowser () {
|
||||
if (isMobileDevice()) return
|
||||
export async function prepareWebBrowser (options: {
|
||||
hidePrivacyConcerns?: boolean // default true
|
||||
} = {}) {
|
||||
const { hidePrivacyConcerns = true } = options
|
||||
|
||||
// Window size on chromium doesn't seem to work in "new" headless mode
|
||||
if (process.env.MOZ_HEADLESS_WIDTH) {
|
||||
await browser.setWindowSize(+process.env.MOZ_HEADLESS_WIDTH, +process.env.MOZ_HEADLESS_HEIGHT)
|
||||
if (hidePrivacyConcerns) {
|
||||
try {
|
||||
await browser.execute(() => {
|
||||
localStorage.setItem('video-watch-privacy-concern', 'true')
|
||||
})
|
||||
} catch {
|
||||
console.log('Cannot set local storage to hide privacy concerns')
|
||||
}
|
||||
}
|
||||
|
||||
await browser.maximizeWindow()
|
||||
if (!isMobileDevice() && process.env.MOZ_HEADLESS_WIDTH) {
|
||||
await browser.setWindowSize(+process.env.MOZ_HEADLESS_WIDTH, +process.env.MOZ_HEADLESS_HEIGHT)
|
||||
}
|
||||
}
|
||||
|
||||
export async function waitServerUp () {
|
||||
|
||||
@@ -14,6 +14,7 @@ export async function setCheckboxEnabled (name: string, enabled: boolean) {
|
||||
|
||||
const checkbox = await getCheckbox(name)
|
||||
|
||||
await checkbox.scrollIntoView({ block: 'center' })
|
||||
await checkbox.waitForClickable()
|
||||
await checkbox.click()
|
||||
}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import { setValue } from '@wdio/shared-store-service'
|
||||
import { ChildProcessWithoutNullStreams } from 'node:child_process'
|
||||
import { basename } from 'node:path'
|
||||
import { setValue } from '@wdio/shared-store-service'
|
||||
import { createScreenshotsDirectory } from './files'
|
||||
import { createScreenshotsDirectory, getScreenshotPath } from './files'
|
||||
import { runCommand, runServer } from './server'
|
||||
|
||||
let appInstance: number
|
||||
@@ -21,6 +21,12 @@ function afterLocalSuite () {
|
||||
app = undefined
|
||||
}
|
||||
|
||||
async function afterLocalTest (test: { file: string }) {
|
||||
const filename = basename(test.file).replace(/\.ts$/, '')
|
||||
|
||||
await browser.saveScreenshot(getScreenshotPath(`${filename}-after-test.png`))
|
||||
}
|
||||
|
||||
async function beforeLocalSession (config: { baseUrl: string }, capabilities: { browserName: string }) {
|
||||
createScreenshotsDirectory()
|
||||
|
||||
@@ -48,11 +54,12 @@ function onBrowserStackComplete () {
|
||||
}
|
||||
|
||||
export {
|
||||
beforeLocalSession,
|
||||
afterLocalSuite,
|
||||
afterLocalTest,
|
||||
beforeLocalSession,
|
||||
beforeLocalSuite,
|
||||
onBrowserStackPrepare,
|
||||
onBrowserStackComplete
|
||||
onBrowserStackComplete,
|
||||
onBrowserStackPrepare
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { afterLocalSuite, beforeLocalSuite, beforeLocalSession } from './src/utils'
|
||||
import { afterLocalSuite, afterLocalTest, beforeLocalSession, beforeLocalSuite } from './src/utils'
|
||||
import { config as mainConfig } from './wdio.main.conf'
|
||||
|
||||
const prefs = {
|
||||
@@ -28,7 +28,7 @@ module.exports = {
|
||||
'browserName': 'chrome',
|
||||
'acceptInsecureCerts': true,
|
||||
'goog:chromeOptions': {
|
||||
args: [ '--headless', '--disable-gpu', windowSizeArg ],
|
||||
args: [ '--disable-gpu', windowSizeArg ],
|
||||
prefs
|
||||
}
|
||||
}
|
||||
@@ -47,6 +47,7 @@ module.exports = {
|
||||
|
||||
beforeSession: beforeLocalSession,
|
||||
beforeSuite: beforeLocalSuite,
|
||||
afterSuite: afterLocalSuite
|
||||
afterSuite: afterLocalSuite,
|
||||
afterTest: afterLocalTest
|
||||
} as WebdriverIO.Config
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { afterLocalSuite, beforeLocalSession, beforeLocalSuite } from './src/utils'
|
||||
import { afterLocalSuite, afterLocalTest, beforeLocalSession, beforeLocalSuite } from './src/utils'
|
||||
import { config as mainConfig } from './wdio.main.conf'
|
||||
|
||||
const prefs = { 'intl.accept_languages': 'en' }
|
||||
@@ -42,6 +42,7 @@ module.exports = {
|
||||
|
||||
beforeSession: beforeLocalSession,
|
||||
beforeSuite: beforeLocalSuite,
|
||||
afterSuite: afterLocalSuite
|
||||
afterSuite: afterLocalSuite,
|
||||
afterTest: afterLocalTest
|
||||
} as WebdriverIO.Config
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "peertube-client",
|
||||
"version": "7.3.0",
|
||||
"version": "8.0.0-rc.1",
|
||||
"private": true,
|
||||
"license": "AGPL-3.0",
|
||||
"author": {
|
||||
|
||||
@@ -17,6 +17,10 @@
|
||||
}
|
||||
|
||||
@if (!hasRegisteredSettings()) {
|
||||
<div i18n class="no-settings">This {{ pluginTypeLabel }} does not have settings.</div>
|
||||
@if (isPlugin()) {
|
||||
<div i18n class="no-settings">This plugin does not have settings.</div>
|
||||
} @else if (isTheme()) {
|
||||
<div i18n class="no-settings">This theme does not have settings.</div>
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -5,7 +5,7 @@ import { HooksService, Notifier, PluginService, ServerService } from '@app/core'
|
||||
import { BuildFormArgument } from '@app/shared/form-validators/form-validator.model'
|
||||
import { FormReactive } from '@app/shared/shared-forms/form-reactive'
|
||||
import { FormReactiveService } from '@app/shared/shared-forms/form-reactive.service'
|
||||
import { PeerTubePlugin, RegisterServerSettingOptions } from '@peertube/peertube-models'
|
||||
import { PeerTubePlugin, PluginType, RegisterServerSettingOptions } from '@peertube/peertube-models'
|
||||
import { Subscription } from 'rxjs'
|
||||
import { map, switchMap } from 'rxjs/operators'
|
||||
import { PluginApiService } from '../../../shared/shared-admin/plugin-api.service'
|
||||
@@ -78,6 +78,14 @@ export class PluginShowInstalledComponent extends FormReactive implements OnInit
|
||||
return setting.name + '-wrapper'
|
||||
}
|
||||
|
||||
isTheme () {
|
||||
return this.plugin.type === PluginType.THEME
|
||||
}
|
||||
|
||||
isPlugin () {
|
||||
return this.plugin.type === PluginType.PLUGIN
|
||||
}
|
||||
|
||||
private loadPlugin (npmName: string) {
|
||||
this.pluginAPIService.getPlugin(npmName)
|
||||
.pipe(switchMap(plugin => {
|
||||
|
||||
@@ -40,27 +40,27 @@
|
||||
|
||||
<ng-template #tableCells let-job>
|
||||
@if (table.isColumnDisplayed('id')) {
|
||||
<td class="job-i" [title]="job.id">{{ job.id }}</td>
|
||||
<td class="job-id" [title]="job.id">{{ job.id }}</td>
|
||||
}
|
||||
|
||||
@if (table.isColumnDisplayed('type')) {
|
||||
<td class="job-typ" >
|
||||
<td class="job-type" >
|
||||
<span class="pt-badge ellipsis" [ngClass]="getRandomJobTypeBadge(job.type)">{{ job.type }}</span>
|
||||
</td>
|
||||
}
|
||||
|
||||
@if (table.isColumnDisplayed('priority')) {
|
||||
<td class="job-priorit" >{{ job.priority }}</td>
|
||||
<td class="job-priority" >{{ job.priority }}</td>
|
||||
}
|
||||
|
||||
@if (table.isColumnDisplayed('state') && table.isColumnDisplayed('state')) {
|
||||
<td class="job-stat" >
|
||||
<td class="job-state" >
|
||||
<span class="ellipsis" [ngClass]="getJobStateClasses(job.state)">{{ job.state }}</span>
|
||||
</td>
|
||||
}
|
||||
|
||||
@if (table.isColumnDisplayed('progress')) {
|
||||
<td class="job-progres" >
|
||||
<td class="job-progress" >
|
||||
@if (hasProgress(job)) {
|
||||
{{ getProgress(job) }}
|
||||
}
|
||||
@@ -68,7 +68,7 @@
|
||||
}
|
||||
|
||||
@if (table.isColumnDisplayed('createdAt')) {
|
||||
<td class="job-dat" >{{ job.createdAt }}</td>
|
||||
<td class="job-date" >{{ job.createdAt }}</td>
|
||||
}
|
||||
|
||||
@if (table.isColumnDisplayed('processed')) {
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { NgClass } from '@angular/common'
|
||||
import { AfterViewInit, Component, ElementRef, OnInit, inject, viewChild } from '@angular/core'
|
||||
import { AfterViewInit, Component, ElementRef, LOCALE_ID, OnInit, inject, viewChild } from '@angular/core'
|
||||
import { FormsModule, ReactiveFormsModule } from '@angular/forms'
|
||||
import { ActivatedRoute, Router, RouterLink } from '@angular/router'
|
||||
import { AuthService, Notifier, RedirectService, SessionStorageService, UserService } from '@app/core'
|
||||
@@ -12,8 +12,9 @@ import { InputTextComponent } from '@app/shared/shared-forms/input-text.componen
|
||||
import { InstanceAboutAccordionComponent } from '@app/shared/shared-instance/instance-about-accordion.component'
|
||||
import { AlertComponent } from '@app/shared/shared-main/common/alert.component'
|
||||
import { NgbAccordionDirective, NgbModal, NgbModalRef } from '@ng-bootstrap/ng-bootstrap'
|
||||
import { getExternalAuthHref } from '@peertube/peertube-core-utils'
|
||||
import { getCompleteLocale, getExternalAuthHref } from '@peertube/peertube-core-utils'
|
||||
import { RegisteredExternalAuthConfig, ServerConfig, ServerErrorCode } from '@peertube/peertube-models'
|
||||
import { of, switchMap } from 'rxjs'
|
||||
import { environment } from 'src/environments/environment'
|
||||
import { GlobalIconComponent } from '../shared/shared-icons/global-icon.component'
|
||||
import { InstanceBannerComponent } from '../shared/shared-instance/instance-banner.component'
|
||||
@@ -49,6 +50,7 @@ export class LoginComponent extends FormReactive implements OnInit, AfterViewIni
|
||||
private hooks = inject(HooksService)
|
||||
private storage = inject(SessionStorageService)
|
||||
private router = inject(Router)
|
||||
private localeId = inject(LOCALE_ID)
|
||||
|
||||
private static SESSION_STORAGE_REDIRECT_URL_KEY = 'login-previous-url'
|
||||
|
||||
@@ -162,9 +164,12 @@ export class LoginComponent extends FormReactive implements OnInit, AfterViewIni
|
||||
}
|
||||
|
||||
this.authService.login(options)
|
||||
.pipe()
|
||||
.pipe(
|
||||
switchMap(() => this.authService.userInformationLoaded),
|
||||
switchMap(() => this.updateUserLanguageIfNeeded())
|
||||
)
|
||||
.subscribe({
|
||||
next: () => this.redirectService.redirectToPreviousRoute(),
|
||||
next: () => this.redirectService.redirectToPreviousRoute({ reloadTab: this.shouldReloadTabOnLogin() }),
|
||||
|
||||
error: err => {
|
||||
this.handleError(err)
|
||||
@@ -203,6 +208,10 @@ The link will expire within 1 hour.`
|
||||
this.isAuthenticatedWithExternalAuth = true
|
||||
|
||||
this.authService.login({ username, password: null, token })
|
||||
.pipe(
|
||||
switchMap(() => this.authService.userInformationLoaded),
|
||||
switchMap(() => this.updateUserLanguageIfNeeded())
|
||||
)
|
||||
.subscribe({
|
||||
next: () => {
|
||||
const redirectUrl = this.storage.getItem(LoginComponent.SESSION_STORAGE_REDIRECT_URL_KEY)
|
||||
@@ -211,7 +220,7 @@ The link will expire within 1 hour.`
|
||||
return this.router.navigateByUrl(redirectUrl)
|
||||
}
|
||||
|
||||
this.redirectService.redirectToLatestSessionRoute()
|
||||
this.redirectService.redirectToLatestSessionRoute({ reloadTab: this.shouldReloadTabOnLogin() })
|
||||
},
|
||||
|
||||
error: err => {
|
||||
@@ -255,4 +264,18 @@ The link will expire within 1 hour.`
|
||||
|
||||
this.error = err.message
|
||||
}
|
||||
|
||||
private shouldReloadTabOnLogin () {
|
||||
const user = this.authService.getUser()
|
||||
|
||||
return user.language && getCompleteLocale(user.language) !== getCompleteLocale(this.localeId)
|
||||
}
|
||||
|
||||
private updateUserLanguageIfNeeded () {
|
||||
if (this.authService.getUser().language) {
|
||||
return this.userService.updateInterfaceLanguage(this.authService.getUser().language)
|
||||
}
|
||||
|
||||
return of(true)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
import { Component, OnInit, inject, viewChild } from '@angular/core'
|
||||
import { Component, DestroyRef, inject, OnInit, viewChild } from '@angular/core'
|
||||
import { takeUntilDestroyed } from '@angular/core/rxjs-interop'
|
||||
import { FormsModule } from '@angular/forms'
|
||||
import {
|
||||
AuthService,
|
||||
@@ -41,6 +42,7 @@ export class MyHistoryComponent implements OnInit, DisableForReuseHook {
|
||||
private notifier = inject(Notifier)
|
||||
private confirmService = inject(ConfirmService)
|
||||
private userHistoryService = inject(UserHistoryService)
|
||||
private destroyRef = inject(DestroyRef)
|
||||
|
||||
readonly videosSelection = viewChild<VideosSelectionComponent>('videosSelection')
|
||||
|
||||
@@ -77,6 +79,7 @@ export class MyHistoryComponent implements OnInit, DisableForReuseHook {
|
||||
this.user = this.authService.getUser()
|
||||
|
||||
this.authService.userInformationLoaded
|
||||
.pipe(takeUntilDestroyed(this.destroyRef))
|
||||
.subscribe(() => this.videosHistoryEnabled = this.user.videosHistoryEnabled)
|
||||
}
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ import { VideoFilters } from '@app/shared/shared-video-miniature/video-filters.m
|
||||
import { VideosListComponent } from '@app/shared/shared-video-miniature/videos-list.component'
|
||||
import { VideoSortField } from '@peertube/peertube-models'
|
||||
import { firstValueFrom } from 'rxjs'
|
||||
import { switchMap, tap } from 'rxjs/operators'
|
||||
import { first, switchMap, tap } from 'rxjs/operators'
|
||||
|
||||
@Component({
|
||||
selector: 'my-videos-user-subscriptions',
|
||||
@@ -77,6 +77,7 @@ export class VideoUserSubscriptionsComponent implements DisableForReuseHook {
|
||||
|
||||
const obs = this.authService.userInformationLoaded
|
||||
.pipe(
|
||||
first(),
|
||||
switchMap(() => this.scopedTokensService.getScopedTokens()),
|
||||
tap(tokens => this.feedToken = tokens.feedToken)
|
||||
)
|
||||
|
||||
@@ -404,7 +404,6 @@ export class VideoWatchComponent implements OnInit, OnDestroy {
|
||||
})
|
||||
},
|
||||
error: async err => {
|
||||
console.log(err)
|
||||
if (err.body.code === ServerErrorCode.VIDEO_REQUIRES_PASSWORD || err.body.code === ServerErrorCode.INCORRECT_VIDEO_PASSWORD) {
|
||||
const { confirmed, password } = await this.handleVideoPasswordError(err)
|
||||
|
||||
@@ -855,9 +854,7 @@ export class VideoWatchComponent implements OnInit, OnDestroy {
|
||||
isLive: video.isLive,
|
||||
liveOptions,
|
||||
|
||||
videoViewUrl: video.privacy.id !== VideoPrivacy.PRIVATE
|
||||
? this.videoService.getVideoViewUrl(video.uuid)
|
||||
: null,
|
||||
videoViewUrl: this.videoService.getVideoViewUrl(video.uuid),
|
||||
|
||||
videoFileToken: () => videoFileToken,
|
||||
requiresUserAuth: videoRequiresUserAuth(video, videoPassword),
|
||||
|
||||
@@ -89,21 +89,35 @@ export class RedirectService {
|
||||
}
|
||||
}
|
||||
|
||||
redirectToLatestSessionRoute () {
|
||||
return this.doRedirect(this.latestSessionUrl)
|
||||
redirectToLatestSessionRoute (options: {
|
||||
reloadTab?: boolean
|
||||
} = {}) {
|
||||
return this.doRedirect(this.latestSessionUrl, options)
|
||||
}
|
||||
|
||||
redirectToPreviousRoute (fallbackRoute?: string) {
|
||||
return this.doRedirect(this.previousUrl, fallbackRoute)
|
||||
redirectToPreviousRoute (options: {
|
||||
reloadTab?: boolean
|
||||
} = {}) {
|
||||
return this.doRedirect(this.previousUrl, options)
|
||||
}
|
||||
|
||||
getPreviousUrl () {
|
||||
return this.previousUrl
|
||||
}
|
||||
|
||||
redirectToHomepage (skipLocationChange = false) {
|
||||
redirectToHomepage (options: {
|
||||
skipLocationChange?: boolean // default false
|
||||
reloadTab?: boolean // default false
|
||||
} = {}) {
|
||||
const { skipLocationChange = false, reloadTab = false } = options
|
||||
|
||||
if (this.redirectingToHomepage) return
|
||||
|
||||
if (reloadTab) {
|
||||
window.location.href = this.defaultRoute
|
||||
return
|
||||
}
|
||||
|
||||
this.redirectingToHomepage = true
|
||||
|
||||
logger.info(`Redirecting to default route ${this.defaultRoute}...`, { skipLocationChange })
|
||||
@@ -131,20 +145,24 @@ export class RedirectService {
|
||||
this.router.navigate([ '/401' ], { state: { obj: err }, skipLocationChange: true })
|
||||
}
|
||||
|
||||
private doRedirect (redirectUrl: string, fallbackRoute?: string) {
|
||||
private doRedirect (redirectUrl: string, options: {
|
||||
reloadTab?: boolean
|
||||
} = {}) {
|
||||
const { reloadTab = false } = options
|
||||
|
||||
debugLogger('Redirecting on %s', redirectUrl)
|
||||
|
||||
if (this.isValidRedirection(redirectUrl)) {
|
||||
if (reloadTab) {
|
||||
window.location.href = redirectUrl
|
||||
return
|
||||
}
|
||||
|
||||
return this.router.navigateByUrl(redirectUrl)
|
||||
}
|
||||
|
||||
debugLogger('%s is not a valid redirection, try fallback route %s', redirectUrl, fallbackRoute)
|
||||
if (fallbackRoute) {
|
||||
return this.router.navigateByUrl(fallbackRoute)
|
||||
}
|
||||
|
||||
debugLogger('There was no fallback route, redirecting to homepage')
|
||||
return this.redirectToHomepage()
|
||||
debugLogger(`${redirectUrl} is not a valid redirection, redirecting to homepage`)
|
||||
return this.redirectToHomepage(options)
|
||||
}
|
||||
|
||||
private isValidRedirection (redirectUrl: string) {
|
||||
|
||||
@@ -22,7 +22,7 @@ export class HomepageRedirectComponent implements OnInit {
|
||||
const url = this.route.snapshot.url
|
||||
|
||||
if (url.length === 0 || is18nPath('/' + url[0])) {
|
||||
this.redirectService.redirectToHomepage(true)
|
||||
this.redirectService.redirectToHomepage({ skipLocationChange: true })
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -45,6 +45,7 @@ export class InstanceConfigWarningModalComponent implements OnInit {
|
||||
}
|
||||
|
||||
shouldAutoOpen (serverConfig: ServerConfig, about: About) {
|
||||
if (this.modalService.hasOpenModals()) return false
|
||||
if (!serverConfig.signup.allowed) return false
|
||||
|
||||
return serverConfig.instance.name.toLowerCase() === 'peertube' ||
|
||||
|
||||
@@ -1,9 +1,14 @@
|
||||
import { HttpHandlerFn, HttpRequest } from '@angular/common/http'
|
||||
import { inject, LOCALE_ID } from '@angular/core'
|
||||
import { getBackendUrl } from '@app/helpers'
|
||||
import { isSameOrigin } from '@root-helpers/url'
|
||||
|
||||
export function languageInterceptor (req: HttpRequest<unknown>, next: HttpHandlerFn) {
|
||||
const localeId = inject(LOCALE_ID)
|
||||
|
||||
const sameOrigin = req.url.startsWith('/') || isSameOrigin(getBackendUrl(), req.url)
|
||||
if (!sameOrigin) return next(req)
|
||||
|
||||
const newReq = req.clone({ headers: req.headers.append('x-peertube-language', localeId) })
|
||||
|
||||
return next(newReq)
|
||||
|
||||
@@ -46,6 +46,7 @@ export class UserInterfaceSettingsComponent implements OnInit, OnDestroy {
|
||||
availableLanguages: SelectOptionsItem[]
|
||||
|
||||
formValuesWatcher: Subscription
|
||||
userInfoSub: Subscription
|
||||
|
||||
private serverConfig: HTMLServerConfig
|
||||
private initialUserLanguage: string
|
||||
@@ -71,7 +72,7 @@ export class UserInterfaceSettingsComponent implements OnInit, OnDestroy {
|
||||
|
||||
this.buildForm()
|
||||
|
||||
this.userInformationLoaded()
|
||||
this.userInfoSub = this.userInformationLoaded()
|
||||
.subscribe(() => {
|
||||
this.form.patchValue({
|
||||
theme: this.user().theme,
|
||||
@@ -83,6 +84,12 @@ export class UserInterfaceSettingsComponent implements OnInit, OnDestroy {
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
ngOnDestroy () {
|
||||
this.formValuesWatcher?.unsubscribe()
|
||||
this.userInfoSub?.unsubscribe()
|
||||
}
|
||||
|
||||
private buildForm () {
|
||||
const obj: BuildFormArgumentTyped<Form> = {
|
||||
theme: null,
|
||||
@@ -100,10 +107,6 @@ export class UserInterfaceSettingsComponent implements OnInit, OnDestroy {
|
||||
this.validationMessages = validationMessages
|
||||
}
|
||||
|
||||
ngOnDestroy () {
|
||||
this.formValuesWatcher?.unsubscribe()
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
updateInterfaceSettings () {
|
||||
@@ -163,8 +166,6 @@ export class UserInterfaceSettingsComponent implements OnInit, OnDestroy {
|
||||
|
||||
getSubmitValue () {
|
||||
return $localize`Save interface settings`
|
||||
|
||||
// return $localize`Save and reload the interface`
|
||||
}
|
||||
|
||||
private getDefaultInstanceThemeLabel () {
|
||||
|
||||
@@ -13,7 +13,7 @@ import {
|
||||
import { AuthService, ScreenService, ServerService, User } from '@app/core'
|
||||
import { NgbTooltipModule } from '@ng-bootstrap/ng-bootstrap'
|
||||
import { HTMLServerConfig, VideoPlaylistType, VideoPrivacy } from '@peertube/peertube-models'
|
||||
import { switchMap } from 'rxjs/operators'
|
||||
import { first, switchMap } from 'rxjs/operators'
|
||||
import { LinkType } from '../../../types/link.type'
|
||||
import { ActorAvatarComponent } from '../shared-actor-image/actor-avatar.component'
|
||||
import { ActorHostComponent } from '../shared-actor/actor-host.component'
|
||||
@@ -323,7 +323,7 @@ export class VideoMiniatureComponent implements OnInit {
|
||||
if (this.screenService.isInTouchScreen() || !this.displayVideoActions() || !this.isUserLoggedIn()) return
|
||||
|
||||
this.authService.userInformationLoaded
|
||||
.pipe(switchMap(() => this.videoPlaylistService.listenToVideoPlaylistChange(this.video().id)))
|
||||
.pipe(first(), switchMap(() => this.videoPlaylistService.listenToVideoPlaylistChange(this.video().id)))
|
||||
.subscribe(existResult => {
|
||||
const watchLaterPlaylist = this.authService.getUser().specialPlaylists.find(p => p.type === VideoPlaylistType.WATCH_LATER)
|
||||
const existsInWatchLater = existResult.find(r => r.playlistId === watchLaterPlaylist.id)
|
||||
|
||||
@@ -52,7 +52,7 @@
|
||||
</div>
|
||||
}
|
||||
|
||||
<h2 class="date-title" [ngClass]="{ 'visually-hidden': groupByDate() }">
|
||||
<h2 class="videos-section-title" [ngClass]="{ 'visually-hidden': groupByDate() }">
|
||||
<my-global-icon class="pt-icon me-1" iconName="videos"></my-global-icon>
|
||||
<ng-container i18n>Videos</ng-container>
|
||||
</h2>
|
||||
|
||||
@@ -1865,7 +1865,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6994936570572804302" datatype="html">
|
||||
@@ -2144,12 +2144,12 @@
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="786003471867762836" datatype="html">
|
||||
<source>Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<trans-unit id="8309133070608650316" datatype="html">
|
||||
<source>Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7512666561651719221" datatype="html">
|
||||
@@ -2157,7 +2157,7 @@
|
||||
<target state="new">You can now <strong>invite other users</strong> to collaborate on your channel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="199127249622290422" datatype="html">
|
||||
@@ -3663,7 +3663,7 @@
|
||||
<target state="new">Manage my channels</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3140041890374956085" datatype="html">
|
||||
@@ -9963,7 +9963,7 @@
|
||||
<target state="new">Synchronizations</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7607713563510753803" datatype="html">
|
||||
@@ -10395,7 +10395,7 @@
|
||||
<target state="translated">لا يوجد فيديو في تأريخ مشاهداتك.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="989169929300254768" datatype="html">
|
||||
@@ -10411,7 +10411,7 @@
|
||||
<target state="translated">تأريخ الفيديو مُفعّل</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
<context context-type="linenumber">122</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1869266307786648674" datatype="html">
|
||||
@@ -10419,7 +10419,7 @@
|
||||
<target state="translated">تأريخ الفيديو مُعطَّل</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">120</context>
|
||||
<context context-type="linenumber">123</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7505147502630555700" datatype="html">
|
||||
@@ -10427,7 +10427,7 @@
|
||||
<target state="translated">حذف تأريخ الفيديو</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">147</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8676027102068252963" datatype="html">
|
||||
@@ -10435,7 +10435,7 @@
|
||||
<target state="translated">هل أنت متأكد أنك تريد حذف كل تأريخ الفيديو الخاص بك؟</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">145</context>
|
||||
<context context-type="linenumber">148</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7708910304029766516" datatype="html">
|
||||
@@ -10443,7 +10443,7 @@
|
||||
<target state="translated">حُذفت تأريخ الفيديو</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">153</context>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3343758569423394070" datatype="html">
|
||||
@@ -10451,7 +10451,7 @@
|
||||
<target state="translated">لم يتم العثور على مقاطع فيديو لـ "<x id="PH" equiv-text="this.search"/>".</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="687236465759862933" datatype="html">
|
||||
@@ -17756,12 +17756,20 @@ The link will expire within 1 hour.</source>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8946368517039712001" datatype="html">
|
||||
<source>This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</source>
|
||||
<target state="new">This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</target>
|
||||
<trans-unit id="649873611133633238" datatype="html">
|
||||
<source>This plugin does not have settings.</source>
|
||||
<target state="new">This plugin does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
<context context-type="linenumber">21,22</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5495621331909678720" datatype="html">
|
||||
<source>This theme does not have settings.</source>
|
||||
<target state="new">This theme does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1875025899004073421" datatype="html">
|
||||
@@ -19413,7 +19421,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">تأريخ مشاهداتي</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">73</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3656932706364053858" datatype="html">
|
||||
@@ -25181,7 +25189,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">Save interface settings</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
<context context-type="linenumber">168</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7570883748440392027" datatype="html">
|
||||
@@ -25189,7 +25197,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new"><x id="PH" equiv-text="this.instanceName"/> theme</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">63</context>
|
||||
<context context-type="linenumber">64</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1219783168145776019" datatype="html">
|
||||
@@ -25229,11 +25237,11 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target>حُدثت إعدادات الواجهة.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">138</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">160</context>
|
||||
<context context-type="linenumber">163</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6784127216978878229" datatype="html">
|
||||
|
||||
@@ -4288,12 +4288,20 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8946368517039712001" datatype="html">
|
||||
<source>This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</source>
|
||||
<target state="new">This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</target>
|
||||
<trans-unit id="649873611133633238" datatype="html">
|
||||
<source>This plugin does not have settings.</source>
|
||||
<target state="new">This plugin does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
<context context-type="linenumber">21,22</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5495621331909678720" datatype="html">
|
||||
<source>This theme does not have settings.</source>
|
||||
<target state="new">This theme does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1144407473317535723" datatype="html">
|
||||
@@ -6617,7 +6625,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="9031514421077169181" datatype="html">
|
||||
@@ -9114,12 +9122,12 @@ The link will expire within 1 hour.</target>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="786003471867762836" datatype="html">
|
||||
<source>Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<trans-unit id="8309133070608650316" datatype="html">
|
||||
<source>Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7512666561651719221" datatype="html">
|
||||
@@ -9127,7 +9135,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">You can now <strong>invite other users</strong> to collaborate on your channel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1000468652492651683" datatype="html">
|
||||
@@ -16332,7 +16340,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Save interface settings</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
<context context-type="linenumber">168</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7570883748440392027" datatype="html">
|
||||
@@ -16340,7 +16348,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new"><x id="PH" equiv-text="this.instanceName"/> theme</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">63</context>
|
||||
<context context-type="linenumber">64</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="4776289814033837037" datatype="html">
|
||||
@@ -16348,11 +16356,11 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Interface settings updated.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">138</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">160</context>
|
||||
<context context-type="linenumber">163</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6784127216978878229" datatype="html">
|
||||
@@ -24989,7 +24997,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">My watch history</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">73</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="111295045776045026" datatype="html">
|
||||
@@ -24997,7 +25005,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Video history is enabled</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
<context context-type="linenumber">122</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1869266307786648674" datatype="html">
|
||||
@@ -25005,7 +25013,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Video history is disabled</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">120</context>
|
||||
<context context-type="linenumber">123</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7505147502630555700" datatype="html">
|
||||
@@ -25013,7 +25021,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Delete video history</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">147</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8676027102068252963" datatype="html">
|
||||
@@ -25021,7 +25029,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Are you sure you want to delete all your video history?</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">145</context>
|
||||
<context context-type="linenumber">148</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7708910304029766516" datatype="html">
|
||||
@@ -25029,7 +25037,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Video history deleted</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">153</context>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3343758569423394070" datatype="html">
|
||||
@@ -25037,7 +25045,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">No videos found for "<x id="PH" equiv-text="this.search"/>".</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="4781078006040259916" datatype="html">
|
||||
@@ -25045,7 +25053,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">You don't have any video in your watch history yet.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7679199047720825365" datatype="html">
|
||||
@@ -26874,7 +26882,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Manage my channels</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7731752234233950482" datatype="html">
|
||||
@@ -26882,7 +26890,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Synchronizations</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="2521678336272309407" datatype="html">
|
||||
|
||||
@@ -4208,12 +4208,20 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8946368517039712001" datatype="html">
|
||||
<source>This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</source>
|
||||
<target state="new">This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</target>
|
||||
<trans-unit id="649873611133633238" datatype="html">
|
||||
<source>This plugin does not have settings.</source>
|
||||
<target state="new">This plugin does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
<context context-type="linenumber">21,22</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5495621331909678720" datatype="html">
|
||||
<source>This theme does not have settings.</source>
|
||||
<target state="new">This theme does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1144407473317535723" datatype="html">
|
||||
@@ -6537,7 +6545,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="9031514421077169181" datatype="html">
|
||||
@@ -9018,12 +9026,12 @@ The link will expire within 1 hour.</target>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="786003471867762836" datatype="html">
|
||||
<source>Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<trans-unit id="8309133070608650316" datatype="html">
|
||||
<source>Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7512666561651719221" datatype="html">
|
||||
@@ -9031,7 +9039,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">You can now <strong>invite other users</strong> to collaborate on your channel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1000468652492651683" datatype="html">
|
||||
@@ -16228,7 +16236,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Save interface settings</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
<context context-type="linenumber">168</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7570883748440392027" datatype="html">
|
||||
@@ -16236,7 +16244,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new"><x id="PH" equiv-text="this.instanceName"/> theme</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">63</context>
|
||||
<context context-type="linenumber">64</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="4776289814033837037" datatype="html">
|
||||
@@ -16244,11 +16252,11 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Interface settings updated.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">138</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">160</context>
|
||||
<context context-type="linenumber">163</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6784127216978878229" datatype="html">
|
||||
@@ -25159,7 +25167,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">My watch history</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">73</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="111295045776045026" datatype="html">
|
||||
@@ -25167,7 +25175,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Video history is enabled</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
<context context-type="linenumber">122</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1869266307786648674" datatype="html">
|
||||
@@ -25175,7 +25183,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Video history is disabled</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">120</context>
|
||||
<context context-type="linenumber">123</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7505147502630555700" datatype="html">
|
||||
@@ -25183,7 +25191,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Delete video history</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">147</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8676027102068252963" datatype="html">
|
||||
@@ -25191,7 +25199,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Are you sure you want to delete all your video history?</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">145</context>
|
||||
<context context-type="linenumber">148</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7708910304029766516" datatype="html">
|
||||
@@ -25199,7 +25207,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Video history deleted</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">153</context>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3343758569423394070" datatype="html">
|
||||
@@ -25207,7 +25215,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">No videos found for "<x id="PH" equiv-text="this.search"/>".</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="4781078006040259916" datatype="html">
|
||||
@@ -25215,7 +25223,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">You don't have any video in your watch history yet.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7679199047720825365" datatype="html">
|
||||
@@ -27028,7 +27036,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Manage my channels</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7731752234233950482" datatype="html">
|
||||
@@ -27036,7 +27044,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Synchronizations</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="2521678336272309407" datatype="html">
|
||||
|
||||
@@ -1272,7 +1272,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="9031514421077169181" datatype="html">
|
||||
@@ -6063,12 +6063,20 @@
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8946368517039712001" datatype="html">
|
||||
<source>This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</source>
|
||||
<target state="new">This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</target>
|
||||
<trans-unit id="649873611133633238" datatype="html">
|
||||
<source>This plugin does not have settings.</source>
|
||||
<target state="new">This plugin does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
<context context-type="linenumber">21,22</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5495621331909678720" datatype="html">
|
||||
<source>This theme does not have settings.</source>
|
||||
<target state="new">This theme does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1875025899004073421" datatype="html">
|
||||
@@ -9950,7 +9958,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Manage my channels</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7731752234233950482" datatype="html">
|
||||
@@ -9958,7 +9966,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Synchronizations</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="2521678336272309407" datatype="html">
|
||||
@@ -10094,7 +10102,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Video history is enabled</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
<context context-type="linenumber">122</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1869266307786648674" datatype="html">
|
||||
@@ -10102,7 +10110,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Video history is disabled</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">120</context>
|
||||
<context context-type="linenumber">123</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7505147502630555700" datatype="html">
|
||||
@@ -10110,7 +10118,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Delete video history</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">147</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8676027102068252963" datatype="html">
|
||||
@@ -10118,7 +10126,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Are you sure you want to delete all your video history?</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">145</context>
|
||||
<context context-type="linenumber">148</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7708910304029766516" datatype="html">
|
||||
@@ -10126,7 +10134,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Video history deleted</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">153</context>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3343758569423394070" datatype="html">
|
||||
@@ -10134,7 +10142,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">No videos found for "<x id="PH" equiv-text="this.search"/>".</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3656932706364053858" datatype="html">
|
||||
@@ -10166,7 +10174,7 @@ The link will expire within 1 hour.</source>
|
||||
<target/>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1486537403020619891" datatype="html">
|
||||
@@ -10174,7 +10182,7 @@ The link will expire within 1 hour.</source>
|
||||
<target/>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">73</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="949618577357088829" datatype="html">
|
||||
@@ -18508,12 +18516,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="786003471867762836" datatype="html">
|
||||
<source>Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<trans-unit id="8309133070608650316" datatype="html">
|
||||
<source>Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7512666561651719221" datatype="html">
|
||||
@@ -18521,7 +18529,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">You can now <strong>invite other users</strong> to collaborate on your channel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1420294365005204590" datatype="html">
|
||||
@@ -24448,7 +24456,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">Save interface settings</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
<context context-type="linenumber">168</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7570883748440392027" datatype="html">
|
||||
@@ -24456,7 +24464,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new"><x id="PH" equiv-text="this.instanceName"/> theme</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">63</context>
|
||||
<context context-type="linenumber">64</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="4776289814033837037" datatype="html">
|
||||
@@ -24464,11 +24472,11 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target/>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">138</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">160</context>
|
||||
<context context-type="linenumber">163</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6784127216978878229" datatype="html">
|
||||
|
||||
@@ -1547,7 +1547,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="9031514421077169181" datatype="html">
|
||||
@@ -7767,12 +7767,20 @@
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8946368517039712001" datatype="html">
|
||||
<source>This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</source>
|
||||
<target state="new">This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</target>
|
||||
<trans-unit id="649873611133633238" datatype="html">
|
||||
<source>This plugin does not have settings.</source>
|
||||
<target state="new">This plugin does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
<context context-type="linenumber">21,22</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5495621331909678720" datatype="html">
|
||||
<source>This theme does not have settings.</source>
|
||||
<target state="new">This theme does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1875025899004073421" datatype="html">
|
||||
@@ -10603,7 +10611,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Manage my channels</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="2521678336272309407" datatype="html">
|
||||
@@ -10716,56 +10724,56 @@ The link will expire within 1 hour.</source>
|
||||
<source>My watch history</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">73</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="111295045776045026" datatype="html">
|
||||
<source>Video history is enabled</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
<context context-type="linenumber">122</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1869266307786648674" datatype="html">
|
||||
<source>Video history is disabled</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">120</context>
|
||||
<context context-type="linenumber">123</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7505147502630555700" datatype="html">
|
||||
<source>Delete video history</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">147</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8676027102068252963" datatype="html">
|
||||
<source>Are you sure you want to delete all your video history?</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">145</context>
|
||||
<context context-type="linenumber">148</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7708910304029766516" datatype="html">
|
||||
<source>Video history deleted</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">153</context>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3343758569423394070" datatype="html">
|
||||
<source>No videos found for "<x id="PH" equiv-text="this.search"/>".</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="4781078006040259916" datatype="html">
|
||||
<source>You don't have any video in your watch history yet.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6371572688505952303" datatype="html">
|
||||
@@ -11484,7 +11492,7 @@ The link will expire within 1 hour.</source>
|
||||
<source>Synchronizations</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7607713563510753803" datatype="html">
|
||||
@@ -17550,12 +17558,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="786003471867762836" datatype="html">
|
||||
<source>Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<trans-unit id="8309133070608650316" datatype="html">
|
||||
<source>Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7512666561651719221" datatype="html">
|
||||
@@ -17563,7 +17571,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">You can now <strong>invite other users</strong> to collaborate on your channel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1000468652492651683" datatype="html">
|
||||
@@ -22190,25 +22198,25 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<source>Save interface settings</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
<context context-type="linenumber">168</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7570883748440392027" datatype="html">
|
||||
<source><x id="PH" equiv-text="this.instanceName"/> theme</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">63</context>
|
||||
<context context-type="linenumber">64</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="4776289814033837037" datatype="html">
|
||||
<source>Interface settings updated.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">138</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">160</context>
|
||||
<context context-type="linenumber">163</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6784127216978878229" datatype="html">
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -2285,7 +2285,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6994936570572804302" datatype="html">
|
||||
@@ -3551,12 +3551,12 @@ The link will expire within 1 hour.</source>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="786003471867762836" datatype="html">
|
||||
<source>Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<trans-unit id="8309133070608650316" datatype="html">
|
||||
<source>Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7512666561651719221" datatype="html">
|
||||
@@ -3564,7 +3564,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">You can now <strong>invite other users</strong> to collaborate on your channel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5960096873104755868" datatype="html" xml:space="preserve">
|
||||
@@ -7247,11 +7247,8 @@ The link will expire within 1 hour.</source>
|
||||
<trans-unit id="913810105049472842" datatype="html" xml:space="preserve">
|
||||
<source>Manage my channels</source>
|
||||
<target state="translated">Spravovat moje kanály</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context><context context-type="linenumber">31</context></context-group></trans-unit>
|
||||
<trans-unit id="3140041890374956085" datatype="html" xml:space="preserve">
|
||||
<source>Comments on your videos</source>
|
||||
<target state="translated">Komentáře k vašim videím</target>
|
||||
@@ -12671,7 +12668,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">V historii sledování zatím nemáte žádné video.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="989169929300254768" datatype="html">
|
||||
@@ -12687,7 +12684,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Historie videa je povolena</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
<context context-type="linenumber">122</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1869266307786648674" datatype="html">
|
||||
@@ -12695,7 +12692,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Historie videa je zakázána</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">120</context>
|
||||
<context context-type="linenumber">123</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7505147502630555700" datatype="html">
|
||||
@@ -12703,7 +12700,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Smazat historii videí</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">147</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8676027102068252963" datatype="html">
|
||||
@@ -12711,7 +12708,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Opravdu chcete odstranit celou historii videí?</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">145</context>
|
||||
<context context-type="linenumber">148</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7708910304029766516" datatype="html">
|
||||
@@ -12719,7 +12716,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Historie videa smazána</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">153</context>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3343758569423394070" datatype="html">
|
||||
@@ -12727,7 +12724,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Nebyla nalezena žádná videa pro "<x id="PH" equiv-text="this.search"/>".</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="687236465759862933" datatype="html">
|
||||
@@ -16145,12 +16142,20 @@ The link will expire within 1 hour.</source>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8946368517039712001" datatype="html">
|
||||
<source>This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</source>
|
||||
<target state="new">This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</target>
|
||||
<trans-unit id="649873611133633238" datatype="html">
|
||||
<source>This plugin does not have settings.</source>
|
||||
<target state="new">This plugin does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
<context context-type="linenumber">21,22</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5495621331909678720" datatype="html">
|
||||
<source>This theme does not have settings.</source>
|
||||
<target state="new">This theme does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1875025899004073421" datatype="html">
|
||||
@@ -17377,7 +17382,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Moje historie sledování</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">73</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3656932706364053858" datatype="html">
|
||||
@@ -17551,11 +17556,11 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Nastavení rozhraní aktualizováno.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">138</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">160</context>
|
||||
<context context-type="linenumber">163</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6784127216978878229" datatype="html" xml:space="preserve">
|
||||
@@ -18800,11 +18805,8 @@ The link will expire within 1 hour.</source>
|
||||
<trans-unit id="7731752234233950482" datatype="html" xml:space="preserve">
|
||||
<source>Synchronizations</source>
|
||||
<target state="translated">Synchronizace</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context><context context-type="linenumber">39</context></context-group></trans-unit>
|
||||
<trans-unit id="7607713563510753803" datatype="html" xml:space="preserve">
|
||||
<source>Imports</source>
|
||||
<target state="translated">Importy</target>
|
||||
@@ -24252,12 +24254,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<source>Save interface settings</source>
|
||||
<target state="translated">Uložit nastavení rozhraní</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">165</context></context-group></trans-unit>
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">168</context></context-group></trans-unit>
|
||||
<trans-unit id="7570883748440392027" datatype="html" xml:space="preserve">
|
||||
<source><x id="PH" equiv-text="this.instanceName"/> theme</source>
|
||||
<target state="translated">Motiv <x id="PH" equiv-text="this.instanceName"/></target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">63</context></context-group></trans-unit>
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">64</context></context-group></trans-unit>
|
||||
<trans-unit id="1219783168145776019" datatype="html">
|
||||
<source>LIVE ENDED</source>
|
||||
<target state="translated">ŽIVÝ PŘENOS SKONČIL</target>
|
||||
|
||||
@@ -2062,7 +2062,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6994936570572804302" datatype="html">
|
||||
@@ -3264,12 +3264,12 @@ The link will expire within 1 hour.</source>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="786003471867762836" datatype="html">
|
||||
<source>Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<trans-unit id="8309133070608650316" datatype="html">
|
||||
<source>Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7512666561651719221" datatype="html">
|
||||
@@ -3277,7 +3277,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">You can now <strong>invite other users</strong> to collaborate on your channel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5960096873104755868" datatype="html" xml:space="preserve">
|
||||
@@ -6919,7 +6919,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Manage my channels</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3140041890374956085" datatype="html" xml:space="preserve">
|
||||
@@ -12776,7 +12776,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">You don't have any video in your watch history yet.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="989169929300254768" datatype="html">
|
||||
@@ -12792,7 +12792,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Video history is enabled</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
<context context-type="linenumber">122</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1869266307786648674" datatype="html">
|
||||
@@ -12800,7 +12800,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Video history is disabled</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">120</context>
|
||||
<context context-type="linenumber">123</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7505147502630555700" datatype="html">
|
||||
@@ -12808,7 +12808,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Delete video history</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">147</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8676027102068252963" datatype="html">
|
||||
@@ -12816,7 +12816,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Are you sure you want to delete all your video history?</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">145</context>
|
||||
<context context-type="linenumber">148</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7708910304029766516" datatype="html">
|
||||
@@ -12824,7 +12824,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Video history deleted</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">153</context>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3343758569423394070" datatype="html">
|
||||
@@ -12832,7 +12832,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">No videos found for "<x id="PH" equiv-text="this.search"/>".</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="687236465759862933" datatype="html">
|
||||
@@ -16335,12 +16335,20 @@ The link will expire within 1 hour.</source>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8946368517039712001" datatype="html">
|
||||
<source>This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</source>
|
||||
<target state="new">This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</target>
|
||||
<trans-unit id="649873611133633238" datatype="html">
|
||||
<source>This plugin does not have settings.</source>
|
||||
<target state="new">This plugin does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
<context context-type="linenumber">21,22</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5495621331909678720" datatype="html">
|
||||
<source>This theme does not have settings.</source>
|
||||
<target state="new">This theme does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1875025899004073421" datatype="html">
|
||||
@@ -17598,7 +17606,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">My watch history</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">73</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3656932706364053858" datatype="html">
|
||||
@@ -17775,11 +17783,11 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Interface settings updated.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">138</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">160</context>
|
||||
<context context-type="linenumber">163</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6784127216978878229" datatype="html" xml:space="preserve">
|
||||
@@ -19098,7 +19106,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Synchronizations</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7607713563510753803" datatype="html">
|
||||
@@ -24929,13 +24937,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<source>Save interface settings</source>
|
||||
<target state="translated">Gem interface indstillinger</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">165</context></context-group></trans-unit>
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">168</context></context-group></trans-unit>
|
||||
<trans-unit id="7570883748440392027" datatype="html">
|
||||
<source><x id="PH" equiv-text="this.instanceName"/> theme</source>
|
||||
<target state="new"><x id="PH" equiv-text="this.instanceName"/> theme</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">63</context>
|
||||
<context context-type="linenumber">64</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1219783168145776019" datatype="html">
|
||||
|
||||
@@ -294,9 +294,15 @@
|
||||
<trans-unit id="7833439309018904726" datatype="html" xml:space="preserve">
|
||||
<source>New message</source>
|
||||
<target state="translated">Neue Nachricht</target>
|
||||
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-notifications/user-notifications.component.html</context><context context-type="linenumber">17</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-notifications/user-notifications.component.html</context><context context-type="linenumber">30</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-notifications/user-notifications.component.html</context>
|
||||
<context context-type="linenumber">17</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-notifications/user-notifications.component.html</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="906167214730624194" datatype="html">
|
||||
<source>{views, plural, =0 {No view} =1 {1 view} other {<x id="views"/> views}}</source>
|
||||
<target state="translated">{views, plural, =0 {Keine Aufrufe} =1 {1 Aufruf} other {<x id="views"/> Aufrufe}}</target>
|
||||
@@ -673,9 +679,9 @@
|
||||
<context context-type="linenumber">224</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7710432640967627087" datatype="html">
|
||||
<trans-unit id="7710432640967627087" datatype="html" xml:space="preserve">
|
||||
<source><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/><x id="INTERPOLATION" equiv-text="{{ n.payload.videoChannelCollaborator.channelOwner.displayName }}"/><x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> invited you to become an<x id="START_TAG_MY_COLLABORATOR_STATE" ctype="x-my_collaborator_state" equiv-text="<my-collaborator-state class="mx-2" type="accepted">"/><x id="CLOSE_TAG_MY_COLLABORATOR_STATE" ctype="x-my_collaborator_state" equiv-text="</my-collaborator-state>"/> of their channel <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/><x id="INTERPOLATION_1" equiv-text="{{ n.payload.videoChannelCollaborator.channel.displayName }}"/><x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source>
|
||||
<target state="new"><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/><x id="INTERPOLATION" equiv-text="{{ n.payload.videoChannelCollaborator.channelOwner.displayName }}"/><x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> invited you to become an<x id="START_TAG_MY_COLLABORATOR_STATE" ctype="x-my_collaborator_state" equiv-text="<my-collaborator-state class="mx-2" type="accepted">"/><x id="CLOSE_TAG_MY_COLLABORATOR_STATE" ctype="x-my_collaborator_state" equiv-text="</my-collaborator-state>"/> of their channel <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/><x id="INTERPOLATION_1" equiv-text="{{ n.payload.videoChannelCollaborator.channel.displayName }}"/><x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target>
|
||||
<target state="translated"><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/><x id="INTERPOLATION" equiv-text="{{ n.payload.videoChannelCollaborator.channelOwner.displayName }}"/><x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> hat dich eingeladen ein<x id="START_TAG_MY_COLLABORATOR_STATE" ctype="x-my_collaborator_state" equiv-text="<my-collaborator-state class="mx-2" type="accepted">"/><x id="CLOSE_TAG_MY_COLLABORATOR_STATE" ctype="x-my_collaborator_state" equiv-text="</my-collaborator-state>"/> ihres*seines Kanals zu werden <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/><x id="INTERPOLATION_1" equiv-text="{{ n.payload.videoChannelCollaborator.channel.displayName }}"/><x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-notifications/user-notification-content.component.html</context>
|
||||
<context context-type="linenumber">233,235</context>
|
||||
@@ -1638,9 +1644,15 @@
|
||||
<trans-unit id="5937251202465808296" datatype="html" xml:space="preserve">
|
||||
<source>More</source>
|
||||
<target state="translated">Mehr</target>
|
||||
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-space.component.ts</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+video-list/overview/video-overview.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-video-space.component.ts</context>
|
||||
<context context-type="linenumber">55</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+video-list/overview/video-overview.component.html</context>
|
||||
<context context-type="linenumber">16</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7855115715004732406" datatype="html" xml:space="preserve">
|
||||
<source>Browse "<x id="PH" equiv-text="value.category.label"/>" videos</source>
|
||||
<target state="translated">„<x id="PH" equiv-text="value.category.label"/>“ Videos durchsuchen</target>
|
||||
@@ -2546,7 +2558,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6994936570572804302" datatype="html">
|
||||
@@ -3882,30 +3894,27 @@ The link will expire within 1 hour.</source>
|
||||
<context context-type="linenumber">60</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5601530442010506564" datatype="html">
|
||||
<trans-unit id="5601530442010506564" datatype="html" xml:space="preserve">
|
||||
<source>Got it</source>
|
||||
<target state="new">Got it</target>
|
||||
<target state="translated">Verstanden</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info-modal.component.html</context>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="786003471867762836" datatype="html">
|
||||
<source>Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<trans-unit id="8309133070608650316" datatype="html">
|
||||
<source>Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7512666561651719221" datatype="html">
|
||||
<trans-unit id="7512666561651719221" datatype="html" xml:space="preserve">
|
||||
<source>You can now <strong>invite other users</strong> to collaborate on your channel</source>
|
||||
<target state="new">You can now <strong>invite other users</strong> to collaborate on your channel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<target state="translated">Du kannst jetzt <strong>andere Benutzer*innen einladen</strong> mit deinem Kanal zusammenzuarbeiten</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context><context context-type="linenumber">31</context></context-group></trans-unit>
|
||||
<trans-unit id="5960096873104755868" datatype="html" xml:space="preserve">
|
||||
<source>More info</source>
|
||||
<target state="translated">Mehr Infos</target>
|
||||
@@ -4301,8 +4310,11 @@ The link will expire within 1 hour.</source>
|
||||
<trans-unit id="2734780694152757859" datatype="html" xml:space="preserve">
|
||||
<source>View all</source>
|
||||
<target state="translated">Alle betrachten</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/header/notification-dropdown.component.html</context><context context-type="linenumber">97</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/header/notification-dropdown.component.html</context>
|
||||
<context context-type="linenumber">97</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5158930137081704296" datatype="html" xml:space="preserve">
|
||||
<source>Search videos, channels…</source>
|
||||
<target state="translated">Suche nach Videos, Kanälen…</target>
|
||||
@@ -5079,8 +5091,11 @@ The link will expire within 1 hour.</source>
|
||||
<trans-unit id="8797603333570754589" datatype="html" xml:space="preserve">
|
||||
<source><x id="PH" equiv-text="this.actor.name"/> (instance page)</source>
|
||||
<target state="translated"><x id="PH" equiv-text="this.actor.name"/> (Instanzseite)</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-actor-image/actor-avatar.component.ts</context><context context-type="linenumber">47</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-actor-image/actor-avatar.component.ts</context>
|
||||
<context context-type="linenumber">47</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3171444589366264129" datatype="html" xml:space="preserve">
|
||||
<source><x id="START_LINK" ctype="x-a" equiv-text="<a class="text-decoration-underline" href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noreferrer noopener">"/>Markdown compatible<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> that also supports <x id="START_LINK_1" equiv-text="<a class="text-decoration-underline" href="https://docs.joinpeertube.org/api/custom-client-markup" target="_blank" rel="noreferrer noopener">"/>custom PeerTube HTML tags<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </source>
|
||||
<target state="translated"><x id="START_LINK" ctype="x-a" equiv-text="<a class="text-decoration-underline" href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noreferrer noopener">"/>Markdown-kompatibel<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> mit Unterstützung für <x id="START_LINK_1" equiv-text="<a class="text-decoration-underline" href="https://docs.joinpeertube.org/api/custom-client-markup" target="_blank" rel="noreferrer noopener">"/>benutzerdefinierte HTML-Tags von PeerTube<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target>
|
||||
@@ -7989,9 +8004,15 @@ The link will expire within 1 hour.</source>
|
||||
<trans-unit id="3470970355101730705" datatype="html" xml:space="preserve">
|
||||
<source>Pending review</source>
|
||||
<target state="translated">Ausstehende Überprüfung</target>
|
||||
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-watch/shared/comment/video-comment.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-comment/video-comment-list-admin-owner.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+video-watch/shared/comment/video-comment.component.html</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-video-comment/video-comment-list-admin-owner.component.html</context>
|
||||
<context context-type="linenumber">66</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="4502286564339177240">
|
||||
<source>Reply</source>
|
||||
<target>Antworten</target>
|
||||
@@ -8107,11 +8128,8 @@ The link will expire within 1 hour.</source>
|
||||
<trans-unit id="913810105049472842" datatype="html" xml:space="preserve">
|
||||
<source>Manage my channels</source>
|
||||
<target state="translated">Meine Kanäle verwalten</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context><context context-type="linenumber">31</context></context-group></trans-unit>
|
||||
<trans-unit id="3140041890374956085" datatype="html" xml:space="preserve">
|
||||
<source>Comments on your videos</source>
|
||||
<target state="translated">Kommentare unter deinen Videos</target>
|
||||
@@ -9087,10 +9105,19 @@ The link will expire within 1 hour.</source>
|
||||
<trans-unit id="3755780063671912599" datatype="html" xml:space="preserve">
|
||||
<source>Watched words</source>
|
||||
<target state="translated">Überwachte Wörter</target>
|
||||
|
||||
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin-moderation.component.ts</context><context context-type="linenumber">76</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">127</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-space.component.ts</context><context context-type="linenumber">44</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/admin-moderation.component.ts</context>
|
||||
<context context-type="linenumber">76</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context>
|
||||
<context context-type="linenumber">127</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-video-space.component.ts</context>
|
||||
<context context-type="linenumber">44</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3122686335401195400" datatype="html">
|
||||
<source>Total size</source>
|
||||
<target state="translated">Gesamtgröße</target>
|
||||
@@ -9258,8 +9285,11 @@ The link will expire within 1 hour.</source>
|
||||
<trans-unit id="8098332505860203521" datatype="html" xml:space="preserve">
|
||||
<source>Only display comments with this tag</source>
|
||||
<target state="translated">Zeige nur Kommentare mit diesem Tag</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-comment/video-comment-list-admin-owner.component.html</context><context context-type="linenumber">79</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-video-comment/video-comment-list-admin-owner.component.html</context>
|
||||
<context context-type="linenumber">79</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7266085473379376028" datatype="html">
|
||||
<source>No comments found matching current filters.</source>
|
||||
<target state="translated">Keine Kommentare mit dem derzeitigen Filter gefunden.</target>
|
||||
@@ -10213,8 +10243,11 @@ The link will expire within 1 hour.</source>
|
||||
<trans-unit id="888341446683346521" datatype="html" xml:space="preserve">
|
||||
<source>Start date</source>
|
||||
<target state="translated">Anfangsdatum</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">17</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context>
|
||||
<context context-type="linenumber">17</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1102717806459547726">
|
||||
<source>Refresh</source>
|
||||
<target>Aktualisieren</target>
|
||||
@@ -10258,8 +10291,11 @@ The link will expire within 1 hour.</source>
|
||||
<trans-unit id="5311176376484381099" datatype="html" xml:space="preserve">
|
||||
<source>Log level</source>
|
||||
<target state="translated">Protokollstufe</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">27</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8984988128489304664" datatype="html">
|
||||
<source>Filter logs by tags</source>
|
||||
<target state="translated">Logs nach Tags filtern</target>
|
||||
@@ -10271,8 +10307,11 @@ The link will expire within 1 hour.</source>
|
||||
<trans-unit id="9053612499880707554" datatype="html" xml:space="preserve">
|
||||
<source>Example: ffmpeg, api</source>
|
||||
<target state="translated">Beispiel: ffmpeg, api</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context>
|
||||
<context context-type="linenumber">42</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3894950702316166331" datatype="html">
|
||||
<source>Loading...</source>
|
||||
<target state="translated">Lädt...</target>
|
||||
@@ -10284,13 +10323,19 @@ The link will expire within 1 hour.</source>
|
||||
<trans-unit id="2308490727635384266" datatype="html" xml:space="preserve">
|
||||
<source>Logs copied</source>
|
||||
<target state="translated">Logs kopiert</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context>
|
||||
<context context-type="linenumber">60</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="2064122482972455058" datatype="html" xml:space="preserve">
|
||||
<source>Copy logs</source>
|
||||
<target state="translated">Logs kopieren</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context>
|
||||
<context context-type="linenumber">60</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1570003374195931619" datatype="html">
|
||||
<source>No log.</source>
|
||||
<target state="translated">Kein Log.</target>
|
||||
@@ -14093,9 +14138,15 @@ The link will expire within 1 hour.</source>
|
||||
<trans-unit id="6500762313951857695" datatype="html" xml:space="preserve">
|
||||
<source>{VAR_PLURAL, plural, =0 {No views} =1 {1 view} other {<x id="INTERPOLATION"/> views}}</source>
|
||||
<target state="translated">{VAR_PLURAL, plural, =0 {Keine Aufrufe} =1 {1 Aufruf} other {<x id="INTERPOLATION"/> Aufrufe}}</target>
|
||||
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">59</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context>
|
||||
<context context-type="linenumber">59</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context>
|
||||
<context context-type="linenumber">101</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="9131836378905533756">
|
||||
<source>Created by <x id="INTERPOLATION"/></source>
|
||||
<target>Erstellt von <x id="INTERPOLATION"/></target>
|
||||
@@ -14123,11 +14174,8 @@ The link will expire within 1 hour.</source>
|
||||
<trans-unit id="4781078006040259916" datatype="html" xml:space="preserve">
|
||||
<source>You don't have any video in your watch history yet.</source>
|
||||
<target state="translated">Du hast noch kein Video in deinem Verlauf.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">170</context></context-group></trans-unit>
|
||||
<trans-unit id="989169929300254768" datatype="html">
|
||||
<source>Delete from history</source>
|
||||
<target state="translated">Aus dem Verlauf löschen</target>
|
||||
@@ -14141,7 +14189,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Videoverlauf ist aktiviert</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
<context context-type="linenumber">122</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1869266307786648674" datatype="html">
|
||||
@@ -14149,7 +14197,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Videoverlauf ist deaktiviert</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">120</context>
|
||||
<context context-type="linenumber">123</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7505147502630555700" datatype="html">
|
||||
@@ -14157,23 +14205,20 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Videoverlauf löschen</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">147</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8676027102068252963" datatype="html" xml:space="preserve">
|
||||
<source>Are you sure you want to delete all your video history?</source>
|
||||
<target state="translated">Bist du dir sicher, dass der gesamte Videoverlauf gelöscht werden soll?</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">145</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">148</context></context-group></trans-unit>
|
||||
<trans-unit id="7708910304029766516" datatype="html">
|
||||
<source>Video history deleted</source>
|
||||
<target state="translated">Videoverlauf gelöscht</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">153</context>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3343758569423394070" datatype="html">
|
||||
@@ -14181,7 +14226,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Keine Videos gefunden für "<x id="PH" equiv-text="this.search"/>".</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="687236465759862933" datatype="html" xml:space="preserve">
|
||||
@@ -14232,25 +14277,25 @@ The link will expire within 1 hour.</source>
|
||||
<context context-type="linenumber">11,12</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8627640588059476624" datatype="html">
|
||||
<trans-unit id="8627640588059476624" datatype="html" xml:space="preserve">
|
||||
<source>An editor can manage videos in this channel</source>
|
||||
<target state="new">An editor can manage videos in this channel</target>
|
||||
<target state="translated">Ein Cutter kann Videos in diesem Kanal verwalten</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-main/channel/collaborator-state.component.ts</context>
|
||||
<context context-type="linenumber">25</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3775433842284877534" datatype="html">
|
||||
<trans-unit id="3775433842284877534" datatype="html" xml:space="preserve">
|
||||
<source>Owner of the channel</source>
|
||||
<target state="new">Owner of the channel</target>
|
||||
<target state="translated">Eigentümer des Kanals</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-main/channel/collaborator-state.component.ts</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="2996672568437579118" datatype="html">
|
||||
<trans-unit id="2996672568437579118" datatype="html" xml:space="preserve">
|
||||
<source>Invited to be an editor to manage videos in this channel</source>
|
||||
<target state="new">Invited to be an editor to manage videos in this channel</target>
|
||||
<target state="translated">Eingeladen, ein Cutter zu werden, um Videos in diesem Kanal zu verwalten</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-main/channel/collaborator-state.component.ts</context>
|
||||
<context context-type="linenumber">33</context>
|
||||
@@ -17754,12 +17799,20 @@ The link will expire within 1 hour.</source>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8946368517039712001" datatype="html" xml:space="preserve">
|
||||
<source>This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</source>
|
||||
<target state="translated">Dies (<x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/>) hat keine Einstellungen.</target>
|
||||
<trans-unit id="649873611133633238" datatype="html">
|
||||
<source>This plugin does not have settings.</source>
|
||||
<target state="new">This plugin does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
<context context-type="linenumber">21,22</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5495621331909678720" datatype="html">
|
||||
<source>This theme does not have settings.</source>
|
||||
<target state="new">This theme does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1875025899004073421">
|
||||
@@ -19007,7 +19060,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Mein Verlauf</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">73</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3656932706364053858" datatype="html">
|
||||
@@ -19187,11 +19240,11 @@ The link will expire within 1 hour.</source>
|
||||
<target>Schnittstelleneinstellungen aktualisiert.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">138</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">160</context>
|
||||
<context context-type="linenumber">163</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6784127216978878229" datatype="html" xml:space="preserve">
|
||||
@@ -19609,68 +19662,107 @@ The link will expire within 1 hour.</source>
|
||||
<trans-unit id="2648594810167531503" datatype="html" xml:space="preserve">
|
||||
<source>Editors <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>can:<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source>
|
||||
<target state="translated">Cutter <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>können:<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context><context context-type="linenumber">41</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context>
|
||||
<context context-type="linenumber">41</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3790361059881359024" datatype="html" xml:space="preserve">
|
||||
<source>Publish videos in this channel</source>
|
||||
<target state="translated">Videos in diesen Kanal veröffentlichen</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context><context context-type="linenumber">44</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context>
|
||||
<context context-type="linenumber">44</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="2328126264669408590" datatype="html" xml:space="preserve">
|
||||
<source>Manage, update or delete videos, comments, playlists of this channel</source>
|
||||
<target state="translated">Videos, Kommentare und Wiedergabeliste dieses Kanals verwalten, aktualisieren oder löschen</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context>
|
||||
<context context-type="linenumber">45</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6753681732976615521" datatype="html" xml:space="preserve">
|
||||
<source>Add or delete channel synchronization</source>
|
||||
<target state="translated">Kanalsynchronisation hinzufügen oder löschen</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context>
|
||||
<context context-type="linenumber">46</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8868828786989275402" datatype="html" xml:space="preserve">
|
||||
<source>Update information of this channel (title, description, banner...)</source>
|
||||
<target state="translated">Informationen dieses Kanals aktualisieren (Titel, Beschreibung, Banner, …)</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context>
|
||||
<context context-type="linenumber">47</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="566992019450450500" datatype="html" xml:space="preserve">
|
||||
<source>But editors <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>cannot:<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source>
|
||||
<target state="translated">Aber Cutter <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>können nicht:<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="217345434594735009" datatype="html" xml:space="preserve">
|
||||
<source>Delete the channel</source>
|
||||
<target state="translated">Den Kanal löschen</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context><context context-type="linenumber">53</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context>
|
||||
<context context-type="linenumber">53</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5864968016757262571" datatype="html" xml:space="preserve">
|
||||
<source>Add or remove other editors</source>
|
||||
<target state="translated">Andere Cutter hinzufügen oder entfernen</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context><context context-type="linenumber">54</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context>
|
||||
<context context-type="linenumber">54</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3684779884984833882" datatype="html" xml:space="preserve">
|
||||
<source>Current editors</source>
|
||||
<target state="translated">Aktuelle Cutter</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context>
|
||||
<context context-type="linenumber">58</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5874570330774661733" datatype="html" xml:space="preserve">
|
||||
<source>No editors at the moment</source>
|
||||
<target state="translated">Keine Cutter im Moment</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context><context context-type="linenumber">85</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context>
|
||||
<context context-type="linenumber">85</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7704259175174094901" datatype="html" xml:space="preserve">
|
||||
<source>New editor</source>
|
||||
<target state="translated">Neuer Cutter</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context><context context-type="linenumber">91</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context>
|
||||
<context context-type="linenumber">91</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8488228014293021599" datatype="html" xml:space="preserve">
|
||||
<source>Editor handle</source>
|
||||
<target state="translated">Cutter-Kennung</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context><context context-type="linenumber">93</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context>
|
||||
<context context-type="linenumber">93</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3463797202358605584" datatype="html" xml:space="preserve">
|
||||
<source>Invite</source>
|
||||
<target state="translated">Einladen</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context><context context-type="linenumber">98</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context>
|
||||
<context context-type="linenumber">98</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8065180360788653509" datatype="html" xml:space="preserve">
|
||||
<source>Are you sure you want to remove invitation of <strong><x id="PH" equiv-text="collaborator.account.displayName"/></strong> to collaborate on your channel?</source>
|
||||
<target state="translated">Bist du dir sicher, dass du die Einladung von <strong><x id="PH" equiv-text="collaborator.account.displayName"/></strong>, bei deinen Kanal mitzuwirken, entfernen möchtest?</target>
|
||||
@@ -19722,23 +19814,35 @@ The link will expire within 1 hour.</source>
|
||||
<trans-unit id="1426719913849129925" datatype="html" xml:space="preserve">
|
||||
<source>Create a new channel</source>
|
||||
<target state="translated">Einen neuen Kanal erstellen</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/video-channel-edit.component.html</context><context context-type="linenumber">43</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/video-channel-edit.component.html</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="4866329251811877580" datatype="html" xml:space="preserve">
|
||||
<source>Go to the public page</source>
|
||||
<target state="translated">Zur öffentlichen Seite gehen</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/video-channel-edit.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/video-channel-edit.component.html</context>
|
||||
<context context-type="linenumber">49</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3620188369327429839" datatype="html" xml:space="preserve">
|
||||
<source>Save</source>
|
||||
<target state="translated">Speichern</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/video-channel-edit.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/video-channel-edit.component.html</context>
|
||||
<context context-type="linenumber">60</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="4580094510133881726" datatype="html" xml:space="preserve">
|
||||
<source>There are errors in your channel settings.</source>
|
||||
<target state="translated">Es gibt Fehler in deinen Kanaleinstellungen.</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/video-channel-edit.component.html</context><context context-type="linenumber">71</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/video-channel-edit.component.html</context>
|
||||
<context context-type="linenumber">71</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7589345916094713536">
|
||||
<source>Video channel <x id="PH"/> updated.</source>
|
||||
<target>Videokanal <x id="PH"/> aktualisiert.</target>
|
||||
@@ -20022,13 +20126,19 @@ The link will expire within 1 hour.</source>
|
||||
<trans-unit id="8496409985768674759" datatype="html" xml:space="preserve">
|
||||
<source>Manage my videos</source>
|
||||
<target state="translated">Meine Videos verwalten</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-space.component.ts</context><context context-type="linenumber">31</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-video-space.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1170141381901621610" datatype="html" xml:space="preserve">
|
||||
<source>Comments on my videos</source>
|
||||
<target state="translated">Kommentare zu meinen Videos</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-space.component.ts</context><context context-type="linenumber">40</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-video-space.component.ts</context>
|
||||
<context context-type="linenumber">40</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="2591467977473302125" datatype="html">
|
||||
<source>Videos list</source>
|
||||
<target state="translated">Liste der Videos</target>
|
||||
@@ -20414,11 +20524,23 @@ The link will expire within 1 hour.</source>
|
||||
<trans-unit id="3897348120591552265" datatype="html" xml:space="preserve">
|
||||
<source>Manage</source>
|
||||
<target state="translated">Verwalten</target>
|
||||
|
||||
|
||||
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">64</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context><context context-type="linenumber">130</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+video-list/video-user-subscriptions.component.ts</context><context context-type="linenumber">32</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">474</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context>
|
||||
<context context-type="linenumber">64</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context>
|
||||
<context context-type="linenumber">130</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+video-list/video-user-subscriptions.component.ts</context>
|
||||
<context context-type="linenumber">32</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context>
|
||||
<context context-type="linenumber">474</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3004701943093671049" datatype="html" xml:space="preserve">
|
||||
<source>All channels</source>
|
||||
<target state="translated">Alle Kanäle</target>
|
||||
@@ -20446,16 +20568,16 @@ The link will expire within 1 hour.</source>
|
||||
<trans-unit id="7731752234233950482" datatype="html" xml:space="preserve">
|
||||
<source>Synchronizations</source>
|
||||
<target state="translated">Synchronisationen</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context><context context-type="linenumber">39</context></context-group></trans-unit>
|
||||
<trans-unit id="7607713563510753803" datatype="html" xml:space="preserve">
|
||||
<source>Imports</source>
|
||||
<target state="translated">Importe</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-space.component.ts</context><context context-type="linenumber">61</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-video-space.component.ts</context>
|
||||
<context context-type="linenumber">61</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8936704404804793618" datatype="html">
|
||||
<source>Videos</source>
|
||||
<target state="translated">Videos</target>
|
||||
@@ -21158,9 +21280,9 @@ Stell sicher, dass PeerTube korrekt konfiguriert ist (Ordner config/), speziell
|
||||
<context context-type="linenumber">4</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3803133788917504574" datatype="html">
|
||||
<source> Transcoding is enabled so real videos size can be at most ~ <x id="INTERPOLATION" equiv-text="{{ computeQuotaWithTranscoding() | bytes: 0 }}"/>. </source>
|
||||
<target state="new"> Transcoding is enabled so real videos size can be at most ~ <x id="INTERPOLATION" equiv-text="{{ computeQuotaWithTranscoding() | bytes: 0 }}"/>. </target>
|
||||
<trans-unit id="3803133788917504574" datatype="html" xml:space="preserve">
|
||||
<source>Transcoding is enabled so real videos size can be at most ~ <x id="INTERPOLATION" equiv-text="{{ computeQuotaWithTranscoding() | bytes: 0 }}"/>. </source>
|
||||
<target state="translated">Transkodierung ist aktiviert, damit die reale Videogröße maximal ca. <x id="INTERPOLATION" equiv-text="{{ computeQuotaWithTranscoding() | bytes: 0 }}"/> sein kann. </target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/shared/user-real-quota-info.component.html</context>
|
||||
<context context-type="linenumber">11,12</context>
|
||||
@@ -21355,8 +21477,11 @@ Stell sicher, dass PeerTube korrekt konfiguriert ist (Ordner config/), speziell
|
||||
<trans-unit id="1043265374828694539" datatype="html" xml:space="preserve">
|
||||
<source>Auto tag policies</source>
|
||||
<target state="translated">Richtlinien für automatische Schlagwörter</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-space.component.ts</context><context context-type="linenumber">48</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-video-space.component.ts</context>
|
||||
<context context-type="linenumber">48</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="4930506384627295710" datatype="html">
|
||||
<source>Settings</source>
|
||||
<target state="translated">Einstellungen</target>
|
||||
@@ -23301,9 +23426,15 @@ Stell sicher, dass PeerTube korrekt konfiguriert ist (Ordner config/), speziell
|
||||
<trans-unit id="2271545768110890370" datatype="html" xml:space="preserve">
|
||||
<source><x id="INTERPOLATION" equiv-text="{{ errorRoot.page }}"/> page</source>
|
||||
<target state="translated">Seite <x id="INTERPOLATION" equiv-text="{{ errorRoot.page }}"/></target>
|
||||
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/video-channel-edit.component.html</context><context context-type="linenumber">75</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos-publish-manage/shared-manage/common/manage-errors.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/video-channel-edit.component.html</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+videos-publish-manage/shared-manage/common/manage-errors.component.html</context>
|
||||
<context context-type="linenumber">6</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="2689998308942961784" datatype="html" xml:space="preserve">
|
||||
<source>Create channel</source>
|
||||
<target state="translated">Kanal erstellen</target>
|
||||
@@ -26303,19 +26434,13 @@ Stell sicher, dass PeerTube korrekt konfiguriert ist (Ordner config/), speziell
|
||||
<trans-unit id="5240556993302961443" datatype="html" xml:space="preserve">
|
||||
<source>Save interface settings</source>
|
||||
<target state="translated">Schnittstelleneinstellungen speichern</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">168</context></context-group></trans-unit>
|
||||
<trans-unit id="7570883748440392027" datatype="html" xml:space="preserve">
|
||||
<source><x id="PH" equiv-text="this.instanceName"/> theme</source>
|
||||
<target state="translated"><x id="PH" equiv-text="this.instanceName"/> Thema</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">63</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">64</context></context-group></trans-unit>
|
||||
<trans-unit id="1219783168145776019" datatype="html">
|
||||
<source>LIVE ENDED</source>
|
||||
<target state="translated">Live-Übertragung beendet</target>
|
||||
|
||||
@@ -2558,7 +2558,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6994936570572804302" datatype="html">
|
||||
@@ -3915,12 +3915,12 @@ The link will expire within 1 hour.</target>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="786003471867762836" datatype="html">
|
||||
<source>Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<trans-unit id="8309133070608650316" datatype="html">
|
||||
<source>Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7512666561651719221" datatype="html">
|
||||
@@ -3928,7 +3928,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">You can now <strong>invite other users</strong> to collaborate on your channel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5960096873104755868" datatype="html">
|
||||
@@ -8168,7 +8168,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Manage my channels</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3140041890374956085" datatype="html">
|
||||
@@ -14227,7 +14227,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">You don't have any video in your watch history yet.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="989169929300254768" datatype="html">
|
||||
@@ -14243,7 +14243,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Video history is enabled</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
<context context-type="linenumber">122</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1869266307786648674" datatype="html">
|
||||
@@ -14251,7 +14251,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Video history is disabled</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">120</context>
|
||||
<context context-type="linenumber">123</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7505147502630555700" datatype="html">
|
||||
@@ -14259,7 +14259,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Delete video history</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">147</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8676027102068252963" datatype="html">
|
||||
@@ -14267,7 +14267,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Are you sure you want to delete all your video history?</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">145</context>
|
||||
<context context-type="linenumber">148</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7708910304029766516" datatype="html">
|
||||
@@ -14275,7 +14275,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Video history deleted</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">153</context>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3343758569423394070" datatype="html">
|
||||
@@ -14283,7 +14283,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">No videos found for "<x id="PH" equiv-text="this.search"/>".</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="687236465759862933" datatype="html">
|
||||
@@ -17885,12 +17885,20 @@ The link will expire within 1 hour.</target>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8946368517039712001" datatype="html">
|
||||
<source>This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</source>
|
||||
<target state="new">This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</target>
|
||||
<trans-unit id="649873611133633238" datatype="html">
|
||||
<source>This plugin does not have settings.</source>
|
||||
<target state="new">This plugin does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
<context context-type="linenumber">21,22</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5495621331909678720" datatype="html">
|
||||
<source>This theme does not have settings.</source>
|
||||
<target state="new">This theme does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1875025899004073421">
|
||||
@@ -19148,7 +19156,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="translated">Το ιστορικό μου</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">73</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3656932706364053858" datatype="html">
|
||||
@@ -19328,11 +19336,11 @@ The link will expire within 1 hour.</target>
|
||||
<target>Οι ρυθμίσεις περιβάλλοντος χρήσης ενημερώθηκαν.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">138</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">160</context>
|
||||
<context context-type="linenumber">163</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6784127216978878229" datatype="html">
|
||||
@@ -20668,7 +20676,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Synchronizations</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7607713563510753803" datatype="html">
|
||||
@@ -26574,7 +26582,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">Save interface settings</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
<context context-type="linenumber">168</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7570883748440392027" datatype="html">
|
||||
@@ -26582,7 +26590,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new"><x id="PH" equiv-text="this.instanceName"/> theme</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">63</context>
|
||||
<context context-type="linenumber">64</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1219783168145776019" datatype="html">
|
||||
|
||||
@@ -2558,7 +2558,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6994936570572804302" datatype="html">
|
||||
@@ -3909,12 +3909,12 @@ The link will expire within 1 hour.</target>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="786003471867762836" datatype="html">
|
||||
<source>Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="final">Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<trans-unit id="8309133070608650316" datatype="html">
|
||||
<source>Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="final">Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7512666561651719221" datatype="html">
|
||||
@@ -3922,7 +3922,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="final">You can now <strong>invite other users</strong> to collaborate on your channel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5960096873104755868" datatype="html">
|
||||
@@ -8142,7 +8142,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="final">Manage my channels</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3140041890374956085" datatype="html">
|
||||
@@ -14206,7 +14206,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="final">You don't have any video in your watch history yet.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="989169929300254768" datatype="html">
|
||||
@@ -14222,7 +14222,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="final">Video history is enabled</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
<context context-type="linenumber">122</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1869266307786648674" datatype="html">
|
||||
@@ -14230,7 +14230,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="final">Video history is disabled</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">120</context>
|
||||
<context context-type="linenumber">123</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7505147502630555700" datatype="html">
|
||||
@@ -14238,7 +14238,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="final">Delete video history</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">147</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8676027102068252963" datatype="html">
|
||||
@@ -14246,7 +14246,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="final">Are you sure you want to delete all your video history?</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">145</context>
|
||||
<context context-type="linenumber">148</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7708910304029766516" datatype="html">
|
||||
@@ -14254,7 +14254,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="final">Video history deleted</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">153</context>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3343758569423394070" datatype="html">
|
||||
@@ -14262,7 +14262,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="final">No videos found for "<x id="PH" equiv-text="this.search"/>".</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="687236465759862933" datatype="html">
|
||||
@@ -17861,12 +17861,20 @@ The link will expire within 1 hour.</target>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8946368517039712001" datatype="html">
|
||||
<source>This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</source>
|
||||
<target state="final">This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</target>
|
||||
<trans-unit id="649873611133633238" datatype="html">
|
||||
<source>This plugin does not have settings.</source>
|
||||
<target state="final">This plugin does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
<context context-type="linenumber">21,22</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5495621331909678720" datatype="html">
|
||||
<source>This theme does not have settings.</source>
|
||||
<target state="final">This theme does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1875025899004073421" datatype="html">
|
||||
@@ -19114,7 +19122,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="final">My watch history</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">73</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3656932706364053858" datatype="html">
|
||||
@@ -19294,11 +19302,11 @@ The link will expire within 1 hour.</target>
|
||||
<target state="final">Interface settings updated.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">138</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">160</context>
|
||||
<context context-type="linenumber">163</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6784127216978878229" datatype="html">
|
||||
@@ -20622,7 +20630,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="final">Synchronizations</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7607713563510753803" datatype="html">
|
||||
@@ -26519,7 +26527,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="final">Save interface settings</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
<context context-type="linenumber">168</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7570883748440392027" datatype="html">
|
||||
@@ -26527,7 +26535,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="final"><x id="PH" equiv-text="this.instanceName"/> theme</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">63</context>
|
||||
<context context-type="linenumber">64</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1219783168145776019" datatype="html">
|
||||
|
||||
@@ -2401,7 +2401,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6994936570572804302" datatype="html">
|
||||
@@ -3747,12 +3747,12 @@ The link will expire within 1 hour.</source>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="786003471867762836" datatype="html">
|
||||
<source>Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<trans-unit id="8309133070608650316" datatype="html">
|
||||
<source>Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7512666561651719221" datatype="html">
|
||||
@@ -3760,7 +3760,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">You can now <strong>invite other users</strong> to collaborate on your channel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5960096873104755868" datatype="html">
|
||||
@@ -7981,7 +7981,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Manage my channels</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3140041890374956085" datatype="html">
|
||||
@@ -14034,7 +14034,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Vi ankoraŭ havas neniun filmon en via historio de spektado.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="989169929300254768" datatype="html">
|
||||
@@ -14050,7 +14050,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Video history is enabled</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
<context context-type="linenumber">122</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1869266307786648674" datatype="html">
|
||||
@@ -14058,7 +14058,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Video history is disabled</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">120</context>
|
||||
<context context-type="linenumber">123</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7505147502630555700" datatype="html">
|
||||
@@ -14066,7 +14066,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Delete video history</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">147</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8676027102068252963" datatype="html">
|
||||
@@ -14074,7 +14074,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Are you sure you want to delete all your video history?</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">145</context>
|
||||
<context context-type="linenumber">148</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7708910304029766516" datatype="html">
|
||||
@@ -14082,7 +14082,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Video history deleted</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">153</context>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3343758569423394070" datatype="html">
|
||||
@@ -14090,7 +14090,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">No videos found for "<x id="PH" equiv-text="this.search"/>".</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="687236465759862933" datatype="html">
|
||||
@@ -17663,12 +17663,20 @@ The link will expire within 1 hour.</source>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8946368517039712001" datatype="html">
|
||||
<source>This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</source>
|
||||
<target state="new">This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</target>
|
||||
<trans-unit id="649873611133633238" datatype="html">
|
||||
<source>This plugin does not have settings.</source>
|
||||
<target state="new">This plugin does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
<context context-type="linenumber">21,22</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5495621331909678720" datatype="html">
|
||||
<source>This theme does not have settings.</source>
|
||||
<target state="new">This theme does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1875025899004073421">
|
||||
@@ -18916,7 +18924,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Historio de mia spektado</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">73</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3656932706364053858" datatype="html">
|
||||
@@ -19096,11 +19104,11 @@ The link will expire within 1 hour.</source>
|
||||
<target>Agordoj de fasado ĝisdatiĝis.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">138</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">160</context>
|
||||
<context context-type="linenumber">163</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6784127216978878229" datatype="html">
|
||||
@@ -20426,7 +20434,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Synchronizations</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7607713563510753803" datatype="html">
|
||||
@@ -26296,7 +26304,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">Save interface settings</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
<context context-type="linenumber">168</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7570883748440392027" datatype="html">
|
||||
@@ -26304,7 +26312,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new"><x id="PH" equiv-text="this.instanceName"/> theme</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">63</context>
|
||||
<context context-type="linenumber">64</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1219783168145776019" datatype="html">
|
||||
|
||||
@@ -2174,7 +2174,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6994936570572804302" datatype="html">
|
||||
@@ -3447,12 +3447,12 @@ The link will expire within 1 hour.</source>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="786003471867762836" datatype="html">
|
||||
<source>Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<trans-unit id="8309133070608650316" datatype="html">
|
||||
<source>Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7512666561651719221" datatype="html">
|
||||
@@ -3460,7 +3460,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">You can now <strong>invite other users</strong> to collaborate on your channel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5960096873104755868" datatype="html" xml:space="preserve">
|
||||
@@ -7199,11 +7199,8 @@ The link will expire within 1 hour.</source>
|
||||
<trans-unit id="913810105049472842" datatype="html" xml:space="preserve">
|
||||
<source>Manage my channels</source>
|
||||
<target state="translated">Gestionar mis canales</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context><context context-type="linenumber">31</context></context-group></trans-unit>
|
||||
<trans-unit id="3140041890374956085" datatype="html" xml:space="preserve">
|
||||
<source>Comments on your videos</source>
|
||||
<target state="translated">Comentarios en tus vídeos</target>
|
||||
@@ -12726,7 +12723,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Aún no tienes ningún video en tu historial de reproducciones.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="989169929300254768" datatype="html">
|
||||
@@ -12742,7 +12739,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">El historial de video está habilitado</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
<context context-type="linenumber">122</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1869266307786648674" datatype="html">
|
||||
@@ -12750,7 +12747,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">El historial de video está deshabilitado</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">120</context>
|
||||
<context context-type="linenumber">123</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7505147502630555700" datatype="html">
|
||||
@@ -12758,7 +12755,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Eliminar historial de video</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">147</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8676027102068252963" datatype="html">
|
||||
@@ -12766,7 +12763,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">¿Seguro que quieres eliminar todo tu historial de vídeo?</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">145</context>
|
||||
<context context-type="linenumber">148</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7708910304029766516" datatype="html">
|
||||
@@ -12774,7 +12771,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Historial de video eliminado</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">153</context>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3343758569423394070" datatype="html">
|
||||
@@ -12782,7 +12779,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">No se encontraron videos para "<x id="PH" equiv-text="this.search"/>".</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="687236465759862933" datatype="html">
|
||||
@@ -16163,12 +16160,20 @@ The link will expire within 1 hour.</source>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8946368517039712001" datatype="html">
|
||||
<source>This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</source>
|
||||
<target state="new">This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</target>
|
||||
<trans-unit id="649873611133633238" datatype="html">
|
||||
<source>This plugin does not have settings.</source>
|
||||
<target state="new">This plugin does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
<context context-type="linenumber">21,22</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5495621331909678720" datatype="html">
|
||||
<source>This theme does not have settings.</source>
|
||||
<target state="new">This theme does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1875025899004073421" datatype="html">
|
||||
@@ -17401,7 +17406,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Mi historial de visionado</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">73</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3656932706364053858" datatype="html">
|
||||
@@ -17578,11 +17583,11 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Configuración de la interfaz actualizada.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">138</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">160</context>
|
||||
<context context-type="linenumber">163</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6784127216978878229" datatype="html">
|
||||
@@ -18860,11 +18865,8 @@ The link will expire within 1 hour.</source>
|
||||
<trans-unit id="7731752234233950482" datatype="html" xml:space="preserve">
|
||||
<source>Synchronizations</source>
|
||||
<target state="translated">Sincronizaciones</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context><context context-type="linenumber">39</context></context-group></trans-unit>
|
||||
<trans-unit id="7607713563510753803" datatype="html" xml:space="preserve">
|
||||
<source>Imports</source>
|
||||
<target state="translated">Importa</target>
|
||||
@@ -24589,12 +24591,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<source>Save interface settings</source>
|
||||
<target state="translated">Guardar los ajustes de la interfaz</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">165</context></context-group></trans-unit>
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">168</context></context-group></trans-unit>
|
||||
<trans-unit id="7570883748440392027" datatype="html" xml:space="preserve">
|
||||
<source><x id="PH" equiv-text="this.instanceName"/> theme</source>
|
||||
<target state="translated"><x id="PH" equiv-text="this.instanceName"/> tema</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">63</context></context-group></trans-unit>
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">64</context></context-group></trans-unit>
|
||||
<trans-unit id="1219783168145776019" datatype="html">
|
||||
<source>LIVE ENDED</source>
|
||||
<target state="translated">DIRECTO TERMINADO</target>
|
||||
|
||||
@@ -2344,7 +2344,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6994936570572804302" datatype="html">
|
||||
@@ -3685,12 +3685,12 @@ The link will expire within 1 hour.</source>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="786003471867762836" datatype="html">
|
||||
<source>Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<trans-unit id="8309133070608650316" datatype="html">
|
||||
<source>Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7512666561651719221" datatype="html">
|
||||
@@ -3698,7 +3698,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">You can now <strong>invite other users</strong> to collaborate on your channel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5960096873104755868" datatype="html" xml:space="preserve">
|
||||
@@ -7863,7 +7863,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Manage my channels</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3140041890374956085" datatype="html">
|
||||
@@ -13837,7 +13837,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Oraindik ez duzu bideorik ikusitakoen historian.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="989169929300254768" datatype="html">
|
||||
@@ -13853,7 +13853,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Bideoen historia gaituta dago</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
<context context-type="linenumber">122</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1869266307786648674" datatype="html">
|
||||
@@ -13861,7 +13861,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Bideoen historia desgaituta dago</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">120</context>
|
||||
<context context-type="linenumber">123</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7505147502630555700" datatype="html">
|
||||
@@ -13869,7 +13869,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Ezabatu bideoen historia</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">147</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8676027102068252963" datatype="html">
|
||||
@@ -13877,7 +13877,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Ziur bideoen historia osoa ezabatu nahi duzula?</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">145</context>
|
||||
<context context-type="linenumber">148</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7708910304029766516" datatype="html">
|
||||
@@ -13885,7 +13885,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Bideoen historia ezabatu da</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">153</context>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3343758569423394070" datatype="html">
|
||||
@@ -13893,7 +13893,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Ez aurkitu bideorik "<x id="PH" equiv-text="this.search"/>" bilaketarako.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="687236465759862933" datatype="html">
|
||||
@@ -17365,12 +17365,20 @@ The link will expire within 1 hour.</source>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8946368517039712001" datatype="html">
|
||||
<source>This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</source>
|
||||
<target state="new">This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</target>
|
||||
<trans-unit id="649873611133633238" datatype="html">
|
||||
<source>This plugin does not have settings.</source>
|
||||
<target state="new">This plugin does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
<context context-type="linenumber">21,22</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5495621331909678720" datatype="html">
|
||||
<source>This theme does not have settings.</source>
|
||||
<target state="new">This theme does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1875025899004073421" datatype="html">
|
||||
@@ -18585,7 +18593,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Nire ikusitakoen historia</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">73</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3656932706364053858" datatype="html">
|
||||
@@ -18759,11 +18767,11 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Interfazearen ezarpenak eguneratu dira.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">138</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">160</context>
|
||||
<context context-type="linenumber">163</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6784127216978878229" datatype="html">
|
||||
@@ -20086,7 +20094,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Synchronizations</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7607713563510753803" datatype="html">
|
||||
@@ -25876,13 +25884,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<source>Save interface settings</source>
|
||||
<target state="translated">Gorde interfazearen ezarpenak</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">165</context></context-group></trans-unit>
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">168</context></context-group></trans-unit>
|
||||
<trans-unit id="7570883748440392027" datatype="html">
|
||||
<source><x id="PH" equiv-text="this.instanceName"/> theme</source>
|
||||
<target state="new"><x id="PH" equiv-text="this.instanceName"/> theme</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">63</context>
|
||||
<context context-type="linenumber">64</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1219783168145776019" datatype="html">
|
||||
|
||||
@@ -2505,7 +2505,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6994936570572804302" datatype="html">
|
||||
@@ -3847,12 +3847,12 @@ The link will expire within 1 hour.</source>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="786003471867762836" datatype="html">
|
||||
<source>Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<trans-unit id="8309133070608650316" datatype="html">
|
||||
<source>Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7512666561651719221" datatype="html">
|
||||
@@ -3860,7 +3860,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">You can now <strong>invite other users</strong> to collaborate on your channel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5960096873104755868" datatype="html">
|
||||
@@ -8004,7 +8004,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Manage my channels</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3140041890374956085" datatype="html">
|
||||
@@ -14008,7 +14008,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">شما سابقه مشاهده هیچ ویدئویی را ندارید.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="989169929300254768" datatype="html">
|
||||
@@ -14024,7 +14024,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">تاریخچه مشاهده ویدئو فعال است</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
<context context-type="linenumber">122</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1869266307786648674" datatype="html">
|
||||
@@ -14032,7 +14032,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">تاریخچه مشاهده ویدئو غیرفعال است</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">120</context>
|
||||
<context context-type="linenumber">123</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7505147502630555700" datatype="html">
|
||||
@@ -14040,7 +14040,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">حذف تاریخچه مشاهده ویدئو</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">147</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8676027102068252963" datatype="html">
|
||||
@@ -14048,7 +14048,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">آیا از حذف تمام تاریخچه مشاهده ویدئوی خود اطمینان دارید؟</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">145</context>
|
||||
<context context-type="linenumber">148</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7708910304029766516" datatype="html">
|
||||
@@ -14056,7 +14056,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">تاریخچه مشاهده ویدئو حذف شد</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">153</context>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3343758569423394070" datatype="html">
|
||||
@@ -14064,7 +14064,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">هیچ ویدئویی براساس "<x id="PH" equiv-text="this.search"/>" یافت نشد.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="687236465759862933" datatype="html">
|
||||
@@ -17613,12 +17613,20 @@ The link will expire within 1 hour.</source>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8946368517039712001" datatype="html">
|
||||
<source>This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</source>
|
||||
<target state="new">This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</target>
|
||||
<trans-unit id="649873611133633238" datatype="html">
|
||||
<source>This plugin does not have settings.</source>
|
||||
<target state="new">This plugin does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
<context context-type="linenumber">21,22</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5495621331909678720" datatype="html">
|
||||
<source>This theme does not have settings.</source>
|
||||
<target state="new">This theme does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1875025899004073421" datatype="html">
|
||||
@@ -18866,7 +18874,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">تاریخچه مشاهده من</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">73</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3656932706364053858" datatype="html">
|
||||
@@ -19046,11 +19054,11 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">تنظیمات رابط کاربری به روز شد.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">138</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">160</context>
|
||||
<context context-type="linenumber">163</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6784127216978878229" datatype="html">
|
||||
@@ -20371,7 +20379,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Synchronizations</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7607713563510753803" datatype="html">
|
||||
@@ -26152,13 +26160,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<source>Save interface settings</source>
|
||||
<target state="translated">ذخیره تنظیمات رابط کاربری</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">165</context></context-group></trans-unit>
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">168</context></context-group></trans-unit>
|
||||
<trans-unit id="7570883748440392027" datatype="html">
|
||||
<source><x id="PH" equiv-text="this.instanceName"/> theme</source>
|
||||
<target state="new"><x id="PH" equiv-text="this.instanceName"/> theme</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">63</context>
|
||||
<context context-type="linenumber">64</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1219783168145776019" datatype="html">
|
||||
|
||||
@@ -2365,7 +2365,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6994936570572804302" datatype="html">
|
||||
@@ -3691,12 +3691,12 @@ The link will expire within 1 hour.</source>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="786003471867762836" datatype="html">
|
||||
<source>Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<trans-unit id="8309133070608650316" datatype="html">
|
||||
<source>Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7512666561651719221" datatype="html">
|
||||
@@ -3704,7 +3704,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">You can now <strong>invite other users</strong> to collaborate on your channel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5960096873104755868" datatype="html" xml:space="preserve">
|
||||
@@ -7556,7 +7556,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Manage my channels</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3140041890374956085" datatype="html" xml:space="preserve">
|
||||
@@ -13179,7 +13179,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Sinulla ei ole vielä yhtään videota katseluhistoriassasi.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="989169929300254768" datatype="html">
|
||||
@@ -13195,7 +13195,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Videohistoria on käytössä</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
<context context-type="linenumber">122</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1869266307786648674" datatype="html">
|
||||
@@ -13203,7 +13203,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Videohistoria pois käytöstä</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">120</context>
|
||||
<context context-type="linenumber">123</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7505147502630555700" datatype="html">
|
||||
@@ -13211,7 +13211,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Poista videohistoria</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">147</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8676027102068252963" datatype="html">
|
||||
@@ -13219,7 +13219,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Haluatko varmasti poistaa koko videohistoriasi?</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">145</context>
|
||||
<context context-type="linenumber">148</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7708910304029766516" datatype="html">
|
||||
@@ -13227,7 +13227,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Videohistoria poistettu</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">153</context>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3343758569423394070" datatype="html">
|
||||
@@ -13235,7 +13235,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Ei videoita haulle "<x id="PH" equiv-text="this.search"/>".</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="687236465759862933" datatype="html">
|
||||
@@ -16522,12 +16522,20 @@ The link will expire within 1 hour.</source>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8946368517039712001" datatype="html">
|
||||
<source>This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</source>
|
||||
<target state="new">This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</target>
|
||||
<trans-unit id="649873611133633238" datatype="html">
|
||||
<source>This plugin does not have settings.</source>
|
||||
<target state="new">This plugin does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
<context context-type="linenumber">21,22</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5495621331909678720" datatype="html">
|
||||
<source>This theme does not have settings.</source>
|
||||
<target state="new">This theme does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1875025899004073421">
|
||||
@@ -17634,7 +17642,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Katseluhistoriani</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">73</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3656932706364053858" datatype="html" xml:space="preserve">
|
||||
@@ -17805,11 +17813,11 @@ The link will expire within 1 hour.</source>
|
||||
<target>Käyttöliittymäasetukset päivitetty.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">138</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">160</context>
|
||||
<context context-type="linenumber">163</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6784127216978878229" datatype="html">
|
||||
@@ -19079,7 +19087,7 @@ The link will expire within 1 hour.</source>
|
||||
<source>Synchronizations</source>
|
||||
<target state="translated">Synkronisaatiot</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context><context context-type="linenumber">35</context></context-group></trans-unit>
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context><context context-type="linenumber">39</context></context-group></trans-unit>
|
||||
<trans-unit id="7607713563510753803" datatype="html" xml:space="preserve">
|
||||
<source>Imports</source>
|
||||
<target state="translated">Tuonnit</target>
|
||||
@@ -24617,12 +24625,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<source>Save interface settings</source>
|
||||
<target state="translated">Tallenna asetukset</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">165</context></context-group></trans-unit>
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">168</context></context-group></trans-unit>
|
||||
<trans-unit id="7570883748440392027" datatype="html" xml:space="preserve">
|
||||
<source><x id="PH" equiv-text="this.instanceName"/> theme</source>
|
||||
<target state="translated"><x id="PH" equiv-text="this.instanceName"/> teema</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">63</context></context-group></trans-unit>
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">64</context></context-group></trans-unit>
|
||||
<trans-unit id="1219783168145776019" datatype="html">
|
||||
<source>LIVE ENDED</source>
|
||||
<target state="translated">LIVE PÄÄTTYI</target>
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -2293,7 +2293,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6994936570572804302" datatype="html">
|
||||
@@ -3635,12 +3635,12 @@ The link will expire within 1 hour.</source>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="786003471867762836" datatype="html">
|
||||
<source>Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<trans-unit id="8309133070608650316" datatype="html">
|
||||
<source>Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7512666561651719221" datatype="html">
|
||||
@@ -3648,7 +3648,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">You can now <strong>invite other users</strong> to collaborate on your channel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5960096873104755868" datatype="html">
|
||||
@@ -7810,7 +7810,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Manage my channels</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3140041890374956085" datatype="html">
|
||||
@@ -13846,7 +13846,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Chan eil video agad fhathast air eachdraidh de na choimhead thu air.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="989169929300254768" datatype="html">
|
||||
@@ -13862,7 +13862,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Tha eachdraidh nam videothan an comas</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
<context context-type="linenumber">122</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1869266307786648674" datatype="html">
|
||||
@@ -13870,7 +13870,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Tha eachdraidh nam videothan à comas</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">120</context>
|
||||
<context context-type="linenumber">123</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7505147502630555700" datatype="html">
|
||||
@@ -13878,7 +13878,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Sguab às eachdraidh nam videothan</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">147</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8676027102068252963" datatype="html">
|
||||
@@ -13886,7 +13886,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">A bheil thu cinnteach gu bheil thu airson eachdraidh shlàn nam videothan agad a sguabadh às?</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">145</context>
|
||||
<context context-type="linenumber">148</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7708910304029766516" datatype="html">
|
||||
@@ -13894,7 +13894,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Chaidh eachdraidh nam videothan a sguabadh às</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">153</context>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3343758569423394070" datatype="html">
|
||||
@@ -13902,7 +13902,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Cha deach video a lorg airson “<x id="PH" equiv-text="this.search"/>”.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="687236465759862933" datatype="html">
|
||||
@@ -17426,12 +17426,20 @@ The link will expire within 1 hour.</source>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8946368517039712001" datatype="html">
|
||||
<source>This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</source>
|
||||
<target state="new">This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</target>
|
||||
<trans-unit id="649873611133633238" datatype="html">
|
||||
<source>This plugin does not have settings.</source>
|
||||
<target state="new">This plugin does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
<context context-type="linenumber">21,22</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5495621331909678720" datatype="html">
|
||||
<source>This theme does not have settings.</source>
|
||||
<target state="new">This theme does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1875025899004073421" datatype="html">
|
||||
@@ -18670,7 +18678,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Eachdraidh dhe na choimhead mi air</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">73</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3656932706364053858" datatype="html">
|
||||
@@ -18850,11 +18858,11 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Chaidh roghainnean na h-eadar-aghaidh ùrachadh.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">138</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">160</context>
|
||||
<context context-type="linenumber">163</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6784127216978878229" datatype="html">
|
||||
@@ -20178,7 +20186,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Synchronizations</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7607713563510753803" datatype="html">
|
||||
@@ -26010,7 +26018,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">Save interface settings</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
<context context-type="linenumber">168</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7570883748440392027" datatype="html">
|
||||
@@ -26018,7 +26026,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new"><x id="PH" equiv-text="this.instanceName"/> theme</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">63</context>
|
||||
<context context-type="linenumber">64</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1219783168145776019" datatype="html">
|
||||
|
||||
@@ -2325,7 +2325,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6994936570572804302" datatype="html">
|
||||
@@ -3649,12 +3649,12 @@ The link will expire within 1 hour.</source>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="786003471867762836" datatype="html">
|
||||
<source>Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<trans-unit id="8309133070608650316" datatype="html">
|
||||
<source>Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7512666561651719221" datatype="html">
|
||||
@@ -3662,7 +3662,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">You can now <strong>invite other users</strong> to collaborate on your channel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5960096873104755868" datatype="html" xml:space="preserve">
|
||||
@@ -7664,7 +7664,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Manage my channels</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3140041890374956085" datatype="html" xml:space="preserve">
|
||||
@@ -13399,7 +13399,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Aínda non tes vídeos no teu historial de visualización.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="989169929300254768" datatype="html">
|
||||
@@ -13415,7 +13415,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Activado o historial do vídeo</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
<context context-type="linenumber">122</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1869266307786648674" datatype="html">
|
||||
@@ -13423,7 +13423,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Historial do vídeo desactivado</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">120</context>
|
||||
<context context-type="linenumber">123</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7505147502630555700" datatype="html">
|
||||
@@ -13431,7 +13431,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Eliminar historial do vídeo</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">147</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8676027102068252963" datatype="html">
|
||||
@@ -13439,7 +13439,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Tes a certeza de querer eliminar todo o historial do vídeo?</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">145</context>
|
||||
<context context-type="linenumber">148</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7708910304029766516" datatype="html">
|
||||
@@ -13447,7 +13447,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Eliminado o historial do vídeo</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">153</context>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3343758569423394070" datatype="html">
|
||||
@@ -13455,7 +13455,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Non hai vídeos con "<x id="PH" equiv-text="this.search"/>".</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="687236465759862933" datatype="html">
|
||||
@@ -16900,12 +16900,20 @@ The link will expire within 1 hour.</source>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8946368517039712001" datatype="html">
|
||||
<source>This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</source>
|
||||
<target state="new">This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</target>
|
||||
<trans-unit id="649873611133633238" datatype="html">
|
||||
<source>This plugin does not have settings.</source>
|
||||
<target state="new">This plugin does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
<context context-type="linenumber">21,22</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5495621331909678720" datatype="html">
|
||||
<source>This theme does not have settings.</source>
|
||||
<target state="new">This theme does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1875025899004073421" datatype="html">
|
||||
@@ -18103,7 +18111,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">O meu historial</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">73</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3656932706364053858" datatype="html">
|
||||
@@ -18274,11 +18282,11 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Actualizados os axustes da interface.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">138</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">160</context>
|
||||
<context context-type="linenumber">163</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6784127216978878229" datatype="html">
|
||||
@@ -19541,11 +19549,8 @@ The link will expire within 1 hour.</source>
|
||||
<trans-unit id="7731752234233950482" datatype="html" xml:space="preserve">
|
||||
<source>Synchronizations</source>
|
||||
<target state="translated">Sincronizacións</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context><context context-type="linenumber">39</context></context-group></trans-unit>
|
||||
<trans-unit id="7607713563510753803" datatype="html" xml:space="preserve">
|
||||
<source>Imports</source>
|
||||
<target state="translated">Importacións</target>
|
||||
@@ -25152,12 +25157,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<source>Save interface settings</source>
|
||||
<target state="translated">Gardar axustes da interface</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">165</context></context-group></trans-unit>
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">168</context></context-group></trans-unit>
|
||||
<trans-unit id="7570883748440392027" datatype="html" xml:space="preserve">
|
||||
<source><x id="PH" equiv-text="this.instanceName"/> theme</source>
|
||||
<target state="translated">Decorado <x id="PH" equiv-text="this.instanceName"/></target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">63</context></context-group></trans-unit>
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">64</context></context-group></trans-unit>
|
||||
<trans-unit id="1219783168145776019" datatype="html">
|
||||
<source>LIVE ENDED</source>
|
||||
<target state="translated">REMATOU O DIRECTO</target>
|
||||
|
||||
@@ -1845,7 +1845,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="9031514421077169181" datatype="html">
|
||||
@@ -8119,12 +8119,20 @@
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8946368517039712001" datatype="html">
|
||||
<source>This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</source>
|
||||
<target state="new">This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</target>
|
||||
<trans-unit id="649873611133633238" datatype="html">
|
||||
<source>This plugin does not have settings.</source>
|
||||
<target state="new">This plugin does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
<context context-type="linenumber">21,22</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5495621331909678720" datatype="html">
|
||||
<source>This theme does not have settings.</source>
|
||||
<target state="new">This theme does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8854094932942190741" datatype="html">
|
||||
@@ -14904,7 +14912,7 @@
|
||||
<target state="new">Save interface settings</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
<context context-type="linenumber">168</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7570883748440392027" datatype="html">
|
||||
@@ -14912,7 +14920,7 @@
|
||||
<target state="new"><x id="PH" equiv-text="this.instanceName"/> theme</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">63</context>
|
||||
<context context-type="linenumber">64</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6048892649018070225" datatype="html">
|
||||
@@ -20390,11 +20398,11 @@ The link will expire within 1 hour.</source>
|
||||
<target/>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">138</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">160</context>
|
||||
<context context-type="linenumber">163</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6784127216978878229" datatype="html">
|
||||
@@ -21001,12 +21009,12 @@ The link will expire within 1 hour.</source>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="786003471867762836" datatype="html">
|
||||
<source>Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<trans-unit id="8309133070608650316" datatype="html">
|
||||
<source>Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7512666561651719221" datatype="html">
|
||||
@@ -21014,7 +21022,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">You can now <strong>invite other users</strong> to collaborate on your channel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8948444690892731948" datatype="html">
|
||||
@@ -23446,7 +23454,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">Manage my channels</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7731752234233950482" datatype="html">
|
||||
@@ -23454,7 +23462,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">Synchronizations</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="2521678336272309407" datatype="html">
|
||||
@@ -25190,7 +25198,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">My watch history</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">73</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="111295045776045026" datatype="html">
|
||||
@@ -25198,7 +25206,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">Video history is enabled</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
<context context-type="linenumber">122</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1869266307786648674" datatype="html">
|
||||
@@ -25206,7 +25214,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">Video history is disabled</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">120</context>
|
||||
<context context-type="linenumber">123</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7505147502630555700" datatype="html">
|
||||
@@ -25214,7 +25222,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">Delete video history</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">147</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8676027102068252963" datatype="html">
|
||||
@@ -25222,7 +25230,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">Are you sure you want to delete all your video history?</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">145</context>
|
||||
<context context-type="linenumber">148</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7708910304029766516" datatype="html">
|
||||
@@ -25230,7 +25238,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">Video history deleted</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">153</context>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3343758569423394070" datatype="html">
|
||||
@@ -25238,7 +25246,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">No videos found for "<x id="PH" equiv-text="this.search"/>".</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="4781078006040259916" datatype="html">
|
||||
@@ -25246,7 +25254,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">You don't have any video in your watch history yet.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6700357678556223012" datatype="html">
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -2426,7 +2426,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6994936570572804302" datatype="html">
|
||||
@@ -3762,12 +3762,12 @@ The link will expire within 1 hour.</source>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="786003471867762836" datatype="html">
|
||||
<source>Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<trans-unit id="8309133070608650316" datatype="html">
|
||||
<source>Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7512666561651719221" datatype="html">
|
||||
@@ -3775,7 +3775,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">You can now <strong>invite other users</strong> to collaborate on your channel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5960096873104755868" datatype="html" xml:space="preserve">
|
||||
@@ -7785,7 +7785,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Manage my channels</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3140041890374956085" datatype="html" xml:space="preserve">
|
||||
@@ -13637,7 +13637,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Még nincs videó a megnézettek közt.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="989169929300254768" datatype="html">
|
||||
@@ -13653,7 +13653,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Videóelőzmények engedélyezve</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
<context context-type="linenumber">122</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1869266307786648674" datatype="html">
|
||||
@@ -13661,7 +13661,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Videóelőzmények letiltva</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">120</context>
|
||||
<context context-type="linenumber">123</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7505147502630555700" datatype="html">
|
||||
@@ -13669,7 +13669,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Videóelőzmények törlése</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">147</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8676027102068252963" datatype="html">
|
||||
@@ -13677,7 +13677,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Biztosan törli az összes videóelőzményét?</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">145</context>
|
||||
<context context-type="linenumber">148</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7708910304029766516" datatype="html">
|
||||
@@ -13685,7 +13685,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Videóelőzmények törölve</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">153</context>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3343758569423394070" datatype="html">
|
||||
@@ -13693,7 +13693,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Nem található videó erre: "<x id="PH" equiv-text="this.search"/>".</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="687236465759862933" datatype="html">
|
||||
@@ -17282,12 +17282,20 @@ The link will expire within 1 hour.</source>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8946368517039712001" datatype="html">
|
||||
<source>This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</source>
|
||||
<target state="new">This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</target>
|
||||
<trans-unit id="649873611133633238" datatype="html">
|
||||
<source>This plugin does not have settings.</source>
|
||||
<target state="new">This plugin does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
<context context-type="linenumber">21,22</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5495621331909678720" datatype="html">
|
||||
<source>This theme does not have settings.</source>
|
||||
<target state="new">This theme does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1875025899004073421" datatype="html">
|
||||
@@ -18534,7 +18542,7 @@ The link will expire within 1 hour.</source>
|
||||
<source>My watch history</source>
|
||||
<target state="translated">Megtekintési előzmények</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">73</context></context-group></trans-unit>
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">75</context></context-group></trans-unit>
|
||||
<trans-unit id="3656932706364053858" datatype="html">
|
||||
<source>Track watch history</source>
|
||||
<target state="translated">Megnézett videók megjegyzése</target>
|
||||
@@ -18712,11 +18720,11 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">A felület beállításai frissítve.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">138</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">160</context>
|
||||
<context context-type="linenumber">163</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6784127216978878229" datatype="html">
|
||||
@@ -20042,7 +20050,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Synchronizations</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7607713563510753803" datatype="html">
|
||||
@@ -25913,7 +25921,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">Save interface settings</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
<context context-type="linenumber">168</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7570883748440392027" datatype="html">
|
||||
@@ -25921,7 +25929,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new"><x id="PH" equiv-text="this.instanceName"/> theme</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">63</context>
|
||||
<context context-type="linenumber">64</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1219783168145776019" datatype="html">
|
||||
|
||||
@@ -1344,7 +1344,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="9031514421077169181" datatype="html">
|
||||
@@ -7649,12 +7649,20 @@
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8946368517039712001" datatype="html">
|
||||
<source>This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</source>
|
||||
<target state="new">This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</target>
|
||||
<trans-unit id="649873611133633238" datatype="html">
|
||||
<source>This plugin does not have settings.</source>
|
||||
<target state="new">This plugin does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
<context context-type="linenumber">21,22</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5495621331909678720" datatype="html">
|
||||
<source>This theme does not have settings.</source>
|
||||
<target state="new">This theme does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1875025899004073421" datatype="html">
|
||||
@@ -10564,7 +10572,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Manage my channels</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7731752234233950482" datatype="html">
|
||||
@@ -10572,7 +10580,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Synchronizations</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1498264516089100469" datatype="html">
|
||||
@@ -10760,7 +10768,7 @@ The link will expire within 1 hour.</source>
|
||||
<source>My watch history</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">73</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3656932706364053858" datatype="html">
|
||||
@@ -10789,49 +10797,49 @@ The link will expire within 1 hour.</source>
|
||||
<source>Video history is enabled</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
<context context-type="linenumber">122</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1869266307786648674" datatype="html">
|
||||
<source>Video history is disabled</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">120</context>
|
||||
<context context-type="linenumber">123</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7505147502630555700" datatype="html">
|
||||
<source>Delete video history</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">147</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8676027102068252963" datatype="html">
|
||||
<source>Are you sure you want to delete all your video history?</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">145</context>
|
||||
<context context-type="linenumber">148</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7708910304029766516" datatype="html">
|
||||
<source>Video history deleted</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">153</context>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3343758569423394070" datatype="html">
|
||||
<source>No videos found for "<x id="PH" equiv-text="this.search"/>".</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="4781078006040259916" datatype="html">
|
||||
<source>You don't have any video in your watch history yet.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7545420287297803988" datatype="html">
|
||||
@@ -18150,12 +18158,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="786003471867762836" datatype="html">
|
||||
<source>Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<trans-unit id="8309133070608650316" datatype="html">
|
||||
<source>Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7512666561651719221" datatype="html">
|
||||
@@ -18163,7 +18171,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">You can now <strong>invite other users</strong> to collaborate on your channel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1420294365005204590" datatype="html">
|
||||
@@ -23575,7 +23583,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">Save interface settings</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
<context context-type="linenumber">168</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7570883748440392027" datatype="html">
|
||||
@@ -23583,18 +23591,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new"><x id="PH" equiv-text="this.instanceName"/> theme</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">63</context>
|
||||
<context context-type="linenumber">64</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="4776289814033837037" datatype="html">
|
||||
<source>Interface settings updated.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">138</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">160</context>
|
||||
<context context-type="linenumber">163</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6784127216978878229" datatype="html">
|
||||
|
||||
@@ -1166,7 +1166,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="9031514421077169181" datatype="html">
|
||||
@@ -5239,12 +5239,20 @@
|
||||
<target state="translated"><x id="PH" equiv-text="plugin.name"/> dipasang.</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.ts</context><context context-type="linenumber">156</context></context-group></trans-unit>
|
||||
<trans-unit id="8946368517039712001" datatype="html">
|
||||
<source>This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</source>
|
||||
<target state="new">This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</target>
|
||||
<trans-unit id="649873611133633238" datatype="html">
|
||||
<source>This plugin does not have settings.</source>
|
||||
<target state="new">This plugin does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
<context context-type="linenumber">21,22</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5495621331909678720" datatype="html">
|
||||
<source>This theme does not have settings.</source>
|
||||
<target state="new">This theme does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1875025899004073421" datatype="html" xml:space="preserve">
|
||||
@@ -8521,19 +8529,13 @@ The link will expire within 1 hour.</source>
|
||||
<trans-unit id="913810105049472842" datatype="html" xml:space="preserve">
|
||||
<source>Manage my channels</source>
|
||||
<target state="translated">Kelola kanal saya</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context><context context-type="linenumber">31</context></context-group></trans-unit>
|
||||
<trans-unit id="7731752234233950482" datatype="html" xml:space="preserve">
|
||||
<source>Synchronizations</source>
|
||||
<target state="translated">Sinkronisasi</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context><context context-type="linenumber">39</context></context-group></trans-unit>
|
||||
<trans-unit id="2521678336272309407" datatype="html">
|
||||
<source>No follower found.</source>
|
||||
<target state="new">No follower found.</target>
|
||||
@@ -8662,49 +8664,34 @@ The link will expire within 1 hour.</source>
|
||||
<trans-unit id="111295045776045026" datatype="html" xml:space="preserve">
|
||||
<source>Video history is enabled</source>
|
||||
<target state="translated">Riwayat video diaktifkan</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">122</context></context-group></trans-unit>
|
||||
<trans-unit id="1869266307786648674" datatype="html" xml:space="preserve">
|
||||
<source>Video history is disabled</source>
|
||||
<target state="translated">Riwayat video dimatikan</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">120</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">123</context></context-group></trans-unit>
|
||||
<trans-unit id="7505147502630555700" datatype="html" xml:space="preserve">
|
||||
<source>Delete video history</source>
|
||||
<target state="translated">Hapus riwayat video</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">147</context></context-group></trans-unit>
|
||||
<trans-unit id="8676027102068252963" datatype="html" xml:space="preserve">
|
||||
<source>Are you sure you want to delete all your video history?</source>
|
||||
<target state="translated">Apakah yakin ingin menghapus semua riwayat video?</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">145</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">148</context></context-group></trans-unit>
|
||||
<trans-unit id="7708910304029766516" datatype="html" xml:space="preserve">
|
||||
<source>Video history deleted</source>
|
||||
<target state="translated">Riwayat video dihapus</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">153</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">156</context></context-group></trans-unit>
|
||||
<trans-unit id="3343758569423394070" datatype="html">
|
||||
<source>No videos found for "<x id="PH" equiv-text="this.search"/>".</source>
|
||||
<target state="new">No videos found for "<x id="PH" equiv-text="this.search"/>".</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3656932706364053858" datatype="html">
|
||||
@@ -8736,17 +8723,14 @@ The link will expire within 1 hour.</source>
|
||||
<target/>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1486537403020619891" datatype="html" xml:space="preserve">
|
||||
<source>My watch history</source>
|
||||
<target state="translated">Riwayat tonton saya</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">73</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">75</context></context-group></trans-unit>
|
||||
<trans-unit id="949618577357088829" datatype="html" xml:space="preserve">
|
||||
<source>Create a new playlist</source>
|
||||
<target state="translated">Buat daftar putar baru</target>
|
||||
@@ -16590,12 +16574,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="786003471867762836" datatype="html">
|
||||
<source>Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<trans-unit id="8309133070608650316" datatype="html">
|
||||
<source>Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7512666561651719221" datatype="html">
|
||||
@@ -16603,7 +16587,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">You can now <strong>invite other users</strong> to collaborate on your channel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1420294365005204590" datatype="html">
|
||||
@@ -22213,13 +22197,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<source>Save interface settings</source>
|
||||
<target state="translated">Simpan pengaturan antarmuka</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">165</context></context-group></trans-unit>
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">168</context></context-group></trans-unit>
|
||||
<trans-unit id="7570883748440392027" datatype="html">
|
||||
<source><x id="PH" equiv-text="this.instanceName"/> theme</source>
|
||||
<target state="new"><x id="PH" equiv-text="this.instanceName"/> theme</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">63</context>
|
||||
<context context-type="linenumber">64</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="4776289814033837037" datatype="html" xml:space="preserve">
|
||||
@@ -22227,7 +22211,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="translated">Pengaturan antarmuka diperbarui.</target>
|
||||
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">138</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">160</context></context-group></trans-unit>
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">141</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">163</context></context-group></trans-unit>
|
||||
<trans-unit id="6784127216978878229" datatype="html">
|
||||
<source>Override sensitive content policy for certain videos</source>
|
||||
<target state="new">Override sensitive content policy for certain videos</target>
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -2082,19 +2082,10 @@
|
||||
<trans-unit id="4914577418256256836" datatype="html" xml:space="preserve">
|
||||
<source>Followers</source>
|
||||
<target state="translated">Follower</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/admin-settings.component.ts</context>
|
||||
<context context-type="linenumber">46</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/follows/follows.routes.ts</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin-settings.component.ts</context><context context-type="linenumber">46</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/follows/follows.routes.ts</context><context context-type="linenumber">35</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context><context context-type="linenumber">35</context></context-group></trans-unit>
|
||||
<trans-unit id="6994936570572804302" datatype="html">
|
||||
<source>Request an account</source>
|
||||
<target state="translated">Richiedi un account</target>
|
||||
@@ -3284,12 +3275,12 @@ The link will expire within 1 hour.</source>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="786003471867762836" datatype="html">
|
||||
<source>Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<trans-unit id="8309133070608650316" datatype="html">
|
||||
<source>Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7512666561651719221" datatype="html">
|
||||
@@ -3297,7 +3288,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">You can now <strong>invite other users</strong> to collaborate on your channel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5960096873104755868" datatype="html" xml:space="preserve">
|
||||
@@ -6849,11 +6840,8 @@ The link will expire within 1 hour.</source>
|
||||
<trans-unit id="913810105049472842" datatype="html" xml:space="preserve">
|
||||
<source>Manage my channels</source>
|
||||
<target state="translated">Gestisci i miei canali</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context><context context-type="linenumber">31</context></context-group></trans-unit>
|
||||
<trans-unit id="3140041890374956085" datatype="html" xml:space="preserve">
|
||||
<source>Comments on your videos</source>
|
||||
<target state="translated">Commenti sui tuoi video</target>
|
||||
@@ -12110,11 +12098,8 @@ The link will expire within 1 hour.</source>
|
||||
<trans-unit id="4781078006040259916" datatype="html" xml:space="preserve">
|
||||
<source>You don't have any video in your watch history yet.</source>
|
||||
<target state="translated">Non ci sono ancora video nella cronologia delle visualizzazioni.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">170</context></context-group></trans-unit>
|
||||
<trans-unit id="989169929300254768" datatype="html" xml:space="preserve">
|
||||
<source>Delete from history</source>
|
||||
<target state="translated">Cancellare dalla cronologia</target>
|
||||
@@ -12126,51 +12111,33 @@ The link will expire within 1 hour.</source>
|
||||
<trans-unit id="111295045776045026" datatype="html" xml:space="preserve">
|
||||
<source>Video history is enabled</source>
|
||||
<target state="translated">La cronologia video è abilitata</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">122</context></context-group></trans-unit>
|
||||
<trans-unit id="1869266307786648674" datatype="html" xml:space="preserve">
|
||||
<source>Video history is disabled</source>
|
||||
<target state="translated">La cronologia video è disabilitata</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">120</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">123</context></context-group></trans-unit>
|
||||
<trans-unit id="7505147502630555700" datatype="html" xml:space="preserve">
|
||||
<source>Delete video history</source>
|
||||
<target state="translated">Cancella la cronologia dei video</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">147</context></context-group></trans-unit>
|
||||
<trans-unit id="8676027102068252963" datatype="html" xml:space="preserve">
|
||||
<source>Are you sure you want to delete all your video history?</source>
|
||||
<target state="translated">Sei sicuro di voler cancellare tutta la cronologia dei video?</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">145</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">148</context></context-group></trans-unit>
|
||||
<trans-unit id="7708910304029766516" datatype="html" xml:space="preserve">
|
||||
<source>Video history deleted</source>
|
||||
<target state="translated">Cronologia video cancellata</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">153</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">156</context></context-group></trans-unit>
|
||||
<trans-unit id="3343758569423394070" datatype="html" xml:space="preserve">
|
||||
<source>No videos found for "<x id="PH" equiv-text="this.search"/>".</source>
|
||||
<target state="translated">Nessun video trovato per "<x id="PH" equiv-text="this.search"/>".</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">167</context></context-group></trans-unit>
|
||||
<trans-unit id="687236465759862933" datatype="html" xml:space="preserve">
|
||||
<source>Open syndication dropdown</source>
|
||||
<target state="translated">Apri il menu a tendina della syndication</target>
|
||||
@@ -15245,12 +15212,20 @@ The link will expire within 1 hour.</source>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8946368517039712001" datatype="html">
|
||||
<source>This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</source>
|
||||
<target state="new">This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</target>
|
||||
<trans-unit id="649873611133633238" datatype="html">
|
||||
<source>This plugin does not have settings.</source>
|
||||
<target state="new">This plugin does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
<context context-type="linenumber">21,22</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5495621331909678720" datatype="html">
|
||||
<source>This theme does not have settings.</source>
|
||||
<target state="new">This theme does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1875025899004073421" datatype="html">
|
||||
@@ -16307,11 +16282,8 @@ The link will expire within 1 hour.</source>
|
||||
<trans-unit id="1486537403020619891" datatype="html" xml:space="preserve">
|
||||
<source>My watch history</source>
|
||||
<target state="translated">Cronologia visualizzazioni</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">73</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">75</context></context-group></trans-unit>
|
||||
<trans-unit id="3656932706364053858" datatype="html" xml:space="preserve">
|
||||
<source>Track watch history</source>
|
||||
<target state="translated">Traccia la cronologia delle visualizzazioni</target>
|
||||
@@ -16480,11 +16452,11 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Impostazioni dell'interfaccia aggiornate.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">138</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">160</context>
|
||||
<context context-type="linenumber">163</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6784127216978878229" datatype="html">
|
||||
@@ -17666,11 +17638,8 @@ The link will expire within 1 hour.</source>
|
||||
<trans-unit id="7731752234233950482" datatype="html" xml:space="preserve">
|
||||
<source>Synchronizations</source>
|
||||
<target state="translated">Sincronizzazioni</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context><context context-type="linenumber">39</context></context-group></trans-unit>
|
||||
<trans-unit id="7607713563510753803" datatype="html" xml:space="preserve">
|
||||
<source>Imports</source>
|
||||
<target state="translated">Importazioni</target>
|
||||
@@ -22850,12 +22819,12 @@ Assicurati di aver configurato correttamente PeerTube (cartella config/), in par
|
||||
<source>Save interface settings</source>
|
||||
<target state="translated">Salva le impostazioni dell'interfaccia</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">165</context></context-group></trans-unit>
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">168</context></context-group></trans-unit>
|
||||
<trans-unit id="7570883748440392027" datatype="html" xml:space="preserve">
|
||||
<source><x id="PH" equiv-text="this.instanceName"/> theme</source>
|
||||
<target state="translated">Tema <x id="PH" equiv-text="this.instanceName"/></target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">63</context></context-group></trans-unit>
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">64</context></context-group></trans-unit>
|
||||
<trans-unit id="1219783168145776019" datatype="html" xml:space="preserve">
|
||||
<source>LIVE ENDED</source>
|
||||
<target state="translated">LIVE TERMINATA</target>
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -2568,7 +2568,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6994936570572804302" datatype="html">
|
||||
@@ -3938,12 +3938,12 @@ The link will expire within 1 hour.</target>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="786003471867762836" datatype="html">
|
||||
<source>Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<trans-unit id="8309133070608650316" datatype="html">
|
||||
<source>Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7512666561651719221" datatype="html">
|
||||
@@ -3951,7 +3951,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">You can now <strong>invite other users</strong> to collaborate on your channel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5960096873104755868" datatype="html">
|
||||
@@ -8187,7 +8187,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Manage my channels</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3140041890374956085" datatype="html">
|
||||
@@ -14262,7 +14262,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">You don't have any video in your watch history yet.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="989169929300254768" datatype="html">
|
||||
@@ -14278,7 +14278,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Video history is enabled</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
<context context-type="linenumber">122</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1869266307786648674" datatype="html">
|
||||
@@ -14286,7 +14286,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Video history is disabled</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">120</context>
|
||||
<context context-type="linenumber">123</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7505147502630555700" datatype="html">
|
||||
@@ -14294,7 +14294,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Delete video history</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">147</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8676027102068252963" datatype="html">
|
||||
@@ -14302,7 +14302,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Are you sure you want to delete all your video history?</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">145</context>
|
||||
<context context-type="linenumber">148</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7708910304029766516" datatype="html">
|
||||
@@ -14310,7 +14310,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Video history deleted</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">153</context>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3343758569423394070" datatype="html">
|
||||
@@ -14318,7 +14318,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">No videos found for "<x id="PH" equiv-text="this.search"/>".</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="687236465759862933" datatype="html">
|
||||
@@ -17940,12 +17940,20 @@ The link will expire within 1 hour.</target>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8946368517039712001" datatype="html">
|
||||
<source>This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</source>
|
||||
<target state="new">This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</target>
|
||||
<trans-unit id="649873611133633238" datatype="html">
|
||||
<source>This plugin does not have settings.</source>
|
||||
<target state="new">This plugin does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
<context context-type="linenumber">21,22</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5495621331909678720" datatype="html">
|
||||
<source>This theme does not have settings.</source>
|
||||
<target state="new">This theme does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1875025899004073421" datatype="html">
|
||||
@@ -19203,7 +19211,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">My watch history</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">73</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3656932706364053858" datatype="html">
|
||||
@@ -19383,11 +19391,11 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Interface settings updated.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">138</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">160</context>
|
||||
<context context-type="linenumber">163</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6784127216978878229" datatype="html">
|
||||
@@ -20727,7 +20735,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Synchronizations</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7607713563510753803" datatype="html">
|
||||
@@ -26651,7 +26659,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">Save interface settings</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
<context context-type="linenumber">168</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7570883748440392027" datatype="html">
|
||||
@@ -26659,7 +26667,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new"><x id="PH" equiv-text="this.instanceName"/> theme</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">63</context>
|
||||
<context context-type="linenumber">64</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1219783168145776019" datatype="html">
|
||||
|
||||
@@ -2565,7 +2565,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6994936570572804302" datatype="html">
|
||||
@@ -4121,12 +4121,12 @@ Aseɣwen ad yemmet deg ssaεa.</target>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="786003471867762836" datatype="html">
|
||||
<source>Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<trans-unit id="8309133070608650316" datatype="html">
|
||||
<source>Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7512666561651719221" datatype="html">
|
||||
@@ -4134,7 +4134,7 @@ Aseɣwen ad yemmet deg ssaεa.</target>
|
||||
<target state="new">You can now <strong>invite other users</strong> to collaborate on your channel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5410940035535748578" datatype="html">
|
||||
@@ -8353,7 +8353,7 @@ Aseɣwen ad yemmet deg ssaεa.</target>
|
||||
<target state="new">Manage my channels</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3140041890374956085" datatype="html" xml:space="preserve">
|
||||
@@ -13690,7 +13690,7 @@ Aseɣwen ad yemmet deg ssaεa.</target>
|
||||
<target state="translated">Ur tesεiḍ ara ula d yiwet n tvidyut deg uzray n tmeẓriwt-ik·im ar tura.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="989169929300254768" datatype="html" xml:space="preserve">
|
||||
@@ -13706,7 +13706,7 @@ Aseɣwen ad yemmet deg ssaεa.</target>
|
||||
<target state="new">Video history is enabled</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
<context context-type="linenumber">122</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1869266307786648674" datatype="html">
|
||||
@@ -13714,7 +13714,7 @@ Aseɣwen ad yemmet deg ssaεa.</target>
|
||||
<target state="new">Video history is disabled</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">120</context>
|
||||
<context context-type="linenumber">123</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7505147502630555700" datatype="html">
|
||||
@@ -13722,7 +13722,7 @@ Aseɣwen ad yemmet deg ssaεa.</target>
|
||||
<target state="new">Delete video history</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">147</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8676027102068252963" datatype="html">
|
||||
@@ -13730,7 +13730,7 @@ Aseɣwen ad yemmet deg ssaεa.</target>
|
||||
<target state="new">Are you sure you want to delete all your video history?</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">145</context>
|
||||
<context context-type="linenumber">148</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7708910304029766516" datatype="html">
|
||||
@@ -13738,14 +13738,14 @@ Aseɣwen ad yemmet deg ssaεa.</target>
|
||||
<target state="new">Video history deleted</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">153</context>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3343758569423394070" datatype="html" xml:space="preserve">
|
||||
<source>No videos found for "<x id="PH" equiv-text="this.search"/>".</source>
|
||||
<target state="translated">Ulac tividytin yettwagen i "<x id="PH" equiv-text="this.search"/>".</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">164</context></context-group></trans-unit>
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">167</context></context-group></trans-unit>
|
||||
<trans-unit id="687236465759862933" datatype="html">
|
||||
<source>Open syndication dropdown</source>
|
||||
<target state="translated">Ldi umuɣ n udrurem n yimultaɣ</target>
|
||||
@@ -17430,12 +17430,20 @@ Aseɣwen ad yemmet deg ssaεa.</target>
|
||||
<target state="translated"><x id="PH"/> yettwasbedd. </target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.ts</context><context context-type="linenumber">156</context></context-group></trans-unit>
|
||||
<trans-unit id="8946368517039712001" datatype="html">
|
||||
<source>This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</source>
|
||||
<target state="new">This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</target>
|
||||
<trans-unit id="649873611133633238" datatype="html">
|
||||
<source>This plugin does not have settings.</source>
|
||||
<target state="new">This plugin does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
<context context-type="linenumber">21,22</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5495621331909678720" datatype="html">
|
||||
<source>This theme does not have settings.</source>
|
||||
<target state="new">This theme does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1875025899004073421" datatype="html">
|
||||
@@ -18646,7 +18654,7 @@ Aseɣwen ad yemmet deg ssaεa.</target>
|
||||
<target state="translated">Azray-inu n tmeẓriwt</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">73</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3656932706364053858" datatype="html">
|
||||
@@ -18826,11 +18834,11 @@ Aseɣwen ad yemmet deg ssaεa.</target>
|
||||
<target state="translated">Iɣewwaren n ugrudem ttwaleqqmen.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">138</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">160</context>
|
||||
<context context-type="linenumber">163</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6784127216978878229" datatype="html">
|
||||
@@ -20150,7 +20158,7 @@ Aseɣwen ad yemmet deg ssaεa.</target>
|
||||
<target state="new">Synchronizations</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7607713563510753803" datatype="html">
|
||||
@@ -25852,7 +25860,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">Save interface settings</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
<context context-type="linenumber">168</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7570883748440392027" datatype="html">
|
||||
@@ -25860,7 +25868,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new"><x id="PH" equiv-text="this.instanceName"/> theme</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">63</context>
|
||||
<context context-type="linenumber">64</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1219783168145776019" datatype="html">
|
||||
|
||||
@@ -1587,7 +1587,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="9031514421077169181" datatype="html">
|
||||
@@ -7921,12 +7921,20 @@
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8946368517039712001" datatype="html">
|
||||
<source>This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</source>
|
||||
<target state="new">This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</target>
|
||||
<trans-unit id="649873611133633238" datatype="html">
|
||||
<source>This plugin does not have settings.</source>
|
||||
<target state="new">This plugin does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
<context context-type="linenumber">21,22</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5495621331909678720" datatype="html">
|
||||
<source>This theme does not have settings.</source>
|
||||
<target state="new">This theme does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1875025899004073421" datatype="html">
|
||||
@@ -10956,7 +10964,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Manage my channels</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7731752234233950482" datatype="html">
|
||||
@@ -10964,7 +10972,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Synchronizations</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1498264516089100469" datatype="html">
|
||||
@@ -11178,7 +11186,7 @@ The link will expire within 1 hour.</source>
|
||||
<source>My watch history</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">73</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3656932706364053858" datatype="html">
|
||||
@@ -11207,49 +11215,49 @@ The link will expire within 1 hour.</source>
|
||||
<source>Video history is enabled</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
<context context-type="linenumber">122</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1869266307786648674" datatype="html">
|
||||
<source>Video history is disabled</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">120</context>
|
||||
<context context-type="linenumber">123</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7505147502630555700" datatype="html">
|
||||
<source>Delete video history</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">147</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8676027102068252963" datatype="html">
|
||||
<source>Are you sure you want to delete all your video history?</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">145</context>
|
||||
<context context-type="linenumber">148</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7708910304029766516" datatype="html">
|
||||
<source>Video history deleted</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">153</context>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3343758569423394070" datatype="html">
|
||||
<source>No videos found for "<x id="PH" equiv-text="this.search"/>".</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="4781078006040259916" datatype="html">
|
||||
<source>You don't have any video in your watch history yet.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7545420287297803988" datatype="html">
|
||||
@@ -18170,12 +18178,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="786003471867762836" datatype="html">
|
||||
<source>Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<trans-unit id="8309133070608650316" datatype="html">
|
||||
<source>Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7512666561651719221" datatype="html">
|
||||
@@ -18183,7 +18191,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">You can now <strong>invite other users</strong> to collaborate on your channel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1420294365005204590" datatype="html">
|
||||
@@ -23424,7 +23432,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">Save interface settings</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
<context context-type="linenumber">168</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7570883748440392027" datatype="html">
|
||||
@@ -23432,18 +23440,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new"><x id="PH" equiv-text="this.instanceName"/> theme</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">63</context>
|
||||
<context context-type="linenumber">64</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="4776289814033837037" datatype="html">
|
||||
<source>Interface settings updated.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">138</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">160</context>
|
||||
<context context-type="linenumber">163</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6784127216978878229" datatype="html">
|
||||
|
||||
@@ -1885,7 +1885,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="9031514421077169181" datatype="html">
|
||||
@@ -7879,12 +7879,20 @@
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8946368517039712001" datatype="html">
|
||||
<source>This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</source>
|
||||
<target state="new">This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</target>
|
||||
<trans-unit id="649873611133633238" datatype="html">
|
||||
<source>This plugin does not have settings.</source>
|
||||
<target state="new">This plugin does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
<context context-type="linenumber">21,22</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5495621331909678720" datatype="html">
|
||||
<source>This theme does not have settings.</source>
|
||||
<target state="new">This theme does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8854094932942190741" datatype="html">
|
||||
@@ -14624,7 +14632,7 @@
|
||||
<target state="new">Save interface settings</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
<context context-type="linenumber">168</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7570883748440392027" datatype="html">
|
||||
@@ -14632,7 +14640,7 @@
|
||||
<target state="new"><x id="PH" equiv-text="this.instanceName"/> theme</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">63</context>
|
||||
<context context-type="linenumber">64</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6048892649018070225" datatype="html">
|
||||
@@ -20110,11 +20118,11 @@ The link will expire within 1 hour.</source>
|
||||
<target/>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">138</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">160</context>
|
||||
<context context-type="linenumber">163</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6784127216978878229" datatype="html">
|
||||
@@ -20721,12 +20729,12 @@ The link will expire within 1 hour.</source>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="786003471867762836" datatype="html">
|
||||
<source>Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<trans-unit id="8309133070608650316" datatype="html">
|
||||
<source>Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7512666561651719221" datatype="html">
|
||||
@@ -20734,7 +20742,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">You can now <strong>invite other users</strong> to collaborate on your channel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8948444690892731948" datatype="html">
|
||||
@@ -23354,7 +23362,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">Manage my channels</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7731752234233950482" datatype="html">
|
||||
@@ -23362,7 +23370,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">Synchronizations</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="2521678336272309407" datatype="html">
|
||||
@@ -25098,7 +25106,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">My watch history</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">73</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="111295045776045026" datatype="html">
|
||||
@@ -25106,7 +25114,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">Video history is enabled</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
<context context-type="linenumber">122</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1869266307786648674" datatype="html">
|
||||
@@ -25114,7 +25122,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">Video history is disabled</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">120</context>
|
||||
<context context-type="linenumber">123</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7505147502630555700" datatype="html">
|
||||
@@ -25122,7 +25130,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">Delete video history</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">147</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8676027102068252963" datatype="html">
|
||||
@@ -25130,7 +25138,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">Are you sure you want to delete all your video history?</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">145</context>
|
||||
<context context-type="linenumber">148</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7708910304029766516" datatype="html">
|
||||
@@ -25138,7 +25146,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">Video history deleted</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">153</context>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3343758569423394070" datatype="html">
|
||||
@@ -25146,7 +25154,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">No videos found for "<x id="PH" equiv-text="this.search"/>".</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="4781078006040259916" datatype="html">
|
||||
@@ -25154,7 +25162,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">You don't have any video in your watch history yet.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6700357678556223012" datatype="html">
|
||||
|
||||
@@ -2348,7 +2348,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6994936570572804302" datatype="html">
|
||||
@@ -3705,12 +3705,12 @@ The link will expire within 1 hour.</target>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="786003471867762836" datatype="html">
|
||||
<source>Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<trans-unit id="8309133070608650316" datatype="html">
|
||||
<source>Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7512666561651719221" datatype="html">
|
||||
@@ -3718,7 +3718,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">You can now <strong>invite other users</strong> to collaborate on your channel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5960096873104755868" datatype="html">
|
||||
@@ -7965,7 +7965,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Manage my channels</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3140041890374956085" datatype="html">
|
||||
@@ -13838,7 +13838,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">You don't have any video in your watch history yet.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="989169929300254768" datatype="html">
|
||||
@@ -13854,7 +13854,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Video history is enabled</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
<context context-type="linenumber">122</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1869266307786648674" datatype="html">
|
||||
@@ -13862,7 +13862,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Video history is disabled</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">120</context>
|
||||
<context context-type="linenumber">123</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7505147502630555700" datatype="html">
|
||||
@@ -13870,7 +13870,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Delete video history</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">147</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8676027102068252963" datatype="html">
|
||||
@@ -13878,7 +13878,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Are you sure you want to delete all your video history?</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">145</context>
|
||||
<context context-type="linenumber">148</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7708910304029766516" datatype="html">
|
||||
@@ -13886,7 +13886,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Video history deleted</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">153</context>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3343758569423394070" datatype="html">
|
||||
@@ -13894,7 +13894,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">No videos found for "<x id="PH" equiv-text="this.search"/>".</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="687236465759862933" datatype="html">
|
||||
@@ -17500,12 +17500,20 @@ The link will expire within 1 hour.</target>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8946368517039712001" datatype="html">
|
||||
<source>This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</source>
|
||||
<target state="new">This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</target>
|
||||
<trans-unit id="649873611133633238" datatype="html">
|
||||
<source>This plugin does not have settings.</source>
|
||||
<target state="new">This plugin does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
<context context-type="linenumber">21,22</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5495621331909678720" datatype="html">
|
||||
<source>This theme does not have settings.</source>
|
||||
<target state="new">This theme does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1875025899004073421" datatype="html">
|
||||
@@ -18763,7 +18771,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">My watch history</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">73</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3656932706364053858" datatype="html">
|
||||
@@ -18943,11 +18951,11 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Interface settings updated.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">138</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">160</context>
|
||||
<context context-type="linenumber">163</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6784127216978878229" datatype="html">
|
||||
@@ -20287,7 +20295,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Synchronizations</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7607713563510753803" datatype="html">
|
||||
@@ -26194,7 +26202,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">Save interface settings</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
<context context-type="linenumber">168</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7570883748440392027" datatype="html">
|
||||
@@ -26202,7 +26210,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new"><x id="PH" equiv-text="this.instanceName"/> theme</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">63</context>
|
||||
<context context-type="linenumber">64</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1219783168145776019" datatype="html">
|
||||
|
||||
@@ -1112,7 +1112,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="9031514421077169181" datatype="html">
|
||||
@@ -7388,12 +7388,20 @@
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8946368517039712001" datatype="html">
|
||||
<source>This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</source>
|
||||
<target state="new">This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</target>
|
||||
<trans-unit id="649873611133633238" datatype="html">
|
||||
<source>This plugin does not have settings.</source>
|
||||
<target state="new">This plugin does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
<context context-type="linenumber">21,22</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5495621331909678720" datatype="html">
|
||||
<source>This theme does not have settings.</source>
|
||||
<target state="new">This theme does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1875025899004073421" datatype="html">
|
||||
@@ -10053,7 +10061,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Manage my channels</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7731752234233950482" datatype="html">
|
||||
@@ -10061,7 +10069,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Synchronizations</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7000850040589508423" datatype="html">
|
||||
@@ -10286,7 +10294,7 @@ The link will expire within 1 hour.</source>
|
||||
<source>My watch history</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">73</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="111295045776045026" datatype="html">
|
||||
@@ -10294,7 +10302,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Video history is enabled</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
<context context-type="linenumber">122</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1869266307786648674" datatype="html">
|
||||
@@ -10302,7 +10310,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Video history is disabled</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">120</context>
|
||||
<context context-type="linenumber">123</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7505147502630555700" datatype="html">
|
||||
@@ -10310,7 +10318,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Delete video history</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">147</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8676027102068252963" datatype="html">
|
||||
@@ -10318,7 +10326,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Are you sure you want to delete all your video history?</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">145</context>
|
||||
<context context-type="linenumber">148</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7708910304029766516" datatype="html">
|
||||
@@ -10326,7 +10334,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Video history deleted</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">153</context>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3343758569423394070" datatype="html">
|
||||
@@ -10334,7 +10342,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">No videos found for "<x id="PH" equiv-text="this.search"/>".</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3656932706364053858" datatype="html">
|
||||
@@ -10356,7 +10364,7 @@ The link will expire within 1 hour.</source>
|
||||
<source>You don't have any video in your watch history yet.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="989169929300254768" datatype="html">
|
||||
@@ -18271,12 +18279,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="786003471867762836" datatype="html">
|
||||
<source>Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<trans-unit id="8309133070608650316" datatype="html">
|
||||
<source>Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7512666561651719221" datatype="html">
|
||||
@@ -18284,7 +18292,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">You can now <strong>invite other users</strong> to collaborate on your channel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1420294365005204590" datatype="html">
|
||||
@@ -23270,7 +23278,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">Save interface settings</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
<context context-type="linenumber">168</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7570883748440392027" datatype="html">
|
||||
@@ -23278,18 +23286,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new"><x id="PH" equiv-text="this.instanceName"/> theme</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">63</context>
|
||||
<context context-type="linenumber">64</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="4776289814033837037" datatype="html">
|
||||
<source>Interface settings updated.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">138</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">160</context>
|
||||
<context context-type="linenumber">163</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6784127216978878229" datatype="html">
|
||||
|
||||
@@ -2453,7 +2453,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6994936570572804302" datatype="html">
|
||||
@@ -3817,12 +3817,12 @@ The link will expire within 1 hour.</target>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="786003471867762836" datatype="html">
|
||||
<source>Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<trans-unit id="8309133070608650316" datatype="html">
|
||||
<source>Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7512666561651719221" datatype="html">
|
||||
@@ -3830,7 +3830,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">You can now <strong>invite other users</strong> to collaborate on your channel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5960096873104755868" datatype="html">
|
||||
@@ -8045,7 +8045,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Manage my channels</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3140041890374956085" datatype="html">
|
||||
@@ -14113,7 +14113,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">You don't have any video in your watch history yet.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="989169929300254768" datatype="html">
|
||||
@@ -14129,7 +14129,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Video history is enabled</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
<context context-type="linenumber">122</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1869266307786648674" datatype="html">
|
||||
@@ -14137,7 +14137,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Video history is disabled</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">120</context>
|
||||
<context context-type="linenumber">123</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7505147502630555700" datatype="html">
|
||||
@@ -14145,7 +14145,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Delete video history</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">147</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8676027102068252963" datatype="html">
|
||||
@@ -14153,7 +14153,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Are you sure you want to delete all your video history?</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">145</context>
|
||||
<context context-type="linenumber">148</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7708910304029766516" datatype="html">
|
||||
@@ -14161,7 +14161,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Video history deleted</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">153</context>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3343758569423394070" datatype="html">
|
||||
@@ -14169,7 +14169,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">No videos found for "<x id="PH" equiv-text="this.search"/>".</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="687236465759862933" datatype="html">
|
||||
@@ -17775,12 +17775,20 @@ The link will expire within 1 hour.</target>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8946368517039712001" datatype="html">
|
||||
<source>This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</source>
|
||||
<target state="new">This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</target>
|
||||
<trans-unit id="649873611133633238" datatype="html">
|
||||
<source>This plugin does not have settings.</source>
|
||||
<target state="new">This plugin does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
<context context-type="linenumber">21,22</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5495621331909678720" datatype="html">
|
||||
<source>This theme does not have settings.</source>
|
||||
<target state="new">This theme does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1875025899004073421" datatype="html">
|
||||
@@ -19038,7 +19046,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">My watch history</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">73</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3656932706364053858" datatype="html">
|
||||
@@ -19218,11 +19226,11 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Interface settings updated.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">138</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">160</context>
|
||||
<context context-type="linenumber">163</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6784127216978878229" datatype="html">
|
||||
@@ -20562,7 +20570,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Synchronizations</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7607713563510753803" datatype="html">
|
||||
@@ -26469,7 +26477,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">Save interface settings</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
<context context-type="linenumber">168</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7570883748440392027" datatype="html">
|
||||
@@ -26477,7 +26485,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new"><x id="PH" equiv-text="this.instanceName"/> theme</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">63</context>
|
||||
<context context-type="linenumber">64</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1219783168145776019" datatype="html">
|
||||
|
||||
@@ -1206,7 +1206,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="9031514421077169181" datatype="html">
|
||||
@@ -7767,12 +7767,20 @@
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8946368517039712001" datatype="html">
|
||||
<source>This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</source>
|
||||
<target state="new">This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</target>
|
||||
<trans-unit id="649873611133633238" datatype="html">
|
||||
<source>This plugin does not have settings.</source>
|
||||
<target state="new">This plugin does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
<context context-type="linenumber">21,22</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5495621331909678720" datatype="html">
|
||||
<source>This theme does not have settings.</source>
|
||||
<target state="new">This theme does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1875025899004073421" datatype="html">
|
||||
@@ -10646,7 +10654,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Manage my channels</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7731752234233950482" datatype="html">
|
||||
@@ -10654,7 +10662,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Synchronizations</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7000850040589508423" datatype="html">
|
||||
@@ -10898,7 +10906,7 @@ The link will expire within 1 hour.</source>
|
||||
<target/>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">73</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="111295045776045026" datatype="html">
|
||||
@@ -10906,7 +10914,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Video history is enabled</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
<context context-type="linenumber">122</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1869266307786648674" datatype="html">
|
||||
@@ -10914,7 +10922,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Video history is disabled</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">120</context>
|
||||
<context context-type="linenumber">123</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7505147502630555700" datatype="html">
|
||||
@@ -10922,7 +10930,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Delete video history</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">147</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8676027102068252963" datatype="html">
|
||||
@@ -10930,7 +10938,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Are you sure you want to delete all your video history?</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">145</context>
|
||||
<context context-type="linenumber">148</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7708910304029766516" datatype="html">
|
||||
@@ -10938,7 +10946,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Video history deleted</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">153</context>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3343758569423394070" datatype="html">
|
||||
@@ -10946,7 +10954,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">No videos found for "<x id="PH" equiv-text="this.search"/>".</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3656932706364053858" datatype="html">
|
||||
@@ -10970,7 +10978,7 @@ The link will expire within 1 hour.</source>
|
||||
<target/>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="989169929300254768" datatype="html">
|
||||
@@ -19227,12 +19235,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="786003471867762836" datatype="html">
|
||||
<source>Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<trans-unit id="8309133070608650316" datatype="html">
|
||||
<source>Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7512666561651719221" datatype="html">
|
||||
@@ -19240,7 +19248,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">You can now <strong>invite other users</strong> to collaborate on your channel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1420294365005204590" datatype="html">
|
||||
@@ -24592,7 +24600,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">Save interface settings</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
<context context-type="linenumber">168</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7570883748440392027" datatype="html">
|
||||
@@ -24600,7 +24608,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new"><x id="PH" equiv-text="this.instanceName"/> theme</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">63</context>
|
||||
<context context-type="linenumber">64</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="4776289814033837037" datatype="html">
|
||||
@@ -24608,11 +24616,11 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target/>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">138</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">160</context>
|
||||
<context context-type="linenumber">163</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6784127216978878229" datatype="html">
|
||||
|
||||
@@ -1182,7 +1182,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="9031514421077169181" datatype="html">
|
||||
@@ -6197,12 +6197,20 @@
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8946368517039712001" datatype="html">
|
||||
<source>This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</source>
|
||||
<target state="new">This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</target>
|
||||
<trans-unit id="649873611133633238" datatype="html">
|
||||
<source>This plugin does not have settings.</source>
|
||||
<target state="new">This plugin does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
<context context-type="linenumber">21,22</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5495621331909678720" datatype="html">
|
||||
<source>This theme does not have settings.</source>
|
||||
<target state="new">This theme does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1875025899004073421" datatype="html">
|
||||
@@ -10156,7 +10164,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Manage my channels</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7731752234233950482" datatype="html">
|
||||
@@ -10164,7 +10172,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Synchronizations</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="2521678336272309407" datatype="html">
|
||||
@@ -10320,7 +10328,7 @@ The link will expire within 1 hour.</source>
|
||||
<target/>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">73</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="111295045776045026" datatype="html">
|
||||
@@ -10328,7 +10336,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Video history is enabled</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
<context context-type="linenumber">122</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1869266307786648674" datatype="html">
|
||||
@@ -10336,7 +10344,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Video history is disabled</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">120</context>
|
||||
<context context-type="linenumber">123</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7505147502630555700" datatype="html">
|
||||
@@ -10344,7 +10352,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Delete video history</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">147</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8676027102068252963" datatype="html">
|
||||
@@ -10352,7 +10360,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Are you sure you want to delete all your video history?</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">145</context>
|
||||
<context context-type="linenumber">148</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7708910304029766516" datatype="html">
|
||||
@@ -10360,7 +10368,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Video history deleted</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">153</context>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3343758569423394070" datatype="html">
|
||||
@@ -10368,7 +10376,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">No videos found for "<x id="PH" equiv-text="this.search"/>".</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3656932706364053858" datatype="html">
|
||||
@@ -10400,7 +10408,7 @@ The link will expire within 1 hour.</source>
|
||||
<target/>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7545420287297803988" datatype="html">
|
||||
@@ -18899,12 +18907,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="786003471867762836" datatype="html">
|
||||
<source>Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<trans-unit id="8309133070608650316" datatype="html">
|
||||
<source>Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7512666561651719221" datatype="html">
|
||||
@@ -18912,7 +18920,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">You can now <strong>invite other users</strong> to collaborate on your channel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1420294365005204590" datatype="html">
|
||||
@@ -24632,7 +24640,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">Save interface settings</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
<context context-type="linenumber">168</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7570883748440392027" datatype="html">
|
||||
@@ -24640,7 +24648,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new"><x id="PH" equiv-text="this.instanceName"/> theme</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">63</context>
|
||||
<context context-type="linenumber">64</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="4776289814033837037" datatype="html">
|
||||
@@ -24648,11 +24656,11 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target/>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">138</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">160</context>
|
||||
<context context-type="linenumber">163</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6784127216978878229" datatype="html">
|
||||
|
||||
@@ -2292,7 +2292,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6994936570572804302" datatype="html">
|
||||
@@ -3553,12 +3553,12 @@ The link will expire within 1 hour.</source>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="786003471867762836" datatype="html">
|
||||
<source>Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<trans-unit id="8309133070608650316" datatype="html">
|
||||
<source>Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7512666561651719221" datatype="html">
|
||||
@@ -3566,7 +3566,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">You can now <strong>invite other users</strong> to collaborate on your channel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5960096873104755868" datatype="html" xml:space="preserve">
|
||||
@@ -7407,11 +7407,8 @@ The link will expire within 1 hour.</source>
|
||||
<trans-unit id="913810105049472842" datatype="html" xml:space="preserve">
|
||||
<source>Manage my channels</source>
|
||||
<target state="translated">Administrer kanalene mine</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context><context context-type="linenumber">31</context></context-group></trans-unit>
|
||||
<trans-unit id="3140041890374956085" datatype="html" xml:space="preserve">
|
||||
<source>Comments on your videos</source>
|
||||
<target state="translated">Kommentarer til videoene dine</target>
|
||||
@@ -13222,7 +13219,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Du har ingen video i seerloggen din ennå.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="989169929300254768" datatype="html">
|
||||
@@ -13238,7 +13235,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Videologg er aktivert</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
<context context-type="linenumber">122</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1869266307786648674" datatype="html">
|
||||
@@ -13246,7 +13243,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Videologg er deaktivert</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">120</context>
|
||||
<context context-type="linenumber">123</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7505147502630555700" datatype="html">
|
||||
@@ -13254,7 +13251,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Slett videologg</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">147</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8676027102068252963" datatype="html">
|
||||
@@ -13262,7 +13259,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Er du sikker på at du vil slette hele videologgen din?</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">145</context>
|
||||
<context context-type="linenumber">148</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7708910304029766516" datatype="html">
|
||||
@@ -13270,7 +13267,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Videologgen er slettet</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">153</context>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3343758569423394070" datatype="html">
|
||||
@@ -13278,7 +13275,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Fant ingen videoer for "<x id="PH" equiv-text="this.search"/>".</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="687236465759862933" datatype="html" xml:space="preserve">
|
||||
@@ -16583,12 +16580,20 @@ The link will expire within 1 hour.</source>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8946368517039712001" datatype="html">
|
||||
<source>This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</source>
|
||||
<target state="new">This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</target>
|
||||
<trans-unit id="649873611133633238" datatype="html">
|
||||
<source>This plugin does not have settings.</source>
|
||||
<target state="new">This plugin does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
<context context-type="linenumber">21,22</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5495621331909678720" datatype="html">
|
||||
<source>This theme does not have settings.</source>
|
||||
<target state="new">This theme does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1875025899004073421" datatype="html">
|
||||
@@ -17803,7 +17808,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Min seerlogg</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">73</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3656932706364053858" datatype="html">
|
||||
@@ -17977,11 +17982,11 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Innstillingene for grensesnittet er oppdatert.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">138</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">160</context>
|
||||
<context context-type="linenumber">163</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6784127216978878229" datatype="html">
|
||||
@@ -19223,11 +19228,8 @@ The link will expire within 1 hour.</source>
|
||||
<trans-unit id="7731752234233950482" datatype="html" xml:space="preserve">
|
||||
<source>Synchronizations</source>
|
||||
<target state="translated">Synkroniseringer</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context><context context-type="linenumber">39</context></context-group></trans-unit>
|
||||
<trans-unit id="7607713563510753803" datatype="html" xml:space="preserve">
|
||||
<source>Imports</source>
|
||||
<target state="translated">Importer</target>
|
||||
@@ -24889,12 +24891,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<source>Save interface settings</source>
|
||||
<target state="translated">Lagre grensesnitt-innstillinger</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">165</context></context-group></trans-unit>
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">168</context></context-group></trans-unit>
|
||||
<trans-unit id="7570883748440392027" datatype="html" xml:space="preserve">
|
||||
<source><x id="PH" equiv-text="this.instanceName"/> theme</source>
|
||||
<target state="translated"><x id="PH" equiv-text="this.instanceName"/> tema</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">63</context></context-group></trans-unit>
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">64</context></context-group></trans-unit>
|
||||
<trans-unit id="1219783168145776019" datatype="html">
|
||||
<source>LIVE ENDED</source>
|
||||
<target state="translated">DIREKTESENDING AVSLUTTET</target>
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1224,7 +1224,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="9031514421077169181" datatype="html">
|
||||
@@ -5694,12 +5694,20 @@
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8946368517039712001" datatype="html">
|
||||
<source>This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</source>
|
||||
<target state="new">This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</target>
|
||||
<trans-unit id="649873611133633238" datatype="html">
|
||||
<source>This plugin does not have settings.</source>
|
||||
<target state="new">This plugin does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
<context context-type="linenumber">21,22</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5495621331909678720" datatype="html">
|
||||
<source>This theme does not have settings.</source>
|
||||
<target state="new">This theme does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1875025899004073421" datatype="html">
|
||||
@@ -7811,7 +7819,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Manage my channels</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3140041890374956085" datatype="html">
|
||||
@@ -9562,7 +9570,7 @@ The link will expire within 1 hour.</source>
|
||||
<target>Du har ingen filmar i visingsloggen din enno.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="989169929300254768" datatype="html">
|
||||
@@ -9578,7 +9586,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Video history is enabled</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
<context context-type="linenumber">122</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1869266307786648674" datatype="html">
|
||||
@@ -9586,7 +9594,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Video history is disabled</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">120</context>
|
||||
<context context-type="linenumber">123</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7505147502630555700" datatype="html">
|
||||
@@ -9594,7 +9602,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Delete video history</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">147</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8676027102068252963" datatype="html">
|
||||
@@ -9602,7 +9610,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Are you sure you want to delete all your video history?</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">145</context>
|
||||
<context context-type="linenumber">148</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7708910304029766516" datatype="html">
|
||||
@@ -9610,7 +9618,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Video history deleted</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">153</context>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3343758569423394070" datatype="html">
|
||||
@@ -9618,7 +9626,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">No videos found for "<x id="PH" equiv-text="this.search"/>".</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1486537403020619891" datatype="html">
|
||||
@@ -9626,7 +9634,7 @@ The link will expire within 1 hour.</source>
|
||||
<target>Filmar eg har sett på</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">73</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="949618577357088829" datatype="html">
|
||||
@@ -9741,7 +9749,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Synchronizations</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7607713563510753803" datatype="html">
|
||||
@@ -17183,12 +17191,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="786003471867762836" datatype="html">
|
||||
<source>Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<trans-unit id="8309133070608650316" datatype="html">
|
||||
<source>Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7512666561651719221" datatype="html">
|
||||
@@ -17196,7 +17204,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">You can now <strong>invite other users</strong> to collaborate on your channel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1420294365005204590" datatype="html">
|
||||
@@ -23515,7 +23523,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">Save interface settings</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
<context context-type="linenumber">168</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7570883748440392027" datatype="html">
|
||||
@@ -23523,18 +23531,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new"><x id="PH" equiv-text="this.instanceName"/> theme</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">63</context>
|
||||
<context context-type="linenumber">64</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="4776289814033837037" datatype="html">
|
||||
<source>Interface settings updated.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">138</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">160</context>
|
||||
<context context-type="linenumber">163</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6784127216978878229" datatype="html">
|
||||
|
||||
@@ -2565,7 +2565,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6994936570572804302" datatype="html">
|
||||
@@ -3927,12 +3927,12 @@ The link will expire within 1 hour.</target>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="786003471867762836" datatype="html">
|
||||
<source>Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<trans-unit id="8309133070608650316" datatype="html">
|
||||
<source>Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7512666561651719221" datatype="html">
|
||||
@@ -3940,7 +3940,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">You can now <strong>invite other users</strong> to collaborate on your channel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5960096873104755868" datatype="html">
|
||||
@@ -8182,7 +8182,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Manage my channels</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3140041890374956085" datatype="html">
|
||||
@@ -14250,7 +14250,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">You don't have any video in your watch history yet.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="989169929300254768" datatype="html">
|
||||
@@ -14266,7 +14266,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Video history is enabled</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
<context context-type="linenumber">122</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1869266307786648674" datatype="html">
|
||||
@@ -14274,7 +14274,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Video history is disabled</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">120</context>
|
||||
<context context-type="linenumber">123</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7505147502630555700" datatype="html">
|
||||
@@ -14282,7 +14282,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Delete video history</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">147</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8676027102068252963" datatype="html">
|
||||
@@ -14290,7 +14290,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Are you sure you want to delete all your video history?</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">145</context>
|
||||
<context context-type="linenumber">148</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7708910304029766516" datatype="html">
|
||||
@@ -14298,7 +14298,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Video history deleted</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">153</context>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3343758569423394070" datatype="html">
|
||||
@@ -14306,7 +14306,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">No videos found for "<x id="PH" equiv-text="this.search"/>".</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="687236465759862933" datatype="html">
|
||||
@@ -17910,12 +17910,20 @@ The link will expire within 1 hour.</target>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8946368517039712001" datatype="html">
|
||||
<source>This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</source>
|
||||
<target state="new">This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</target>
|
||||
<trans-unit id="649873611133633238" datatype="html">
|
||||
<source>This plugin does not have settings.</source>
|
||||
<target state="new">This plugin does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
<context context-type="linenumber">21,22</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5495621331909678720" datatype="html">
|
||||
<source>This theme does not have settings.</source>
|
||||
<target state="new">This theme does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1875025899004073421">
|
||||
@@ -19173,7 +19181,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">My watch history</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">73</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3656932706364053858" datatype="html">
|
||||
@@ -19353,11 +19361,11 @@ The link will expire within 1 hour.</target>
|
||||
<target>Paramètres de l’interfàcia actualizats.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">138</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">160</context>
|
||||
<context context-type="linenumber">163</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6784127216978878229" datatype="html">
|
||||
@@ -20697,7 +20705,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Synchronizations</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7607713563510753803" datatype="html">
|
||||
@@ -26606,7 +26614,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">Save interface settings</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
<context context-type="linenumber">168</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7570883748440392027" datatype="html">
|
||||
@@ -26614,7 +26622,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new"><x id="PH" equiv-text="this.instanceName"/> theme</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">63</context>
|
||||
<context context-type="linenumber">64</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1219783168145776019" datatype="html">
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -2315,7 +2315,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6994936570572804302" datatype="html">
|
||||
@@ -3587,12 +3587,12 @@ The link will expire within 1 hour.</source>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="786003471867762836" datatype="html">
|
||||
<source>Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<trans-unit id="8309133070608650316" datatype="html">
|
||||
<source>Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7512666561651719221" datatype="html">
|
||||
@@ -3600,7 +3600,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">You can now <strong>invite other users</strong> to collaborate on your channel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5960096873104755868" datatype="html" xml:space="preserve">
|
||||
@@ -7359,11 +7359,8 @@ The link will expire within 1 hour.</source>
|
||||
<trans-unit id="913810105049472842" datatype="html" xml:space="preserve">
|
||||
<source>Manage my channels</source>
|
||||
<target state="translated">Gerenciar meus canais</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context><context context-type="linenumber">31</context></context-group></trans-unit>
|
||||
<trans-unit id="3140041890374956085" datatype="html" xml:space="preserve">
|
||||
<source>Comments on your videos</source>
|
||||
<target state="translated">Comentários em seus vídeos</target>
|
||||
@@ -12852,7 +12849,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Você ainda não tem nenhum vídeo em seu histórico de exibição.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="989169929300254768" datatype="html">
|
||||
@@ -12868,7 +12865,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">O histórico de vídeo está ativado</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
<context context-type="linenumber">122</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1869266307786648674" datatype="html">
|
||||
@@ -12876,7 +12873,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">O histórico de vídeo está desativado</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">120</context>
|
||||
<context context-type="linenumber">123</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7505147502630555700" datatype="html">
|
||||
@@ -12884,7 +12881,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Excluir histórico de vídeo</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">147</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8676027102068252963" datatype="html">
|
||||
@@ -12892,7 +12889,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Você está certo que quer excluir todo o seu histórico de vídeo?</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">145</context>
|
||||
<context context-type="linenumber">148</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7708910304029766516" datatype="html">
|
||||
@@ -12900,7 +12897,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Histórico de vídeo excluído</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">153</context>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3343758569423394070" datatype="html">
|
||||
@@ -12908,7 +12905,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Nenhum vídeo encontrado para "<x id="PH" equiv-text="this.search"/>".</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="687236465759862933" datatype="html" xml:space="preserve">
|
||||
@@ -16304,12 +16301,20 @@ The link will expire within 1 hour.</source>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8946368517039712001" datatype="html">
|
||||
<source>This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</source>
|
||||
<target state="new">This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</target>
|
||||
<trans-unit id="649873611133633238" datatype="html">
|
||||
<source>This plugin does not have settings.</source>
|
||||
<target state="new">This plugin does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
<context context-type="linenumber">21,22</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5495621331909678720" datatype="html">
|
||||
<source>This theme does not have settings.</source>
|
||||
<target state="new">This theme does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1875025899004073421" datatype="html">
|
||||
@@ -17503,7 +17508,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Meu histórico</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">73</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3656932706364053858" datatype="html">
|
||||
@@ -17674,11 +17679,11 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Configurações do interface atualizadas.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">138</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">160</context>
|
||||
<context context-type="linenumber">163</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6784127216978878229" datatype="html">
|
||||
@@ -18907,11 +18912,8 @@ The link will expire within 1 hour.</source>
|
||||
<trans-unit id="7731752234233950482" datatype="html" xml:space="preserve">
|
||||
<source>Synchronizations</source>
|
||||
<target state="translated">Sincronizações</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context><context context-type="linenumber">39</context></context-group></trans-unit>
|
||||
<trans-unit id="7607713563510753803" datatype="html" xml:space="preserve">
|
||||
<source>Imports</source>
|
||||
<target state="translated">Importações</target>
|
||||
@@ -24342,12 +24344,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<source>Save interface settings</source>
|
||||
<target state="translated">Salvar configurações de interface</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">165</context></context-group></trans-unit>
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">168</context></context-group></trans-unit>
|
||||
<trans-unit id="7570883748440392027" datatype="html" xml:space="preserve">
|
||||
<source><x id="PH" equiv-text="this.instanceName"/> theme</source>
|
||||
<target state="translated"><x id="PH" equiv-text="this.instanceName"/> tema</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">63</context></context-group></trans-unit>
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">64</context></context-group></trans-unit>
|
||||
<trans-unit id="1219783168145776019" datatype="html">
|
||||
<source>LIVE ENDED</source>
|
||||
<target state="translated">TRANSMISSÃO ENCERRADA</target>
|
||||
|
||||
@@ -2343,7 +2343,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6994936570572804302" datatype="html" xml:space="preserve">
|
||||
@@ -3595,12 +3595,12 @@ The link will expire within 1 hour.</source>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="786003471867762836" datatype="html">
|
||||
<source>Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<trans-unit id="8309133070608650316" datatype="html">
|
||||
<source>Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7512666561651719221" datatype="html">
|
||||
@@ -3608,7 +3608,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">You can now <strong>invite other users</strong> to collaborate on your channel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5960096873104755868" datatype="html" xml:space="preserve">
|
||||
@@ -7161,7 +7161,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Manage my channels</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3140041890374956085" datatype="html" xml:space="preserve">
|
||||
@@ -12197,11 +12197,8 @@ The link will expire within 1 hour.</source>
|
||||
<trans-unit id="4781078006040259916" datatype="html" xml:space="preserve">
|
||||
<source>You don't have any video in your watch history yet.</source>
|
||||
<target state="needs-translation">Você ainda não tem nenhum vídeo no seu histórico de exibição.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">170</context></context-group></trans-unit>
|
||||
<trans-unit id="989169929300254768" datatype="html" xml:space="preserve">
|
||||
<source>Delete from history</source>
|
||||
<target state="needs-translation">Apagar do histórico</target>
|
||||
@@ -12213,51 +12210,33 @@ The link will expire within 1 hour.</source>
|
||||
<trans-unit id="111295045776045026" datatype="html" xml:space="preserve">
|
||||
<source>Video history is enabled</source>
|
||||
<target state="needs-translation">O histórico de vídeo está habilitado</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">122</context></context-group></trans-unit>
|
||||
<trans-unit id="1869266307786648674" datatype="html" xml:space="preserve">
|
||||
<source>Video history is disabled</source>
|
||||
<target state="needs-translation">O histórico de vídeo está desabilitado</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">120</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">123</context></context-group></trans-unit>
|
||||
<trans-unit id="7505147502630555700" datatype="html" xml:space="preserve">
|
||||
<source>Delete video history</source>
|
||||
<target state="needs-translation">Excluir histórico de vídeos</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">147</context></context-group></trans-unit>
|
||||
<trans-unit id="8676027102068252963" datatype="html" xml:space="preserve">
|
||||
<source>Are you sure you want to delete all your video history?</source>
|
||||
<target state="needs-translation">Tem certeza de que deseja excluir todo o seu histórico de vídeos?</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">145</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">148</context></context-group></trans-unit>
|
||||
<trans-unit id="7708910304029766516" datatype="html" xml:space="preserve">
|
||||
<source>Video history deleted</source>
|
||||
<target state="needs-translation">Histórico de vídeo excluído</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">153</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">156</context></context-group></trans-unit>
|
||||
<trans-unit id="3343758569423394070" datatype="html" xml:space="preserve">
|
||||
<source>No videos found for "<x id="PH" equiv-text="this.search"/>".</source>
|
||||
<target state="needs-translation">Nenhum vídeo encontrado para "<x id="PH" equiv-text="this.search"/> ".</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">167</context></context-group></trans-unit>
|
||||
<trans-unit id="687236465759862933" datatype="html" xml:space="preserve">
|
||||
<source>Open syndication dropdown</source>
|
||||
<target state="needs-translation">Abrir lista suspensa de distribuição</target>
|
||||
@@ -15089,12 +15068,20 @@ The link will expire within 1 hour.</source>
|
||||
<target state="needs-translation"><x id="PH"/>instalado. </target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+admin/plugins/plugin-search/plugin-search.component.ts</context><context context-type="linenumber">156</context></context-group></trans-unit>
|
||||
<trans-unit id="8946368517039712001" datatype="html">
|
||||
<source>This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</source>
|
||||
<target state="new">This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</target>
|
||||
<trans-unit id="649873611133633238" datatype="html">
|
||||
<source>This plugin does not have settings.</source>
|
||||
<target state="new">This plugin does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
<context context-type="linenumber">21,22</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5495621331909678720" datatype="html">
|
||||
<source>This theme does not have settings.</source>
|
||||
<target state="new">This theme does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1875025899004073421" datatype="html" xml:space="preserve">
|
||||
@@ -16156,7 +16143,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">O meu histórico</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">73</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3656932706364053858" datatype="html" xml:space="preserve">
|
||||
@@ -16321,7 +16308,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="needs-translation">Configurações de interface atualizadas.</target>
|
||||
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">138</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">160</context></context-group></trans-unit>
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">141</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">163</context></context-group></trans-unit>
|
||||
<trans-unit id="6784127216978878229" datatype="html">
|
||||
<source>Override sensitive content policy for certain videos</source>
|
||||
<target state="new">Override sensitive content policy for certain videos</target>
|
||||
@@ -17444,11 +17431,8 @@ The link will expire within 1 hour.</source>
|
||||
<trans-unit id="7731752234233950482" datatype="html" xml:space="preserve">
|
||||
<source>Synchronizations</source>
|
||||
<target state="needs-translation">Sincronizações</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context><context context-type="linenumber">39</context></context-group></trans-unit>
|
||||
<trans-unit id="7607713563510753803" datatype="html" xml:space="preserve">
|
||||
<source>Imports</source>
|
||||
<target state="needs-translation">Importações</target>
|
||||
@@ -22502,12 +22486,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<source>Save interface settings</source>
|
||||
<target state="needs-translation">Salvar configurações de interface</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">165</context></context-group></trans-unit>
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">168</context></context-group></trans-unit>
|
||||
<trans-unit id="7570883748440392027" datatype="html" xml:space="preserve">
|
||||
<source><x id="PH" equiv-text="this.instanceName"/> theme</source>
|
||||
<target state="needs-translation"><x id="PH" equiv-text="this.instanceName"/>tema</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">63</context></context-group></trans-unit>
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">64</context></context-group></trans-unit>
|
||||
<trans-unit id="1219783168145776019" datatype="html" xml:space="preserve">
|
||||
<source>LIVE ENDED</source>
|
||||
<target state="needs-translation">AO VIVO TERMINOU</target>
|
||||
|
||||
@@ -1259,7 +1259,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="9031514421077169181" datatype="html">
|
||||
@@ -7513,12 +7513,20 @@
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8946368517039712001" datatype="html">
|
||||
<source>This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</source>
|
||||
<target state="new">This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</target>
|
||||
<trans-unit id="649873611133633238" datatype="html">
|
||||
<source>This plugin does not have settings.</source>
|
||||
<target state="new">This plugin does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
<context context-type="linenumber">21,22</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5495621331909678720" datatype="html">
|
||||
<source>This theme does not have settings.</source>
|
||||
<target state="new">This theme does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1875025899004073421" datatype="html">
|
||||
@@ -10428,7 +10436,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Manage my channels</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7731752234233950482" datatype="html">
|
||||
@@ -10436,7 +10444,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Synchronizations</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1498264516089100469" datatype="html">
|
||||
@@ -10624,7 +10632,7 @@ The link will expire within 1 hour.</source>
|
||||
<source>My watch history</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">73</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3656932706364053858" datatype="html">
|
||||
@@ -10653,49 +10661,49 @@ The link will expire within 1 hour.</source>
|
||||
<source>Video history is enabled</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
<context context-type="linenumber">122</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1869266307786648674" datatype="html">
|
||||
<source>Video history is disabled</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">120</context>
|
||||
<context context-type="linenumber">123</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7505147502630555700" datatype="html">
|
||||
<source>Delete video history</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">147</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8676027102068252963" datatype="html">
|
||||
<source>Are you sure you want to delete all your video history?</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">145</context>
|
||||
<context context-type="linenumber">148</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7708910304029766516" datatype="html">
|
||||
<source>Video history deleted</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">153</context>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3343758569423394070" datatype="html">
|
||||
<source>No videos found for "<x id="PH" equiv-text="this.search"/>".</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="4781078006040259916" datatype="html">
|
||||
<source>You don't have any video in your watch history yet.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7545420287297803988" datatype="html">
|
||||
@@ -18014,12 +18022,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="786003471867762836" datatype="html">
|
||||
<source>Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<trans-unit id="8309133070608650316" datatype="html">
|
||||
<source>Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7512666561651719221" datatype="html">
|
||||
@@ -18027,7 +18035,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">You can now <strong>invite other users</strong> to collaborate on your channel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1420294365005204590" datatype="html">
|
||||
@@ -23439,7 +23447,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">Save interface settings</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
<context context-type="linenumber">168</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7570883748440392027" datatype="html">
|
||||
@@ -23447,18 +23455,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new"><x id="PH" equiv-text="this.instanceName"/> theme</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">63</context>
|
||||
<context context-type="linenumber">64</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="4776289814033837037" datatype="html">
|
||||
<source>Interface settings updated.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">138</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">160</context>
|
||||
<context context-type="linenumber">163</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6784127216978878229" datatype="html">
|
||||
|
||||
@@ -4140,12 +4140,20 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8946368517039712001" datatype="html">
|
||||
<source>This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</source>
|
||||
<target state="new">This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</target>
|
||||
<trans-unit id="649873611133633238" datatype="html">
|
||||
<source>This plugin does not have settings.</source>
|
||||
<target state="new">This plugin does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
<context context-type="linenumber">21,22</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5495621331909678720" datatype="html">
|
||||
<source>This theme does not have settings.</source>
|
||||
<target state="new">This theme does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1144407473317535723" datatype="html">
|
||||
@@ -6466,7 +6474,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="9031514421077169181" datatype="html">
|
||||
@@ -8921,12 +8929,12 @@ The link will expire within 1 hour.</target>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="786003471867762836" datatype="html">
|
||||
<source>Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<trans-unit id="8309133070608650316" datatype="html">
|
||||
<source>Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7512666561651719221" datatype="html">
|
||||
@@ -8934,7 +8942,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">You can now <strong>invite other users</strong> to collaborate on your channel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1000468652492651683" datatype="html">
|
||||
@@ -16128,7 +16136,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Save interface settings</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
<context context-type="linenumber">168</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7570883748440392027" datatype="html">
|
||||
@@ -16136,7 +16144,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new"><x id="PH" equiv-text="this.instanceName"/> theme</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">63</context>
|
||||
<context context-type="linenumber">64</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="4776289814033837037" datatype="html">
|
||||
@@ -16144,11 +16152,11 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Interface settings updated.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">138</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">160</context>
|
||||
<context context-type="linenumber">163</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6784127216978878229" datatype="html">
|
||||
@@ -25059,7 +25067,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">My watch history</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">73</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="111295045776045026" datatype="html">
|
||||
@@ -25067,7 +25075,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Video history is enabled</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
<context context-type="linenumber">122</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1869266307786648674" datatype="html">
|
||||
@@ -25075,7 +25083,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Video history is disabled</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">120</context>
|
||||
<context context-type="linenumber">123</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7505147502630555700" datatype="html">
|
||||
@@ -25083,7 +25091,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Delete video history</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">147</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8676027102068252963" datatype="html">
|
||||
@@ -25091,7 +25099,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Are you sure you want to delete all your video history?</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">145</context>
|
||||
<context context-type="linenumber">148</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7708910304029766516" datatype="html">
|
||||
@@ -25099,7 +25107,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Video history deleted</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">153</context>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3343758569423394070" datatype="html">
|
||||
@@ -25107,7 +25115,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">No videos found for "<x id="PH" equiv-text="this.search"/>".</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="4781078006040259916" datatype="html">
|
||||
@@ -25115,7 +25123,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">You don't have any video in your watch history yet.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7679199047720825365" datatype="html">
|
||||
@@ -26928,7 +26936,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Manage my channels</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7731752234233950482" datatype="html">
|
||||
@@ -26936,7 +26944,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Synchronizations</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="2521678336272309407" datatype="html">
|
||||
|
||||
@@ -2285,7 +2285,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6994936570572804302" datatype="html">
|
||||
@@ -3584,12 +3584,12 @@ The link will expire within 1 hour.</source>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="786003471867762836" datatype="html">
|
||||
<source>Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<trans-unit id="8309133070608650316" datatype="html">
|
||||
<source>Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7512666561651719221" datatype="html">
|
||||
@@ -3597,7 +3597,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">You can now <strong>invite other users</strong> to collaborate on your channel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5960096873104755868" datatype="html" xml:space="preserve">
|
||||
@@ -7536,11 +7536,8 @@ The link will expire within 1 hour.</source>
|
||||
<trans-unit id="913810105049472842" datatype="html" xml:space="preserve">
|
||||
<source>Manage my channels</source>
|
||||
<target state="translated">Управление моими каналами</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context><context context-type="linenumber">31</context></context-group></trans-unit>
|
||||
<trans-unit id="3140041890374956085" datatype="html" xml:space="preserve">
|
||||
<source>Comments on your videos</source>
|
||||
<target state="translated">Комментируйте свои видео</target>
|
||||
@@ -13407,7 +13404,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">В вашей истории просмотров еще нет видео.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="989169929300254768" datatype="html">
|
||||
@@ -13423,7 +13420,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">История видео включена</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
<context context-type="linenumber">122</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1869266307786648674" datatype="html">
|
||||
@@ -13431,7 +13428,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">История видео отключена</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">120</context>
|
||||
<context context-type="linenumber">123</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7505147502630555700" datatype="html">
|
||||
@@ -13439,7 +13436,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Удалить историю видео</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">147</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8676027102068252963" datatype="html">
|
||||
@@ -13447,7 +13444,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Вы уверены, что хотите удалить всю историю видео?</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">145</context>
|
||||
<context context-type="linenumber">148</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7708910304029766516" datatype="html">
|
||||
@@ -13455,7 +13452,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">История видео удалена</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">153</context>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3343758569423394070" datatype="html">
|
||||
@@ -13463,7 +13460,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Видео не найдено по запросу "<x id="PH" equiv-text="this.search"/>".</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="687236465759862933" datatype="html">
|
||||
@@ -16985,12 +16982,20 @@ The link will expire within 1 hour.</source>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8946368517039712001" datatype="html">
|
||||
<source>This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</source>
|
||||
<target state="new">This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</target>
|
||||
<trans-unit id="649873611133633238" datatype="html">
|
||||
<source>This plugin does not have settings.</source>
|
||||
<target state="new">This plugin does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
<context context-type="linenumber">21,22</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5495621331909678720" datatype="html">
|
||||
<source>This theme does not have settings.</source>
|
||||
<target state="new">This theme does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1875025899004073421" datatype="html">
|
||||
@@ -18226,7 +18231,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Моя история просмотров</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">73</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3656932706364053858" datatype="html">
|
||||
@@ -18400,11 +18405,11 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Обновлены настройки интерфейса.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">138</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">160</context>
|
||||
<context context-type="linenumber">163</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6784127216978878229" datatype="html" xml:space="preserve">
|
||||
@@ -19682,11 +19687,8 @@ The link will expire within 1 hour.</source>
|
||||
<trans-unit id="7731752234233950482" datatype="html" xml:space="preserve">
|
||||
<source>Synchronizations</source>
|
||||
<target state="translated">Синхронизация</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context><context context-type="linenumber">39</context></context-group></trans-unit>
|
||||
<trans-unit id="7607713563510753803" datatype="html" xml:space="preserve">
|
||||
<source>Imports</source>
|
||||
<target state="translated">Импорты</target>
|
||||
@@ -25372,12 +25374,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<source>Save interface settings</source>
|
||||
<target state="translated">Сохранение настроек интерфейса</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">165</context></context-group></trans-unit>
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">168</context></context-group></trans-unit>
|
||||
<trans-unit id="7570883748440392027" datatype="html" xml:space="preserve">
|
||||
<source><x id="PH" equiv-text="this.instanceName"/> theme</source>
|
||||
<target state="translated"><x id="PH" equiv-text="this.instanceName"/> тема</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">63</context></context-group></trans-unit>
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">64</context></context-group></trans-unit>
|
||||
<trans-unit id="1219783168145776019" datatype="html">
|
||||
<source>LIVE ENDED</source>
|
||||
<target state="translated">ЭФИР ЗАВЕРШЕН</target>
|
||||
|
||||
@@ -1869,7 +1869,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="9031514421077169181" datatype="html">
|
||||
@@ -8207,12 +8207,20 @@
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8946368517039712001" datatype="html">
|
||||
<source>This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</source>
|
||||
<target state="new">This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</target>
|
||||
<trans-unit id="649873611133633238" datatype="html">
|
||||
<source>This plugin does not have settings.</source>
|
||||
<target state="new">This plugin does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
<context context-type="linenumber">21,22</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5495621331909678720" datatype="html">
|
||||
<source>This theme does not have settings.</source>
|
||||
<target state="new">This theme does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8854094932942190741" datatype="html">
|
||||
@@ -12524,7 +12532,7 @@
|
||||
<target state="new">Save interface settings</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
<context context-type="linenumber">168</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7570883748440392027" datatype="html">
|
||||
@@ -12532,7 +12540,7 @@
|
||||
<target state="new"><x id="PH" equiv-text="this.instanceName"/> theme</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">63</context>
|
||||
<context context-type="linenumber">64</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1219783168145776019" datatype="html">
|
||||
@@ -20566,11 +20574,11 @@ The link will expire within 1 hour.</source>
|
||||
<target/>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">138</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">160</context>
|
||||
<context context-type="linenumber">163</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6784127216978878229" datatype="html">
|
||||
@@ -21077,12 +21085,12 @@ The link will expire within 1 hour.</source>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="786003471867762836" datatype="html">
|
||||
<source>Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<trans-unit id="8309133070608650316" datatype="html">
|
||||
<source>Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7512666561651719221" datatype="html">
|
||||
@@ -21090,7 +21098,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">You can now <strong>invite other users</strong> to collaborate on your channel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8948444690892731948" datatype="html">
|
||||
@@ -25054,7 +25062,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">My watch history</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">73</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="111295045776045026" datatype="html">
|
||||
@@ -25062,7 +25070,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">Video history is enabled</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
<context context-type="linenumber">122</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1869266307786648674" datatype="html">
|
||||
@@ -25070,7 +25078,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">Video history is disabled</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">120</context>
|
||||
<context context-type="linenumber">123</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7505147502630555700" datatype="html">
|
||||
@@ -25078,7 +25086,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">Delete video history</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">147</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8676027102068252963" datatype="html">
|
||||
@@ -25086,7 +25094,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">Are you sure you want to delete all your video history?</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">145</context>
|
||||
<context context-type="linenumber">148</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7708910304029766516" datatype="html">
|
||||
@@ -25094,7 +25102,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">Video history deleted</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">153</context>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3343758569423394070" datatype="html">
|
||||
@@ -25102,7 +25110,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">No videos found for "<x id="PH" equiv-text="this.search"/>".</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="4781078006040259916" datatype="html">
|
||||
@@ -25110,7 +25118,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">You don't have any video in your watch history yet.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6700357678556223012" datatype="html">
|
||||
@@ -25486,7 +25494,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">Manage my channels</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7731752234233950482" datatype="html">
|
||||
@@ -25494,7 +25502,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">Synchronizations</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="2521678336272309407" datatype="html">
|
||||
|
||||
@@ -2411,7 +2411,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6994936570572804302" datatype="html">
|
||||
@@ -3747,12 +3747,12 @@ The link will expire within 1 hour.</source>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="786003471867762836" datatype="html">
|
||||
<source>Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<trans-unit id="8309133070608650316" datatype="html">
|
||||
<source>Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7512666561651719221" datatype="html">
|
||||
@@ -3760,7 +3760,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">You can now <strong>invite other users</strong> to collaborate on your channel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5960096873104755868" datatype="html" xml:space="preserve">
|
||||
@@ -7739,7 +7739,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Manage my channels</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3140041890374956085" datatype="html" xml:space="preserve">
|
||||
@@ -13509,7 +13509,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">V histórii pozretí zatiaľ nemáte žiadne video.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="989169929300254768" datatype="html">
|
||||
@@ -13525,7 +13525,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">História videí je zapnutá</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
<context context-type="linenumber">122</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1869266307786648674" datatype="html">
|
||||
@@ -13533,7 +13533,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">História videí je vypnutá</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">120</context>
|
||||
<context context-type="linenumber">123</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7505147502630555700" datatype="html">
|
||||
@@ -13541,7 +13541,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Vymazať video históriu</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">147</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8676027102068252963" datatype="html">
|
||||
@@ -13549,7 +13549,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Naozaj chcete vymazať vašu históriu videí?</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">145</context>
|
||||
<context context-type="linenumber">148</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7708910304029766516" datatype="html">
|
||||
@@ -13557,7 +13557,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">História videí vymazaná</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">153</context>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3343758569423394070" datatype="html">
|
||||
@@ -13565,7 +13565,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Nenašli sa žiadne videá pre "<x id="PH" equiv-text="this.search"/>".</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="687236465759862933" datatype="html">
|
||||
@@ -17047,12 +17047,20 @@ The link will expire within 1 hour.</source>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8946368517039712001" datatype="html">
|
||||
<source>This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</source>
|
||||
<target state="new">This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</target>
|
||||
<trans-unit id="649873611133633238" datatype="html">
|
||||
<source>This plugin does not have settings.</source>
|
||||
<target state="new">This plugin does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
<context context-type="linenumber">21,22</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5495621331909678720" datatype="html">
|
||||
<source>This theme does not have settings.</source>
|
||||
<target state="new">This theme does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1875025899004073421" datatype="html">
|
||||
@@ -18267,7 +18275,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Moja história pozeraní</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">73</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3656932706364053858" datatype="html">
|
||||
@@ -18441,11 +18449,11 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Aktualizované nastavenia rozhrania.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">138</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">160</context>
|
||||
<context context-type="linenumber">163</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6784127216978878229" datatype="html">
|
||||
@@ -19724,7 +19732,7 @@ The link will expire within 1 hour.</source>
|
||||
<source>Synchronizations</source>
|
||||
<target state="translated">Synchronizácie</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context><context context-type="linenumber">35</context></context-group></trans-unit>
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context><context context-type="linenumber">39</context></context-group></trans-unit>
|
||||
<trans-unit id="7607713563510753803" datatype="html" xml:space="preserve">
|
||||
<source>Imports</source>
|
||||
<target state="translated">Importy</target>
|
||||
@@ -25409,12 +25417,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<source>Save interface settings</source>
|
||||
<target state="translated">Uložiť nastavenia rozhrania</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">165</context></context-group></trans-unit>
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">168</context></context-group></trans-unit>
|
||||
<trans-unit id="7570883748440392027" datatype="html" xml:space="preserve">
|
||||
<source><x id="PH" equiv-text="this.instanceName"/> theme</source>
|
||||
<target state="translated">Téma <x id="PH" equiv-text="this.instanceName"/></target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">63</context></context-group></trans-unit>
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">64</context></context-group></trans-unit>
|
||||
<trans-unit id="1219783168145776019" datatype="html">
|
||||
<source>LIVE ENDED</source>
|
||||
<target state="translated">ŽIVÝ PRENOS SKONČIL</target>
|
||||
|
||||
@@ -2521,7 +2521,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6994936570572804302" datatype="html">
|
||||
@@ -3885,12 +3885,12 @@ The link will expire within 1 hour.</target>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="786003471867762836" datatype="html">
|
||||
<source>Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<trans-unit id="8309133070608650316" datatype="html">
|
||||
<source>Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7512666561651719221" datatype="html">
|
||||
@@ -3898,7 +3898,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">You can now <strong>invite other users</strong> to collaborate on your channel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5960096873104755868" datatype="html">
|
||||
@@ -8114,7 +8114,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Manage my channels</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3140041890374956085" datatype="html">
|
||||
@@ -14182,7 +14182,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">You don't have any video in your watch history yet.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="989169929300254768" datatype="html">
|
||||
@@ -14198,7 +14198,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Video history is enabled</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
<context context-type="linenumber">122</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1869266307786648674" datatype="html">
|
||||
@@ -14206,7 +14206,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Video history is disabled</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">120</context>
|
||||
<context context-type="linenumber">123</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7505147502630555700" datatype="html">
|
||||
@@ -14214,7 +14214,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Delete video history</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">147</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8676027102068252963" datatype="html">
|
||||
@@ -14222,7 +14222,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Are you sure you want to delete all your video history?</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">145</context>
|
||||
<context context-type="linenumber">148</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7708910304029766516" datatype="html">
|
||||
@@ -14230,7 +14230,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Video history deleted</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">153</context>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3343758569423394070" datatype="html">
|
||||
@@ -14238,7 +14238,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">No videos found for "<x id="PH" equiv-text="this.search"/>".</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="687236465759862933" datatype="html">
|
||||
@@ -17844,12 +17844,20 @@ The link will expire within 1 hour.</target>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8946368517039712001" datatype="html">
|
||||
<source>This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</source>
|
||||
<target state="new">This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</target>
|
||||
<trans-unit id="649873611133633238" datatype="html">
|
||||
<source>This plugin does not have settings.</source>
|
||||
<target state="new">This plugin does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
<context context-type="linenumber">21,22</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5495621331909678720" datatype="html">
|
||||
<source>This theme does not have settings.</source>
|
||||
<target state="new">This theme does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1875025899004073421" datatype="html">
|
||||
@@ -19107,7 +19115,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">My watch history</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">73</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3656932706364053858" datatype="html">
|
||||
@@ -19287,11 +19295,11 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Interface settings updated.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">138</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">160</context>
|
||||
<context context-type="linenumber">163</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6784127216978878229" datatype="html">
|
||||
@@ -20631,7 +20639,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Synchronizations</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7607713563510753803" datatype="html">
|
||||
@@ -26538,7 +26546,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">Save interface settings</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
<context context-type="linenumber">168</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7570883748440392027" datatype="html">
|
||||
@@ -26546,7 +26554,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new"><x id="PH" equiv-text="this.instanceName"/> theme</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">63</context>
|
||||
<context context-type="linenumber">64</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1219783168145776019" datatype="html">
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -1290,7 +1290,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="9031514421077169181" datatype="html">
|
||||
@@ -6081,12 +6081,20 @@
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8946368517039712001" datatype="html">
|
||||
<source>This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</source>
|
||||
<target state="new">This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</target>
|
||||
<trans-unit id="649873611133633238" datatype="html">
|
||||
<source>This plugin does not have settings.</source>
|
||||
<target state="new">This plugin does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
<context context-type="linenumber">21,22</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5495621331909678720" datatype="html">
|
||||
<source>This theme does not have settings.</source>
|
||||
<target state="new">This theme does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1875025899004073421" datatype="html">
|
||||
@@ -9968,7 +9976,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Manage my channels</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7731752234233950482" datatype="html">
|
||||
@@ -9976,7 +9984,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Synchronizations</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="2521678336272309407" datatype="html">
|
||||
@@ -10112,7 +10120,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Video history is enabled</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
<context context-type="linenumber">122</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1869266307786648674" datatype="html">
|
||||
@@ -10120,7 +10128,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Video history is disabled</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">120</context>
|
||||
<context context-type="linenumber">123</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7505147502630555700" datatype="html">
|
||||
@@ -10128,7 +10136,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Delete video history</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">147</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8676027102068252963" datatype="html">
|
||||
@@ -10136,7 +10144,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Are you sure you want to delete all your video history?</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">145</context>
|
||||
<context context-type="linenumber">148</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7708910304029766516" datatype="html">
|
||||
@@ -10144,7 +10152,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Video history deleted</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">153</context>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3343758569423394070" datatype="html">
|
||||
@@ -10152,7 +10160,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">No videos found for "<x id="PH" equiv-text="this.search"/>".</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3656932706364053858" datatype="html">
|
||||
@@ -10184,7 +10192,7 @@ The link will expire within 1 hour.</source>
|
||||
<target/>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1486537403020619891" datatype="html">
|
||||
@@ -10192,7 +10200,7 @@ The link will expire within 1 hour.</source>
|
||||
<target/>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">73</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="949618577357088829" datatype="html">
|
||||
@@ -18530,12 +18538,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="786003471867762836" datatype="html">
|
||||
<source>Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<trans-unit id="8309133070608650316" datatype="html">
|
||||
<source>Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7512666561651719221" datatype="html">
|
||||
@@ -18543,7 +18551,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">You can now <strong>invite other users</strong> to collaborate on your channel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1420294365005204590" datatype="html">
|
||||
@@ -24471,7 +24479,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">Save interface settings</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
<context context-type="linenumber">168</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7570883748440392027" datatype="html">
|
||||
@@ -24479,7 +24487,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new"><x id="PH" equiv-text="this.instanceName"/> theme</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">63</context>
|
||||
<context context-type="linenumber">64</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="4776289814033837037" datatype="html">
|
||||
@@ -24487,11 +24495,11 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target/>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">138</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">160</context>
|
||||
<context context-type="linenumber">163</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6784127216978878229" datatype="html">
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -2568,7 +2568,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6994936570572804302" datatype="html">
|
||||
@@ -3938,12 +3938,12 @@ The link will expire within 1 hour.</target>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="786003471867762836" datatype="html">
|
||||
<source>Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<trans-unit id="8309133070608650316" datatype="html">
|
||||
<source>Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7512666561651719221" datatype="html">
|
||||
@@ -3951,7 +3951,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">You can now <strong>invite other users</strong> to collaborate on your channel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5960096873104755868" datatype="html">
|
||||
@@ -8187,7 +8187,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Manage my channels</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3140041890374956085" datatype="html">
|
||||
@@ -14262,7 +14262,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">You don't have any video in your watch history yet.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="989169929300254768" datatype="html">
|
||||
@@ -14278,7 +14278,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Video history is enabled</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
<context context-type="linenumber">122</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1869266307786648674" datatype="html">
|
||||
@@ -14286,7 +14286,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Video history is disabled</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">120</context>
|
||||
<context context-type="linenumber">123</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7505147502630555700" datatype="html">
|
||||
@@ -14294,7 +14294,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Delete video history</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">147</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8676027102068252963" datatype="html">
|
||||
@@ -14302,7 +14302,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Are you sure you want to delete all your video history?</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">145</context>
|
||||
<context context-type="linenumber">148</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7708910304029766516" datatype="html">
|
||||
@@ -14310,7 +14310,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Video history deleted</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">153</context>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3343758569423394070" datatype="html">
|
||||
@@ -14318,7 +14318,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">No videos found for "<x id="PH" equiv-text="this.search"/>".</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="687236465759862933" datatype="html">
|
||||
@@ -17940,12 +17940,20 @@ The link will expire within 1 hour.</target>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8946368517039712001" datatype="html">
|
||||
<source>This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</source>
|
||||
<target state="new">This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</target>
|
||||
<trans-unit id="649873611133633238" datatype="html">
|
||||
<source>This plugin does not have settings.</source>
|
||||
<target state="new">This plugin does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
<context context-type="linenumber">21,22</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5495621331909678720" datatype="html">
|
||||
<source>This theme does not have settings.</source>
|
||||
<target state="new">This theme does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1875025899004073421" datatype="html">
|
||||
@@ -19203,7 +19211,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">My watch history</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">73</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3656932706364053858" datatype="html">
|
||||
@@ -19383,11 +19391,11 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Interface settings updated.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">138</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">160</context>
|
||||
<context context-type="linenumber">163</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6784127216978878229" datatype="html">
|
||||
@@ -20727,7 +20735,7 @@ The link will expire within 1 hour.</target>
|
||||
<target state="new">Synchronizations</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7607713563510753803" datatype="html">
|
||||
@@ -26651,7 +26659,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">Save interface settings</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
<context context-type="linenumber">168</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7570883748440392027" datatype="html">
|
||||
@@ -26659,7 +26667,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new"><x id="PH" equiv-text="this.instanceName"/> theme</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">63</context>
|
||||
<context context-type="linenumber">64</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1219783168145776019" datatype="html">
|
||||
|
||||
@@ -2392,7 +2392,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6994936570572804302" datatype="html">
|
||||
@@ -3733,12 +3733,12 @@ The link will expire within 1 hour.</source>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="786003471867762836" datatype="html">
|
||||
<source>Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<trans-unit id="8309133070608650316" datatype="html">
|
||||
<source>Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7512666561651719221" datatype="html">
|
||||
@@ -3746,7 +3746,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">You can now <strong>invite other users</strong> to collaborate on your channel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5960096873104755868" datatype="html" xml:space="preserve">
|
||||
@@ -7839,7 +7839,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Manage my channels</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3140041890374956085" datatype="html" xml:space="preserve">
|
||||
@@ -13823,7 +13823,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">You don't have any video in your watch history yet.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="989169929300254768" datatype="html">
|
||||
@@ -13839,7 +13839,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Video history is enabled</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
<context context-type="linenumber">122</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1869266307786648674" datatype="html">
|
||||
@@ -13847,7 +13847,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Video history is disabled</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">120</context>
|
||||
<context context-type="linenumber">123</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7505147502630555700" datatype="html">
|
||||
@@ -13855,7 +13855,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">ลบประวัติวิดีโอ</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">147</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8676027102068252963" datatype="html">
|
||||
@@ -13863,7 +13863,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Are you sure you want to delete all your video history?</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">145</context>
|
||||
<context context-type="linenumber">148</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7708910304029766516" datatype="html">
|
||||
@@ -13871,7 +13871,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Video history deleted</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">153</context>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3343758569423394070" datatype="html">
|
||||
@@ -13879,7 +13879,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">ไม่พบวิดีโอสำหรับ "<x id="PH" equiv-text="this.search"/>"</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="687236465759862933" datatype="html">
|
||||
@@ -17404,12 +17404,20 @@ The link will expire within 1 hour.</source>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8946368517039712001" datatype="html">
|
||||
<source>This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</source>
|
||||
<target state="new">This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</target>
|
||||
<trans-unit id="649873611133633238" datatype="html">
|
||||
<source>This plugin does not have settings.</source>
|
||||
<target state="new">This plugin does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
<context context-type="linenumber">21,22</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5495621331909678720" datatype="html">
|
||||
<source>This theme does not have settings.</source>
|
||||
<target state="new">This theme does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1875025899004073421" datatype="html">
|
||||
@@ -18664,7 +18672,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">My watch history</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">73</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3656932706364053858" datatype="html">
|
||||
@@ -18844,11 +18852,11 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">อัปเดตการตั้งค่าอินเตอร์เฟซแล้ว</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">138</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">160</context>
|
||||
<context context-type="linenumber">163</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6784127216978878229" datatype="html">
|
||||
@@ -20179,7 +20187,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Synchronizations</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7607713563510753803" datatype="html">
|
||||
@@ -26034,7 +26042,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">Save interface settings</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
<context context-type="linenumber">168</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7570883748440392027" datatype="html">
|
||||
@@ -26042,7 +26050,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new"><x id="PH" equiv-text="this.instanceName"/> theme</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">63</context>
|
||||
<context context-type="linenumber">64</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1219783168145776019" datatype="html">
|
||||
|
||||
@@ -1452,7 +1452,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="9031514421077169181" datatype="html">
|
||||
@@ -7983,12 +7983,20 @@
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8946368517039712001" datatype="html">
|
||||
<source>This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</source>
|
||||
<target state="new">This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</target>
|
||||
<trans-unit id="649873611133633238" datatype="html">
|
||||
<source>This plugin does not have settings.</source>
|
||||
<target state="new">This plugin does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
<context context-type="linenumber">21,22</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5495621331909678720" datatype="html">
|
||||
<source>This theme does not have settings.</source>
|
||||
<target state="new">This theme does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1875025899004073421" datatype="html">
|
||||
@@ -9634,7 +9642,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Manage my channels</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3140041890374956085" datatype="html">
|
||||
@@ -11082,7 +11090,7 @@ The link will expire within 1 hour.</source>
|
||||
<target>lukin mi pi tenpo pini</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">73</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3656932706364053858" datatype="html">
|
||||
@@ -11106,7 +11114,7 @@ The link will expire within 1 hour.</source>
|
||||
<target>sona pi lukin sina li lon ala.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="989169929300254768" datatype="html">
|
||||
@@ -11122,7 +11130,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Video history is enabled</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
<context context-type="linenumber">122</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1869266307786648674" datatype="html">
|
||||
@@ -11130,7 +11138,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Video history is disabled</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">120</context>
|
||||
<context context-type="linenumber">123</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7505147502630555700" datatype="html">
|
||||
@@ -11138,7 +11146,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Delete video history</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">147</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8676027102068252963" datatype="html">
|
||||
@@ -11146,7 +11154,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Are you sure you want to delete all your video history?</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">145</context>
|
||||
<context context-type="linenumber">148</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7708910304029766516" datatype="html">
|
||||
@@ -11154,7 +11162,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Video history deleted</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">153</context>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3343758569423394070" datatype="html">
|
||||
@@ -11162,7 +11170,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">No videos found for "<x id="PH" equiv-text="this.search"/>".</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7545420287297803988" datatype="html">
|
||||
@@ -11330,7 +11338,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Synchronizations</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7607713563510753803" datatype="html">
|
||||
@@ -18978,12 +18986,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="786003471867762836" datatype="html">
|
||||
<source>Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<trans-unit id="8309133070608650316" datatype="html">
|
||||
<source>Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7512666561651719221" datatype="html">
|
||||
@@ -18991,7 +18999,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">You can now <strong>invite other users</strong> to collaborate on your channel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1420294365005204590" datatype="html">
|
||||
@@ -24951,7 +24959,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">Save interface settings</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
<context context-type="linenumber">168</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7570883748440392027" datatype="html">
|
||||
@@ -24959,7 +24967,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new"><x id="PH" equiv-text="this.instanceName"/> theme</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">63</context>
|
||||
<context context-type="linenumber">64</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="4776289814033837037" datatype="html">
|
||||
@@ -24967,11 +24975,11 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target>mi awen e ante selo.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">138</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">160</context>
|
||||
<context context-type="linenumber">163</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6784127216978878229" datatype="html">
|
||||
|
||||
@@ -1137,7 +1137,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="9031514421077169181" datatype="html">
|
||||
@@ -7410,12 +7410,20 @@
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8946368517039712001" datatype="html">
|
||||
<source>This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</source>
|
||||
<target state="new">This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</target>
|
||||
<trans-unit id="649873611133633238" datatype="html">
|
||||
<source>This plugin does not have settings.</source>
|
||||
<target state="new">This plugin does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
<context context-type="linenumber">21,22</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5495621331909678720" datatype="html">
|
||||
<source>This theme does not have settings.</source>
|
||||
<target state="new">This theme does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1875025899004073421" datatype="html">
|
||||
@@ -10075,7 +10083,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Manage my channels</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7731752234233950482" datatype="html">
|
||||
@@ -10083,7 +10091,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Synchronizations</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7000850040589508423" datatype="html">
|
||||
@@ -10308,7 +10316,7 @@ The link will expire within 1 hour.</source>
|
||||
<source>My watch history</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">73</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="111295045776045026" datatype="html">
|
||||
@@ -10316,7 +10324,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Video history is enabled</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
<context context-type="linenumber">122</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1869266307786648674" datatype="html">
|
||||
@@ -10324,7 +10332,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Video history is disabled</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">120</context>
|
||||
<context context-type="linenumber">123</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7505147502630555700" datatype="html">
|
||||
@@ -10332,7 +10340,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Delete video history</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">147</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8676027102068252963" datatype="html">
|
||||
@@ -10340,7 +10348,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Are you sure you want to delete all your video history?</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">145</context>
|
||||
<context context-type="linenumber">148</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7708910304029766516" datatype="html">
|
||||
@@ -10348,7 +10356,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Video history deleted</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">153</context>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3343758569423394070" datatype="html">
|
||||
@@ -10356,7 +10364,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">No videos found for "<x id="PH" equiv-text="this.search"/>".</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3656932706364053858" datatype="html">
|
||||
@@ -10378,7 +10386,7 @@ The link will expire within 1 hour.</source>
|
||||
<source>You don't have any video in your watch history yet.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="989169929300254768" datatype="html">
|
||||
@@ -18166,12 +18174,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="786003471867762836" datatype="html">
|
||||
<source>Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<trans-unit id="8309133070608650316" datatype="html">
|
||||
<source>Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7512666561651719221" datatype="html">
|
||||
@@ -18179,7 +18187,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">You can now <strong>invite other users</strong> to collaborate on your channel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1420294365005204590" datatype="html">
|
||||
@@ -23165,7 +23173,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">Save interface settings</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
<context context-type="linenumber">168</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7570883748440392027" datatype="html">
|
||||
@@ -23173,18 +23181,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new"><x id="PH" equiv-text="this.instanceName"/> theme</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">63</context>
|
||||
<context context-type="linenumber">64</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="4776289814033837037" datatype="html">
|
||||
<source>Interface settings updated.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">138</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">160</context>
|
||||
<context context-type="linenumber">163</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6784127216978878229" datatype="html">
|
||||
|
||||
@@ -2294,7 +2294,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6994936570572804302" datatype="html" xml:space="preserve">
|
||||
@@ -3572,12 +3572,12 @@ The link will expire within 1 hour.</source>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="786003471867762836" datatype="html">
|
||||
<source>Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<trans-unit id="8309133070608650316" datatype="html">
|
||||
<source>Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7512666561651719221" datatype="html">
|
||||
@@ -3585,7 +3585,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">You can now <strong>invite other users</strong> to collaborate on your channel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5960096873104755868" datatype="html" xml:space="preserve">
|
||||
@@ -7256,7 +7256,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Manage my channels</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3140041890374956085" datatype="html" xml:space="preserve">
|
||||
@@ -12065,11 +12065,8 @@ The link will expire within 1 hour.</source>
|
||||
<trans-unit id="4781078006040259916" datatype="html" xml:space="preserve">
|
||||
<source>You don't have any video in your watch history yet.</source>
|
||||
<target state="translated">İzleme geçmişinizde henüz video yok.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">170</context></context-group></trans-unit>
|
||||
<trans-unit id="989169929300254768" datatype="html" xml:space="preserve">
|
||||
<source>Delete from history</source>
|
||||
<target state="translated">Geçmişten sil</target>
|
||||
@@ -12081,51 +12078,33 @@ The link will expire within 1 hour.</source>
|
||||
<trans-unit id="111295045776045026" datatype="html" xml:space="preserve">
|
||||
<source>Video history is enabled</source>
|
||||
<target state="translated">Video geçmişi etkin</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">122</context></context-group></trans-unit>
|
||||
<trans-unit id="1869266307786648674" datatype="html" xml:space="preserve">
|
||||
<source>Video history is disabled</source>
|
||||
<target state="translated">Video geçmişi devre dışı</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">120</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">123</context></context-group></trans-unit>
|
||||
<trans-unit id="7505147502630555700" datatype="html" xml:space="preserve">
|
||||
<source>Delete video history</source>
|
||||
<target state="translated">Video geçmişini sil</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">147</context></context-group></trans-unit>
|
||||
<trans-unit id="8676027102068252963" datatype="html" xml:space="preserve">
|
||||
<source>Are you sure you want to delete all your video history?</source>
|
||||
<target state="translated">Tüm video geçmişinizi silmek istediğinizden emin misiniz?</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">145</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">148</context></context-group></trans-unit>
|
||||
<trans-unit id="7708910304029766516" datatype="html" xml:space="preserve">
|
||||
<source>Video history deleted</source>
|
||||
<target state="translated">Video geçmişi silindi</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">153</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">156</context></context-group></trans-unit>
|
||||
<trans-unit id="3343758569423394070" datatype="html" xml:space="preserve">
|
||||
<source>No videos found for "<x id="PH" equiv-text="this.search"/>".</source>
|
||||
<target state="translated">Şunun için video bulunamadı: "<x id="PH" equiv-text="this.search"/>".</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context><context context-type="linenumber">167</context></context-group></trans-unit>
|
||||
<trans-unit id="687236465759862933" datatype="html" xml:space="preserve">
|
||||
<source>Open syndication dropdown</source>
|
||||
<target state="translated">Sendikasyon açılır menüsünü aç</target>
|
||||
@@ -14869,12 +14848,20 @@ The link will expire within 1 hour.</source>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8946368517039712001" datatype="html">
|
||||
<source>This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</source>
|
||||
<target state="new">This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</target>
|
||||
<trans-unit id="649873611133633238" datatype="html">
|
||||
<source>This plugin does not have settings.</source>
|
||||
<target state="new">This plugin does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
<context context-type="linenumber">21,22</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5495621331909678720" datatype="html">
|
||||
<source>This theme does not have settings.</source>
|
||||
<target state="new">This theme does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1875025899004073421" datatype="html">
|
||||
@@ -15848,7 +15835,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">İzleme geçmişim</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">73</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3656932706364053858" datatype="html" xml:space="preserve">
|
||||
@@ -16010,11 +15997,11 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Arayüz ayarları güncellendi.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">138</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">160</context>
|
||||
<context context-type="linenumber">163</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6784127216978878229" datatype="html">
|
||||
@@ -17094,11 +17081,8 @@ The link will expire within 1 hour.</source>
|
||||
<trans-unit id="7731752234233950482" datatype="html" xml:space="preserve">
|
||||
<source>Synchronizations</source>
|
||||
<target state="translated">Senkranizasyonlar</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context><context context-type="linenumber">39</context></context-group></trans-unit>
|
||||
<trans-unit id="7607713563510753803" datatype="html" xml:space="preserve">
|
||||
<source>Imports</source>
|
||||
<target state="translated">İçe aktarımlar</target>
|
||||
@@ -22054,12 +22038,12 @@ PeerTube'u (config/dizin), özellikle "web sunucusu" bölümünü doğru şekild
|
||||
<source>Save interface settings</source>
|
||||
<target state="translated">Arayüz ayarlarını kaydet</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">165</context></context-group></trans-unit>
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">168</context></context-group></trans-unit>
|
||||
<trans-unit id="7570883748440392027" datatype="html" xml:space="preserve">
|
||||
<source><x id="PH" equiv-text="this.instanceName"/> theme</source>
|
||||
<target state="translated"><x id="PH" equiv-text="this.instanceName"/> tema</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">63</context></context-group></trans-unit>
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">64</context></context-group></trans-unit>
|
||||
<trans-unit id="1219783168145776019" datatype="html" xml:space="preserve">
|
||||
<source>LIVE ENDED</source>
|
||||
<target state="translated">CANLI SONA ERDİ</target>
|
||||
|
||||
@@ -1465,7 +1465,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="9031514421077169181" datatype="html">
|
||||
@@ -7880,12 +7880,20 @@
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8946368517039712001" datatype="html">
|
||||
<source>This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</source>
|
||||
<target state="new">This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</target>
|
||||
<trans-unit id="649873611133633238" datatype="html">
|
||||
<source>This plugin does not have settings.</source>
|
||||
<target state="new">This plugin does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
<context context-type="linenumber">21,22</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5495621331909678720" datatype="html">
|
||||
<source>This theme does not have settings.</source>
|
||||
<target state="new">This theme does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1875025899004073421" datatype="html">
|
||||
@@ -10930,7 +10938,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Manage my channels</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7731752234233950482" datatype="html">
|
||||
@@ -10938,7 +10946,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Synchronizations</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1498264516089100469" datatype="html">
|
||||
@@ -11126,7 +11134,7 @@ The link will expire within 1 hour.</source>
|
||||
<source>My watch history</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">73</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3656932706364053858" datatype="html">
|
||||
@@ -11155,49 +11163,49 @@ The link will expire within 1 hour.</source>
|
||||
<source>Video history is enabled</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
<context context-type="linenumber">122</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1869266307786648674" datatype="html">
|
||||
<source>Video history is disabled</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">120</context>
|
||||
<context context-type="linenumber">123</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7505147502630555700" datatype="html">
|
||||
<source>Delete video history</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">147</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8676027102068252963" datatype="html">
|
||||
<source>Are you sure you want to delete all your video history?</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">145</context>
|
||||
<context context-type="linenumber">148</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7708910304029766516" datatype="html">
|
||||
<source>Video history deleted</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">153</context>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3343758569423394070" datatype="html">
|
||||
<source>No videos found for "<x id="PH" equiv-text="this.search"/>".</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="4781078006040259916" datatype="html">
|
||||
<source>You don't have any video in your watch history yet.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7545420287297803988" datatype="html">
|
||||
@@ -18097,12 +18105,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="786003471867762836" datatype="html">
|
||||
<source>Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<trans-unit id="8309133070608650316" datatype="html">
|
||||
<source>Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7512666561651719221" datatype="html">
|
||||
@@ -18110,7 +18118,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">You can now <strong>invite other users</strong> to collaborate on your channel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1420294365005204590" datatype="html">
|
||||
@@ -23317,7 +23325,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new">Save interface settings</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
<context context-type="linenumber">168</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7570883748440392027" datatype="html">
|
||||
@@ -23325,18 +23333,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<target state="new"><x id="PH" equiv-text="this.instanceName"/> theme</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">63</context>
|
||||
<context context-type="linenumber">64</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="4776289814033837037" datatype="html">
|
||||
<source>Interface settings updated.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">138</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">160</context>
|
||||
<context context-type="linenumber">163</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6784127216978878229" datatype="html">
|
||||
|
||||
@@ -298,12 +298,12 @@
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="786003471867762836" datatype="html">
|
||||
<source>Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<trans-unit id="8309133070608650316" datatype="html">
|
||||
<source>Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7512666561651719221" datatype="html">
|
||||
@@ -311,7 +311,7 @@
|
||||
<target state="new">You can now <strong>invite other users</strong> to collaborate on your channel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8948444690892731948" datatype="html">
|
||||
@@ -1099,11 +1099,11 @@
|
||||
<target/>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">138</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">160</context>
|
||||
<context context-type="linenumber">163</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6784127216978878229" datatype="html">
|
||||
@@ -3835,7 +3835,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="996392855508119363" datatype="html">
|
||||
@@ -9369,7 +9369,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Video history is enabled</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
<context context-type="linenumber">122</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1869266307786648674" datatype="html">
|
||||
@@ -9377,7 +9377,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Video history is disabled</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">120</context>
|
||||
<context context-type="linenumber">123</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7505147502630555700" datatype="html">
|
||||
@@ -9385,7 +9385,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Delete video history</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">147</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8676027102068252963" datatype="html">
|
||||
@@ -9393,7 +9393,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Are you sure you want to delete all your video history?</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">145</context>
|
||||
<context context-type="linenumber">148</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7708910304029766516" datatype="html">
|
||||
@@ -9401,7 +9401,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Video history deleted</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">153</context>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3343758569423394070" datatype="html">
|
||||
@@ -9409,7 +9409,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">No videos found for "<x id="PH" equiv-text="this.search"/>".</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1486537403020619891" datatype="html">
|
||||
@@ -9417,7 +9417,7 @@ The link will expire within 1 hour.</source>
|
||||
<target/>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">73</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3656932706364053858" datatype="html">
|
||||
@@ -9449,7 +9449,7 @@ The link will expire within 1 hour.</source>
|
||||
<target/>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1909009883731319373" datatype="html">
|
||||
@@ -12693,7 +12693,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Save interface settings</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
<context context-type="linenumber">168</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7570883748440392027" datatype="html">
|
||||
@@ -12701,7 +12701,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new"><x id="PH" equiv-text="this.instanceName"/> theme</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">63</context>
|
||||
<context context-type="linenumber">64</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="493135676263039396" datatype="html">
|
||||
@@ -14969,7 +14969,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Manage my channels</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7731752234233950482" datatype="html">
|
||||
@@ -14977,7 +14977,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Synchronizations</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="2521678336272309407" datatype="html">
|
||||
@@ -16741,12 +16741,20 @@ The link will expire within 1 hour.</source>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8946368517039712001" datatype="html">
|
||||
<source>This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</source>
|
||||
<target state="new">This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</target>
|
||||
<trans-unit id="649873611133633238" datatype="html">
|
||||
<source>This plugin does not have settings.</source>
|
||||
<target state="new">This plugin does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
<context context-type="linenumber">21,22</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5495621331909678720" datatype="html">
|
||||
<source>This theme does not have settings.</source>
|
||||
<target state="new">This theme does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8854094932942190741" datatype="html">
|
||||
|
||||
@@ -2416,7 +2416,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6994936570572804302" datatype="html">
|
||||
@@ -3753,12 +3753,12 @@ The link will expire within 1 hour.</source>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="786003471867762836" datatype="html">
|
||||
<source>Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<trans-unit id="8309133070608650316" datatype="html">
|
||||
<source>Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7512666561651719221" datatype="html">
|
||||
@@ -3766,7 +3766,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">You can now <strong>invite other users</strong> to collaborate on your channel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5960096873104755868" datatype="html">
|
||||
@@ -7921,7 +7921,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Manage my channels</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3140041890374956085" datatype="html">
|
||||
@@ -13961,7 +13961,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">У вашій історії переглядів ще немає відео.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="989169929300254768" datatype="html">
|
||||
@@ -13977,7 +13977,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Історія відео ввімкнена</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
<context context-type="linenumber">122</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1869266307786648674" datatype="html">
|
||||
@@ -13985,7 +13985,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Історія відео вимкнена</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">120</context>
|
||||
<context context-type="linenumber">123</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7505147502630555700" datatype="html">
|
||||
@@ -13993,7 +13993,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Видалити історію відео</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">147</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8676027102068252963" datatype="html">
|
||||
@@ -14001,7 +14001,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Ви впевнені, що хочете видалити всю свою історію відео?</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">145</context>
|
||||
<context context-type="linenumber">148</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7708910304029766516" datatype="html">
|
||||
@@ -14009,7 +14009,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Історію відео видалено</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">153</context>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3343758569423394070" datatype="html">
|
||||
@@ -14017,7 +14017,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Не знайдено відео за запитом «<x id="PH" equiv-text="this.search"/>».</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="687236465759862933" datatype="html">
|
||||
@@ -17573,12 +17573,20 @@ The link will expire within 1 hour.</source>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8946368517039712001" datatype="html">
|
||||
<source>This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</source>
|
||||
<target state="new">This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</target>
|
||||
<trans-unit id="649873611133633238" datatype="html">
|
||||
<source>This plugin does not have settings.</source>
|
||||
<target state="new">This plugin does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
<context context-type="linenumber">21,22</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5495621331909678720" datatype="html">
|
||||
<source>This theme does not have settings.</source>
|
||||
<target state="new">This theme does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1875025899004073421" datatype="html">
|
||||
@@ -18823,7 +18831,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Моя історія перегляду</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">73</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3656932706364053858" datatype="html">
|
||||
@@ -19003,11 +19011,11 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">Налаштування інтерфейсу оновлено.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">138</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">160</context>
|
||||
<context context-type="linenumber">163</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6784127216978878229" datatype="html">
|
||||
@@ -20331,7 +20339,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Synchronizations</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7607713563510753803" datatype="html">
|
||||
@@ -26163,13 +26171,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<source>Save interface settings</source>
|
||||
<target state="translated">Зберегти налаштування інтерфейсу</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">165</context></context-group></trans-unit>
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">168</context></context-group></trans-unit>
|
||||
<trans-unit id="7570883748440392027" datatype="html">
|
||||
<source><x id="PH" equiv-text="this.instanceName"/> theme</source>
|
||||
<target state="new"><x id="PH" equiv-text="this.instanceName"/> theme</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">63</context>
|
||||
<context context-type="linenumber">64</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1219783168145776019" datatype="html">
|
||||
|
||||
@@ -290,9 +290,15 @@
|
||||
<trans-unit id="7833439309018904726" datatype="html" xml:space="preserve">
|
||||
<source>New message</source>
|
||||
<target state="translated">Tin nhắn mới</target>
|
||||
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-notifications/user-notifications.component.html</context><context context-type="linenumber">17</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-notifications/user-notifications.component.html</context><context context-type="linenumber">30</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-notifications/user-notifications.component.html</context>
|
||||
<context context-type="linenumber">17</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-notifications/user-notifications.component.html</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="906167214730624194" datatype="html">
|
||||
<source>{views, plural, =0 {No view} =1 {1 view} other {<x id="views"/> views}}</source>
|
||||
<target state="translated">{views, plural, =0 {Chưa có lượt xem nào} =1 {1 lượt xem} other {<x id="views"/> lượt xem}}</target>
|
||||
@@ -669,9 +675,9 @@
|
||||
<context context-type="linenumber">224</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7710432640967627087" datatype="html">
|
||||
<trans-unit id="7710432640967627087" datatype="html" xml:space="preserve">
|
||||
<source><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/><x id="INTERPOLATION" equiv-text="{{ n.payload.videoChannelCollaborator.channelOwner.displayName }}"/><x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> invited you to become an<x id="START_TAG_MY_COLLABORATOR_STATE" ctype="x-my_collaborator_state" equiv-text="<my-collaborator-state class="mx-2" type="accepted">"/><x id="CLOSE_TAG_MY_COLLABORATOR_STATE" ctype="x-my_collaborator_state" equiv-text="</my-collaborator-state>"/> of their channel <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/><x id="INTERPOLATION_1" equiv-text="{{ n.payload.videoChannelCollaborator.channel.displayName }}"/><x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source>
|
||||
<target state="new"><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/><x id="INTERPOLATION" equiv-text="{{ n.payload.videoChannelCollaborator.channelOwner.displayName }}"/><x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> invited you to become an<x id="START_TAG_MY_COLLABORATOR_STATE" ctype="x-my_collaborator_state" equiv-text="<my-collaborator-state class="mx-2" type="accepted">"/><x id="CLOSE_TAG_MY_COLLABORATOR_STATE" ctype="x-my_collaborator_state" equiv-text="</my-collaborator-state>"/> of their channel <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/><x id="INTERPOLATION_1" equiv-text="{{ n.payload.videoChannelCollaborator.channel.displayName }}"/><x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target>
|
||||
<target state="translated"><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/><x id="INTERPOLATION" equiv-text="{{ n.payload.videoChannelCollaborator.channelOwner.displayName }}"/><x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> đã mời bạn trở thành<x id="START_TAG_MY_COLLABORATOR_STATE" ctype="x-my_collaborator_state" equiv-text="<my-collaborator-state class="mx-2" type="accepted">"/><x id="CLOSE_TAG_MY_COLLABORATOR_STATE" ctype="x-my_collaborator_state" equiv-text="</my-collaborator-state>"/> kênh của họ <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/><x id="INTERPOLATION_1" equiv-text="{{ n.payload.videoChannelCollaborator.channel.displayName }}"/><x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-notifications/user-notification-content.component.html</context>
|
||||
<context context-type="linenumber">233,235</context>
|
||||
@@ -1632,9 +1638,15 @@
|
||||
<trans-unit id="5937251202465808296" datatype="html" xml:space="preserve">
|
||||
<source>More</source>
|
||||
<target state="translated">Thêm</target>
|
||||
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-space.component.ts</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+video-list/overview/video-overview.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-video-space.component.ts</context>
|
||||
<context context-type="linenumber">55</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+video-list/overview/video-overview.component.html</context>
|
||||
<context context-type="linenumber">16</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7855115715004732406" datatype="html" xml:space="preserve">
|
||||
<source>Browse "<x id="PH" equiv-text="value.category.label"/>" videos</source>
|
||||
<target state="translated">Xem video <x id="PH" equiv-text="value.category.label"/></target>
|
||||
@@ -2540,7 +2552,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6994936570572804302" datatype="html">
|
||||
@@ -3877,30 +3889,27 @@ Link hết hạn sau 1 giờ.</target>
|
||||
<context context-type="linenumber">60</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5601530442010506564" datatype="html">
|
||||
<trans-unit id="5601530442010506564" datatype="html" xml:space="preserve">
|
||||
<source>Got it</source>
|
||||
<target state="new">Got it</target>
|
||||
<target state="translated">Đã hiểu</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info-modal.component.html</context>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="786003471867762836" datatype="html">
|
||||
<source>Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<trans-unit id="8309133070608650316" datatype="html">
|
||||
<source>Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7512666561651719221" datatype="html">
|
||||
<trans-unit id="7512666561651719221" datatype="html" xml:space="preserve">
|
||||
<source>You can now <strong>invite other users</strong> to collaborate on your channel</source>
|
||||
<target state="new">You can now <strong>invite other users</strong> to collaborate on your channel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<target state="translated">Bây giờ bạn có thể <strong>mời những người dùng khác</strong> cộng tác trên kênh của bạn</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context><context context-type="linenumber">31</context></context-group></trans-unit>
|
||||
<trans-unit id="5960096873104755868" datatype="html" xml:space="preserve">
|
||||
<source>More info</source>
|
||||
<target state="translated">Về máy chủ này</target>
|
||||
@@ -4296,8 +4305,11 @@ Link hết hạn sau 1 giờ.</target>
|
||||
<trans-unit id="2734780694152757859" datatype="html" xml:space="preserve">
|
||||
<source>View all</source>
|
||||
<target state="translated">Xem toàn bộ</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/header/notification-dropdown.component.html</context><context context-type="linenumber">97</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/header/notification-dropdown.component.html</context>
|
||||
<context context-type="linenumber">97</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5158930137081704296" datatype="html" xml:space="preserve">
|
||||
<source>Search videos, channels…</source>
|
||||
<target state="translated">Tìm video, kênh…</target>
|
||||
@@ -5072,8 +5084,11 @@ Link hết hạn sau 1 giờ.</target>
|
||||
<trans-unit id="8797603333570754589" datatype="html" xml:space="preserve">
|
||||
<source><x id="PH" equiv-text="this.actor.name"/> (instance page)</source>
|
||||
<target state="translated"><x id="PH" equiv-text="this.actor.name"/> (trang máy chủ)</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-actor-image/actor-avatar.component.ts</context><context context-type="linenumber">47</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-actor-image/actor-avatar.component.ts</context>
|
||||
<context context-type="linenumber">47</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3171444589366264129" datatype="html" xml:space="preserve">
|
||||
<source><x id="START_LINK" ctype="x-a" equiv-text="<a class="text-decoration-underline" href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noreferrer noopener">"/>Markdown compatible<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> that also supports <x id="START_LINK_1" equiv-text="<a class="text-decoration-underline" href="https://docs.joinpeertube.org/api/custom-client-markup" target="_blank" rel="noreferrer noopener">"/>custom PeerTube HTML tags<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </source>
|
||||
<target state="translated"><x id="START_LINK" ctype="x-a" equiv-text="<a class="text-decoration-underline" href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noreferrer noopener">"/>Markdown<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> cũng được hỗ trợ <x id="START_LINK_1" equiv-text="<a class="text-decoration-underline" href="https://docs.joinpeertube.org/api/custom-client-markup" target="_blank" rel="noreferrer noopener">"/>tùy chỉnh thẻ HTML PeerTube<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </target>
|
||||
@@ -7948,9 +7963,15 @@ Link hết hạn sau 1 giờ.</target>
|
||||
<trans-unit id="3470970355101730705" datatype="html" xml:space="preserve">
|
||||
<source>Pending review</source>
|
||||
<target state="translated">Đang đợi duyệt</target>
|
||||
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-watch/shared/comment/video-comment.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-comment/video-comment-list-admin-owner.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+video-watch/shared/comment/video-comment.component.html</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-video-comment/video-comment-list-admin-owner.component.html</context>
|
||||
<context context-type="linenumber">66</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="4502286564339177240">
|
||||
<source>Reply</source>
|
||||
<target>Trả lời</target>
|
||||
@@ -8066,11 +8087,8 @@ Link hết hạn sau 1 giờ.</target>
|
||||
<trans-unit id="913810105049472842" datatype="html" xml:space="preserve">
|
||||
<source>Manage my channels</source>
|
||||
<target state="translated">Quản lý kênh</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context><context context-type="linenumber">31</context></context-group></trans-unit>
|
||||
<trans-unit id="3140041890374956085" datatype="html" xml:space="preserve">
|
||||
<source>Comments on your videos</source>
|
||||
<target state="translated">Bình luận về video của tôi</target>
|
||||
@@ -9046,10 +9064,19 @@ Link hết hạn sau 1 giờ.</target>
|
||||
<trans-unit id="3755780063671912599" datatype="html" xml:space="preserve">
|
||||
<source>Watched words</source>
|
||||
<target state="translated">Lọc từ khóa</target>
|
||||
|
||||
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin-moderation.component.ts</context><context context-type="linenumber">76</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">127</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-space.component.ts</context><context context-type="linenumber">44</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/admin-moderation.component.ts</context>
|
||||
<context context-type="linenumber">76</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context>
|
||||
<context context-type="linenumber">127</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-video-space.component.ts</context>
|
||||
<context context-type="linenumber">44</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3122686335401195400" datatype="html">
|
||||
<source>Total size</source>
|
||||
<target state="translated">Dung lượng tổng</target>
|
||||
@@ -9217,8 +9244,11 @@ Link hết hạn sau 1 giờ.</target>
|
||||
<trans-unit id="8098332505860203521" datatype="html" xml:space="preserve">
|
||||
<source>Only display comments with this tag</source>
|
||||
<target state="translated">Chỉ hiển thị các bình luận có thẻ này</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-comment/video-comment-list-admin-owner.component.html</context><context context-type="linenumber">79</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-video-comment/video-comment-list-admin-owner.component.html</context>
|
||||
<context context-type="linenumber">79</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7266085473379376028" datatype="html">
|
||||
<source>No comments found matching current filters.</source>
|
||||
<target state="translated">Không có bình luận nào trùng khớp.</target>
|
||||
@@ -10170,8 +10200,11 @@ Link hết hạn sau 1 giờ.</target>
|
||||
<trans-unit id="888341446683346521" datatype="html" xml:space="preserve">
|
||||
<source>Start date</source>
|
||||
<target state="translated">Ngày bắt đầu</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">17</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context>
|
||||
<context context-type="linenumber">17</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1102717806459547726" datatype="html">
|
||||
<source>Refresh</source>
|
||||
<target state="translated">Làm tươi</target>
|
||||
@@ -10207,13 +10240,19 @@ Link hết hạn sau 1 giờ.</target>
|
||||
<trans-unit id="6052766076365105714" datatype="html" xml:space="preserve">
|
||||
<source>now</source>
|
||||
<target state="translated">vừa xong</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">21</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context>
|
||||
<context context-type="linenumber">21</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5311176376484381099" datatype="html" xml:space="preserve">
|
||||
<source>Log level</source>
|
||||
<target state="translated">Mức độ log</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">27</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8984988128489304664" datatype="html">
|
||||
<source>Filter logs by tags</source>
|
||||
<target state="translated">Lọc nhật ký hoạt động bằng tag</target>
|
||||
@@ -10225,8 +10264,11 @@ Link hết hạn sau 1 giờ.</target>
|
||||
<trans-unit id="9053612499880707554" datatype="html" xml:space="preserve">
|
||||
<source>Example: ffmpeg, api</source>
|
||||
<target state="translated">Ví dụ: ffmpeg, api</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context>
|
||||
<context context-type="linenumber">42</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3894950702316166331" datatype="html">
|
||||
<source>Loading...</source>
|
||||
<target state="translated">Đang tải...</target>
|
||||
@@ -10238,13 +10280,19 @@ Link hết hạn sau 1 giờ.</target>
|
||||
<trans-unit id="2308490727635384266" datatype="html" xml:space="preserve">
|
||||
<source>Logs copied</source>
|
||||
<target state="translated">Đã sao chép tập tin log</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context>
|
||||
<context context-type="linenumber">60</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="2064122482972455058" datatype="html" xml:space="preserve">
|
||||
<source>Copy logs</source>
|
||||
<target state="translated">Sao chép tập tin log</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context>
|
||||
<context context-type="linenumber">60</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1570003374195931619" datatype="html">
|
||||
<source>No log.</source>
|
||||
<target state="translated">Không có nhật ký nhật động.</target>
|
||||
@@ -14090,7 +14138,7 @@ Link hết hạn sau 1 giờ.</target>
|
||||
<target state="translated">Bạn chưa xem bất kỳ video nào.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="989169929300254768" datatype="html">
|
||||
@@ -14106,7 +14154,7 @@ Link hết hạn sau 1 giờ.</target>
|
||||
<target state="translated">Đã bật lịch sử xem</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
<context context-type="linenumber">122</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1869266307786648674" datatype="html">
|
||||
@@ -14114,7 +14162,7 @@ Link hết hạn sau 1 giờ.</target>
|
||||
<target state="translated">Đã tắt lịch sử xem</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">120</context>
|
||||
<context context-type="linenumber">123</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7505147502630555700" datatype="html">
|
||||
@@ -14122,7 +14170,7 @@ Link hết hạn sau 1 giờ.</target>
|
||||
<target state="translated">Xóa lịch sử xem</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">147</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8676027102068252963" datatype="html">
|
||||
@@ -14130,7 +14178,7 @@ Link hết hạn sau 1 giờ.</target>
|
||||
<target state="translated">Bạn có chắc muốn toàn bộ lịch sử xem video của bạn?</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">145</context>
|
||||
<context context-type="linenumber">148</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7708910304029766516" datatype="html">
|
||||
@@ -14138,7 +14186,7 @@ Link hết hạn sau 1 giờ.</target>
|
||||
<target state="translated">Đã xóa lịch sử xem</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">153</context>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3343758569423394070" datatype="html">
|
||||
@@ -14146,7 +14194,7 @@ Link hết hạn sau 1 giờ.</target>
|
||||
<target state="translated">Không tìm thấy video "<x id="PH" equiv-text="this.search"/>".</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="687236465759862933" datatype="html" xml:space="preserve">
|
||||
@@ -14197,25 +14245,25 @@ Link hết hạn sau 1 giờ.</target>
|
||||
<context context-type="linenumber">11,12</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8627640588059476624" datatype="html">
|
||||
<trans-unit id="8627640588059476624" datatype="html" xml:space="preserve">
|
||||
<source>An editor can manage videos in this channel</source>
|
||||
<target state="new">An editor can manage videos in this channel</target>
|
||||
<target state="translated">Biên tập viên có thể quản lý video trên kênh này</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-main/channel/collaborator-state.component.ts</context>
|
||||
<context context-type="linenumber">25</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3775433842284877534" datatype="html">
|
||||
<trans-unit id="3775433842284877534" datatype="html" xml:space="preserve">
|
||||
<source>Owner of the channel</source>
|
||||
<target state="new">Owner of the channel</target>
|
||||
<target state="translated">Chủ sở hữu của kênh</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-main/channel/collaborator-state.component.ts</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="2996672568437579118" datatype="html">
|
||||
<trans-unit id="2996672568437579118" datatype="html" xml:space="preserve">
|
||||
<source>Invited to be an editor to manage videos in this channel</source>
|
||||
<target state="new">Invited to be an editor to manage videos in this channel</target>
|
||||
<target state="translated">Được mời làm biên tập viên để quản lý video trên kênh này</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-main/channel/collaborator-state.component.ts</context>
|
||||
<context context-type="linenumber">33</context>
|
||||
@@ -17713,12 +17761,20 @@ Link hết hạn sau 1 giờ.</target>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8946368517039712001" datatype="html" xml:space="preserve">
|
||||
<source>This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</source>
|
||||
<target state="translated">Plugin <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> này không có thiết lập.</target>
|
||||
<trans-unit id="649873611133633238" datatype="html">
|
||||
<source>This plugin does not have settings.</source>
|
||||
<target state="new">This plugin does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
<context context-type="linenumber">21,22</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5495621331909678720" datatype="html">
|
||||
<source>This theme does not have settings.</source>
|
||||
<target state="new">This theme does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1875025899004073421" datatype="html">
|
||||
@@ -18966,7 +19022,7 @@ Link hết hạn sau 1 giờ.</target>
|
||||
<target state="translated">Lịch sử xem của tôi</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">73</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3656932706364053858" datatype="html">
|
||||
@@ -19146,11 +19202,11 @@ Link hết hạn sau 1 giờ.</target>
|
||||
<target state="translated">Đã cập nhật giao diện.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">138</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">160</context>
|
||||
<context context-type="linenumber">163</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6784127216978878229" datatype="html" xml:space="preserve">
|
||||
@@ -19568,68 +19624,107 @@ Link hết hạn sau 1 giờ.</target>
|
||||
<trans-unit id="2648594810167531503" datatype="html" xml:space="preserve">
|
||||
<source>Editors <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>can:<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source>
|
||||
<target state="translated">Biên tập viên <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>có thể:<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context><context context-type="linenumber">41</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context>
|
||||
<context context-type="linenumber">41</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3790361059881359024" datatype="html" xml:space="preserve">
|
||||
<source>Publish videos in this channel</source>
|
||||
<target state="translated">Đăng video trong kênh này</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context><context context-type="linenumber">44</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context>
|
||||
<context context-type="linenumber">44</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="2328126264669408590" datatype="html" xml:space="preserve">
|
||||
<source>Manage, update or delete videos, comments, playlists of this channel</source>
|
||||
<target state="translated">Quản lý, cập nhật hoặc xóa video, bình luận, danh sách phát của kênh này</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context>
|
||||
<context context-type="linenumber">45</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6753681732976615521" datatype="html" xml:space="preserve">
|
||||
<source>Add or delete channel synchronization</source>
|
||||
<target state="translated">Thêm hoặc xóa đồng bộ hóa kênh</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context>
|
||||
<context context-type="linenumber">46</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8868828786989275402" datatype="html" xml:space="preserve">
|
||||
<source>Update information of this channel (title, description, banner...)</source>
|
||||
<target state="translated">Cập nhật thông tin của kênh này (tiêu đề, mô tả, banner...)</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context>
|
||||
<context context-type="linenumber">47</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="566992019450450500" datatype="html" xml:space="preserve">
|
||||
<source>But editors <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>cannot:<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source>
|
||||
<target state="translated">Nhưng biên tập viên <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>không thể:<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="217345434594735009" datatype="html" xml:space="preserve">
|
||||
<source>Delete the channel</source>
|
||||
<target state="translated">Xóa kênh</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context><context context-type="linenumber">53</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context>
|
||||
<context context-type="linenumber">53</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5864968016757262571" datatype="html" xml:space="preserve">
|
||||
<source>Add or remove other editors</source>
|
||||
<target state="translated">Thêm hoặc xóa biên tập viên khác</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context><context context-type="linenumber">54</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context>
|
||||
<context context-type="linenumber">54</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3684779884984833882" datatype="html" xml:space="preserve">
|
||||
<source>Current editors</source>
|
||||
<target state="translated">Những biên tập viên hiện tại</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context>
|
||||
<context context-type="linenumber">58</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5874570330774661733" datatype="html" xml:space="preserve">
|
||||
<source>No editors at the moment</source>
|
||||
<target state="translated">Hiện tại không có biên tập viên nào</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context><context context-type="linenumber">85</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context>
|
||||
<context context-type="linenumber">85</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7704259175174094901" datatype="html" xml:space="preserve">
|
||||
<source>New editor</source>
|
||||
<target state="translated">Biên tập viên mới</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context><context context-type="linenumber">91</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context>
|
||||
<context context-type="linenumber">91</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8488228014293021599" datatype="html" xml:space="preserve">
|
||||
<source>Editor handle</source>
|
||||
<target state="translated">Biên tập viên xử lý</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context><context context-type="linenumber">93</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context>
|
||||
<context context-type="linenumber">93</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3463797202358605584" datatype="html" xml:space="preserve">
|
||||
<source>Invite</source>
|
||||
<target state="translated">Mời</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context><context context-type="linenumber">98</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context>
|
||||
<context context-type="linenumber">98</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8065180360788653509" datatype="html" xml:space="preserve">
|
||||
<source>Are you sure you want to remove invitation of <strong><x id="PH" equiv-text="collaborator.account.displayName"/></strong> to collaborate on your channel?</source>
|
||||
<target state="translated">Bạn có chắc chắn muốn xóa lời mời <strong><x id="PH" equiv-text="collaborator.account.displayName"/></strong> cộng tác trên kênh của bạn?</target>
|
||||
@@ -19681,23 +19776,35 @@ Link hết hạn sau 1 giờ.</target>
|
||||
<trans-unit id="1426719913849129925" datatype="html" xml:space="preserve">
|
||||
<source>Create a new channel</source>
|
||||
<target state="translated">Tạo một kênh mới</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/video-channel-edit.component.html</context><context context-type="linenumber">43</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/video-channel-edit.component.html</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="4866329251811877580" datatype="html" xml:space="preserve">
|
||||
<source>Go to the public page</source>
|
||||
<target state="translated">Tới trang công khai</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/video-channel-edit.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/video-channel-edit.component.html</context>
|
||||
<context context-type="linenumber">49</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3620188369327429839" datatype="html" xml:space="preserve">
|
||||
<source>Save</source>
|
||||
<target state="translated">Lưu</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/video-channel-edit.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/video-channel-edit.component.html</context>
|
||||
<context context-type="linenumber">60</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="4580094510133881726" datatype="html" xml:space="preserve">
|
||||
<source>There are errors in your channel settings.</source>
|
||||
<target state="translated">Có lỗi trong cài đặt kênh của bạn.</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/video-channel-edit.component.html</context><context context-type="linenumber">71</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/video-channel-edit.component.html</context>
|
||||
<context context-type="linenumber">71</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7589345916094713536" datatype="html">
|
||||
<source>Video channel <x id="PH"/> updated.</source>
|
||||
<target state="translated">Đã cập nhật kênh <x id="PH"/>.</target>
|
||||
@@ -19981,13 +20088,19 @@ Link hết hạn sau 1 giờ.</target>
|
||||
<trans-unit id="8496409985768674759" datatype="html" xml:space="preserve">
|
||||
<source>Manage my videos</source>
|
||||
<target state="translated">Quản lý video</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-space.component.ts</context><context context-type="linenumber">31</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-video-space.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1170141381901621610" datatype="html" xml:space="preserve">
|
||||
<source>Comments on my videos</source>
|
||||
<target state="translated">Bình luận về video của tôi</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-space.component.ts</context><context context-type="linenumber">40</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-video-space.component.ts</context>
|
||||
<context context-type="linenumber">40</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="2591467977473302125" datatype="html">
|
||||
<source>Videos list</source>
|
||||
<target state="translated">Danh sách video</target>
|
||||
@@ -20327,9 +20440,15 @@ Link hết hạn sau 1 giờ.</target>
|
||||
<trans-unit id="5752861278140673787" datatype="html" xml:space="preserve">
|
||||
<source>Ownership changes</source>
|
||||
<target state="translated">Thay đổi chủ sở hữu</target>
|
||||
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-space.component.ts</context><context context-type="linenumber">66</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/routes.ts</context><context context-type="linenumber">111</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-video-space.component.ts</context>
|
||||
<context context-type="linenumber">66</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/routes.ts</context>
|
||||
<context context-type="linenumber">111</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5983006734882925930" datatype="html">
|
||||
<source>My video history</source>
|
||||
<target state="translated">Lịch sử xem của tôi</target>
|
||||
@@ -20365,11 +20484,23 @@ Link hết hạn sau 1 giờ.</target>
|
||||
<trans-unit id="3897348120591552265" datatype="html" xml:space="preserve">
|
||||
<source>Manage</source>
|
||||
<target state="translated">Quản lý</target>
|
||||
|
||||
|
||||
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">64</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context><context context-type="linenumber">130</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+video-list/video-user-subscriptions.component.ts</context><context context-type="linenumber">32</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">474</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context>
|
||||
<context context-type="linenumber">64</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context>
|
||||
<context context-type="linenumber">130</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+video-list/video-user-subscriptions.component.ts</context>
|
||||
<context context-type="linenumber">32</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context>
|
||||
<context context-type="linenumber">474</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3004701943093671049" datatype="html" xml:space="preserve">
|
||||
<source>All channels</source>
|
||||
<target state="translated">Tất cả kênh</target>
|
||||
@@ -20397,16 +20528,16 @@ Link hết hạn sau 1 giờ.</target>
|
||||
<trans-unit id="7731752234233950482" datatype="html" xml:space="preserve">
|
||||
<source>Synchronizations</source>
|
||||
<target state="translated">Đồng bộ hóa</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context><context context-type="linenumber">39</context></context-group></trans-unit>
|
||||
<trans-unit id="7607713563510753803" datatype="html" xml:space="preserve">
|
||||
<source>Imports</source>
|
||||
<target state="translated">Đã nhập</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-space.component.ts</context><context context-type="linenumber">61</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-video-space.component.ts</context>
|
||||
<context context-type="linenumber">61</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8936704404804793618" datatype="html">
|
||||
<source>Videos</source>
|
||||
<target state="translated">Video</target>
|
||||
@@ -21108,9 +21239,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<context context-type="linenumber">4</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3803133788917504574" datatype="html">
|
||||
<source> Transcoding is enabled so real videos size can be at most ~ <x id="INTERPOLATION" equiv-text="{{ computeQuotaWithTranscoding() | bytes: 0 }}"/>. </source>
|
||||
<target state="new"> Transcoding is enabled so real videos size can be at most ~ <x id="INTERPOLATION" equiv-text="{{ computeQuotaWithTranscoding() | bytes: 0 }}"/>. </target>
|
||||
<trans-unit id="3803133788917504574" datatype="html" xml:space="preserve">
|
||||
<source>Transcoding is enabled so real videos size can be at most ~ <x id="INTERPOLATION" equiv-text="{{ computeQuotaWithTranscoding() | bytes: 0 }}"/>. </source>
|
||||
<target state="translated">Chuyển mã được bật nên kích thước video thực tế có thể tối đa là ~ <x id="INTERPOLATION" equiv-text="{{ computeQuotaWithTranscoding() | bytes: 0 }}"/>. </target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/shared/user-real-quota-info.component.html</context>
|
||||
<context context-type="linenumber">11,12</context>
|
||||
@@ -21309,8 +21440,11 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<trans-unit id="1043265374828694539" datatype="html" xml:space="preserve">
|
||||
<source>Auto tag policies</source>
|
||||
<target state="translated">Chính sách chặn tự động</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-space.component.ts</context><context context-type="linenumber">48</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-video-space.component.ts</context>
|
||||
<context context-type="linenumber">48</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="4930506384627295710" datatype="html">
|
||||
<source>Settings</source>
|
||||
<target state="translated">Cài đặt</target>
|
||||
@@ -23255,9 +23389,15 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<trans-unit id="2271545768110890370" datatype="html" xml:space="preserve">
|
||||
<source><x id="INTERPOLATION" equiv-text="{{ errorRoot.page }}"/> page</source>
|
||||
<target state="translated"><x id="INTERPOLATION" equiv-text="{{ errorRoot.page }}"/> trang</target>
|
||||
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/video-channel-edit.component.html</context><context context-type="linenumber">75</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos-publish-manage/shared-manage/common/manage-errors.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/video-channel-edit.component.html</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+videos-publish-manage/shared-manage/common/manage-errors.component.html</context>
|
||||
<context context-type="linenumber">6</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="2689998308942961784" datatype="html" xml:space="preserve">
|
||||
<source>Create channel</source>
|
||||
<target state="translated">Tạo kênh</target>
|
||||
@@ -26248,19 +26388,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<trans-unit id="5240556993302961443" datatype="html" xml:space="preserve">
|
||||
<source>Save interface settings</source>
|
||||
<target state="translated">Lưu cài đặt giao diện</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">168</context></context-group></trans-unit>
|
||||
<trans-unit id="7570883748440392027" datatype="html" xml:space="preserve">
|
||||
<source><x id="PH" equiv-text="this.instanceName"/> theme</source>
|
||||
<target state="translated">Chủ đề <x id="PH" equiv-text="this.instanceName"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">63</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">64</context></context-group></trans-unit>
|
||||
<trans-unit id="1219783168145776019" datatype="html" xml:space="preserve">
|
||||
<source>LIVE ENDED</source>
|
||||
<target state="translated">KẾT THÚC TRỰC TIẾP</target>
|
||||
|
||||
@@ -1299,7 +1299,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="9031514421077169181" datatype="html">
|
||||
@@ -7262,11 +7262,18 @@
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8946368517039712001" datatype="html">
|
||||
<source>This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</source>
|
||||
<trans-unit id="649873611133633238" datatype="html">
|
||||
<source>This plugin does not have settings.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
<context context-type="linenumber">21,22</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5495621331909678720" datatype="html">
|
||||
<source>This theme does not have settings.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1875025899004073421" datatype="html">
|
||||
@@ -10455,14 +10462,14 @@ The link will expire within 1 hour.</source>
|
||||
<source>Manage my channels</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7731752234233950482" datatype="html">
|
||||
<source>Synchronizations</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="2521678336272309407" datatype="html">
|
||||
@@ -10575,56 +10582,56 @@ The link will expire within 1 hour.</source>
|
||||
<source>My watch history</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">73</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="111295045776045026" datatype="html">
|
||||
<source>Video history is enabled</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
<context context-type="linenumber">122</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1869266307786648674" datatype="html">
|
||||
<source>Video history is disabled</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">120</context>
|
||||
<context context-type="linenumber">123</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7505147502630555700" datatype="html">
|
||||
<source>Delete video history</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">147</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8676027102068252963" datatype="html">
|
||||
<source>Are you sure you want to delete all your video history?</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">145</context>
|
||||
<context context-type="linenumber">148</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7708910304029766516" datatype="html">
|
||||
<source>Video history deleted</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">153</context>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3343758569423394070" datatype="html">
|
||||
<source>No videos found for "<x id="PH" equiv-text="this.search"/>".</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="4781078006040259916" datatype="html">
|
||||
<source>You don't have any video in your watch history yet.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6371572688505952303" datatype="html">
|
||||
@@ -17667,18 +17674,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="786003471867762836" datatype="html">
|
||||
<source>Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<trans-unit id="8309133070608650316" datatype="html">
|
||||
<source>Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7512666561651719221" datatype="html">
|
||||
<source>You can now <strong>invite other users</strong> to collaborate on your channel</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1000468652492651683" datatype="html">
|
||||
@@ -22333,25 +22340,25 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<source><x id="PH" equiv-text="this.instanceName"/> theme</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">63</context>
|
||||
<context context-type="linenumber">64</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="4776289814033837037" datatype="html">
|
||||
<source>Interface settings updated.</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">138</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">160</context>
|
||||
<context context-type="linenumber">163</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5240556993302961443" datatype="html">
|
||||
<source>Save interface settings</source>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
<context context-type="linenumber">168</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6784127216978878229" datatype="html">
|
||||
|
||||
@@ -2282,7 +2282,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6994936570572804302" datatype="html" xml:space="preserve">
|
||||
@@ -3519,12 +3519,12 @@ The link will expire within 1 hour.</source>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="786003471867762836" datatype="html">
|
||||
<source>Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<trans-unit id="8309133070608650316" datatype="html">
|
||||
<source>Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7512666561651719221" datatype="html">
|
||||
@@ -3532,7 +3532,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">You can now <strong>invite other users</strong> to collaborate on your channel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5960096873104755868" datatype="html" xml:space="preserve">
|
||||
@@ -7163,11 +7163,8 @@ The link will expire within 1 hour.</source>
|
||||
<trans-unit id="913810105049472842" datatype="html" xml:space="preserve">
|
||||
<source>Manage my channels</source>
|
||||
<target state="translated">管理我的频道</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context><context context-type="linenumber">31</context></context-group></trans-unit>
|
||||
<trans-unit id="3140041890374956085" datatype="html" xml:space="preserve">
|
||||
<source>Comments on your videos</source>
|
||||
<target state="translated">您的视频的评论</target>
|
||||
@@ -12395,7 +12392,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">你的观看记录里还没有任何视频。</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="989169929300254768" datatype="html">
|
||||
@@ -12411,7 +12408,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">已启用视频历史</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
<context context-type="linenumber">122</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1869266307786648674" datatype="html">
|
||||
@@ -12419,7 +12416,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">已禁用视频历史</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">120</context>
|
||||
<context context-type="linenumber">123</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7505147502630555700" datatype="html">
|
||||
@@ -12427,7 +12424,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">删除视频历史</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">147</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8676027102068252963" datatype="html">
|
||||
@@ -12435,7 +12432,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">你确定要删除你的所有视频历史吗?</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">145</context>
|
||||
<context context-type="linenumber">148</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7708910304029766516" datatype="html">
|
||||
@@ -12443,7 +12440,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">已删除视频历史</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">153</context>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3343758569423394070" datatype="html">
|
||||
@@ -12451,7 +12448,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">未找到关于“<x id="PH" equiv-text="this.search"/>”的视频。</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="687236465759862933" datatype="html">
|
||||
@@ -15624,12 +15621,20 @@ The link will expire within 1 hour.</source>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8946368517039712001" datatype="html">
|
||||
<source>This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</source>
|
||||
<target state="new">This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</target>
|
||||
<trans-unit id="649873611133633238" datatype="html">
|
||||
<source>This plugin does not have settings.</source>
|
||||
<target state="new">This plugin does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
<context context-type="linenumber">21,22</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5495621331909678720" datatype="html">
|
||||
<source>This theme does not have settings.</source>
|
||||
<target state="new">This theme does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1875025899004073421">
|
||||
@@ -16760,7 +16765,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">我的观看历史</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">73</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3656932706364053858" datatype="html">
|
||||
@@ -16931,11 +16936,11 @@ The link will expire within 1 hour.</source>
|
||||
<target>界面设置已更新。</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">138</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">160</context>
|
||||
<context context-type="linenumber">163</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6784127216978878229" datatype="html" xml:space="preserve">
|
||||
@@ -18177,11 +18182,8 @@ The link will expire within 1 hour.</source>
|
||||
<trans-unit id="7731752234233950482" datatype="html" xml:space="preserve">
|
||||
<source>Synchronizations</source>
|
||||
<target state="translated">同步</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context><context context-type="linenumber">39</context></context-group></trans-unit>
|
||||
<trans-unit id="7607713563510753803" datatype="html" xml:space="preserve">
|
||||
<source>Imports</source>
|
||||
<target state="translated">导入</target>
|
||||
@@ -23416,12 +23418,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<source>Save interface settings</source>
|
||||
<target state="translated">保存界面设置</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">165</context></context-group></trans-unit>
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">168</context></context-group></trans-unit>
|
||||
<trans-unit id="7570883748440392027" datatype="html" xml:space="preserve">
|
||||
<source><x id="PH" equiv-text="this.instanceName"/> theme</source>
|
||||
<target state="translated"><x id="PH" equiv-text="this.instanceName"/> 主题</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">63</context></context-group></trans-unit>
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">64</context></context-group></trans-unit>
|
||||
<trans-unit id="1219783168145776019" datatype="html">
|
||||
<source>LIVE ENDED</source>
|
||||
<target state="translated">直播已结束</target>
|
||||
|
||||
@@ -298,12 +298,12 @@
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="786003471867762836" datatype="html">
|
||||
<source>Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<trans-unit id="8309133070608650316" datatype="html">
|
||||
<source>Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7512666561651719221" datatype="html">
|
||||
@@ -311,7 +311,7 @@
|
||||
<target state="new">You can now <strong>invite other users</strong> to collaborate on your channel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8948444690892731948" datatype="html">
|
||||
@@ -1035,11 +1035,11 @@
|
||||
<target/>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">138</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">160</context>
|
||||
<context context-type="linenumber">163</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6784127216978878229" datatype="html">
|
||||
@@ -2183,7 +2183,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="4670312387769733978" datatype="html">
|
||||
@@ -9601,7 +9601,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">My watch history</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">73</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="111295045776045026" datatype="html">
|
||||
@@ -9609,7 +9609,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Video history is enabled</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
<context context-type="linenumber">122</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1869266307786648674" datatype="html">
|
||||
@@ -9617,7 +9617,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Video history is disabled</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">120</context>
|
||||
<context context-type="linenumber">123</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7505147502630555700" datatype="html">
|
||||
@@ -9625,7 +9625,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Delete video history</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">147</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8676027102068252963" datatype="html">
|
||||
@@ -9633,7 +9633,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Are you sure you want to delete all your video history?</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">145</context>
|
||||
<context context-type="linenumber">148</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7708910304029766516" datatype="html">
|
||||
@@ -9641,7 +9641,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Video history deleted</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">153</context>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3343758569423394070" datatype="html">
|
||||
@@ -9649,7 +9649,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">No videos found for "<x id="PH" equiv-text="this.search"/>".</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="4781078006040259916" datatype="html">
|
||||
@@ -9657,7 +9657,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">You don't have any video in your watch history yet.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3193976279273491157" datatype="html">
|
||||
@@ -11817,7 +11817,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Save interface settings</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
<context context-type="linenumber">168</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7570883748440392027" datatype="html">
|
||||
@@ -11825,7 +11825,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new"><x id="PH" equiv-text="this.instanceName"/> theme</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">63</context>
|
||||
<context context-type="linenumber">64</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="493135676263039396" datatype="html">
|
||||
@@ -15311,7 +15311,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Manage my channels</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7731752234233950482" datatype="html">
|
||||
@@ -15319,7 +15319,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="new">Synchronizations</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
<context context-type="linenumber">39</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="2521678336272309407" datatype="html">
|
||||
@@ -16570,12 +16570,20 @@ The link will expire within 1 hour.</source>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8946368517039712001" datatype="html">
|
||||
<source>This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</source>
|
||||
<target state="new">This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</target>
|
||||
<trans-unit id="649873611133633238" datatype="html">
|
||||
<source>This plugin does not have settings.</source>
|
||||
<target state="new">This plugin does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
<context context-type="linenumber">21,22</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5495621331909678720" datatype="html">
|
||||
<source>This theme does not have settings.</source>
|
||||
<target state="new">This theme does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8854094932942190741" datatype="html">
|
||||
|
||||
@@ -294,9 +294,15 @@
|
||||
<trans-unit id="7833439309018904726" datatype="html" xml:space="preserve">
|
||||
<source>New message</source>
|
||||
<target state="translated">新訊息</target>
|
||||
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-notifications/user-notifications.component.html</context><context context-type="linenumber">17</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-notifications/user-notifications.component.html</context><context context-type="linenumber">30</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-notifications/user-notifications.component.html</context>
|
||||
<context context-type="linenumber">17</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-notifications/user-notifications.component.html</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="906167214730624194" datatype="html">
|
||||
<source>{views, plural, =0 {No view} =1 {1 view} other {<x id="views"/> views}}</source>
|
||||
<target state="translated">{views, plural, =0 {無人觀看} =1 {1 次觀看} other {<x id="views"/> 次觀看}}</target>
|
||||
@@ -673,9 +679,9 @@
|
||||
<context context-type="linenumber">224</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7710432640967627087" datatype="html">
|
||||
<trans-unit id="7710432640967627087" datatype="html" xml:space="preserve">
|
||||
<source><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/><x id="INTERPOLATION" equiv-text="{{ n.payload.videoChannelCollaborator.channelOwner.displayName }}"/><x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> invited you to become an<x id="START_TAG_MY_COLLABORATOR_STATE" ctype="x-my_collaborator_state" equiv-text="<my-collaborator-state class="mx-2" type="accepted">"/><x id="CLOSE_TAG_MY_COLLABORATOR_STATE" ctype="x-my_collaborator_state" equiv-text="</my-collaborator-state>"/> of their channel <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/><x id="INTERPOLATION_1" equiv-text="{{ n.payload.videoChannelCollaborator.channel.displayName }}"/><x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source>
|
||||
<target state="new"><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/><x id="INTERPOLATION" equiv-text="{{ n.payload.videoChannelCollaborator.channelOwner.displayName }}"/><x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> invited you to become an<x id="START_TAG_MY_COLLABORATOR_STATE" ctype="x-my_collaborator_state" equiv-text="<my-collaborator-state class="mx-2" type="accepted">"/><x id="CLOSE_TAG_MY_COLLABORATOR_STATE" ctype="x-my_collaborator_state" equiv-text="</my-collaborator-state>"/> of their channel <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/><x id="INTERPOLATION_1" equiv-text="{{ n.payload.videoChannelCollaborator.channel.displayName }}"/><x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target>
|
||||
<target state="translated"><x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/><x id="INTERPOLATION" equiv-text="{{ n.payload.videoChannelCollaborator.channelOwner.displayName }}"/><x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> 邀請您成為他們頻道 <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/><x id="INTERPOLATION_1" equiv-text="{{ n.payload.videoChannelCollaborator.channel.displayName }}"/><x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/> 的<x id="START_TAG_MY_COLLABORATOR_STATE" ctype="x-my_collaborator_state" equiv-text="<my-collaborator-state class="mx-2" type="accepted">"/><x id="CLOSE_TAG_MY_COLLABORATOR_STATE" ctype="x-my_collaborator_state" equiv-text="</my-collaborator-state>"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-notifications/user-notification-content.component.html</context>
|
||||
<context context-type="linenumber">233,235</context>
|
||||
@@ -1638,9 +1644,15 @@
|
||||
<trans-unit id="5937251202465808296" datatype="html" xml:space="preserve">
|
||||
<source>More</source>
|
||||
<target state="translated">更多</target>
|
||||
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-space.component.ts</context><context context-type="linenumber">55</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+video-list/overview/video-overview.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-video-space.component.ts</context>
|
||||
<context context-type="linenumber">55</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+video-list/overview/video-overview.component.html</context>
|
||||
<context context-type="linenumber">16</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7855115715004732406" datatype="html" xml:space="preserve">
|
||||
<source>Browse "<x id="PH" equiv-text="value.category.label"/>" videos</source>
|
||||
<target state="translated">瀏覽 "<x id="PH" equiv-text="value.category.label"/>" 影片</target>
|
||||
@@ -2546,7 +2558,7 @@
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6994936570572804302" datatype="html">
|
||||
@@ -3882,30 +3894,27 @@ The link will expire within 1 hour.</source>
|
||||
<context context-type="linenumber">60</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5601530442010506564" datatype="html">
|
||||
<trans-unit id="5601530442010506564" datatype="html" xml:space="preserve">
|
||||
<source>Got it</source>
|
||||
<target state="new">Got it</target>
|
||||
<target state="translated">知道了</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info-modal.component.html</context>
|
||||
<context context-type="linenumber">11</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="786003471867762836" datatype="html">
|
||||
<source>Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaborations on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<trans-unit id="8309133070608650316" datatype="html">
|
||||
<source>Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></source>
|
||||
<target state="new">Collaboration on channels are coming to <x id="PH" equiv-text="instanceName"/></target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">28</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7512666561651719221" datatype="html">
|
||||
<trans-unit id="7512666561651719221" datatype="html" xml:space="preserve">
|
||||
<source>You can now <strong>invite other users</strong> to collaborate on your channel</source>
|
||||
<target state="new">You can now <strong>invite other users</strong> to collaborate on your channel</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context>
|
||||
<context context-type="linenumber">30</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<target state="translated">您現在可以<strong>邀請其他使用者</strong>共同協作您的頻道</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/modal/new-feature-info.service.ts</context><context context-type="linenumber">31</context></context-group></trans-unit>
|
||||
<trans-unit id="5960096873104755868" datatype="html" xml:space="preserve">
|
||||
<source>More info</source>
|
||||
<target state="translated">更多資訊</target>
|
||||
@@ -4301,8 +4310,11 @@ The link will expire within 1 hour.</source>
|
||||
<trans-unit id="2734780694152757859" datatype="html" xml:space="preserve">
|
||||
<source>View all</source>
|
||||
<target state="translated">檢視全部</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/header/notification-dropdown.component.html</context><context context-type="linenumber">97</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/header/notification-dropdown.component.html</context>
|
||||
<context context-type="linenumber">97</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5158930137081704296" datatype="html" xml:space="preserve">
|
||||
<source>Search videos, channels…</source>
|
||||
<target state="translated">搜尋影片、頻道……</target>
|
||||
@@ -5079,8 +5091,11 @@ The link will expire within 1 hour.</source>
|
||||
<trans-unit id="8797603333570754589" datatype="html" xml:space="preserve">
|
||||
<source><x id="PH" equiv-text="this.actor.name"/> (instance page)</source>
|
||||
<target state="translated"><x id="PH" equiv-text="this.actor.name"/>(站台頁面)</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-actor-image/actor-avatar.component.ts</context><context context-type="linenumber">47</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-actor-image/actor-avatar.component.ts</context>
|
||||
<context context-type="linenumber">47</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3171444589366264129" datatype="html" xml:space="preserve">
|
||||
<source><x id="START_LINK" ctype="x-a" equiv-text="<a class="text-decoration-underline" href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noreferrer noopener">"/>Markdown compatible<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/> that also supports <x id="START_LINK_1" equiv-text="<a class="text-decoration-underline" href="https://docs.joinpeertube.org/api/custom-client-markup" target="_blank" rel="noreferrer noopener">"/>custom PeerTube HTML tags<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>. </source>
|
||||
<target state="translated"><x id="START_LINK" ctype="x-a" equiv-text="<a class="text-decoration-underline" href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noreferrer noopener">"/>相容於 Markdown<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>,也支援<x id="START_LINK_1" equiv-text="<a class="text-decoration-underline" href="https://docs.joinpeertube.org/api/custom-client-markup" target="_blank" rel="noreferrer noopener">"/>自訂 PeerTube HTML 標籤<x id="CLOSE_LINK" ctype="x-a" equiv-text="</a>"/>。 </target>
|
||||
@@ -7973,9 +7988,15 @@ The link will expire within 1 hour.</source>
|
||||
<trans-unit id="3470970355101730705" datatype="html" xml:space="preserve">
|
||||
<source>Pending review</source>
|
||||
<target state="translated">擱置中的審閱</target>
|
||||
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+video-watch/shared/comment/video-comment.component.html</context><context context-type="linenumber">31</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-comment/video-comment-list-admin-owner.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+video-watch/shared/comment/video-comment.component.html</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-video-comment/video-comment-list-admin-owner.component.html</context>
|
||||
<context context-type="linenumber">66</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="4502286564339177240">
|
||||
<source>Reply</source>
|
||||
<target>回覆</target>
|
||||
@@ -8091,11 +8112,8 @@ The link will expire within 1 hour.</source>
|
||||
<trans-unit id="913810105049472842" datatype="html" xml:space="preserve">
|
||||
<source>Manage my channels</source>
|
||||
<target state="translated">管理我的頻道</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context><context context-type="linenumber">31</context></context-group></trans-unit>
|
||||
<trans-unit id="3140041890374956085" datatype="html" xml:space="preserve">
|
||||
<source>Comments on your videos</source>
|
||||
<target state="translated">對您影片的留言</target>
|
||||
@@ -9071,10 +9089,19 @@ The link will expire within 1 hour.</source>
|
||||
<trans-unit id="3755780063671912599" datatype="html" xml:space="preserve">
|
||||
<source>Watched words</source>
|
||||
<target state="translated">已觀看的影片</target>
|
||||
|
||||
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+admin/admin-moderation.component.ts</context><context context-type="linenumber">76</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context><context context-type="linenumber">127</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-space.component.ts</context><context context-type="linenumber">44</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/admin-moderation.component.ts</context>
|
||||
<context context-type="linenumber">76</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/moderation/moderation.routes.ts</context>
|
||||
<context context-type="linenumber">127</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-video-space.component.ts</context>
|
||||
<context context-type="linenumber">44</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3122686335401195400" datatype="html">
|
||||
<source>Total size</source>
|
||||
<target state="translated">總大小</target>
|
||||
@@ -9242,8 +9269,11 @@ The link will expire within 1 hour.</source>
|
||||
<trans-unit id="8098332505860203521" datatype="html" xml:space="preserve">
|
||||
<source>Only display comments with this tag</source>
|
||||
<target state="translated">僅顯示有此標籤的留言</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-comment/video-comment-list-admin-owner.component.html</context><context context-type="linenumber">79</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-video-comment/video-comment-list-admin-owner.component.html</context>
|
||||
<context context-type="linenumber">79</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7266085473379376028" datatype="html">
|
||||
<source>No comments found matching current filters.</source>
|
||||
<target state="translated">找不到符合目前過濾器的留言。</target>
|
||||
@@ -10195,8 +10225,11 @@ The link will expire within 1 hour.</source>
|
||||
<trans-unit id="888341446683346521" datatype="html" xml:space="preserve">
|
||||
<source>Start date</source>
|
||||
<target state="translated">開始日期</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">17</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context>
|
||||
<context context-type="linenumber">17</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1102717806459547726">
|
||||
<source>Refresh</source>
|
||||
<target>重新整理</target>
|
||||
@@ -10240,8 +10273,11 @@ The link will expire within 1 hour.</source>
|
||||
<trans-unit id="5311176376484381099" datatype="html" xml:space="preserve">
|
||||
<source>Log level</source>
|
||||
<target state="translated">紀錄層級</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">27</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context>
|
||||
<context context-type="linenumber">27</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8984988128489304664" datatype="html">
|
||||
<source>Filter logs by tags</source>
|
||||
<target state="translated">按標籤過濾紀錄檔</target>
|
||||
@@ -10253,8 +10289,11 @@ The link will expire within 1 hour.</source>
|
||||
<trans-unit id="9053612499880707554" datatype="html" xml:space="preserve">
|
||||
<source>Example: ffmpeg, api</source>
|
||||
<target state="translated">範例:ffmpeg, api</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context>
|
||||
<context context-type="linenumber">42</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3894950702316166331" datatype="html">
|
||||
<source>Loading...</source>
|
||||
<target state="translated">正在載入……</target>
|
||||
@@ -10266,13 +10305,19 @@ The link will expire within 1 hour.</source>
|
||||
<trans-unit id="2308490727635384266" datatype="html" xml:space="preserve">
|
||||
<source>Logs copied</source>
|
||||
<target state="translated">已複製紀錄檔</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context>
|
||||
<context context-type="linenumber">60</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="2064122482972455058" datatype="html" xml:space="preserve">
|
||||
<source>Copy logs</source>
|
||||
<target state="translated">複製紀錄檔</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/system/logs/logs.component.html</context>
|
||||
<context context-type="linenumber">60</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1570003374195931619" datatype="html">
|
||||
<source>No log.</source>
|
||||
<target state="translated">無紀錄檔。</target>
|
||||
@@ -14119,7 +14164,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">您的觀看紀錄中還沒有任何影片。</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
<context context-type="linenumber">170</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="989169929300254768" datatype="html">
|
||||
@@ -14135,7 +14180,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">影片歷史紀錄已啟用</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">119</context>
|
||||
<context context-type="linenumber">122</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1869266307786648674" datatype="html">
|
||||
@@ -14143,7 +14188,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">影片歷史紀錄已停用</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">120</context>
|
||||
<context context-type="linenumber">123</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7505147502630555700" datatype="html">
|
||||
@@ -14151,7 +14196,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">刪除影片歷史紀錄</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">144</context>
|
||||
<context context-type="linenumber">147</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8676027102068252963" datatype="html">
|
||||
@@ -14159,7 +14204,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">您確定您想要刪除您所有的影片歷史紀錄嗎?</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">145</context>
|
||||
<context context-type="linenumber">148</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7708910304029766516" datatype="html">
|
||||
@@ -14167,7 +14212,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">影片歷史紀錄已刪除</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">153</context>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3343758569423394070" datatype="html">
|
||||
@@ -14175,7 +14220,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">「<x id="PH" equiv-text="this.search"/>」找不到影片。</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">164</context>
|
||||
<context context-type="linenumber">167</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="687236465759862933" datatype="html">
|
||||
@@ -14226,25 +14271,25 @@ The link will expire within 1 hour.</source>
|
||||
<context context-type="linenumber">11,12</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8627640588059476624" datatype="html">
|
||||
<trans-unit id="8627640588059476624" datatype="html" xml:space="preserve">
|
||||
<source>An editor can manage videos in this channel</source>
|
||||
<target state="new">An editor can manage videos in this channel</target>
|
||||
<target state="translated">編輯可以管理此頻道的影片</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-main/channel/collaborator-state.component.ts</context>
|
||||
<context context-type="linenumber">25</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3775433842284877534" datatype="html">
|
||||
<trans-unit id="3775433842284877534" datatype="html" xml:space="preserve">
|
||||
<source>Owner of the channel</source>
|
||||
<target state="new">Owner of the channel</target>
|
||||
<target state="translated">頻道的擁有者</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-main/channel/collaborator-state.component.ts</context>
|
||||
<context context-type="linenumber">29</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="2996672568437579118" datatype="html">
|
||||
<trans-unit id="2996672568437579118" datatype="html" xml:space="preserve">
|
||||
<source>Invited to be an editor to manage videos in this channel</source>
|
||||
<target state="new">Invited to be an editor to manage videos in this channel</target>
|
||||
<target state="translated">獲邀擔任編輯以管理此頻道的影片</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-main/channel/collaborator-state.component.ts</context>
|
||||
<context context-type="linenumber">33</context>
|
||||
@@ -17764,12 +17809,20 @@ The link will expire within 1 hour.</source>
|
||||
<context context-type="linenumber">156</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8946368517039712001" datatype="html" xml:space="preserve">
|
||||
<source>This <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> does not have settings.</source>
|
||||
<target state="translated">此 <x id="INTERPOLATION" equiv-text="{{ pluginTypeLabel }}"/> 沒有設定。</target>
|
||||
<trans-unit id="649873611133633238" datatype="html">
|
||||
<source>This plugin does not have settings.</source>
|
||||
<target state="new">This plugin does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">20,23</context>
|
||||
<context context-type="linenumber">21,22</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5495621331909678720" datatype="html">
|
||||
<source>This theme does not have settings.</source>
|
||||
<target state="new">This theme does not have settings.</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context>
|
||||
<context context-type="linenumber">23,24</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1875025899004073421">
|
||||
@@ -19017,7 +19070,7 @@ The link will expire within 1 hour.</source>
|
||||
<target state="translated">我的觀看紀錄</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-history/my-history.component.ts</context>
|
||||
<context context-type="linenumber">73</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3656932706364053858" datatype="html">
|
||||
@@ -19197,11 +19250,11 @@ The link will expire within 1 hour.</source>
|
||||
<target>界面設定已更新。</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">138</context>
|
||||
<context context-type="linenumber">141</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">160</context>
|
||||
<context context-type="linenumber">163</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6784127216978878229" datatype="html" xml:space="preserve">
|
||||
@@ -19619,68 +19672,107 @@ The link will expire within 1 hour.</source>
|
||||
<trans-unit id="2648594810167531503" datatype="html" xml:space="preserve">
|
||||
<source>Editors <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>can:<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source>
|
||||
<target state="translated">編輯 <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>can:<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context><context context-type="linenumber">41</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context>
|
||||
<context context-type="linenumber">41</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3790361059881359024" datatype="html" xml:space="preserve">
|
||||
<source>Publish videos in this channel</source>
|
||||
<target state="translated">在此頻道發佈影片</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context><context context-type="linenumber">44</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context>
|
||||
<context context-type="linenumber">44</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="2328126264669408590" datatype="html" xml:space="preserve">
|
||||
<source>Manage, update or delete videos, comments, playlists of this channel</source>
|
||||
<target state="translated">管理、更新或刪除此頻道的影片、留言、播放清單</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context>
|
||||
<context context-type="linenumber">45</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="6753681732976615521" datatype="html" xml:space="preserve">
|
||||
<source>Add or delete channel synchronization</source>
|
||||
<target state="translated">新增或刪除頻道同步</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context>
|
||||
<context context-type="linenumber">46</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8868828786989275402" datatype="html" xml:space="preserve">
|
||||
<source>Update information of this channel (title, description, banner...)</source>
|
||||
<target state="translated">更新此頻道的資訊(標題、描述、橫幅……)</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context>
|
||||
<context context-type="linenumber">47</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="566992019450450500" datatype="html" xml:space="preserve">
|
||||
<source>But editors <x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>cannot:<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></source>
|
||||
<target state="translated">但編輯<x id="START_TAG_STRONG" ctype="x-strong" equiv-text="<strong>"/>無法:<x id="CLOSE_TAG_STRONG" ctype="x-strong" equiv-text="</strong>"/></target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context><context context-type="linenumber">50</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context>
|
||||
<context context-type="linenumber">50</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="217345434594735009" datatype="html" xml:space="preserve">
|
||||
<source>Delete the channel</source>
|
||||
<target state="translated">刪除頻道</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context><context context-type="linenumber">53</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context>
|
||||
<context context-type="linenumber">53</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5864968016757262571" datatype="html" xml:space="preserve">
|
||||
<source>Add or remove other editors</source>
|
||||
<target state="translated">新增或移除其他編輯</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context><context context-type="linenumber">54</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context>
|
||||
<context context-type="linenumber">54</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3684779884984833882" datatype="html" xml:space="preserve">
|
||||
<source>Current editors</source>
|
||||
<target state="translated">目前的編輯</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context><context context-type="linenumber">58</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context>
|
||||
<context context-type="linenumber">58</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="5874570330774661733" datatype="html" xml:space="preserve">
|
||||
<source>No editors at the moment</source>
|
||||
<target state="translated">目前沒有編輯</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context><context context-type="linenumber">85</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context>
|
||||
<context context-type="linenumber">85</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7704259175174094901" datatype="html" xml:space="preserve">
|
||||
<source>New editor</source>
|
||||
<target state="translated">新編輯</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context><context context-type="linenumber">91</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context>
|
||||
<context context-type="linenumber">91</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8488228014293021599" datatype="html" xml:space="preserve">
|
||||
<source>Editor handle</source>
|
||||
<target state="translated">編輯帳號</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context><context context-type="linenumber">93</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context>
|
||||
<context context-type="linenumber">93</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3463797202358605584" datatype="html" xml:space="preserve">
|
||||
<source>Invite</source>
|
||||
<target state="translated">邀請</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context><context context-type="linenumber">98</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/pages/video-channel-editors.component.html</context>
|
||||
<context context-type="linenumber">98</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8065180360788653509" datatype="html" xml:space="preserve">
|
||||
<source>Are you sure you want to remove invitation of <strong><x id="PH" equiv-text="collaborator.account.displayName"/></strong> to collaborate on your channel?</source>
|
||||
<target state="translated">您確定您要移除對 <strong><x id="PH" equiv-text="collaborator.account.displayName"/></strong> 在您的頻道上協作的邀請嗎?</target>
|
||||
@@ -19732,23 +19824,35 @@ The link will expire within 1 hour.</source>
|
||||
<trans-unit id="1426719913849129925" datatype="html" xml:space="preserve">
|
||||
<source>Create a new channel</source>
|
||||
<target state="translated">建立新頻道</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/video-channel-edit.component.html</context><context context-type="linenumber">43</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/video-channel-edit.component.html</context>
|
||||
<context context-type="linenumber">43</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="4866329251811877580" datatype="html" xml:space="preserve">
|
||||
<source>Go to the public page</source>
|
||||
<target state="translated">前往公開頁面</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/video-channel-edit.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/video-channel-edit.component.html</context>
|
||||
<context context-type="linenumber">49</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3620188369327429839" datatype="html" xml:space="preserve">
|
||||
<source>Save</source>
|
||||
<target state="translated">儲存</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/video-channel-edit.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/video-channel-edit.component.html</context>
|
||||
<context context-type="linenumber">60</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="4580094510133881726" datatype="html" xml:space="preserve">
|
||||
<source>There are errors in your channel settings.</source>
|
||||
<target state="translated">您的頻道設定裡有錯誤。</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/video-channel-edit.component.html</context><context context-type="linenumber">71</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/video-channel-edit.component.html</context>
|
||||
<context context-type="linenumber">71</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="7589345916094713536">
|
||||
<source>Video channel <x id="PH"/> updated.</source>
|
||||
<target>影片頻道 <x id="PH"/> 已更新。</target>
|
||||
@@ -20032,13 +20136,19 @@ The link will expire within 1 hour.</source>
|
||||
<trans-unit id="8496409985768674759" datatype="html" xml:space="preserve">
|
||||
<source>Manage my videos</source>
|
||||
<target state="translated">管理我的裝置</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-space.component.ts</context><context context-type="linenumber">31</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-video-space.component.ts</context>
|
||||
<context context-type="linenumber">31</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="1170141381901621610" datatype="html" xml:space="preserve">
|
||||
<source>Comments on my videos</source>
|
||||
<target state="translated">對我的影片的留言</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-space.component.ts</context><context context-type="linenumber">40</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-video-space.component.ts</context>
|
||||
<context context-type="linenumber">40</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="2591467977473302125" datatype="html">
|
||||
<source>Videos list</source>
|
||||
<target state="translated">影片清單</target>
|
||||
@@ -20424,11 +20534,23 @@ The link will expire within 1 hour.</source>
|
||||
<trans-unit id="3897348120591552265" datatype="html" xml:space="preserve">
|
||||
<source>Manage</source>
|
||||
<target state="translated">管理</target>
|
||||
|
||||
|
||||
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context><context context-type="linenumber">64</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context><context context-type="linenumber">130</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+video-list/video-user-subscriptions.component.ts</context><context context-type="linenumber">32</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">474</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/+my-video-channels/my-video-channels.component.html</context>
|
||||
<context context-type="linenumber">64</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-videos/my-videos.component.html</context>
|
||||
<context context-type="linenumber">130</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+video-list/video-user-subscriptions.component.ts</context>
|
||||
<context context-type="linenumber">32</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context>
|
||||
<context context-type="linenumber">474</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3004701943093671049" datatype="html" xml:space="preserve">
|
||||
<source>All channels</source>
|
||||
<target state="translated">所有頻道</target>
|
||||
@@ -20456,16 +20578,16 @@ The link will expire within 1 hour.</source>
|
||||
<trans-unit id="7731752234233950482" datatype="html" xml:space="preserve">
|
||||
<source>Synchronizations</source>
|
||||
<target state="translated">同步</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context>
|
||||
<context context-type="linenumber">35</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-channel-space.component.ts</context><context context-type="linenumber">39</context></context-group></trans-unit>
|
||||
<trans-unit id="7607713563510753803" datatype="html" xml:space="preserve">
|
||||
<source>Imports</source>
|
||||
<target state="translated">匯入</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-space.component.ts</context><context context-type="linenumber">61</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-video-space.component.ts</context>
|
||||
<context context-type="linenumber">61</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="8936704404804793618" datatype="html">
|
||||
<source>Videos</source>
|
||||
<target state="translated">影片</target>
|
||||
@@ -21167,9 +21289,9 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<context context-type="linenumber">4</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="3803133788917504574" datatype="html">
|
||||
<source> Transcoding is enabled so real videos size can be at most ~ <x id="INTERPOLATION" equiv-text="{{ computeQuotaWithTranscoding() | bytes: 0 }}"/>. </source>
|
||||
<target state="new"> Transcoding is enabled so real videos size can be at most ~ <x id="INTERPOLATION" equiv-text="{{ computeQuotaWithTranscoding() | bytes: 0 }}"/>. </target>
|
||||
<trans-unit id="3803133788917504574" datatype="html" xml:space="preserve">
|
||||
<source>Transcoding is enabled so real videos size can be at most ~ <x id="INTERPOLATION" equiv-text="{{ computeQuotaWithTranscoding() | bytes: 0 }}"/>. </source>
|
||||
<target state="translated">轉換編碼功能已啟用,因此實際的影片大小最多可達約 <x id="INTERPOLATION" equiv-text="{{ computeQuotaWithTranscoding() | bytes: 0 }}"/>。 </target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+admin/shared/user-real-quota-info.component.html</context>
|
||||
<context context-type="linenumber">11,12</context>
|
||||
@@ -21370,8 +21492,11 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<trans-unit id="1043265374828694539" datatype="html" xml:space="preserve">
|
||||
<source>Auto tag policies</source>
|
||||
<target state="translated">自動標籤政策</target>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/my-video-space.component.ts</context><context context-type="linenumber">48</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/my-video-space.component.ts</context>
|
||||
<context context-type="linenumber">48</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="4930506384627295710" datatype="html">
|
||||
<source>Settings</source>
|
||||
<target state="translated">設定</target>
|
||||
@@ -23316,9 +23441,15 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<trans-unit id="2271545768110890370" datatype="html" xml:space="preserve">
|
||||
<source><x id="INTERPOLATION" equiv-text="{{ errorRoot.page }}"/> page</source>
|
||||
<target state="translated"><x id="INTERPOLATION" equiv-text="{{ errorRoot.page }}"/> 頁</target>
|
||||
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/video-channel-edit.component.html</context><context context-type="linenumber">75</context></context-group><context-group purpose="location"><context context-type="sourcefile">src/app/+videos-publish-manage/shared-manage/common/manage-errors.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+my-library/+my-video-channels/edit/video-channel-edit.component.html</context>
|
||||
<context context-type="linenumber">75</context>
|
||||
</context-group>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/+videos-publish-manage/shared-manage/common/manage-errors.component.html</context>
|
||||
<context context-type="linenumber">6</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
<trans-unit id="2689998308942961784" datatype="html" xml:space="preserve">
|
||||
<source>Create channel</source>
|
||||
<target state="translated">建立頻道</target>
|
||||
@@ -26311,19 +26442,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
|
||||
<trans-unit id="5240556993302961443" datatype="html" xml:space="preserve">
|
||||
<source>Save interface settings</source>
|
||||
<target state="translated">儲存介面設定</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">165</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">168</context></context-group></trans-unit>
|
||||
<trans-unit id="7570883748440392027" datatype="html" xml:space="preserve">
|
||||
<source><x id="PH" equiv-text="this.instanceName"/> theme</source>
|
||||
<target state="translated"><x id="PH" equiv-text="this.instanceName"/> 佈景主題</target>
|
||||
<context-group purpose="location">
|
||||
<context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context>
|
||||
<context context-type="linenumber">63</context>
|
||||
</context-group>
|
||||
</trans-unit>
|
||||
|
||||
<context-group purpose="location"><context context-type="sourcefile">src/app/shared/shared-user-settings/user-interface-settings.component.ts</context><context context-type="linenumber">64</context></context-group></trans-unit>
|
||||
<trans-unit id="1219783168145776019" datatype="html">
|
||||
<source>LIVE ENDED</source>
|
||||
<target state="translated">直播結束</target>
|
||||
|
||||
@@ -74,7 +74,7 @@
|
||||
"Download speed:": "Vitesse de téléchargement :",
|
||||
"Uploader note:": "Remarque de l'auteur :",
|
||||
"Close": "Fermer",
|
||||
"(skipped {1} buffers) ": "(skipped {1} buffers) ",
|
||||
"(skipped {1} buffers) ": "({1} buffers ignorés) ",
|
||||
"Audio Player": "Lecteur audio",
|
||||
"Video Player": "Lecteur vidéo",
|
||||
"Play": "Lecture",
|
||||
|
||||
@@ -151,7 +151,7 @@
|
||||
"Script": "Krasopis",
|
||||
"Small Caps": "Kapitalke",
|
||||
"Reset": "Obnovi",
|
||||
"restore all settings to the default values": "obnovi sve postavke na zadane vrijednosti",
|
||||
"restore all settings to the default values": "obnovi sve postavke na standardne vrijednosti",
|
||||
"Done": "Gotovo",
|
||||
"Caption Settings Dialog": "Dijalog za postavke titlova",
|
||||
"Beginning of dialog window. Escape will cancel and close the window.": "Početak prozora dijaloga. Tipka Escape prekida radnju i zatvara prozor.",
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user