diff options
72 files changed, 10832 insertions, 10024 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index ab25788af..8561fc859 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md | |||
@@ -5,6 +5,10 @@ | |||
5 | ### IMPORTANT NOTES | 5 | ### IMPORTANT NOTES |
6 | 6 | ||
7 | * The minimum ffmpeg version required is now 4.1 | 7 | * The minimum ffmpeg version required is now 4.1 |
8 | * Deprecate static routes that will be removed in 3.0 (you may not have to do anything if you used paths returned by the video REST API): | ||
9 | * `/static/avatars/`: use `/lazy-static/avatars/` instead | ||
10 | * `/static/previews/`: use `/lazy-static/previews/` instead | ||
11 | * `/static/video-captions/`: use `/lazy-static/video-captions/` instead | ||
8 | * Use `playlistPosition` URL parameter for playlists instead of `videoId` to set the current playlist position | 12 | * Use `playlistPosition` URL parameter for playlists instead of `videoId` to set the current playlist position |
9 | 13 | ||
10 | ### Maintenance | 14 | ### Maintenance |
diff --git a/client/e2e/protractor.conf.js b/client/e2e/protractor.conf.js index 47585afc5..be303bce4 100644 --- a/client/e2e/protractor.conf.js +++ b/client/e2e/protractor.conf.js | |||
@@ -5,7 +5,7 @@ const {SpecReporter} = require('jasmine-spec-reporter') | |||
5 | 5 | ||
6 | exports.config = { | 6 | exports.config = { |
7 | allScriptsTimeout: 25000, | 7 | allScriptsTimeout: 25000, |
8 | specs: ['./src/**/*.e2e-spec.ts'], | 8 | specs: [ './src/**/*.e2e-spec.ts' ], |
9 | 9 | ||
10 | seleniumAddress: 'http://hub-cloud.browserstack.com/wd/hub', | 10 | seleniumAddress: 'http://hub-cloud.browserstack.com/wd/hub', |
11 | commonCapabilities: { | 11 | commonCapabilities: { |
@@ -85,7 +85,9 @@ exports.config = { | |||
85 | require('ts-node').register({ | 85 | require('ts-node').register({ |
86 | project: require('path').join(__dirname, './tsconfig.e2e.json') | 86 | project: require('path').join(__dirname, './tsconfig.e2e.json') |
87 | }) | 87 | }) |
88 | jasmine.getEnv().addReporter(new SpecReporter({ spec: { displayStacktrace: true } })) | 88 | jasmine.getEnv().addReporter(new SpecReporter({ |
89 | spec: { displayStacktrace: 'raw' } | ||
90 | })) | ||
89 | } | 91 | } |
90 | } | 92 | } |
91 | 93 | ||
diff --git a/client/e2e/src/po/player.po.ts b/client/e2e/src/po/player.po.ts index bc61704fb..d18d81f16 100644 --- a/client/e2e/src/po/player.po.ts +++ b/client/e2e/src/po/player.po.ts | |||
@@ -1,5 +1,5 @@ | |||
1 | import { browser, by, element, ExpectedConditions } from 'protractor' | 1 | import { browser, by, element } from 'protractor' |
2 | import { browserSleep, isIOS, isMobileDevice } from '../utils' | 2 | import { browserSleep, isIOS, isMobileDevice, isSafari } from '../utils' |
3 | 3 | ||
4 | export class PlayerPage { | 4 | export class PlayerPage { |
5 | 5 | ||
@@ -17,27 +17,22 @@ export class PlayerPage { | |||
17 | } | 17 | } |
18 | 18 | ||
19 | async playAndPauseVideo (isAutoplay: boolean) { | 19 | async playAndPauseVideo (isAutoplay: boolean) { |
20 | // Autoplay is disabled on iOS | 20 | const videojsEl = element(by.css('div.video-js')) |
21 | if (isAutoplay === false || await isIOS()) { | 21 | await browser.wait(browser.ExpectedConditions.elementToBeClickable(videojsEl)) |
22 | |||
23 | // Autoplay is disabled on iOS and Safari | ||
24 | if (await isIOS() || await isSafari() || await isMobileDevice()) { | ||
25 | // We can't play the video using protractor if it is not muted | ||
26 | await browser.executeScript(`document.querySelector('video').muted = true`) | ||
27 | await this.clickOnPlayButton() | ||
28 | } else if (isAutoplay === false) { | ||
22 | await this.clickOnPlayButton() | 29 | await this.clickOnPlayButton() |
23 | } | 30 | } |
24 | 31 | ||
25 | await browserSleep(2000) | 32 | await browserSleep(2000) |
26 | await browser.wait(browser.ExpectedConditions.invisibilityOf(element(by.css('.vjs-loading-spinner')))) | 33 | await browser.wait(browser.ExpectedConditions.invisibilityOf(element(by.css('.vjs-loading-spinner')))) |
27 | 34 | ||
28 | const videojsEl = element(by.css('div.video-js')) | 35 | await browserSleep(2000) |
29 | await browser.wait(browser.ExpectedConditions.elementToBeClickable(videojsEl)) | ||
30 | |||
31 | if (await isMobileDevice()) { | ||
32 | await browserSleep(5000) | ||
33 | |||
34 | // On Android, we need to click twice on "play" (BrowserStack particularity) | ||
35 | if (!await isIOS()) await videojsEl.click() | ||
36 | } | ||
37 | |||
38 | browser.ignoreSynchronization = false | ||
39 | await browserSleep(7000) | ||
40 | browser.ignoreSynchronization = true | ||
41 | 36 | ||
42 | await videojsEl.click() | 37 | await videojsEl.click() |
43 | } | 38 | } |
diff --git a/client/e2e/src/utils.ts b/client/e2e/src/utils.ts index e19da6402..a9d30c03a 100644 --- a/client/e2e/src/utils.ts +++ b/client/e2e/src/utils.ts | |||
@@ -1,11 +1,15 @@ | |||
1 | import { browser } from 'protractor' | 1 | import { browser } from 'protractor' |
2 | 2 | ||
3 | async function browserSleep (amount: number) { | 3 | async function browserSleep (amount: number) { |
4 | if (await isIOS()) browser.ignoreSynchronization = false | 4 | const oldValue = await browser.waitForAngularEnabled() |
5 | |||
6 | // iOS does not seem to work with protractor | ||
7 | // https://github.com/angular/protractor/issues/2840 | ||
8 | if (await isIOS()) browser.waitForAngularEnabled(true) | ||
5 | 9 | ||
6 | await browser.sleep(amount) | 10 | await browser.sleep(amount) |
7 | 11 | ||
8 | if (await isIOS()) browser.ignoreSynchronization = true | 12 | if (await isIOS()) browser.waitForAngularEnabled(oldValue) |
9 | } | 13 | } |
10 | 14 | ||
11 | async function isMobileDevice () { | 15 | async function isMobileDevice () { |
diff --git a/client/e2e/src/videos.e2e-spec.ts b/client/e2e/src/videos.e2e-spec.ts index d8af1885f..d9d2cb9b9 100644 --- a/client/e2e/src/videos.e2e-spec.ts +++ b/client/e2e/src/videos.e2e-spec.ts | |||
@@ -43,7 +43,7 @@ describe('Videos workflow', () => { | |||
43 | if (await isIOS()) { | 43 | if (await isIOS()) { |
44 | // iOS does not seem to work with protractor | 44 | // iOS does not seem to work with protractor |
45 | // https://github.com/angular/protractor/issues/2840 | 45 | // https://github.com/angular/protractor/issues/2840 |
46 | browser.ignoreSynchronization = true | 46 | browser.waitForAngularEnabled(false) |
47 | 47 | ||
48 | console.log('iOS detected') | 48 | console.log('iOS detected') |
49 | } else if (await isMobileDevice()) { | 49 | } else if (await isMobileDevice()) { |
@@ -111,6 +111,7 @@ describe('Videos workflow', () => { | |||
111 | }) | 111 | }) |
112 | 112 | ||
113 | it('Should watch the associated embed video', async () => { | 113 | it('Should watch the associated embed video', async () => { |
114 | const oldValue = await browser.waitForAngularEnabled() | ||
114 | await browser.waitForAngularEnabled(false) | 115 | await browser.waitForAngularEnabled(false) |
115 | 116 | ||
116 | await videoWatchPage.goOnAssociatedEmbed() | 117 | await videoWatchPage.goOnAssociatedEmbed() |
@@ -118,10 +119,11 @@ describe('Videos workflow', () => { | |||
118 | await playerPage.playAndPauseVideo(false) | 119 | await playerPage.playAndPauseVideo(false) |
119 | expect(playerPage.getWatchVideoPlayerCurrentTime()).toBeGreaterThanOrEqual(2) | 120 | expect(playerPage.getWatchVideoPlayerCurrentTime()).toBeGreaterThanOrEqual(2) |
120 | 121 | ||
121 | await browser.waitForAngularEnabled(true) | 122 | await browser.waitForAngularEnabled(oldValue) |
122 | }) | 123 | }) |
123 | 124 | ||
124 | it('Should watch the p2p media loader embed video', async () => { | 125 | it('Should watch the p2p media loader embed video', async () => { |
126 | const oldValue = await browser.waitForAngularEnabled() | ||
125 | await browser.waitForAngularEnabled(false) | 127 | await browser.waitForAngularEnabled(false) |
126 | 128 | ||
127 | await videoWatchPage.goOnP2PMediaLoaderEmbed() | 129 | await videoWatchPage.goOnP2PMediaLoaderEmbed() |
@@ -129,7 +131,7 @@ describe('Videos workflow', () => { | |||
129 | await playerPage.playAndPauseVideo(false) | 131 | await playerPage.playAndPauseVideo(false) |
130 | expect(playerPage.getWatchVideoPlayerCurrentTime()).toBeGreaterThanOrEqual(2) | 132 | expect(playerPage.getWatchVideoPlayerCurrentTime()).toBeGreaterThanOrEqual(2) |
131 | 133 | ||
132 | await browser.waitForAngularEnabled(true) | 134 | await browser.waitForAngularEnabled(oldValue) |
133 | }) | 135 | }) |
134 | 136 | ||
135 | it('Should update the video', async () => { | 137 | it('Should update the video', async () => { |
@@ -185,11 +187,12 @@ describe('Videos workflow', () => { | |||
185 | 187 | ||
186 | await myAccountPage.playPlaylist() | 188 | await myAccountPage.playPlaylist() |
187 | 189 | ||
190 | const oldValue = await browser.waitForAngularEnabled() | ||
188 | await browser.waitForAngularEnabled(false) | 191 | await browser.waitForAngularEnabled(false) |
189 | 192 | ||
190 | await videoWatchPage.waitUntilVideoName(video2Name, 20000 * 1000) | 193 | await videoWatchPage.waitUntilVideoName(video2Name, 20000 * 1000) |
191 | 194 | ||
192 | await browser.waitForAngularEnabled(true) | 195 | await browser.waitForAngularEnabled(oldValue) |
193 | }) | 196 | }) |
194 | 197 | ||
195 | it('Should watch the webtorrent playlist in the embed', async () => { | 198 | it('Should watch the webtorrent playlist in the embed', async () => { |
@@ -198,6 +201,7 @@ describe('Videos workflow', () => { | |||
198 | const accessToken = await browser.executeScript(`return window.localStorage.getItem('access_token');`) | 201 | const accessToken = await browser.executeScript(`return window.localStorage.getItem('access_token');`) |
199 | const refreshToken = await browser.executeScript(`return window.localStorage.getItem('refresh_token');`) | 202 | const refreshToken = await browser.executeScript(`return window.localStorage.getItem('refresh_token');`) |
200 | 203 | ||
204 | const oldValue = await browser.waitForAngularEnabled() | ||
201 | await browser.waitForAngularEnabled(false) | 205 | await browser.waitForAngularEnabled(false) |
202 | 206 | ||
203 | await myAccountPage.goOnAssociatedPlaylistEmbed() | 207 | await myAccountPage.goOnAssociatedPlaylistEmbed() |
@@ -212,10 +216,11 @@ describe('Videos workflow', () => { | |||
212 | 216 | ||
213 | await playerPage.waitUntilPlaylistInfo('2/2') | 217 | await playerPage.waitUntilPlaylistInfo('2/2') |
214 | 218 | ||
215 | await browser.waitForAngularEnabled(true) | 219 | await browser.waitForAngularEnabled(oldValue) |
216 | }) | 220 | }) |
217 | 221 | ||
218 | it('Should watch the HLS playlist in the embed', async () => { | 222 | it('Should watch the HLS playlist in the embed', async () => { |
223 | const oldValue = await browser.waitForAngularEnabled() | ||
219 | await browser.waitForAngularEnabled(false) | 224 | await browser.waitForAngularEnabled(false) |
220 | 225 | ||
221 | await videoWatchPage.goOnP2PMediaLoaderPlaylistEmbed() | 226 | await videoWatchPage.goOnP2PMediaLoaderPlaylistEmbed() |
@@ -224,7 +229,7 @@ describe('Videos workflow', () => { | |||
224 | 229 | ||
225 | await playerPage.waitUntilPlaylistInfo('2/2') | 230 | await playerPage.waitUntilPlaylistInfo('2/2') |
226 | 231 | ||
227 | await browser.waitForAngularEnabled(true) | 232 | await browser.waitForAngularEnabled(oldValue) |
228 | }) | 233 | }) |
229 | 234 | ||
230 | it('Should delete the video 2', async () => { | 235 | it('Should delete the video 2', async () => { |
diff --git a/client/package.json b/client/package.json index 9769cc813..cd33c6e1d 100644 --- a/client/package.json +++ b/client/package.json | |||
@@ -27,20 +27,20 @@ | |||
27 | }, | 27 | }, |
28 | "typings": "*.d.ts", | 28 | "typings": "*.d.ts", |
29 | "devDependencies": { | 29 | "devDependencies": { |
30 | "@angular-devkit/build-angular": "^0.1001.0-next.4", | 30 | "@angular-devkit/build-angular": "^0.1001.0-next.6", |
31 | "@angular/animations": "^10.1.0-next.5", | 31 | "@angular/animations": "^10.1.0-next.8", |
32 | "@angular/cdk": "^10.0.0", | 32 | "@angular/cdk": "^10.0.0", |
33 | "@angular/cli": "^10.1.0-next.4", | 33 | "@angular/cli": "^10.1.0-next.6", |
34 | "@angular/common": "^10.1.0-next.5", | 34 | "@angular/common": "^10.1.0-next.8", |
35 | "@angular/compiler": "^10.1.0-next.5", | 35 | "@angular/compiler": "^10.1.0-next.8", |
36 | "@angular/compiler-cli": "^10.1.0-next.5", | 36 | "@angular/compiler-cli": "^10.1.0-next.8", |
37 | "@angular/core": "^10.1.0-next.5", | 37 | "@angular/core": "^10.1.0-next.8", |
38 | "@angular/forms": "^10.1.0-next.5", | 38 | "@angular/forms": "^10.1.0-next.8", |
39 | "@angular/localize": "^10.1.0-next.5", | 39 | "@angular/localize": "^10.1.0-next.8", |
40 | "@angular/platform-browser": "^10.1.0-next.5", | 40 | "@angular/platform-browser": "^10.1.0-next.8", |
41 | "@angular/platform-browser-dynamic": "^10.1.0-next.5", | 41 | "@angular/platform-browser-dynamic": "^10.1.0-next.8", |
42 | "@angular/router": "^10.1.0-next.5", | 42 | "@angular/router": "^10.1.0-next.8", |
43 | "@angular/service-worker": "^10.1.0-next.5", | 43 | "@angular/service-worker": "^10.1.0-next.8", |
44 | "@angularclass/hmr": "^2.1.3", | 44 | "@angularclass/hmr": "^2.1.3", |
45 | "@neos21/bootstrap3-glyphicons": "^1.0.1", | 45 | "@neos21/bootstrap3-glyphicons": "^1.0.1", |
46 | "@ng-bootstrap/ng-bootstrap": "^7.0.0", | 46 | "@ng-bootstrap/ng-bootstrap": "^7.0.0", |
@@ -62,7 +62,7 @@ | |||
62 | "@types/lodash-es": "^4.17.0", | 62 | "@types/lodash-es": "^4.17.0", |
63 | "@types/markdown-it": "^10.0.1", | 63 | "@types/markdown-it": "^10.0.1", |
64 | "@types/node": "^14.0.14", | 64 | "@types/node": "^14.0.14", |
65 | "@types/sanitize-html": "1.23.2", | 65 | "@types/sanitize-html": "1.23.3", |
66 | "@types/socket.io-client": "^1.4.32", | 66 | "@types/socket.io-client": "^1.4.32", |
67 | "@types/video.js": "^7.3.8", | 67 | "@types/video.js": "^7.3.8", |
68 | "@types/webtorrent": "^0.107.0", | 68 | "@types/webtorrent": "^0.107.0", |
@@ -72,7 +72,7 @@ | |||
72 | "buffer": "^5.1.0", | 72 | "buffer": "^5.1.0", |
73 | "cache-chunk-store": "^3.0.0", | 73 | "cache-chunk-store": "^3.0.0", |
74 | "chart.js": "^2.9.3", | 74 | "chart.js": "^2.9.3", |
75 | "codelyzer": "^5.1.2", | 75 | "codelyzer": "^6.0.0", |
76 | "core-js": "^3.1.4", | 76 | "core-js": "^3.1.4", |
77 | "css-loader": "^3.1.0", | 77 | "css-loader": "^3.1.0", |
78 | "debug": "^4.1.1", | 78 | "debug": "^4.1.1", |
@@ -80,17 +80,17 @@ | |||
80 | "extract-text-webpack-plugin": "4.0.0-beta.0", | 80 | "extract-text-webpack-plugin": "4.0.0-beta.0", |
81 | "file-loader": "^6.0.0", | 81 | "file-loader": "^6.0.0", |
82 | "focus-visible": "^5.0.2", | 82 | "focus-visible": "^5.0.2", |
83 | "hls.js": "^0.13.2", | 83 | "hls.js": "^0.14.9", |
84 | "html-loader": "^1.0.0", | 84 | "html-loader": "^1.0.0", |
85 | "html-webpack-plugin": "^4.0.3", | 85 | "html-webpack-plugin": "^4.0.3", |
86 | "https-browserify": "^1.0.0", | 86 | "https-browserify": "^1.0.0", |
87 | "jasmine-core": "~3.5.0", | 87 | "jasmine-core": "~3.6.0", |
88 | "jasmine-spec-reporter": "~5.0.0", | 88 | "jasmine-spec-reporter": "~5.0.0", |
89 | "jschannel": "^1.0.2", | 89 | "jschannel": "^1.0.2", |
90 | "karma": "~5.1.0", | 90 | "karma": "~5.1.0", |
91 | "karma-chrome-launcher": "~3.1.0", | 91 | "karma-chrome-launcher": "~3.1.0", |
92 | "karma-coverage-istanbul-reporter": "~3.0.2", | 92 | "karma-coverage-istanbul-reporter": "~3.0.2", |
93 | "karma-jasmine": "~3.3.0", | 93 | "karma-jasmine": "~4.0.1", |
94 | "karma-jasmine-html-reporter": "^1.5.0", | 94 | "karma-jasmine-html-reporter": "^1.5.0", |
95 | "linkifyjs": "^2.1.5", | 95 | "linkifyjs": "^2.1.5", |
96 | "lodash-es": "^4.17.4", | 96 | "lodash-es": "^4.17.4", |
diff --git a/client/src/app/+videos/+video-watch/video-watch.component.ts b/client/src/app/+videos/+video-watch/video-watch.component.ts index 1b2820810..f048edec4 100644 --- a/client/src/app/+videos/+video-watch/video-watch.component.ts +++ b/client/src/app/+videos/+video-watch/video-watch.component.ts | |||
@@ -15,7 +15,7 @@ import { VideoDownloadComponent } from '@app/shared/shared-video-miniature' | |||
15 | import { VideoPlaylist, VideoPlaylistService } from '@app/shared/shared-video-playlist' | 15 | import { VideoPlaylist, VideoPlaylistService } from '@app/shared/shared-video-playlist' |
16 | import { MetaService } from '@ngx-meta/core' | 16 | import { MetaService } from '@ngx-meta/core' |
17 | import { peertubeLocalStorage } from '@root-helpers/peertube-web-storage' | 17 | import { peertubeLocalStorage } from '@root-helpers/peertube-web-storage' |
18 | import { ServerConfig, UserVideoRateType, VideoCaption, VideoPrivacy, VideoState } from '@shared/models' | 18 | import { ServerConfig, ServerErrorCode, UserVideoRateType, VideoCaption, VideoPrivacy, VideoState } from '@shared/models' |
19 | import { getStoredP2PEnabled, getStoredTheater } from '../../../assets/player/peertube-player-local-storage' | 19 | import { getStoredP2PEnabled, getStoredTheater } from '../../../assets/player/peertube-player-local-storage' |
20 | import { | 20 | import { |
21 | CustomizationOptions, | 21 | CustomizationOptions, |
@@ -361,7 +361,24 @@ export class VideoWatchComponent implements OnInit, OnDestroy { | |||
361 | ]) | 361 | ]) |
362 | .pipe( | 362 | .pipe( |
363 | // If 401, the video is private or blocked so redirect to 404 | 363 | // If 401, the video is private or blocked so redirect to 404 |
364 | catchError(err => this.restExtractor.redirectTo404IfNotFound(err, [ 400, 401, 403, 404 ])) | 364 | catchError(err => { |
365 | if (err.body.errorCode === ServerErrorCode.DOES_NOT_RESPECT_FOLLOW_CONSTRAINTS && err.body.originUrl) { | ||
366 | const search = window.location.search | ||
367 | let originUrl = err.body.originUrl | ||
368 | if (search) originUrl += search | ||
369 | |||
370 | this.confirmService.confirm( | ||
371 | $localize`This video is not available on this instance. Do you want to be redirected on the origin instance: <a href="${originUrl}">${originUrl}</a>?`, | ||
372 | $localize`Redirection` | ||
373 | ).then(res => { | ||
374 | if (res === false) return this.restExtractor.redirectTo404IfNotFound(err, [ 400, 401, 403, 404 ]) | ||
375 | |||
376 | return window.location.href = originUrl | ||
377 | }) | ||
378 | } | ||
379 | |||
380 | return this.restExtractor.redirectTo404IfNotFound(err, [ 400, 401, 403, 404 ]) | ||
381 | }) | ||
365 | ) | 382 | ) |
366 | .subscribe(([ video, captionsResult ]) => { | 383 | .subscribe(([ video, captionsResult ]) => { |
367 | const queryParams = this.route.snapshot.queryParams | 384 | const queryParams = this.route.snapshot.queryParams |
diff --git a/client/src/app/app-routing.module.ts b/client/src/app/app-routing.module.ts index a39be17dc..d3cdcefea 100644 --- a/client/src/app/app-routing.module.ts +++ b/client/src/app/app-routing.module.ts | |||
@@ -1,10 +1,10 @@ | |||
1 | import { NgModule } from '@angular/core' | 1 | import { NgModule } from '@angular/core' |
2 | import { RouteReuseStrategy, RouterModule, Routes } from '@angular/router' | 2 | import { RouteReuseStrategy, RouterModule, Routes } from '@angular/router' |
3 | import { AppComponent } from '@app/app.component' | ||
4 | import { CustomReuseStrategy } from '@app/core/routing/custom-reuse-strategy' | 3 | import { CustomReuseStrategy } from '@app/core/routing/custom-reuse-strategy' |
5 | import { MenuGuards } from '@app/core/routing/menu-guard.service' | 4 | import { MenuGuards } from '@app/core/routing/menu-guard.service' |
6 | import { PreloadSelectedModulesList } from './core' | 5 | import { PreloadSelectedModulesList } from './core' |
7 | import { EmptyComponent } from './empty.component' | 6 | import { EmptyComponent } from './empty.component' |
7 | import { POSSIBLE_LOCALES } from '@shared/core-utils/i18n' | ||
8 | 8 | ||
9 | const routes: Routes = [ | 9 | const routes: Routes = [ |
10 | { | 10 | { |
@@ -56,13 +56,22 @@ const routes: Routes = [ | |||
56 | { | 56 | { |
57 | path: '', | 57 | path: '', |
58 | component: EmptyComponent // Avoid 404, app component will redirect dynamically | 58 | component: EmptyComponent // Avoid 404, app component will redirect dynamically |
59 | }, | ||
60 | { | ||
61 | path: '**', | ||
62 | loadChildren: () => import('./+page-not-found/page-not-found.module').then(m => m.PageNotFoundModule) | ||
63 | } | 59 | } |
64 | ] | 60 | ] |
65 | 61 | ||
62 | // Avoid 404 when changing language | ||
63 | for (const locale of POSSIBLE_LOCALES) { | ||
64 | routes.push({ | ||
65 | path: locale, | ||
66 | component: EmptyComponent | ||
67 | }) | ||
68 | } | ||
69 | |||
70 | routes.push({ | ||
71 | path: '**', | ||
72 | loadChildren: () => import('./+page-not-found/page-not-found.module').then(m => m.PageNotFoundModule) | ||
73 | }) | ||
74 | |||
66 | @NgModule({ | 75 | @NgModule({ |
67 | imports: [ | 76 | imports: [ |
68 | RouterModule.forRoot(routes, { | 77 | RouterModule.forRoot(routes, { |
diff --git a/client/src/app/header/search-typeahead.component.scss b/client/src/app/header/search-typeahead.component.scss index 87e8b8c70..f8d68e986 100644 --- a/client/src/app/header/search-typeahead.component.scss +++ b/client/src/app/header/search-typeahead.component.scss | |||
@@ -28,7 +28,7 @@ | |||
28 | .jump-to-suggestions { | 28 | .jump-to-suggestions { |
29 | top: 100%; | 29 | top: 100%; |
30 | left: 0; | 30 | left: 0; |
31 | z-index: z(typeahead); | 31 | z-index: z('search-typeahead'); |
32 | width: 100%; | 32 | width: 100%; |
33 | } | 33 | } |
34 | 34 | ||
diff --git a/client/src/app/menu/menu.component.scss b/client/src/app/menu/menu.component.scss index 407d79725..975604055 100644 --- a/client/src/app/menu/menu.component.scss +++ b/client/src/app/menu/menu.component.scss | |||
@@ -241,6 +241,10 @@ menu { | |||
241 | } | 241 | } |
242 | } | 242 | } |
243 | 243 | ||
244 | .dropdown { | ||
245 | z-index: #{z('menu') + 1} !important; | ||
246 | } | ||
247 | |||
244 | .dropdown-menu { | 248 | .dropdown-menu { |
245 | width: calc(100% + 40px); | 249 | width: calc(100% + 40px); |
246 | } | 250 | } |
diff --git a/client/src/app/shared/shared-abuse-list/abuse-list-table.component.ts b/client/src/app/shared/shared-abuse-list/abuse-list-table.component.ts index cc933db0d..20be94d6e 100644 --- a/client/src/app/shared/shared-abuse-list/abuse-list-table.component.ts +++ b/client/src/app/shared/shared-abuse-list/abuse-list-table.component.ts | |||
@@ -363,7 +363,7 @@ export class AbuseListTableComponent extends RestTable implements OnInit, AfterV | |||
363 | label: $localize`Block video`, | 363 | label: $localize`Block video`, |
364 | isDisplayed: abuse => abuse.video && !abuse.video.deleted && !abuse.video.blacklisted, | 364 | isDisplayed: abuse => abuse.video && !abuse.video.deleted && !abuse.video.blacklisted, |
365 | handler: abuse => { | 365 | handler: abuse => { |
366 | this.videoBlocklistService.blockVideo(abuse.video.id, undefined, true) | 366 | this.videoBlocklistService.blockVideo(abuse.video.id, undefined, abuse.video.channel.isLocal) |
367 | .subscribe( | 367 | .subscribe( |
368 | () => { | 368 | () => { |
369 | this.notifier.success($localize`Video blocked.`) | 369 | this.notifier.success($localize`Video blocked.`) |
diff --git a/client/src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html b/client/src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html index 473fdc102..87ab68b87 100644 --- a/client/src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html +++ b/client/src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.html | |||
@@ -38,7 +38,7 @@ | |||
38 | 38 | ||
39 | <my-edit-button *ngIf="owned && touchScreenEditButton" [routerLink]="[ '/my-account', 'video-playlists', playlist.uuid ]"></my-edit-button> | 39 | <my-edit-button *ngIf="owned && touchScreenEditButton" [routerLink]="[ '/my-account', 'video-playlists', playlist.uuid ]"></my-edit-button> |
40 | 40 | ||
41 | <div *ngIf="owned" class="more" ngbDropdown #moreDropdown="ngbDropdown" placement="bottom auto" | 41 | <div *ngIf="owned" class="more" ngbDropdown #moreDropdown="ngbDropdown" placement="left auto" |
42 | (openChange)="onDropdownOpenChange()" autoClose="outside" | 42 | (openChange)="onDropdownOpenChange()" autoClose="outside" |
43 | > | 43 | > |
44 | <my-global-icon iconName="more-vertical" ngbDropdownToggle role="button" class="icon-more" (click)="$event.preventDefault()"></my-global-icon> | 44 | <my-global-icon iconName="more-vertical" ngbDropdownToggle role="button" class="icon-more" (click)="$event.preventDefault()"></my-global-icon> |
diff --git a/client/src/locale/angular.ar.xlf b/client/src/locale/angular.ar.xlf index 53511e805..c3cb5a290 100644 --- a/client/src/locale/angular.ar.xlf +++ b/client/src/locale/angular.ar.xlf | |||
@@ -678,13 +678,7 @@ | |||
678 | <source>Close</source> | 678 | <source>Close</source> |
679 | <target>اغلاق</target> | 679 | <target>اغلاق</target> |
680 | 680 | ||
681 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="680d5c75b7fd8d37961083608b9fcdc4167b4c43" datatype="html"> | 681 | <context-group purpose="location"><context context-type="sourcefile">../app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
682 | <source>Previous</source><target state="new">Previous</target> | ||
683 | <context-group purpose="location"> | ||
684 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
685 | <context context-type="linenumber">1</context> | ||
686 | </context-group> | ||
687 | </trans-unit> | ||
688 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> | 682 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> |
689 | <source>Configure</source> | 683 | <source>Configure</source> |
690 | <target>تهيئة</target> | 684 | <target>تهيئة</target> |
@@ -4387,157 +4381,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
4387 | <source>Next</source> | 4381 | <source>Next</source> |
4388 | <target>التالي</target> | 4382 | <target>التالي</target> |
4389 | 4383 | ||
4390 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="c3b08b07b5ab98e7cdcf18df39355690ab7d3884" datatype="html"> | 4384 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit><trans-unit id="9082008222523034483" datatype="html"> |
4391 | <source>Previous month</source><target state="new">Previous month</target> | ||
4392 | <context-group purpose="location"> | ||
4393 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4394 | <context context-type="linenumber">1</context> | ||
4395 | </context-group> | ||
4396 | </trans-unit><trans-unit id="4bd046985cfe13040d5ef0cd881edce0968a111a" datatype="html"> | ||
4397 | <source>Next month</source><target state="new">Next month</target> | ||
4398 | <context-group purpose="location"> | ||
4399 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4400 | <context context-type="linenumber">1</context> | ||
4401 | </context-group> | ||
4402 | </trans-unit><trans-unit id="1dbc84807f35518112f62e5775d1daebd3d8462b" datatype="html"> | ||
4403 | <source>Select month</source><target state="new">Select month</target> | ||
4404 | <context-group purpose="location"> | ||
4405 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4406 | <context context-type="linenumber">1</context> | ||
4407 | </context-group> | ||
4408 | </trans-unit><trans-unit id="8ceb09d002bf0c5d1cac171dfbffe1805d2b3962" datatype="html"> | ||
4409 | <source>Select year</source><target state="new">Select year</target> | ||
4410 | <context-group purpose="location"> | ||
4411 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4412 | <context context-type="linenumber">1</context> | ||
4413 | </context-group> | ||
4414 | </trans-unit><trans-unit id="656506dfd46380956a655f919f1498d018f75ca0" datatype="html"> | ||
4415 | <source>««</source><target state="new">««</target> | ||
4416 | <context-group purpose="location"> | ||
4417 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4418 | <context context-type="linenumber">1</context> | ||
4419 | </context-group> | ||
4420 | </trans-unit><trans-unit id="6e52b6ee77a4848d899dd21b591c6fd499e3aef3" datatype="html"> | ||
4421 | <source>«</source><target state="new">«</target> | ||
4422 | <context-group purpose="location"> | ||
4423 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4424 | <context context-type="linenumber">1</context> | ||
4425 | </context-group> | ||
4426 | </trans-unit><trans-unit id="ba9cbb4ff311464308a3627e4f1c3345d9fe6d7d" datatype="html"> | ||
4427 | <source>»</source><target state="new">»</target> | ||
4428 | <context-group purpose="location"> | ||
4429 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4430 | <context context-type="linenumber">1</context> | ||
4431 | </context-group> | ||
4432 | </trans-unit><trans-unit id="49f27a460bc97e7e00be5b37098bfa79884fc7d9" datatype="html"> | ||
4433 | <source>»»</source><target state="new">»»</target> | ||
4434 | <context-group purpose="location"> | ||
4435 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4436 | <context context-type="linenumber">1</context> | ||
4437 | </context-group> | ||
4438 | </trans-unit><trans-unit id="f2f852318759c6396b5d3d17031d53817d7b38cc" datatype="html"> | ||
4439 | <source>First</source><target state="new">First</target> | ||
4440 | <context-group purpose="location"> | ||
4441 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4442 | <context context-type="linenumber">1</context> | ||
4443 | </context-group> | ||
4444 | </trans-unit><trans-unit id="5c729788ba138508aca1bec050b610f7bf81db3e" datatype="html"> | ||
4445 | <source>Last</source><target state="new">Last</target> | ||
4446 | <context-group purpose="location"> | ||
4447 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4448 | <context context-type="linenumber">1</context> | ||
4449 | </context-group> | ||
4450 | </trans-unit><trans-unit id="f8e9a947b9db4252c0e9905765338712f2fd032f" datatype="html"> | ||
4451 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
4452 | <context-group purpose="location"> | ||
4453 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4454 | <context context-type="linenumber">1</context> | ||
4455 | </context-group> | ||
4456 | </trans-unit><trans-unit id="ce676ab1d6d98f85c836381cf100a4a91ef95a1f" datatype="html"> | ||
4457 | <source>HH</source><target state="new">HH</target> | ||
4458 | <context-group purpose="location"> | ||
4459 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4460 | <context context-type="linenumber">1</context> | ||
4461 | </context-group> | ||
4462 | </trans-unit><trans-unit id="3bbce5fef7e1151da052a4e529453edb340e3912" datatype="html"> | ||
4463 | <source>Hours</source><target state="new">Hours</target> | ||
4464 | <context-group purpose="location"> | ||
4465 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4466 | <context context-type="linenumber">1</context> | ||
4467 | </context-group> | ||
4468 | </trans-unit><trans-unit id="72c8edf6a50068a05bde70991e36b1e881f4ca54" datatype="html"> | ||
4469 | <source>MM</source><target state="new">MM</target> | ||
4470 | <context-group purpose="location"> | ||
4471 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4472 | <context context-type="linenumber">1</context> | ||
4473 | </context-group> | ||
4474 | </trans-unit><trans-unit id="41e62daa962947c0d23ded0981975d1bddf0bf38" datatype="html"> | ||
4475 | <source>Minutes</source><target state="new">Minutes</target> | ||
4476 | <context-group purpose="location"> | ||
4477 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4478 | <context context-type="linenumber">1</context> | ||
4479 | </context-group> | ||
4480 | </trans-unit><trans-unit id="cb74bc1d625a6c1742f0d7d47306cf495780c218" datatype="html"> | ||
4481 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
4482 | <context-group purpose="location"> | ||
4483 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4484 | <context context-type="linenumber">1</context> | ||
4485 | </context-group> | ||
4486 | </trans-unit><trans-unit id="147c7a19429da7d999e247d22e33fee370b1691b" datatype="html"> | ||
4487 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
4488 | <context-group purpose="location"> | ||
4489 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4490 | <context context-type="linenumber">1</context> | ||
4491 | </context-group> | ||
4492 | </trans-unit><trans-unit id="f5a4a3bc05e053f6732475d0e74875ec01c3a348" datatype="html"> | ||
4493 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
4494 | <context-group purpose="location"> | ||
4495 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4496 | <context context-type="linenumber">1</context> | ||
4497 | </context-group> | ||
4498 | </trans-unit><trans-unit id="c1a6899e529c096da5b660385d4e77fe1f7ad271" datatype="html"> | ||
4499 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
4500 | <context-group purpose="location"> | ||
4501 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4502 | <context context-type="linenumber">1</context> | ||
4503 | </context-group> | ||
4504 | </trans-unit><trans-unit id="ebe38d36a40a2383c5fefa9b4608ffbda08bd4a3" datatype="html"> | ||
4505 | <source>SS</source><target state="new">SS</target> | ||
4506 | <context-group purpose="location"> | ||
4507 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4508 | <context context-type="linenumber">1</context> | ||
4509 | </context-group> | ||
4510 | </trans-unit><trans-unit id="4f2ed9e71a7c981db3e50ae2fedb28aff2ec4e6c" datatype="html"> | ||
4511 | <source>Seconds</source><target state="new">Seconds</target> | ||
4512 | <context-group purpose="location"> | ||
4513 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4514 | <context context-type="linenumber">1</context> | ||
4515 | </context-group> | ||
4516 | </trans-unit><trans-unit id="912322ecee7d659d04dcf494a70e22e49d334b26" datatype="html"> | ||
4517 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
4518 | <context-group purpose="location"> | ||
4519 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4520 | <context context-type="linenumber">1</context> | ||
4521 | </context-group> | ||
4522 | </trans-unit><trans-unit id="5db47ac104294243a70eb9124fbea9d0004ddf69" datatype="html"> | ||
4523 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
4524 | <context-group purpose="location"> | ||
4525 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4526 | <context context-type="linenumber">1</context> | ||
4527 | </context-group> | ||
4528 | </trans-unit><trans-unit id="8d6e691e10306c1b34c6b26805151aaea320ef7f" datatype="html"> | ||
4529 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
4530 | <context-group purpose="location"> | ||
4531 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4532 | <context context-type="linenumber">1</context> | ||
4533 | </context-group> | ||
4534 | </trans-unit><trans-unit id="69a1f176a93998876952adac57c3bc3863b6105e" datatype="html"> | ||
4535 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
4536 | <context-group purpose="location"> | ||
4537 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4538 | <context context-type="linenumber">1</context> | ||
4539 | </context-group> | ||
4540 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
4541 | <source>Get help</source><target state="new">Get help</target> | 4385 | <source>Get help</source><target state="new">Get help</target> |
4542 | <context-group purpose="location"> | 4386 | <context-group purpose="location"> |
4543 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 4387 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> |
@@ -8764,7 +8608,193 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8764 | <source>Only users of this instance can see this video</source> | 8608 | <source>Only users of this instance can see this video</source> |
8765 | <target>يمكن لمستخدمي هذا المنصة فقط مشاهدة هذا الفيديو</target> | 8609 | <target>يمكن لمستخدمي هذا المنصة فقط مشاهدة هذا الفيديو</target> |
8766 | 8610 | ||
8767 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit> | 8611 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit><trans-unit id="ngb.alert.close" datatype="html"> |
8612 | <source>Close</source><target state="new">Close</target> | ||
8613 | <context-group purpose="location"> | ||
8614 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/alert/alert.ts</context> | ||
8615 | <context context-type="linenumber">74</context> | ||
8616 | </context-group> | ||
8617 | </trans-unit><trans-unit id="ngb.carousel.previous" datatype="html"> | ||
8618 | <source>Previous</source><target state="new">Previous</target> | ||
8619 | <context-group purpose="location"> | ||
8620 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
8621 | <context context-type="linenumber">349</context> | ||
8622 | </context-group> | ||
8623 | </trans-unit><trans-unit id="ngb.carousel.next" datatype="html"> | ||
8624 | <source>Next</source><target state="new">Next</target> | ||
8625 | <context-group purpose="location"> | ||
8626 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
8627 | <context context-type="linenumber">349</context> | ||
8628 | </context-group> | ||
8629 | </trans-unit><trans-unit id="ngb.datepicker.previous-month" datatype="html"> | ||
8630 | <source>Previous month</source><target state="new">Previous month</target> | ||
8631 | <context-group purpose="location"> | ||
8632 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation.ts</context> | ||
8633 | <context context-type="linenumber">69</context> | ||
8634 | </context-group> | ||
8635 | </trans-unit><trans-unit id="ngb.datepicker.next-month" datatype="html"> | ||
8636 | <source>Next month</source><target state="new">Next month</target> | ||
8637 | <context-group purpose="location"> | ||
8638 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-month.ts</context> | ||
8639 | <context context-type="linenumber">72</context> | ||
8640 | </context-group> | ||
8641 | </trans-unit><trans-unit id="ngb.datepicker.select-month" datatype="html"> | ||
8642 | <source>Select month</source><target state="new">Select month</target> | ||
8643 | <context-group purpose="location"> | ||
8644 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
8645 | <context context-type="linenumber">74</context> | ||
8646 | </context-group> | ||
8647 | </trans-unit><trans-unit id="ngb.datepicker.select-year" datatype="html"> | ||
8648 | <source>Select year</source><target state="new">Select year</target> | ||
8649 | <context-group purpose="location"> | ||
8650 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
8651 | <context context-type="linenumber">74</context> | ||
8652 | </context-group> | ||
8653 | </trans-unit><trans-unit id="ngb.pagination.first" datatype="html"> | ||
8654 | <source>««</source><target state="new">««</target> | ||
8655 | <context-group purpose="location"> | ||
8656 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8657 | <context context-type="linenumber">404</context> | ||
8658 | </context-group> | ||
8659 | </trans-unit><trans-unit id="ngb.pagination.previous" datatype="html"> | ||
8660 | <source>«</source><target state="new">«</target> | ||
8661 | <context-group purpose="location"> | ||
8662 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8663 | <context context-type="linenumber">404</context> | ||
8664 | </context-group> | ||
8665 | </trans-unit><trans-unit id="ngb.pagination.next" datatype="html"> | ||
8666 | <source>»</source><target state="new">»</target> | ||
8667 | <context-group purpose="location"> | ||
8668 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8669 | <context context-type="linenumber">404</context> | ||
8670 | </context-group> | ||
8671 | </trans-unit><trans-unit id="ngb.pagination.last" datatype="html"> | ||
8672 | <source>»»</source><target state="new">»»</target> | ||
8673 | <context-group purpose="location"> | ||
8674 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8675 | <context context-type="linenumber">404</context> | ||
8676 | </context-group> | ||
8677 | </trans-unit><trans-unit id="ngb.pagination.first-aria" datatype="html"> | ||
8678 | <source>First</source><target state="new">First</target> | ||
8679 | <context-group purpose="location"> | ||
8680 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8681 | <context context-type="linenumber">404</context> | ||
8682 | </context-group> | ||
8683 | </trans-unit><trans-unit id="ngb.pagination.previous-aria" datatype="html"> | ||
8684 | <source>Previous</source><target state="new">Previous</target> | ||
8685 | <context-group purpose="location"> | ||
8686 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8687 | <context context-type="linenumber">404</context> | ||
8688 | </context-group> | ||
8689 | </trans-unit><trans-unit id="ngb.pagination.next-aria" datatype="html"> | ||
8690 | <source>Next</source><target state="new">Next</target> | ||
8691 | <context-group purpose="location"> | ||
8692 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8693 | <context context-type="linenumber">404</context> | ||
8694 | </context-group> | ||
8695 | </trans-unit><trans-unit id="ngb.pagination.last-aria" datatype="html"> | ||
8696 | <source>Last</source><target state="new">Last</target> | ||
8697 | <context-group purpose="location"> | ||
8698 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8699 | <context context-type="linenumber">404</context> | ||
8700 | </context-group> | ||
8701 | </trans-unit><trans-unit id="ngb.progressbar.value" datatype="html"> | ||
8702 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
8703 | <context-group purpose="location"> | ||
8704 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/progressbar/progressbar.ts</context> | ||
8705 | <context context-type="linenumber">101</context> | ||
8706 | </context-group> | ||
8707 | </trans-unit><trans-unit id="ngb.timepicker.HH" datatype="html"> | ||
8708 | <source>HH</source><target state="new">HH</target> | ||
8709 | <context-group purpose="location"> | ||
8710 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8711 | <context context-type="linenumber">296</context> | ||
8712 | </context-group> | ||
8713 | </trans-unit><trans-unit id="ngb.timepicker.hours" datatype="html"> | ||
8714 | <source>Hours</source><target state="new">Hours</target> | ||
8715 | <context-group purpose="location"> | ||
8716 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8717 | <context context-type="linenumber">296</context> | ||
8718 | </context-group> | ||
8719 | </trans-unit><trans-unit id="ngb.timepicker.MM" datatype="html"> | ||
8720 | <source>MM</source><target state="new">MM</target> | ||
8721 | <context-group purpose="location"> | ||
8722 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8723 | <context context-type="linenumber">296</context> | ||
8724 | </context-group> | ||
8725 | </trans-unit><trans-unit id="ngb.timepicker.minutes" datatype="html"> | ||
8726 | <source>Minutes</source><target state="new">Minutes</target> | ||
8727 | <context-group purpose="location"> | ||
8728 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8729 | <context context-type="linenumber">296</context> | ||
8730 | </context-group> | ||
8731 | </trans-unit><trans-unit id="ngb.timepicker.increment-hours" datatype="html"> | ||
8732 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
8733 | <context-group purpose="location"> | ||
8734 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8735 | <context context-type="linenumber">296</context> | ||
8736 | </context-group> | ||
8737 | </trans-unit><trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> | ||
8738 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
8739 | <context-group purpose="location"> | ||
8740 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8741 | <context context-type="linenumber">296</context> | ||
8742 | </context-group> | ||
8743 | </trans-unit><trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> | ||
8744 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
8745 | <context-group purpose="location"> | ||
8746 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8747 | <context context-type="linenumber">296</context> | ||
8748 | </context-group> | ||
8749 | </trans-unit><trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> | ||
8750 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
8751 | <context-group purpose="location"> | ||
8752 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8753 | <context context-type="linenumber">296</context> | ||
8754 | </context-group> | ||
8755 | </trans-unit><trans-unit id="ngb.timepicker.SS" datatype="html"> | ||
8756 | <source>SS</source><target state="new">SS</target> | ||
8757 | <context-group purpose="location"> | ||
8758 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8759 | <context context-type="linenumber">296</context> | ||
8760 | </context-group> | ||
8761 | </trans-unit><trans-unit id="ngb.timepicker.seconds" datatype="html"> | ||
8762 | <source>Seconds</source><target state="new">Seconds</target> | ||
8763 | <context-group purpose="location"> | ||
8764 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8765 | <context context-type="linenumber">296</context> | ||
8766 | </context-group> | ||
8767 | </trans-unit><trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> | ||
8768 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
8769 | <context-group purpose="location"> | ||
8770 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8771 | <context context-type="linenumber">296</context> | ||
8772 | </context-group> | ||
8773 | </trans-unit><trans-unit id="ngb.timepicker.decrement-seconds" datatype="html"> | ||
8774 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
8775 | <context-group purpose="location"> | ||
8776 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8777 | <context context-type="linenumber">296</context> | ||
8778 | </context-group> | ||
8779 | </trans-unit><trans-unit id="ngb.timepicker.PM" datatype="html"> | ||
8780 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
8781 | <context-group purpose="location"> | ||
8782 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8783 | <context context-type="linenumber">296</context> | ||
8784 | </context-group> | ||
8785 | </trans-unit><trans-unit id="ngb.timepicker.AM" datatype="html"> | ||
8786 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
8787 | <context-group purpose="location"> | ||
8788 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8789 | <context context-type="linenumber">296</context> | ||
8790 | </context-group> | ||
8791 | </trans-unit><trans-unit id="ngb.toast.close-aria" datatype="html"> | ||
8792 | <source>Close</source><target state="new">Close</target> | ||
8793 | <context-group purpose="location"> | ||
8794 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/toast/toast.ts</context> | ||
8795 | <context context-type="linenumber">137</context> | ||
8796 | </context-group> | ||
8797 | </trans-unit> | ||
8768 | <trans-unit id="7390990800435887351" datatype="html"> | 8798 | <trans-unit id="7390990800435887351" datatype="html"> |
8769 | <source>Account <x id="PH"/> unmuted.</source> | 8799 | <source>Account <x id="PH"/> unmuted.</source> |
8770 | <target>Account | 8800 | <target>Account |
diff --git a/client/src/locale/angular.ca-ES.xlf b/client/src/locale/angular.ca-ES.xlf index b46301b40..642515db8 100644 --- a/client/src/locale/angular.ca-ES.xlf +++ b/client/src/locale/angular.ca-ES.xlf | |||
@@ -1257,13 +1257,7 @@ The link will expire within 1 hour.</target> | |||
1257 | <source>Close</source> | 1257 | <source>Close</source> |
1258 | <target state="translated">Tanca</target> | 1258 | <target state="translated">Tanca</target> |
1259 | 1259 | ||
1260 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="680d5c75b7fd8d37961083608b9fcdc4167b4c43" datatype="html"> | 1260 | <context-group purpose="location"><context context-type="sourcefile">../app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1261 | <source>Previous</source><target state="new">Previous</target> | ||
1262 | <context-group purpose="location"> | ||
1263 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
1264 | <context context-type="linenumber">1</context> | ||
1265 | </context-group> | ||
1266 | </trans-unit> | ||
1267 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> | 1261 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> |
1268 | <source>Configure</source> | 1262 | <source>Configure</source> |
1269 | <target state="new"> | 1263 | <target state="new"> |
@@ -5688,157 +5682,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5688 | <source>Next</source> | 5682 | <source>Next</source> |
5689 | <target state="translated">Següent</target> | 5683 | <target state="translated">Següent</target> |
5690 | 5684 | ||
5691 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="c3b08b07b5ab98e7cdcf18df39355690ab7d3884" datatype="html"> | 5685 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit><trans-unit id="9082008222523034483" datatype="html"> |
5692 | <source>Previous month</source><target state="new">Previous month</target> | ||
5693 | <context-group purpose="location"> | ||
5694 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5695 | <context context-type="linenumber">1</context> | ||
5696 | </context-group> | ||
5697 | </trans-unit><trans-unit id="4bd046985cfe13040d5ef0cd881edce0968a111a" datatype="html"> | ||
5698 | <source>Next month</source><target state="new">Next month</target> | ||
5699 | <context-group purpose="location"> | ||
5700 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5701 | <context context-type="linenumber">1</context> | ||
5702 | </context-group> | ||
5703 | </trans-unit><trans-unit id="1dbc84807f35518112f62e5775d1daebd3d8462b" datatype="html"> | ||
5704 | <source>Select month</source><target state="new">Select month</target> | ||
5705 | <context-group purpose="location"> | ||
5706 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5707 | <context context-type="linenumber">1</context> | ||
5708 | </context-group> | ||
5709 | </trans-unit><trans-unit id="8ceb09d002bf0c5d1cac171dfbffe1805d2b3962" datatype="html"> | ||
5710 | <source>Select year</source><target state="new">Select year</target> | ||
5711 | <context-group purpose="location"> | ||
5712 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5713 | <context context-type="linenumber">1</context> | ||
5714 | </context-group> | ||
5715 | </trans-unit><trans-unit id="656506dfd46380956a655f919f1498d018f75ca0" datatype="html"> | ||
5716 | <source>««</source><target state="new">««</target> | ||
5717 | <context-group purpose="location"> | ||
5718 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5719 | <context context-type="linenumber">1</context> | ||
5720 | </context-group> | ||
5721 | </trans-unit><trans-unit id="6e52b6ee77a4848d899dd21b591c6fd499e3aef3" datatype="html"> | ||
5722 | <source>«</source><target state="new">«</target> | ||
5723 | <context-group purpose="location"> | ||
5724 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5725 | <context context-type="linenumber">1</context> | ||
5726 | </context-group> | ||
5727 | </trans-unit><trans-unit id="ba9cbb4ff311464308a3627e4f1c3345d9fe6d7d" datatype="html"> | ||
5728 | <source>»</source><target state="new">»</target> | ||
5729 | <context-group purpose="location"> | ||
5730 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5731 | <context context-type="linenumber">1</context> | ||
5732 | </context-group> | ||
5733 | </trans-unit><trans-unit id="49f27a460bc97e7e00be5b37098bfa79884fc7d9" datatype="html"> | ||
5734 | <source>»»</source><target state="new">»»</target> | ||
5735 | <context-group purpose="location"> | ||
5736 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5737 | <context context-type="linenumber">1</context> | ||
5738 | </context-group> | ||
5739 | </trans-unit><trans-unit id="f2f852318759c6396b5d3d17031d53817d7b38cc" datatype="html"> | ||
5740 | <source>First</source><target state="new">First</target> | ||
5741 | <context-group purpose="location"> | ||
5742 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5743 | <context context-type="linenumber">1</context> | ||
5744 | </context-group> | ||
5745 | </trans-unit><trans-unit id="5c729788ba138508aca1bec050b610f7bf81db3e" datatype="html"> | ||
5746 | <source>Last</source><target state="new">Last</target> | ||
5747 | <context-group purpose="location"> | ||
5748 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5749 | <context context-type="linenumber">1</context> | ||
5750 | </context-group> | ||
5751 | </trans-unit><trans-unit id="f8e9a947b9db4252c0e9905765338712f2fd032f" datatype="html"> | ||
5752 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5753 | <context-group purpose="location"> | ||
5754 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5755 | <context context-type="linenumber">1</context> | ||
5756 | </context-group> | ||
5757 | </trans-unit><trans-unit id="ce676ab1d6d98f85c836381cf100a4a91ef95a1f" datatype="html"> | ||
5758 | <source>HH</source><target state="new">HH</target> | ||
5759 | <context-group purpose="location"> | ||
5760 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5761 | <context context-type="linenumber">1</context> | ||
5762 | </context-group> | ||
5763 | </trans-unit><trans-unit id="3bbce5fef7e1151da052a4e529453edb340e3912" datatype="html"> | ||
5764 | <source>Hours</source><target state="new">Hours</target> | ||
5765 | <context-group purpose="location"> | ||
5766 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5767 | <context context-type="linenumber">1</context> | ||
5768 | </context-group> | ||
5769 | </trans-unit><trans-unit id="72c8edf6a50068a05bde70991e36b1e881f4ca54" datatype="html"> | ||
5770 | <source>MM</source><target state="new">MM</target> | ||
5771 | <context-group purpose="location"> | ||
5772 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5773 | <context context-type="linenumber">1</context> | ||
5774 | </context-group> | ||
5775 | </trans-unit><trans-unit id="41e62daa962947c0d23ded0981975d1bddf0bf38" datatype="html"> | ||
5776 | <source>Minutes</source><target state="new">Minutes</target> | ||
5777 | <context-group purpose="location"> | ||
5778 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5779 | <context context-type="linenumber">1</context> | ||
5780 | </context-group> | ||
5781 | </trans-unit><trans-unit id="cb74bc1d625a6c1742f0d7d47306cf495780c218" datatype="html"> | ||
5782 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
5783 | <context-group purpose="location"> | ||
5784 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5785 | <context context-type="linenumber">1</context> | ||
5786 | </context-group> | ||
5787 | </trans-unit><trans-unit id="147c7a19429da7d999e247d22e33fee370b1691b" datatype="html"> | ||
5788 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
5789 | <context-group purpose="location"> | ||
5790 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5791 | <context context-type="linenumber">1</context> | ||
5792 | </context-group> | ||
5793 | </trans-unit><trans-unit id="f5a4a3bc05e053f6732475d0e74875ec01c3a348" datatype="html"> | ||
5794 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
5795 | <context-group purpose="location"> | ||
5796 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5797 | <context context-type="linenumber">1</context> | ||
5798 | </context-group> | ||
5799 | </trans-unit><trans-unit id="c1a6899e529c096da5b660385d4e77fe1f7ad271" datatype="html"> | ||
5800 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
5801 | <context-group purpose="location"> | ||
5802 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5803 | <context context-type="linenumber">1</context> | ||
5804 | </context-group> | ||
5805 | </trans-unit><trans-unit id="ebe38d36a40a2383c5fefa9b4608ffbda08bd4a3" datatype="html"> | ||
5806 | <source>SS</source><target state="new">SS</target> | ||
5807 | <context-group purpose="location"> | ||
5808 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5809 | <context context-type="linenumber">1</context> | ||
5810 | </context-group> | ||
5811 | </trans-unit><trans-unit id="4f2ed9e71a7c981db3e50ae2fedb28aff2ec4e6c" datatype="html"> | ||
5812 | <source>Seconds</source><target state="new">Seconds</target> | ||
5813 | <context-group purpose="location"> | ||
5814 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5815 | <context context-type="linenumber">1</context> | ||
5816 | </context-group> | ||
5817 | </trans-unit><trans-unit id="912322ecee7d659d04dcf494a70e22e49d334b26" datatype="html"> | ||
5818 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
5819 | <context-group purpose="location"> | ||
5820 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5821 | <context context-type="linenumber">1</context> | ||
5822 | </context-group> | ||
5823 | </trans-unit><trans-unit id="5db47ac104294243a70eb9124fbea9d0004ddf69" datatype="html"> | ||
5824 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
5825 | <context-group purpose="location"> | ||
5826 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5827 | <context context-type="linenumber">1</context> | ||
5828 | </context-group> | ||
5829 | </trans-unit><trans-unit id="8d6e691e10306c1b34c6b26805151aaea320ef7f" datatype="html"> | ||
5830 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5831 | <context-group purpose="location"> | ||
5832 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5833 | <context context-type="linenumber">1</context> | ||
5834 | </context-group> | ||
5835 | </trans-unit><trans-unit id="69a1f176a93998876952adac57c3bc3863b6105e" datatype="html"> | ||
5836 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5837 | <context-group purpose="location"> | ||
5838 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5839 | <context context-type="linenumber">1</context> | ||
5840 | </context-group> | ||
5841 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
5842 | <source>Get help</source><target state="new">Get help</target> | 5686 | <source>Get help</source><target state="new">Get help</target> |
5843 | <context-group purpose="location"> | 5687 | <context-group purpose="location"> |
5844 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 5688 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> |
@@ -9379,7 +9223,193 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9379 | <source>Only users of this instance can see this video</source> | 9223 | <source>Only users of this instance can see this video</source> |
9380 | <target state="new">Only users of this instance can see this video</target> | 9224 | <target state="new">Only users of this instance can see this video</target> |
9381 | 9225 | ||
9382 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit> | 9226 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit><trans-unit id="ngb.alert.close" datatype="html"> |
9227 | <source>Close</source><target state="new">Close</target> | ||
9228 | <context-group purpose="location"> | ||
9229 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/alert/alert.ts</context> | ||
9230 | <context context-type="linenumber">74</context> | ||
9231 | </context-group> | ||
9232 | </trans-unit><trans-unit id="ngb.carousel.previous" datatype="html"> | ||
9233 | <source>Previous</source><target state="new">Previous</target> | ||
9234 | <context-group purpose="location"> | ||
9235 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9236 | <context context-type="linenumber">349</context> | ||
9237 | </context-group> | ||
9238 | </trans-unit><trans-unit id="ngb.carousel.next" datatype="html"> | ||
9239 | <source>Next</source><target state="new">Next</target> | ||
9240 | <context-group purpose="location"> | ||
9241 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9242 | <context context-type="linenumber">349</context> | ||
9243 | </context-group> | ||
9244 | </trans-unit><trans-unit id="ngb.datepicker.previous-month" datatype="html"> | ||
9245 | <source>Previous month</source><target state="new">Previous month</target> | ||
9246 | <context-group purpose="location"> | ||
9247 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation.ts</context> | ||
9248 | <context context-type="linenumber">69</context> | ||
9249 | </context-group> | ||
9250 | </trans-unit><trans-unit id="ngb.datepicker.next-month" datatype="html"> | ||
9251 | <source>Next month</source><target state="new">Next month</target> | ||
9252 | <context-group purpose="location"> | ||
9253 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-month.ts</context> | ||
9254 | <context context-type="linenumber">72</context> | ||
9255 | </context-group> | ||
9256 | </trans-unit><trans-unit id="ngb.datepicker.select-month" datatype="html"> | ||
9257 | <source>Select month</source><target state="new">Select month</target> | ||
9258 | <context-group purpose="location"> | ||
9259 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9260 | <context context-type="linenumber">74</context> | ||
9261 | </context-group> | ||
9262 | </trans-unit><trans-unit id="ngb.datepicker.select-year" datatype="html"> | ||
9263 | <source>Select year</source><target state="new">Select year</target> | ||
9264 | <context-group purpose="location"> | ||
9265 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9266 | <context context-type="linenumber">74</context> | ||
9267 | </context-group> | ||
9268 | </trans-unit><trans-unit id="ngb.pagination.first" datatype="html"> | ||
9269 | <source>««</source><target state="new">««</target> | ||
9270 | <context-group purpose="location"> | ||
9271 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9272 | <context context-type="linenumber">404</context> | ||
9273 | </context-group> | ||
9274 | </trans-unit><trans-unit id="ngb.pagination.previous" datatype="html"> | ||
9275 | <source>«</source><target state="new">«</target> | ||
9276 | <context-group purpose="location"> | ||
9277 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9278 | <context context-type="linenumber">404</context> | ||
9279 | </context-group> | ||
9280 | </trans-unit><trans-unit id="ngb.pagination.next" datatype="html"> | ||
9281 | <source>»</source><target state="new">»</target> | ||
9282 | <context-group purpose="location"> | ||
9283 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9284 | <context context-type="linenumber">404</context> | ||
9285 | </context-group> | ||
9286 | </trans-unit><trans-unit id="ngb.pagination.last" datatype="html"> | ||
9287 | <source>»»</source><target state="new">»»</target> | ||
9288 | <context-group purpose="location"> | ||
9289 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9290 | <context context-type="linenumber">404</context> | ||
9291 | </context-group> | ||
9292 | </trans-unit><trans-unit id="ngb.pagination.first-aria" datatype="html"> | ||
9293 | <source>First</source><target state="new">First</target> | ||
9294 | <context-group purpose="location"> | ||
9295 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9296 | <context context-type="linenumber">404</context> | ||
9297 | </context-group> | ||
9298 | </trans-unit><trans-unit id="ngb.pagination.previous-aria" datatype="html"> | ||
9299 | <source>Previous</source><target state="new">Previous</target> | ||
9300 | <context-group purpose="location"> | ||
9301 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9302 | <context context-type="linenumber">404</context> | ||
9303 | </context-group> | ||
9304 | </trans-unit><trans-unit id="ngb.pagination.next-aria" datatype="html"> | ||
9305 | <source>Next</source><target state="new">Next</target> | ||
9306 | <context-group purpose="location"> | ||
9307 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9308 | <context context-type="linenumber">404</context> | ||
9309 | </context-group> | ||
9310 | </trans-unit><trans-unit id="ngb.pagination.last-aria" datatype="html"> | ||
9311 | <source>Last</source><target state="new">Last</target> | ||
9312 | <context-group purpose="location"> | ||
9313 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9314 | <context context-type="linenumber">404</context> | ||
9315 | </context-group> | ||
9316 | </trans-unit><trans-unit id="ngb.progressbar.value" datatype="html"> | ||
9317 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9318 | <context-group purpose="location"> | ||
9319 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/progressbar/progressbar.ts</context> | ||
9320 | <context context-type="linenumber">101</context> | ||
9321 | </context-group> | ||
9322 | </trans-unit><trans-unit id="ngb.timepicker.HH" datatype="html"> | ||
9323 | <source>HH</source><target state="new">HH</target> | ||
9324 | <context-group purpose="location"> | ||
9325 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9326 | <context context-type="linenumber">296</context> | ||
9327 | </context-group> | ||
9328 | </trans-unit><trans-unit id="ngb.timepicker.hours" datatype="html"> | ||
9329 | <source>Hours</source><target state="new">Hours</target> | ||
9330 | <context-group purpose="location"> | ||
9331 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9332 | <context context-type="linenumber">296</context> | ||
9333 | </context-group> | ||
9334 | </trans-unit><trans-unit id="ngb.timepicker.MM" datatype="html"> | ||
9335 | <source>MM</source><target state="new">MM</target> | ||
9336 | <context-group purpose="location"> | ||
9337 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9338 | <context context-type="linenumber">296</context> | ||
9339 | </context-group> | ||
9340 | </trans-unit><trans-unit id="ngb.timepicker.minutes" datatype="html"> | ||
9341 | <source>Minutes</source><target state="new">Minutes</target> | ||
9342 | <context-group purpose="location"> | ||
9343 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9344 | <context context-type="linenumber">296</context> | ||
9345 | </context-group> | ||
9346 | </trans-unit><trans-unit id="ngb.timepicker.increment-hours" datatype="html"> | ||
9347 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
9348 | <context-group purpose="location"> | ||
9349 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9350 | <context context-type="linenumber">296</context> | ||
9351 | </context-group> | ||
9352 | </trans-unit><trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> | ||
9353 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
9354 | <context-group purpose="location"> | ||
9355 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9356 | <context context-type="linenumber">296</context> | ||
9357 | </context-group> | ||
9358 | </trans-unit><trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> | ||
9359 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
9360 | <context-group purpose="location"> | ||
9361 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9362 | <context context-type="linenumber">296</context> | ||
9363 | </context-group> | ||
9364 | </trans-unit><trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> | ||
9365 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
9366 | <context-group purpose="location"> | ||
9367 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9368 | <context context-type="linenumber">296</context> | ||
9369 | </context-group> | ||
9370 | </trans-unit><trans-unit id="ngb.timepicker.SS" datatype="html"> | ||
9371 | <source>SS</source><target state="new">SS</target> | ||
9372 | <context-group purpose="location"> | ||
9373 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9374 | <context context-type="linenumber">296</context> | ||
9375 | </context-group> | ||
9376 | </trans-unit><trans-unit id="ngb.timepicker.seconds" datatype="html"> | ||
9377 | <source>Seconds</source><target state="new">Seconds</target> | ||
9378 | <context-group purpose="location"> | ||
9379 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9380 | <context context-type="linenumber">296</context> | ||
9381 | </context-group> | ||
9382 | </trans-unit><trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> | ||
9383 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
9384 | <context-group purpose="location"> | ||
9385 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9386 | <context context-type="linenumber">296</context> | ||
9387 | </context-group> | ||
9388 | </trans-unit><trans-unit id="ngb.timepicker.decrement-seconds" datatype="html"> | ||
9389 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
9390 | <context-group purpose="location"> | ||
9391 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9392 | <context context-type="linenumber">296</context> | ||
9393 | </context-group> | ||
9394 | </trans-unit><trans-unit id="ngb.timepicker.PM" datatype="html"> | ||
9395 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9396 | <context-group purpose="location"> | ||
9397 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9398 | <context context-type="linenumber">296</context> | ||
9399 | </context-group> | ||
9400 | </trans-unit><trans-unit id="ngb.timepicker.AM" datatype="html"> | ||
9401 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9402 | <context-group purpose="location"> | ||
9403 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9404 | <context context-type="linenumber">296</context> | ||
9405 | </context-group> | ||
9406 | </trans-unit><trans-unit id="ngb.toast.close-aria" datatype="html"> | ||
9407 | <source>Close</source><target state="new">Close</target> | ||
9408 | <context-group purpose="location"> | ||
9409 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/toast/toast.ts</context> | ||
9410 | <context context-type="linenumber">137</context> | ||
9411 | </context-group> | ||
9412 | </trans-unit> | ||
9383 | <trans-unit id="5210096066382592800" datatype="html"> | 9413 | <trans-unit id="5210096066382592800" datatype="html"> |
9384 | <source>Video to import updated.</source> | 9414 | <source>Video to import updated.</source> |
9385 | <target state="new">Video to import updated.</target> | 9415 | <target state="new">Video to import updated.</target> |
diff --git a/client/src/locale/angular.cs-CZ.xlf b/client/src/locale/angular.cs-CZ.xlf index dba18f135..b2686adc4 100644 --- a/client/src/locale/angular.cs-CZ.xlf +++ b/client/src/locale/angular.cs-CZ.xlf | |||
@@ -1306,13 +1306,7 @@ The link will expire within 1 hour.</target> | |||
1306 | <source>Close</source> | 1306 | <source>Close</source> |
1307 | <target state="new">Close</target> | 1307 | <target state="new">Close</target> |
1308 | 1308 | ||
1309 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="680d5c75b7fd8d37961083608b9fcdc4167b4c43" datatype="html"> | 1309 | <context-group purpose="location"><context context-type="sourcefile">../app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1310 | <source>Previous</source><target state="new">Previous</target> | ||
1311 | <context-group purpose="location"> | ||
1312 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
1313 | <context context-type="linenumber">1</context> | ||
1314 | </context-group> | ||
1315 | </trans-unit> | ||
1316 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> | 1310 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> |
1317 | <source> | 1311 | <source> |
1318 | Configure | 1312 | Configure |
@@ -5792,157 +5786,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5792 | <source>Next</source> | 5786 | <source>Next</source> |
5793 | <target>Další</target> | 5787 | <target>Další</target> |
5794 | 5788 | ||
5795 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="c3b08b07b5ab98e7cdcf18df39355690ab7d3884" datatype="html"> | 5789 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit><trans-unit id="9082008222523034483" datatype="html"> |
5796 | <source>Previous month</source><target state="new">Previous month</target> | ||
5797 | <context-group purpose="location"> | ||
5798 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5799 | <context context-type="linenumber">1</context> | ||
5800 | </context-group> | ||
5801 | </trans-unit><trans-unit id="4bd046985cfe13040d5ef0cd881edce0968a111a" datatype="html"> | ||
5802 | <source>Next month</source><target state="new">Next month</target> | ||
5803 | <context-group purpose="location"> | ||
5804 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5805 | <context context-type="linenumber">1</context> | ||
5806 | </context-group> | ||
5807 | </trans-unit><trans-unit id="1dbc84807f35518112f62e5775d1daebd3d8462b" datatype="html"> | ||
5808 | <source>Select month</source><target state="new">Select month</target> | ||
5809 | <context-group purpose="location"> | ||
5810 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5811 | <context context-type="linenumber">1</context> | ||
5812 | </context-group> | ||
5813 | </trans-unit><trans-unit id="8ceb09d002bf0c5d1cac171dfbffe1805d2b3962" datatype="html"> | ||
5814 | <source>Select year</source><target state="new">Select year</target> | ||
5815 | <context-group purpose="location"> | ||
5816 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5817 | <context context-type="linenumber">1</context> | ||
5818 | </context-group> | ||
5819 | </trans-unit><trans-unit id="656506dfd46380956a655f919f1498d018f75ca0" datatype="html"> | ||
5820 | <source>««</source><target state="new">««</target> | ||
5821 | <context-group purpose="location"> | ||
5822 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5823 | <context context-type="linenumber">1</context> | ||
5824 | </context-group> | ||
5825 | </trans-unit><trans-unit id="6e52b6ee77a4848d899dd21b591c6fd499e3aef3" datatype="html"> | ||
5826 | <source>«</source><target state="new">«</target> | ||
5827 | <context-group purpose="location"> | ||
5828 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5829 | <context context-type="linenumber">1</context> | ||
5830 | </context-group> | ||
5831 | </trans-unit><trans-unit id="ba9cbb4ff311464308a3627e4f1c3345d9fe6d7d" datatype="html"> | ||
5832 | <source>»</source><target state="new">»</target> | ||
5833 | <context-group purpose="location"> | ||
5834 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5835 | <context context-type="linenumber">1</context> | ||
5836 | </context-group> | ||
5837 | </trans-unit><trans-unit id="49f27a460bc97e7e00be5b37098bfa79884fc7d9" datatype="html"> | ||
5838 | <source>»»</source><target state="new">»»</target> | ||
5839 | <context-group purpose="location"> | ||
5840 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5841 | <context context-type="linenumber">1</context> | ||
5842 | </context-group> | ||
5843 | </trans-unit><trans-unit id="f2f852318759c6396b5d3d17031d53817d7b38cc" datatype="html"> | ||
5844 | <source>First</source><target state="new">First</target> | ||
5845 | <context-group purpose="location"> | ||
5846 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5847 | <context context-type="linenumber">1</context> | ||
5848 | </context-group> | ||
5849 | </trans-unit><trans-unit id="5c729788ba138508aca1bec050b610f7bf81db3e" datatype="html"> | ||
5850 | <source>Last</source><target state="new">Last</target> | ||
5851 | <context-group purpose="location"> | ||
5852 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5853 | <context context-type="linenumber">1</context> | ||
5854 | </context-group> | ||
5855 | </trans-unit><trans-unit id="f8e9a947b9db4252c0e9905765338712f2fd032f" datatype="html"> | ||
5856 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5857 | <context-group purpose="location"> | ||
5858 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5859 | <context context-type="linenumber">1</context> | ||
5860 | </context-group> | ||
5861 | </trans-unit><trans-unit id="ce676ab1d6d98f85c836381cf100a4a91ef95a1f" datatype="html"> | ||
5862 | <source>HH</source><target state="new">HH</target> | ||
5863 | <context-group purpose="location"> | ||
5864 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5865 | <context context-type="linenumber">1</context> | ||
5866 | </context-group> | ||
5867 | </trans-unit><trans-unit id="3bbce5fef7e1151da052a4e529453edb340e3912" datatype="html"> | ||
5868 | <source>Hours</source><target state="new">Hours</target> | ||
5869 | <context-group purpose="location"> | ||
5870 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5871 | <context context-type="linenumber">1</context> | ||
5872 | </context-group> | ||
5873 | </trans-unit><trans-unit id="72c8edf6a50068a05bde70991e36b1e881f4ca54" datatype="html"> | ||
5874 | <source>MM</source><target state="new">MM</target> | ||
5875 | <context-group purpose="location"> | ||
5876 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5877 | <context context-type="linenumber">1</context> | ||
5878 | </context-group> | ||
5879 | </trans-unit><trans-unit id="41e62daa962947c0d23ded0981975d1bddf0bf38" datatype="html"> | ||
5880 | <source>Minutes</source><target state="new">Minutes</target> | ||
5881 | <context-group purpose="location"> | ||
5882 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5883 | <context context-type="linenumber">1</context> | ||
5884 | </context-group> | ||
5885 | </trans-unit><trans-unit id="cb74bc1d625a6c1742f0d7d47306cf495780c218" datatype="html"> | ||
5886 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
5887 | <context-group purpose="location"> | ||
5888 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5889 | <context context-type="linenumber">1</context> | ||
5890 | </context-group> | ||
5891 | </trans-unit><trans-unit id="147c7a19429da7d999e247d22e33fee370b1691b" datatype="html"> | ||
5892 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
5893 | <context-group purpose="location"> | ||
5894 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5895 | <context context-type="linenumber">1</context> | ||
5896 | </context-group> | ||
5897 | </trans-unit><trans-unit id="f5a4a3bc05e053f6732475d0e74875ec01c3a348" datatype="html"> | ||
5898 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
5899 | <context-group purpose="location"> | ||
5900 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5901 | <context context-type="linenumber">1</context> | ||
5902 | </context-group> | ||
5903 | </trans-unit><trans-unit id="c1a6899e529c096da5b660385d4e77fe1f7ad271" datatype="html"> | ||
5904 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
5905 | <context-group purpose="location"> | ||
5906 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5907 | <context context-type="linenumber">1</context> | ||
5908 | </context-group> | ||
5909 | </trans-unit><trans-unit id="ebe38d36a40a2383c5fefa9b4608ffbda08bd4a3" datatype="html"> | ||
5910 | <source>SS</source><target state="new">SS</target> | ||
5911 | <context-group purpose="location"> | ||
5912 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5913 | <context context-type="linenumber">1</context> | ||
5914 | </context-group> | ||
5915 | </trans-unit><trans-unit id="4f2ed9e71a7c981db3e50ae2fedb28aff2ec4e6c" datatype="html"> | ||
5916 | <source>Seconds</source><target state="new">Seconds</target> | ||
5917 | <context-group purpose="location"> | ||
5918 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5919 | <context context-type="linenumber">1</context> | ||
5920 | </context-group> | ||
5921 | </trans-unit><trans-unit id="912322ecee7d659d04dcf494a70e22e49d334b26" datatype="html"> | ||
5922 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
5923 | <context-group purpose="location"> | ||
5924 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5925 | <context context-type="linenumber">1</context> | ||
5926 | </context-group> | ||
5927 | </trans-unit><trans-unit id="5db47ac104294243a70eb9124fbea9d0004ddf69" datatype="html"> | ||
5928 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
5929 | <context-group purpose="location"> | ||
5930 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5931 | <context context-type="linenumber">1</context> | ||
5932 | </context-group> | ||
5933 | </trans-unit><trans-unit id="8d6e691e10306c1b34c6b26805151aaea320ef7f" datatype="html"> | ||
5934 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5935 | <context-group purpose="location"> | ||
5936 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5937 | <context context-type="linenumber">1</context> | ||
5938 | </context-group> | ||
5939 | </trans-unit><trans-unit id="69a1f176a93998876952adac57c3bc3863b6105e" datatype="html"> | ||
5940 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5941 | <context-group purpose="location"> | ||
5942 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5943 | <context context-type="linenumber">1</context> | ||
5944 | </context-group> | ||
5945 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
5946 | <source>Get help</source><target state="new">Get help</target> | 5790 | <source>Get help</source><target state="new">Get help</target> |
5947 | <context-group purpose="location"> | 5791 | <context-group purpose="location"> |
5948 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 5792 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> |
@@ -9489,7 +9333,193 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9489 | <source>Only users of this instance can see this video</source> | 9333 | <source>Only users of this instance can see this video</source> |
9490 | <target state="new">Only users of this instance can see this video</target> | 9334 | <target state="new">Only users of this instance can see this video</target> |
9491 | 9335 | ||
9492 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit> | 9336 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit><trans-unit id="ngb.alert.close" datatype="html"> |
9337 | <source>Close</source><target state="new">Close</target> | ||
9338 | <context-group purpose="location"> | ||
9339 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/alert/alert.ts</context> | ||
9340 | <context context-type="linenumber">74</context> | ||
9341 | </context-group> | ||
9342 | </trans-unit><trans-unit id="ngb.carousel.previous" datatype="html"> | ||
9343 | <source>Previous</source><target state="new">Previous</target> | ||
9344 | <context-group purpose="location"> | ||
9345 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9346 | <context context-type="linenumber">349</context> | ||
9347 | </context-group> | ||
9348 | </trans-unit><trans-unit id="ngb.carousel.next" datatype="html"> | ||
9349 | <source>Next</source><target state="new">Next</target> | ||
9350 | <context-group purpose="location"> | ||
9351 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9352 | <context context-type="linenumber">349</context> | ||
9353 | </context-group> | ||
9354 | </trans-unit><trans-unit id="ngb.datepicker.previous-month" datatype="html"> | ||
9355 | <source>Previous month</source><target state="new">Previous month</target> | ||
9356 | <context-group purpose="location"> | ||
9357 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation.ts</context> | ||
9358 | <context context-type="linenumber">69</context> | ||
9359 | </context-group> | ||
9360 | </trans-unit><trans-unit id="ngb.datepicker.next-month" datatype="html"> | ||
9361 | <source>Next month</source><target state="new">Next month</target> | ||
9362 | <context-group purpose="location"> | ||
9363 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-month.ts</context> | ||
9364 | <context context-type="linenumber">72</context> | ||
9365 | </context-group> | ||
9366 | </trans-unit><trans-unit id="ngb.datepicker.select-month" datatype="html"> | ||
9367 | <source>Select month</source><target state="new">Select month</target> | ||
9368 | <context-group purpose="location"> | ||
9369 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9370 | <context context-type="linenumber">74</context> | ||
9371 | </context-group> | ||
9372 | </trans-unit><trans-unit id="ngb.datepicker.select-year" datatype="html"> | ||
9373 | <source>Select year</source><target state="new">Select year</target> | ||
9374 | <context-group purpose="location"> | ||
9375 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9376 | <context context-type="linenumber">74</context> | ||
9377 | </context-group> | ||
9378 | </trans-unit><trans-unit id="ngb.pagination.first" datatype="html"> | ||
9379 | <source>««</source><target state="new">««</target> | ||
9380 | <context-group purpose="location"> | ||
9381 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9382 | <context context-type="linenumber">404</context> | ||
9383 | </context-group> | ||
9384 | </trans-unit><trans-unit id="ngb.pagination.previous" datatype="html"> | ||
9385 | <source>«</source><target state="new">«</target> | ||
9386 | <context-group purpose="location"> | ||
9387 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9388 | <context context-type="linenumber">404</context> | ||
9389 | </context-group> | ||
9390 | </trans-unit><trans-unit id="ngb.pagination.next" datatype="html"> | ||
9391 | <source>»</source><target state="new">»</target> | ||
9392 | <context-group purpose="location"> | ||
9393 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9394 | <context context-type="linenumber">404</context> | ||
9395 | </context-group> | ||
9396 | </trans-unit><trans-unit id="ngb.pagination.last" datatype="html"> | ||
9397 | <source>»»</source><target state="new">»»</target> | ||
9398 | <context-group purpose="location"> | ||
9399 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9400 | <context context-type="linenumber">404</context> | ||
9401 | </context-group> | ||
9402 | </trans-unit><trans-unit id="ngb.pagination.first-aria" datatype="html"> | ||
9403 | <source>First</source><target state="new">First</target> | ||
9404 | <context-group purpose="location"> | ||
9405 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9406 | <context context-type="linenumber">404</context> | ||
9407 | </context-group> | ||
9408 | </trans-unit><trans-unit id="ngb.pagination.previous-aria" datatype="html"> | ||
9409 | <source>Previous</source><target state="new">Previous</target> | ||
9410 | <context-group purpose="location"> | ||
9411 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9412 | <context context-type="linenumber">404</context> | ||
9413 | </context-group> | ||
9414 | </trans-unit><trans-unit id="ngb.pagination.next-aria" datatype="html"> | ||
9415 | <source>Next</source><target state="new">Next</target> | ||
9416 | <context-group purpose="location"> | ||
9417 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9418 | <context context-type="linenumber">404</context> | ||
9419 | </context-group> | ||
9420 | </trans-unit><trans-unit id="ngb.pagination.last-aria" datatype="html"> | ||
9421 | <source>Last</source><target state="new">Last</target> | ||
9422 | <context-group purpose="location"> | ||
9423 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9424 | <context context-type="linenumber">404</context> | ||
9425 | </context-group> | ||
9426 | </trans-unit><trans-unit id="ngb.progressbar.value" datatype="html"> | ||
9427 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9428 | <context-group purpose="location"> | ||
9429 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/progressbar/progressbar.ts</context> | ||
9430 | <context context-type="linenumber">101</context> | ||
9431 | </context-group> | ||
9432 | </trans-unit><trans-unit id="ngb.timepicker.HH" datatype="html"> | ||
9433 | <source>HH</source><target state="new">HH</target> | ||
9434 | <context-group purpose="location"> | ||
9435 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9436 | <context context-type="linenumber">296</context> | ||
9437 | </context-group> | ||
9438 | </trans-unit><trans-unit id="ngb.timepicker.hours" datatype="html"> | ||
9439 | <source>Hours</source><target state="new">Hours</target> | ||
9440 | <context-group purpose="location"> | ||
9441 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9442 | <context context-type="linenumber">296</context> | ||
9443 | </context-group> | ||
9444 | </trans-unit><trans-unit id="ngb.timepicker.MM" datatype="html"> | ||
9445 | <source>MM</source><target state="new">MM</target> | ||
9446 | <context-group purpose="location"> | ||
9447 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9448 | <context context-type="linenumber">296</context> | ||
9449 | </context-group> | ||
9450 | </trans-unit><trans-unit id="ngb.timepicker.minutes" datatype="html"> | ||
9451 | <source>Minutes</source><target state="new">Minutes</target> | ||
9452 | <context-group purpose="location"> | ||
9453 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9454 | <context context-type="linenumber">296</context> | ||
9455 | </context-group> | ||
9456 | </trans-unit><trans-unit id="ngb.timepicker.increment-hours" datatype="html"> | ||
9457 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
9458 | <context-group purpose="location"> | ||
9459 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9460 | <context context-type="linenumber">296</context> | ||
9461 | </context-group> | ||
9462 | </trans-unit><trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> | ||
9463 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
9464 | <context-group purpose="location"> | ||
9465 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9466 | <context context-type="linenumber">296</context> | ||
9467 | </context-group> | ||
9468 | </trans-unit><trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> | ||
9469 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
9470 | <context-group purpose="location"> | ||
9471 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9472 | <context context-type="linenumber">296</context> | ||
9473 | </context-group> | ||
9474 | </trans-unit><trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> | ||
9475 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
9476 | <context-group purpose="location"> | ||
9477 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9478 | <context context-type="linenumber">296</context> | ||
9479 | </context-group> | ||
9480 | </trans-unit><trans-unit id="ngb.timepicker.SS" datatype="html"> | ||
9481 | <source>SS</source><target state="new">SS</target> | ||
9482 | <context-group purpose="location"> | ||
9483 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9484 | <context context-type="linenumber">296</context> | ||
9485 | </context-group> | ||
9486 | </trans-unit><trans-unit id="ngb.timepicker.seconds" datatype="html"> | ||
9487 | <source>Seconds</source><target state="new">Seconds</target> | ||
9488 | <context-group purpose="location"> | ||
9489 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9490 | <context context-type="linenumber">296</context> | ||
9491 | </context-group> | ||
9492 | </trans-unit><trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> | ||
9493 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
9494 | <context-group purpose="location"> | ||
9495 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9496 | <context context-type="linenumber">296</context> | ||
9497 | </context-group> | ||
9498 | </trans-unit><trans-unit id="ngb.timepicker.decrement-seconds" datatype="html"> | ||
9499 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
9500 | <context-group purpose="location"> | ||
9501 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9502 | <context context-type="linenumber">296</context> | ||
9503 | </context-group> | ||
9504 | </trans-unit><trans-unit id="ngb.timepicker.PM" datatype="html"> | ||
9505 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9506 | <context-group purpose="location"> | ||
9507 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9508 | <context context-type="linenumber">296</context> | ||
9509 | </context-group> | ||
9510 | </trans-unit><trans-unit id="ngb.timepicker.AM" datatype="html"> | ||
9511 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9512 | <context-group purpose="location"> | ||
9513 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9514 | <context context-type="linenumber">296</context> | ||
9515 | </context-group> | ||
9516 | </trans-unit><trans-unit id="ngb.toast.close-aria" datatype="html"> | ||
9517 | <source>Close</source><target state="new">Close</target> | ||
9518 | <context-group purpose="location"> | ||
9519 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/toast/toast.ts</context> | ||
9520 | <context context-type="linenumber">137</context> | ||
9521 | </context-group> | ||
9522 | </trans-unit> | ||
9493 | <trans-unit id="5210096066382592800" datatype="html"> | 9523 | <trans-unit id="5210096066382592800" datatype="html"> |
9494 | <source>Video to import updated.</source> | 9524 | <source>Video to import updated.</source> |
9495 | <target state="new">Video to import updated.</target> | 9525 | <target state="new">Video to import updated.</target> |
diff --git a/client/src/locale/angular.da-DK.xlf b/client/src/locale/angular.da-DK.xlf index cd09a98e6..1a2202d8b 100644 --- a/client/src/locale/angular.da-DK.xlf +++ b/client/src/locale/angular.da-DK.xlf | |||
@@ -1331,13 +1331,7 @@ The link will expire within 1 hour.</target> | |||
1331 | <source>Close</source> | 1331 | <source>Close</source> |
1332 | <target state="new">Close</target> | 1332 | <target state="new">Close</target> |
1333 | 1333 | ||
1334 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="680d5c75b7fd8d37961083608b9fcdc4167b4c43" datatype="html"> | 1334 | <context-group purpose="location"><context context-type="sourcefile">../app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1335 | <source>Previous</source><target state="new">Previous</target> | ||
1336 | <context-group purpose="location"> | ||
1337 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
1338 | <context context-type="linenumber">1</context> | ||
1339 | </context-group> | ||
1340 | </trans-unit> | ||
1341 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> | 1335 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> |
1342 | <source> | 1336 | <source> |
1343 | Configure | 1337 | Configure |
@@ -5851,157 +5845,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5851 | <source>Next</source> | 5845 | <source>Next</source> |
5852 | <target state="new">Next</target> | 5846 | <target state="new">Next</target> |
5853 | 5847 | ||
5854 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="c3b08b07b5ab98e7cdcf18df39355690ab7d3884" datatype="html"> | 5848 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit><trans-unit id="9082008222523034483" datatype="html"> |
5855 | <source>Previous month</source><target state="new">Previous month</target> | ||
5856 | <context-group purpose="location"> | ||
5857 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5858 | <context context-type="linenumber">1</context> | ||
5859 | </context-group> | ||
5860 | </trans-unit><trans-unit id="4bd046985cfe13040d5ef0cd881edce0968a111a" datatype="html"> | ||
5861 | <source>Next month</source><target state="new">Next month</target> | ||
5862 | <context-group purpose="location"> | ||
5863 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5864 | <context context-type="linenumber">1</context> | ||
5865 | </context-group> | ||
5866 | </trans-unit><trans-unit id="1dbc84807f35518112f62e5775d1daebd3d8462b" datatype="html"> | ||
5867 | <source>Select month</source><target state="new">Select month</target> | ||
5868 | <context-group purpose="location"> | ||
5869 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5870 | <context context-type="linenumber">1</context> | ||
5871 | </context-group> | ||
5872 | </trans-unit><trans-unit id="8ceb09d002bf0c5d1cac171dfbffe1805d2b3962" datatype="html"> | ||
5873 | <source>Select year</source><target state="new">Select year</target> | ||
5874 | <context-group purpose="location"> | ||
5875 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5876 | <context context-type="linenumber">1</context> | ||
5877 | </context-group> | ||
5878 | </trans-unit><trans-unit id="656506dfd46380956a655f919f1498d018f75ca0" datatype="html"> | ||
5879 | <source>««</source><target state="new">««</target> | ||
5880 | <context-group purpose="location"> | ||
5881 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5882 | <context context-type="linenumber">1</context> | ||
5883 | </context-group> | ||
5884 | </trans-unit><trans-unit id="6e52b6ee77a4848d899dd21b591c6fd499e3aef3" datatype="html"> | ||
5885 | <source>«</source><target state="new">«</target> | ||
5886 | <context-group purpose="location"> | ||
5887 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5888 | <context context-type="linenumber">1</context> | ||
5889 | </context-group> | ||
5890 | </trans-unit><trans-unit id="ba9cbb4ff311464308a3627e4f1c3345d9fe6d7d" datatype="html"> | ||
5891 | <source>»</source><target state="new">»</target> | ||
5892 | <context-group purpose="location"> | ||
5893 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5894 | <context context-type="linenumber">1</context> | ||
5895 | </context-group> | ||
5896 | </trans-unit><trans-unit id="49f27a460bc97e7e00be5b37098bfa79884fc7d9" datatype="html"> | ||
5897 | <source>»»</source><target state="new">»»</target> | ||
5898 | <context-group purpose="location"> | ||
5899 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5900 | <context context-type="linenumber">1</context> | ||
5901 | </context-group> | ||
5902 | </trans-unit><trans-unit id="f2f852318759c6396b5d3d17031d53817d7b38cc" datatype="html"> | ||
5903 | <source>First</source><target state="new">First</target> | ||
5904 | <context-group purpose="location"> | ||
5905 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5906 | <context context-type="linenumber">1</context> | ||
5907 | </context-group> | ||
5908 | </trans-unit><trans-unit id="5c729788ba138508aca1bec050b610f7bf81db3e" datatype="html"> | ||
5909 | <source>Last</source><target state="new">Last</target> | ||
5910 | <context-group purpose="location"> | ||
5911 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5912 | <context context-type="linenumber">1</context> | ||
5913 | </context-group> | ||
5914 | </trans-unit><trans-unit id="f8e9a947b9db4252c0e9905765338712f2fd032f" datatype="html"> | ||
5915 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5916 | <context-group purpose="location"> | ||
5917 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5918 | <context context-type="linenumber">1</context> | ||
5919 | </context-group> | ||
5920 | </trans-unit><trans-unit id="ce676ab1d6d98f85c836381cf100a4a91ef95a1f" datatype="html"> | ||
5921 | <source>HH</source><target state="new">HH</target> | ||
5922 | <context-group purpose="location"> | ||
5923 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5924 | <context context-type="linenumber">1</context> | ||
5925 | </context-group> | ||
5926 | </trans-unit><trans-unit id="3bbce5fef7e1151da052a4e529453edb340e3912" datatype="html"> | ||
5927 | <source>Hours</source><target state="new">Hours</target> | ||
5928 | <context-group purpose="location"> | ||
5929 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5930 | <context context-type="linenumber">1</context> | ||
5931 | </context-group> | ||
5932 | </trans-unit><trans-unit id="72c8edf6a50068a05bde70991e36b1e881f4ca54" datatype="html"> | ||
5933 | <source>MM</source><target state="new">MM</target> | ||
5934 | <context-group purpose="location"> | ||
5935 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5936 | <context context-type="linenumber">1</context> | ||
5937 | </context-group> | ||
5938 | </trans-unit><trans-unit id="41e62daa962947c0d23ded0981975d1bddf0bf38" datatype="html"> | ||
5939 | <source>Minutes</source><target state="new">Minutes</target> | ||
5940 | <context-group purpose="location"> | ||
5941 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5942 | <context context-type="linenumber">1</context> | ||
5943 | </context-group> | ||
5944 | </trans-unit><trans-unit id="cb74bc1d625a6c1742f0d7d47306cf495780c218" datatype="html"> | ||
5945 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
5946 | <context-group purpose="location"> | ||
5947 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5948 | <context context-type="linenumber">1</context> | ||
5949 | </context-group> | ||
5950 | </trans-unit><trans-unit id="147c7a19429da7d999e247d22e33fee370b1691b" datatype="html"> | ||
5951 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
5952 | <context-group purpose="location"> | ||
5953 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5954 | <context context-type="linenumber">1</context> | ||
5955 | </context-group> | ||
5956 | </trans-unit><trans-unit id="f5a4a3bc05e053f6732475d0e74875ec01c3a348" datatype="html"> | ||
5957 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
5958 | <context-group purpose="location"> | ||
5959 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5960 | <context context-type="linenumber">1</context> | ||
5961 | </context-group> | ||
5962 | </trans-unit><trans-unit id="c1a6899e529c096da5b660385d4e77fe1f7ad271" datatype="html"> | ||
5963 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
5964 | <context-group purpose="location"> | ||
5965 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5966 | <context context-type="linenumber">1</context> | ||
5967 | </context-group> | ||
5968 | </trans-unit><trans-unit id="ebe38d36a40a2383c5fefa9b4608ffbda08bd4a3" datatype="html"> | ||
5969 | <source>SS</source><target state="new">SS</target> | ||
5970 | <context-group purpose="location"> | ||
5971 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5972 | <context context-type="linenumber">1</context> | ||
5973 | </context-group> | ||
5974 | </trans-unit><trans-unit id="4f2ed9e71a7c981db3e50ae2fedb28aff2ec4e6c" datatype="html"> | ||
5975 | <source>Seconds</source><target state="new">Seconds</target> | ||
5976 | <context-group purpose="location"> | ||
5977 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5978 | <context context-type="linenumber">1</context> | ||
5979 | </context-group> | ||
5980 | </trans-unit><trans-unit id="912322ecee7d659d04dcf494a70e22e49d334b26" datatype="html"> | ||
5981 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
5982 | <context-group purpose="location"> | ||
5983 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5984 | <context context-type="linenumber">1</context> | ||
5985 | </context-group> | ||
5986 | </trans-unit><trans-unit id="5db47ac104294243a70eb9124fbea9d0004ddf69" datatype="html"> | ||
5987 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
5988 | <context-group purpose="location"> | ||
5989 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5990 | <context context-type="linenumber">1</context> | ||
5991 | </context-group> | ||
5992 | </trans-unit><trans-unit id="8d6e691e10306c1b34c6b26805151aaea320ef7f" datatype="html"> | ||
5993 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5994 | <context-group purpose="location"> | ||
5995 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5996 | <context context-type="linenumber">1</context> | ||
5997 | </context-group> | ||
5998 | </trans-unit><trans-unit id="69a1f176a93998876952adac57c3bc3863b6105e" datatype="html"> | ||
5999 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
6000 | <context-group purpose="location"> | ||
6001 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
6002 | <context context-type="linenumber">1</context> | ||
6003 | </context-group> | ||
6004 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
6005 | <source>Get help</source><target state="new">Get help</target> | 5849 | <source>Get help</source><target state="new">Get help</target> |
6006 | <context-group purpose="location"> | 5850 | <context-group purpose="location"> |
6007 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 5851 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> |
@@ -9551,7 +9395,193 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9551 | <source>Only users of this instance can see this video</source> | 9395 | <source>Only users of this instance can see this video</source> |
9552 | <target state="new">Only users of this instance can see this video</target> | 9396 | <target state="new">Only users of this instance can see this video</target> |
9553 | 9397 | ||
9554 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit> | 9398 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit><trans-unit id="ngb.alert.close" datatype="html"> |
9399 | <source>Close</source><target state="new">Close</target> | ||
9400 | <context-group purpose="location"> | ||
9401 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/alert/alert.ts</context> | ||
9402 | <context context-type="linenumber">74</context> | ||
9403 | </context-group> | ||
9404 | </trans-unit><trans-unit id="ngb.carousel.previous" datatype="html"> | ||
9405 | <source>Previous</source><target state="new">Previous</target> | ||
9406 | <context-group purpose="location"> | ||
9407 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9408 | <context context-type="linenumber">349</context> | ||
9409 | </context-group> | ||
9410 | </trans-unit><trans-unit id="ngb.carousel.next" datatype="html"> | ||
9411 | <source>Next</source><target state="new">Next</target> | ||
9412 | <context-group purpose="location"> | ||
9413 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9414 | <context context-type="linenumber">349</context> | ||
9415 | </context-group> | ||
9416 | </trans-unit><trans-unit id="ngb.datepicker.previous-month" datatype="html"> | ||
9417 | <source>Previous month</source><target state="new">Previous month</target> | ||
9418 | <context-group purpose="location"> | ||
9419 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation.ts</context> | ||
9420 | <context context-type="linenumber">69</context> | ||
9421 | </context-group> | ||
9422 | </trans-unit><trans-unit id="ngb.datepicker.next-month" datatype="html"> | ||
9423 | <source>Next month</source><target state="new">Next month</target> | ||
9424 | <context-group purpose="location"> | ||
9425 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-month.ts</context> | ||
9426 | <context context-type="linenumber">72</context> | ||
9427 | </context-group> | ||
9428 | </trans-unit><trans-unit id="ngb.datepicker.select-month" datatype="html"> | ||
9429 | <source>Select month</source><target state="new">Select month</target> | ||
9430 | <context-group purpose="location"> | ||
9431 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9432 | <context context-type="linenumber">74</context> | ||
9433 | </context-group> | ||
9434 | </trans-unit><trans-unit id="ngb.datepicker.select-year" datatype="html"> | ||
9435 | <source>Select year</source><target state="new">Select year</target> | ||
9436 | <context-group purpose="location"> | ||
9437 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9438 | <context context-type="linenumber">74</context> | ||
9439 | </context-group> | ||
9440 | </trans-unit><trans-unit id="ngb.pagination.first" datatype="html"> | ||
9441 | <source>««</source><target state="new">««</target> | ||
9442 | <context-group purpose="location"> | ||
9443 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9444 | <context context-type="linenumber">404</context> | ||
9445 | </context-group> | ||
9446 | </trans-unit><trans-unit id="ngb.pagination.previous" datatype="html"> | ||
9447 | <source>«</source><target state="new">«</target> | ||
9448 | <context-group purpose="location"> | ||
9449 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9450 | <context context-type="linenumber">404</context> | ||
9451 | </context-group> | ||
9452 | </trans-unit><trans-unit id="ngb.pagination.next" datatype="html"> | ||
9453 | <source>»</source><target state="new">»</target> | ||
9454 | <context-group purpose="location"> | ||
9455 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9456 | <context context-type="linenumber">404</context> | ||
9457 | </context-group> | ||
9458 | </trans-unit><trans-unit id="ngb.pagination.last" datatype="html"> | ||
9459 | <source>»»</source><target state="new">»»</target> | ||
9460 | <context-group purpose="location"> | ||
9461 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9462 | <context context-type="linenumber">404</context> | ||
9463 | </context-group> | ||
9464 | </trans-unit><trans-unit id="ngb.pagination.first-aria" datatype="html"> | ||
9465 | <source>First</source><target state="new">First</target> | ||
9466 | <context-group purpose="location"> | ||
9467 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9468 | <context context-type="linenumber">404</context> | ||
9469 | </context-group> | ||
9470 | </trans-unit><trans-unit id="ngb.pagination.previous-aria" datatype="html"> | ||
9471 | <source>Previous</source><target state="new">Previous</target> | ||
9472 | <context-group purpose="location"> | ||
9473 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9474 | <context context-type="linenumber">404</context> | ||
9475 | </context-group> | ||
9476 | </trans-unit><trans-unit id="ngb.pagination.next-aria" datatype="html"> | ||
9477 | <source>Next</source><target state="new">Next</target> | ||
9478 | <context-group purpose="location"> | ||
9479 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9480 | <context context-type="linenumber">404</context> | ||
9481 | </context-group> | ||
9482 | </trans-unit><trans-unit id="ngb.pagination.last-aria" datatype="html"> | ||
9483 | <source>Last</source><target state="new">Last</target> | ||
9484 | <context-group purpose="location"> | ||
9485 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9486 | <context context-type="linenumber">404</context> | ||
9487 | </context-group> | ||
9488 | </trans-unit><trans-unit id="ngb.progressbar.value" datatype="html"> | ||
9489 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9490 | <context-group purpose="location"> | ||
9491 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/progressbar/progressbar.ts</context> | ||
9492 | <context context-type="linenumber">101</context> | ||
9493 | </context-group> | ||
9494 | </trans-unit><trans-unit id="ngb.timepicker.HH" datatype="html"> | ||
9495 | <source>HH</source><target state="new">HH</target> | ||
9496 | <context-group purpose="location"> | ||
9497 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9498 | <context context-type="linenumber">296</context> | ||
9499 | </context-group> | ||
9500 | </trans-unit><trans-unit id="ngb.timepicker.hours" datatype="html"> | ||
9501 | <source>Hours</source><target state="new">Hours</target> | ||
9502 | <context-group purpose="location"> | ||
9503 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9504 | <context context-type="linenumber">296</context> | ||
9505 | </context-group> | ||
9506 | </trans-unit><trans-unit id="ngb.timepicker.MM" datatype="html"> | ||
9507 | <source>MM</source><target state="new">MM</target> | ||
9508 | <context-group purpose="location"> | ||
9509 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9510 | <context context-type="linenumber">296</context> | ||
9511 | </context-group> | ||
9512 | </trans-unit><trans-unit id="ngb.timepicker.minutes" datatype="html"> | ||
9513 | <source>Minutes</source><target state="new">Minutes</target> | ||
9514 | <context-group purpose="location"> | ||
9515 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9516 | <context context-type="linenumber">296</context> | ||
9517 | </context-group> | ||
9518 | </trans-unit><trans-unit id="ngb.timepicker.increment-hours" datatype="html"> | ||
9519 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
9520 | <context-group purpose="location"> | ||
9521 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9522 | <context context-type="linenumber">296</context> | ||
9523 | </context-group> | ||
9524 | </trans-unit><trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> | ||
9525 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
9526 | <context-group purpose="location"> | ||
9527 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9528 | <context context-type="linenumber">296</context> | ||
9529 | </context-group> | ||
9530 | </trans-unit><trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> | ||
9531 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
9532 | <context-group purpose="location"> | ||
9533 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9534 | <context context-type="linenumber">296</context> | ||
9535 | </context-group> | ||
9536 | </trans-unit><trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> | ||
9537 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
9538 | <context-group purpose="location"> | ||
9539 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9540 | <context context-type="linenumber">296</context> | ||
9541 | </context-group> | ||
9542 | </trans-unit><trans-unit id="ngb.timepicker.SS" datatype="html"> | ||
9543 | <source>SS</source><target state="new">SS</target> | ||
9544 | <context-group purpose="location"> | ||
9545 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9546 | <context context-type="linenumber">296</context> | ||
9547 | </context-group> | ||
9548 | </trans-unit><trans-unit id="ngb.timepicker.seconds" datatype="html"> | ||
9549 | <source>Seconds</source><target state="new">Seconds</target> | ||
9550 | <context-group purpose="location"> | ||
9551 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9552 | <context context-type="linenumber">296</context> | ||
9553 | </context-group> | ||
9554 | </trans-unit><trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> | ||
9555 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
9556 | <context-group purpose="location"> | ||
9557 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9558 | <context context-type="linenumber">296</context> | ||
9559 | </context-group> | ||
9560 | </trans-unit><trans-unit id="ngb.timepicker.decrement-seconds" datatype="html"> | ||
9561 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
9562 | <context-group purpose="location"> | ||
9563 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9564 | <context context-type="linenumber">296</context> | ||
9565 | </context-group> | ||
9566 | </trans-unit><trans-unit id="ngb.timepicker.PM" datatype="html"> | ||
9567 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9568 | <context-group purpose="location"> | ||
9569 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9570 | <context context-type="linenumber">296</context> | ||
9571 | </context-group> | ||
9572 | </trans-unit><trans-unit id="ngb.timepicker.AM" datatype="html"> | ||
9573 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9574 | <context-group purpose="location"> | ||
9575 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9576 | <context context-type="linenumber">296</context> | ||
9577 | </context-group> | ||
9578 | </trans-unit><trans-unit id="ngb.toast.close-aria" datatype="html"> | ||
9579 | <source>Close</source><target state="new">Close</target> | ||
9580 | <context-group purpose="location"> | ||
9581 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/toast/toast.ts</context> | ||
9582 | <context context-type="linenumber">137</context> | ||
9583 | </context-group> | ||
9584 | </trans-unit> | ||
9555 | <trans-unit id="5210096066382592800" datatype="html"> | 9585 | <trans-unit id="5210096066382592800" datatype="html"> |
9556 | <source>Video to import updated.</source> | 9586 | <source>Video to import updated.</source> |
9557 | <target state="new">Video to import updated.</target> | 9587 | <target state="new">Video to import updated.</target> |
diff --git a/client/src/locale/angular.de-DE.xlf b/client/src/locale/angular.de-DE.xlf index 79c4a2d96..614ae1213 100644 --- a/client/src/locale/angular.de-DE.xlf +++ b/client/src/locale/angular.de-DE.xlf | |||
@@ -1248,13 +1248,7 @@ The link will expire within 1 hour.</target> | |||
1248 | <source>Close</source> | 1248 | <source>Close</source> |
1249 | <target>Schließen</target> | 1249 | <target>Schließen</target> |
1250 | 1250 | ||
1251 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="680d5c75b7fd8d37961083608b9fcdc4167b4c43" datatype="html"> | 1251 | <context-group purpose="location"><context context-type="sourcefile">../app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1252 | <source>Previous</source><target state="new">Previous</target> | ||
1253 | <context-group purpose="location"> | ||
1254 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
1255 | <context context-type="linenumber">1</context> | ||
1256 | </context-group> | ||
1257 | </trans-unit> | ||
1258 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> | 1252 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> |
1259 | <source> | 1253 | <source> |
1260 | Configure | 1254 | Configure |
@@ -5631,157 +5625,7 @@ Konto erstellen</target> | |||
5631 | <source>Next</source> | 5625 | <source>Next</source> |
5632 | <target>Weiter</target> | 5626 | <target>Weiter</target> |
5633 | 5627 | ||
5634 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="c3b08b07b5ab98e7cdcf18df39355690ab7d3884" datatype="html"> | 5628 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit><trans-unit id="9082008222523034483" datatype="html"> |
5635 | <source>Previous month</source><target state="new">Previous month</target> | ||
5636 | <context-group purpose="location"> | ||
5637 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5638 | <context context-type="linenumber">1</context> | ||
5639 | </context-group> | ||
5640 | </trans-unit><trans-unit id="4bd046985cfe13040d5ef0cd881edce0968a111a" datatype="html"> | ||
5641 | <source>Next month</source><target state="new">Next month</target> | ||
5642 | <context-group purpose="location"> | ||
5643 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5644 | <context context-type="linenumber">1</context> | ||
5645 | </context-group> | ||
5646 | </trans-unit><trans-unit id="1dbc84807f35518112f62e5775d1daebd3d8462b" datatype="html"> | ||
5647 | <source>Select month</source><target state="new">Select month</target> | ||
5648 | <context-group purpose="location"> | ||
5649 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5650 | <context context-type="linenumber">1</context> | ||
5651 | </context-group> | ||
5652 | </trans-unit><trans-unit id="8ceb09d002bf0c5d1cac171dfbffe1805d2b3962" datatype="html"> | ||
5653 | <source>Select year</source><target state="new">Select year</target> | ||
5654 | <context-group purpose="location"> | ||
5655 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5656 | <context context-type="linenumber">1</context> | ||
5657 | </context-group> | ||
5658 | </trans-unit><trans-unit id="656506dfd46380956a655f919f1498d018f75ca0" datatype="html"> | ||
5659 | <source>««</source><target state="new">««</target> | ||
5660 | <context-group purpose="location"> | ||
5661 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5662 | <context context-type="linenumber">1</context> | ||
5663 | </context-group> | ||
5664 | </trans-unit><trans-unit id="6e52b6ee77a4848d899dd21b591c6fd499e3aef3" datatype="html"> | ||
5665 | <source>«</source><target state="new">«</target> | ||
5666 | <context-group purpose="location"> | ||
5667 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5668 | <context context-type="linenumber">1</context> | ||
5669 | </context-group> | ||
5670 | </trans-unit><trans-unit id="ba9cbb4ff311464308a3627e4f1c3345d9fe6d7d" datatype="html"> | ||
5671 | <source>»</source><target state="new">»</target> | ||
5672 | <context-group purpose="location"> | ||
5673 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5674 | <context context-type="linenumber">1</context> | ||
5675 | </context-group> | ||
5676 | </trans-unit><trans-unit id="49f27a460bc97e7e00be5b37098bfa79884fc7d9" datatype="html"> | ||
5677 | <source>»»</source><target state="new">»»</target> | ||
5678 | <context-group purpose="location"> | ||
5679 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5680 | <context context-type="linenumber">1</context> | ||
5681 | </context-group> | ||
5682 | </trans-unit><trans-unit id="f2f852318759c6396b5d3d17031d53817d7b38cc" datatype="html"> | ||
5683 | <source>First</source><target state="new">First</target> | ||
5684 | <context-group purpose="location"> | ||
5685 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5686 | <context context-type="linenumber">1</context> | ||
5687 | </context-group> | ||
5688 | </trans-unit><trans-unit id="5c729788ba138508aca1bec050b610f7bf81db3e" datatype="html"> | ||
5689 | <source>Last</source><target state="new">Last</target> | ||
5690 | <context-group purpose="location"> | ||
5691 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5692 | <context context-type="linenumber">1</context> | ||
5693 | </context-group> | ||
5694 | </trans-unit><trans-unit id="f8e9a947b9db4252c0e9905765338712f2fd032f" datatype="html"> | ||
5695 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5696 | <context-group purpose="location"> | ||
5697 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5698 | <context context-type="linenumber">1</context> | ||
5699 | </context-group> | ||
5700 | </trans-unit><trans-unit id="ce676ab1d6d98f85c836381cf100a4a91ef95a1f" datatype="html"> | ||
5701 | <source>HH</source><target state="new">HH</target> | ||
5702 | <context-group purpose="location"> | ||
5703 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5704 | <context context-type="linenumber">1</context> | ||
5705 | </context-group> | ||
5706 | </trans-unit><trans-unit id="3bbce5fef7e1151da052a4e529453edb340e3912" datatype="html"> | ||
5707 | <source>Hours</source><target state="new">Hours</target> | ||
5708 | <context-group purpose="location"> | ||
5709 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5710 | <context context-type="linenumber">1</context> | ||
5711 | </context-group> | ||
5712 | </trans-unit><trans-unit id="72c8edf6a50068a05bde70991e36b1e881f4ca54" datatype="html"> | ||
5713 | <source>MM</source><target state="new">MM</target> | ||
5714 | <context-group purpose="location"> | ||
5715 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5716 | <context context-type="linenumber">1</context> | ||
5717 | </context-group> | ||
5718 | </trans-unit><trans-unit id="41e62daa962947c0d23ded0981975d1bddf0bf38" datatype="html"> | ||
5719 | <source>Minutes</source><target state="new">Minutes</target> | ||
5720 | <context-group purpose="location"> | ||
5721 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5722 | <context context-type="linenumber">1</context> | ||
5723 | </context-group> | ||
5724 | </trans-unit><trans-unit id="cb74bc1d625a6c1742f0d7d47306cf495780c218" datatype="html"> | ||
5725 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
5726 | <context-group purpose="location"> | ||
5727 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5728 | <context context-type="linenumber">1</context> | ||
5729 | </context-group> | ||
5730 | </trans-unit><trans-unit id="147c7a19429da7d999e247d22e33fee370b1691b" datatype="html"> | ||
5731 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
5732 | <context-group purpose="location"> | ||
5733 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5734 | <context context-type="linenumber">1</context> | ||
5735 | </context-group> | ||
5736 | </trans-unit><trans-unit id="f5a4a3bc05e053f6732475d0e74875ec01c3a348" datatype="html"> | ||
5737 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
5738 | <context-group purpose="location"> | ||
5739 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5740 | <context context-type="linenumber">1</context> | ||
5741 | </context-group> | ||
5742 | </trans-unit><trans-unit id="c1a6899e529c096da5b660385d4e77fe1f7ad271" datatype="html"> | ||
5743 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
5744 | <context-group purpose="location"> | ||
5745 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5746 | <context context-type="linenumber">1</context> | ||
5747 | </context-group> | ||
5748 | </trans-unit><trans-unit id="ebe38d36a40a2383c5fefa9b4608ffbda08bd4a3" datatype="html"> | ||
5749 | <source>SS</source><target state="new">SS</target> | ||
5750 | <context-group purpose="location"> | ||
5751 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5752 | <context context-type="linenumber">1</context> | ||
5753 | </context-group> | ||
5754 | </trans-unit><trans-unit id="4f2ed9e71a7c981db3e50ae2fedb28aff2ec4e6c" datatype="html"> | ||
5755 | <source>Seconds</source><target state="new">Seconds</target> | ||
5756 | <context-group purpose="location"> | ||
5757 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5758 | <context context-type="linenumber">1</context> | ||
5759 | </context-group> | ||
5760 | </trans-unit><trans-unit id="912322ecee7d659d04dcf494a70e22e49d334b26" datatype="html"> | ||
5761 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
5762 | <context-group purpose="location"> | ||
5763 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5764 | <context context-type="linenumber">1</context> | ||
5765 | </context-group> | ||
5766 | </trans-unit><trans-unit id="5db47ac104294243a70eb9124fbea9d0004ddf69" datatype="html"> | ||
5767 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
5768 | <context-group purpose="location"> | ||
5769 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5770 | <context context-type="linenumber">1</context> | ||
5771 | </context-group> | ||
5772 | </trans-unit><trans-unit id="8d6e691e10306c1b34c6b26805151aaea320ef7f" datatype="html"> | ||
5773 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5774 | <context-group purpose="location"> | ||
5775 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5776 | <context context-type="linenumber">1</context> | ||
5777 | </context-group> | ||
5778 | </trans-unit><trans-unit id="69a1f176a93998876952adac57c3bc3863b6105e" datatype="html"> | ||
5779 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5780 | <context-group purpose="location"> | ||
5781 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5782 | <context context-type="linenumber">1</context> | ||
5783 | </context-group> | ||
5784 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
5785 | <source>Get help</source><target state="new">Get help</target> | 5629 | <source>Get help</source><target state="new">Get help</target> |
5786 | <context-group purpose="location"> | 5630 | <context-group purpose="location"> |
5787 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 5631 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> |
@@ -9315,7 +9159,193 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9315 | <source>Only users of this instance can see this video</source> | 9159 | <source>Only users of this instance can see this video</source> |
9316 | <target state="translated">Nur Nutzer dieser Instanz können dieses Video sehen</target> | 9160 | <target state="translated">Nur Nutzer dieser Instanz können dieses Video sehen</target> |
9317 | 9161 | ||
9318 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit> | 9162 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit><trans-unit id="ngb.alert.close" datatype="html"> |
9163 | <source>Close</source><target state="new">Close</target> | ||
9164 | <context-group purpose="location"> | ||
9165 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/alert/alert.ts</context> | ||
9166 | <context context-type="linenumber">74</context> | ||
9167 | </context-group> | ||
9168 | </trans-unit><trans-unit id="ngb.carousel.previous" datatype="html"> | ||
9169 | <source>Previous</source><target state="new">Previous</target> | ||
9170 | <context-group purpose="location"> | ||
9171 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9172 | <context context-type="linenumber">349</context> | ||
9173 | </context-group> | ||
9174 | </trans-unit><trans-unit id="ngb.carousel.next" datatype="html"> | ||
9175 | <source>Next</source><target state="new">Next</target> | ||
9176 | <context-group purpose="location"> | ||
9177 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9178 | <context context-type="linenumber">349</context> | ||
9179 | </context-group> | ||
9180 | </trans-unit><trans-unit id="ngb.datepicker.previous-month" datatype="html"> | ||
9181 | <source>Previous month</source><target state="new">Previous month</target> | ||
9182 | <context-group purpose="location"> | ||
9183 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation.ts</context> | ||
9184 | <context context-type="linenumber">69</context> | ||
9185 | </context-group> | ||
9186 | </trans-unit><trans-unit id="ngb.datepicker.next-month" datatype="html"> | ||
9187 | <source>Next month</source><target state="new">Next month</target> | ||
9188 | <context-group purpose="location"> | ||
9189 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-month.ts</context> | ||
9190 | <context context-type="linenumber">72</context> | ||
9191 | </context-group> | ||
9192 | </trans-unit><trans-unit id="ngb.datepicker.select-month" datatype="html"> | ||
9193 | <source>Select month</source><target state="new">Select month</target> | ||
9194 | <context-group purpose="location"> | ||
9195 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9196 | <context context-type="linenumber">74</context> | ||
9197 | </context-group> | ||
9198 | </trans-unit><trans-unit id="ngb.datepicker.select-year" datatype="html"> | ||
9199 | <source>Select year</source><target state="new">Select year</target> | ||
9200 | <context-group purpose="location"> | ||
9201 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9202 | <context context-type="linenumber">74</context> | ||
9203 | </context-group> | ||
9204 | </trans-unit><trans-unit id="ngb.pagination.first" datatype="html"> | ||
9205 | <source>««</source><target state="new">««</target> | ||
9206 | <context-group purpose="location"> | ||
9207 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9208 | <context context-type="linenumber">404</context> | ||
9209 | </context-group> | ||
9210 | </trans-unit><trans-unit id="ngb.pagination.previous" datatype="html"> | ||
9211 | <source>«</source><target state="new">«</target> | ||
9212 | <context-group purpose="location"> | ||
9213 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9214 | <context context-type="linenumber">404</context> | ||
9215 | </context-group> | ||
9216 | </trans-unit><trans-unit id="ngb.pagination.next" datatype="html"> | ||
9217 | <source>»</source><target state="new">»</target> | ||
9218 | <context-group purpose="location"> | ||
9219 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9220 | <context context-type="linenumber">404</context> | ||
9221 | </context-group> | ||
9222 | </trans-unit><trans-unit id="ngb.pagination.last" datatype="html"> | ||
9223 | <source>»»</source><target state="new">»»</target> | ||
9224 | <context-group purpose="location"> | ||
9225 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9226 | <context context-type="linenumber">404</context> | ||
9227 | </context-group> | ||
9228 | </trans-unit><trans-unit id="ngb.pagination.first-aria" datatype="html"> | ||
9229 | <source>First</source><target state="new">First</target> | ||
9230 | <context-group purpose="location"> | ||
9231 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9232 | <context context-type="linenumber">404</context> | ||
9233 | </context-group> | ||
9234 | </trans-unit><trans-unit id="ngb.pagination.previous-aria" datatype="html"> | ||
9235 | <source>Previous</source><target state="new">Previous</target> | ||
9236 | <context-group purpose="location"> | ||
9237 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9238 | <context context-type="linenumber">404</context> | ||
9239 | </context-group> | ||
9240 | </trans-unit><trans-unit id="ngb.pagination.next-aria" datatype="html"> | ||
9241 | <source>Next</source><target state="new">Next</target> | ||
9242 | <context-group purpose="location"> | ||
9243 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9244 | <context context-type="linenumber">404</context> | ||
9245 | </context-group> | ||
9246 | </trans-unit><trans-unit id="ngb.pagination.last-aria" datatype="html"> | ||
9247 | <source>Last</source><target state="new">Last</target> | ||
9248 | <context-group purpose="location"> | ||
9249 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9250 | <context context-type="linenumber">404</context> | ||
9251 | </context-group> | ||
9252 | </trans-unit><trans-unit id="ngb.progressbar.value" datatype="html"> | ||
9253 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9254 | <context-group purpose="location"> | ||
9255 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/progressbar/progressbar.ts</context> | ||
9256 | <context context-type="linenumber">101</context> | ||
9257 | </context-group> | ||
9258 | </trans-unit><trans-unit id="ngb.timepicker.HH" datatype="html"> | ||
9259 | <source>HH</source><target state="new">HH</target> | ||
9260 | <context-group purpose="location"> | ||
9261 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9262 | <context context-type="linenumber">296</context> | ||
9263 | </context-group> | ||
9264 | </trans-unit><trans-unit id="ngb.timepicker.hours" datatype="html"> | ||
9265 | <source>Hours</source><target state="new">Hours</target> | ||
9266 | <context-group purpose="location"> | ||
9267 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9268 | <context context-type="linenumber">296</context> | ||
9269 | </context-group> | ||
9270 | </trans-unit><trans-unit id="ngb.timepicker.MM" datatype="html"> | ||
9271 | <source>MM</source><target state="new">MM</target> | ||
9272 | <context-group purpose="location"> | ||
9273 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9274 | <context context-type="linenumber">296</context> | ||
9275 | </context-group> | ||
9276 | </trans-unit><trans-unit id="ngb.timepicker.minutes" datatype="html"> | ||
9277 | <source>Minutes</source><target state="new">Minutes</target> | ||
9278 | <context-group purpose="location"> | ||
9279 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9280 | <context context-type="linenumber">296</context> | ||
9281 | </context-group> | ||
9282 | </trans-unit><trans-unit id="ngb.timepicker.increment-hours" datatype="html"> | ||
9283 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
9284 | <context-group purpose="location"> | ||
9285 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9286 | <context context-type="linenumber">296</context> | ||
9287 | </context-group> | ||
9288 | </trans-unit><trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> | ||
9289 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
9290 | <context-group purpose="location"> | ||
9291 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9292 | <context context-type="linenumber">296</context> | ||
9293 | </context-group> | ||
9294 | </trans-unit><trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> | ||
9295 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
9296 | <context-group purpose="location"> | ||
9297 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9298 | <context context-type="linenumber">296</context> | ||
9299 | </context-group> | ||
9300 | </trans-unit><trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> | ||
9301 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
9302 | <context-group purpose="location"> | ||
9303 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9304 | <context context-type="linenumber">296</context> | ||
9305 | </context-group> | ||
9306 | </trans-unit><trans-unit id="ngb.timepicker.SS" datatype="html"> | ||
9307 | <source>SS</source><target state="new">SS</target> | ||
9308 | <context-group purpose="location"> | ||
9309 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9310 | <context context-type="linenumber">296</context> | ||
9311 | </context-group> | ||
9312 | </trans-unit><trans-unit id="ngb.timepicker.seconds" datatype="html"> | ||
9313 | <source>Seconds</source><target state="new">Seconds</target> | ||
9314 | <context-group purpose="location"> | ||
9315 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9316 | <context context-type="linenumber">296</context> | ||
9317 | </context-group> | ||
9318 | </trans-unit><trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> | ||
9319 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
9320 | <context-group purpose="location"> | ||
9321 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9322 | <context context-type="linenumber">296</context> | ||
9323 | </context-group> | ||
9324 | </trans-unit><trans-unit id="ngb.timepicker.decrement-seconds" datatype="html"> | ||
9325 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
9326 | <context-group purpose="location"> | ||
9327 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9328 | <context context-type="linenumber">296</context> | ||
9329 | </context-group> | ||
9330 | </trans-unit><trans-unit id="ngb.timepicker.PM" datatype="html"> | ||
9331 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9332 | <context-group purpose="location"> | ||
9333 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9334 | <context context-type="linenumber">296</context> | ||
9335 | </context-group> | ||
9336 | </trans-unit><trans-unit id="ngb.timepicker.AM" datatype="html"> | ||
9337 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9338 | <context-group purpose="location"> | ||
9339 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9340 | <context context-type="linenumber">296</context> | ||
9341 | </context-group> | ||
9342 | </trans-unit><trans-unit id="ngb.toast.close-aria" datatype="html"> | ||
9343 | <source>Close</source><target state="new">Close</target> | ||
9344 | <context-group purpose="location"> | ||
9345 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/toast/toast.ts</context> | ||
9346 | <context context-type="linenumber">137</context> | ||
9347 | </context-group> | ||
9348 | </trans-unit> | ||
9319 | <trans-unit id="5210096066382592800"> | 9349 | <trans-unit id="5210096066382592800"> |
9320 | <source>Video to import updated.</source> | 9350 | <source>Video to import updated.</source> |
9321 | <target>Zu importierendes Video wurde aktualisiert.</target> | 9351 | <target>Zu importierendes Video wurde aktualisiert.</target> |
diff --git a/client/src/locale/angular.el-GR.xlf b/client/src/locale/angular.el-GR.xlf index 9f29945ed..f59126fa8 100644 --- a/client/src/locale/angular.el-GR.xlf +++ b/client/src/locale/angular.el-GR.xlf | |||
@@ -1299,13 +1299,7 @@ The link will expire within 1 hour.</target> | |||
1299 | <source>Close</source> | 1299 | <source>Close</source> |
1300 | <target>Κλείσιμο</target> | 1300 | <target>Κλείσιμο</target> |
1301 | 1301 | ||
1302 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="680d5c75b7fd8d37961083608b9fcdc4167b4c43" datatype="html"> | 1302 | <context-group purpose="location"><context context-type="sourcefile">../app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1303 | <source>Previous</source><target state="new">Previous</target> | ||
1304 | <context-group purpose="location"> | ||
1305 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
1306 | <context context-type="linenumber">1</context> | ||
1307 | </context-group> | ||
1308 | </trans-unit> | ||
1309 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> | 1303 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> |
1310 | <source> | 1304 | <source> |
1311 | Configure | 1305 | Configure |
@@ -5750,157 +5744,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5750 | <source>Next</source> | 5744 | <source>Next</source> |
5751 | <target>Επόμενο</target> | 5745 | <target>Επόμενο</target> |
5752 | 5746 | ||
5753 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="c3b08b07b5ab98e7cdcf18df39355690ab7d3884" datatype="html"> | 5747 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit><trans-unit id="9082008222523034483" datatype="html"> |
5754 | <source>Previous month</source><target state="new">Previous month</target> | ||
5755 | <context-group purpose="location"> | ||
5756 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5757 | <context context-type="linenumber">1</context> | ||
5758 | </context-group> | ||
5759 | </trans-unit><trans-unit id="4bd046985cfe13040d5ef0cd881edce0968a111a" datatype="html"> | ||
5760 | <source>Next month</source><target state="new">Next month</target> | ||
5761 | <context-group purpose="location"> | ||
5762 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5763 | <context context-type="linenumber">1</context> | ||
5764 | </context-group> | ||
5765 | </trans-unit><trans-unit id="1dbc84807f35518112f62e5775d1daebd3d8462b" datatype="html"> | ||
5766 | <source>Select month</source><target state="new">Select month</target> | ||
5767 | <context-group purpose="location"> | ||
5768 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5769 | <context context-type="linenumber">1</context> | ||
5770 | </context-group> | ||
5771 | </trans-unit><trans-unit id="8ceb09d002bf0c5d1cac171dfbffe1805d2b3962" datatype="html"> | ||
5772 | <source>Select year</source><target state="new">Select year</target> | ||
5773 | <context-group purpose="location"> | ||
5774 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5775 | <context context-type="linenumber">1</context> | ||
5776 | </context-group> | ||
5777 | </trans-unit><trans-unit id="656506dfd46380956a655f919f1498d018f75ca0" datatype="html"> | ||
5778 | <source>««</source><target state="new">««</target> | ||
5779 | <context-group purpose="location"> | ||
5780 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5781 | <context context-type="linenumber">1</context> | ||
5782 | </context-group> | ||
5783 | </trans-unit><trans-unit id="6e52b6ee77a4848d899dd21b591c6fd499e3aef3" datatype="html"> | ||
5784 | <source>«</source><target state="new">«</target> | ||
5785 | <context-group purpose="location"> | ||
5786 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5787 | <context context-type="linenumber">1</context> | ||
5788 | </context-group> | ||
5789 | </trans-unit><trans-unit id="ba9cbb4ff311464308a3627e4f1c3345d9fe6d7d" datatype="html"> | ||
5790 | <source>»</source><target state="new">»</target> | ||
5791 | <context-group purpose="location"> | ||
5792 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5793 | <context context-type="linenumber">1</context> | ||
5794 | </context-group> | ||
5795 | </trans-unit><trans-unit id="49f27a460bc97e7e00be5b37098bfa79884fc7d9" datatype="html"> | ||
5796 | <source>»»</source><target state="new">»»</target> | ||
5797 | <context-group purpose="location"> | ||
5798 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5799 | <context context-type="linenumber">1</context> | ||
5800 | </context-group> | ||
5801 | </trans-unit><trans-unit id="f2f852318759c6396b5d3d17031d53817d7b38cc" datatype="html"> | ||
5802 | <source>First</source><target state="new">First</target> | ||
5803 | <context-group purpose="location"> | ||
5804 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5805 | <context context-type="linenumber">1</context> | ||
5806 | </context-group> | ||
5807 | </trans-unit><trans-unit id="5c729788ba138508aca1bec050b610f7bf81db3e" datatype="html"> | ||
5808 | <source>Last</source><target state="new">Last</target> | ||
5809 | <context-group purpose="location"> | ||
5810 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5811 | <context context-type="linenumber">1</context> | ||
5812 | </context-group> | ||
5813 | </trans-unit><trans-unit id="f8e9a947b9db4252c0e9905765338712f2fd032f" datatype="html"> | ||
5814 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5815 | <context-group purpose="location"> | ||
5816 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5817 | <context context-type="linenumber">1</context> | ||
5818 | </context-group> | ||
5819 | </trans-unit><trans-unit id="ce676ab1d6d98f85c836381cf100a4a91ef95a1f" datatype="html"> | ||
5820 | <source>HH</source><target state="new">HH</target> | ||
5821 | <context-group purpose="location"> | ||
5822 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5823 | <context context-type="linenumber">1</context> | ||
5824 | </context-group> | ||
5825 | </trans-unit><trans-unit id="3bbce5fef7e1151da052a4e529453edb340e3912" datatype="html"> | ||
5826 | <source>Hours</source><target state="new">Hours</target> | ||
5827 | <context-group purpose="location"> | ||
5828 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5829 | <context context-type="linenumber">1</context> | ||
5830 | </context-group> | ||
5831 | </trans-unit><trans-unit id="72c8edf6a50068a05bde70991e36b1e881f4ca54" datatype="html"> | ||
5832 | <source>MM</source><target state="new">MM</target> | ||
5833 | <context-group purpose="location"> | ||
5834 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5835 | <context context-type="linenumber">1</context> | ||
5836 | </context-group> | ||
5837 | </trans-unit><trans-unit id="41e62daa962947c0d23ded0981975d1bddf0bf38" datatype="html"> | ||
5838 | <source>Minutes</source><target state="new">Minutes</target> | ||
5839 | <context-group purpose="location"> | ||
5840 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5841 | <context context-type="linenumber">1</context> | ||
5842 | </context-group> | ||
5843 | </trans-unit><trans-unit id="cb74bc1d625a6c1742f0d7d47306cf495780c218" datatype="html"> | ||
5844 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
5845 | <context-group purpose="location"> | ||
5846 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5847 | <context context-type="linenumber">1</context> | ||
5848 | </context-group> | ||
5849 | </trans-unit><trans-unit id="147c7a19429da7d999e247d22e33fee370b1691b" datatype="html"> | ||
5850 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
5851 | <context-group purpose="location"> | ||
5852 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5853 | <context context-type="linenumber">1</context> | ||
5854 | </context-group> | ||
5855 | </trans-unit><trans-unit id="f5a4a3bc05e053f6732475d0e74875ec01c3a348" datatype="html"> | ||
5856 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
5857 | <context-group purpose="location"> | ||
5858 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5859 | <context context-type="linenumber">1</context> | ||
5860 | </context-group> | ||
5861 | </trans-unit><trans-unit id="c1a6899e529c096da5b660385d4e77fe1f7ad271" datatype="html"> | ||
5862 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
5863 | <context-group purpose="location"> | ||
5864 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5865 | <context context-type="linenumber">1</context> | ||
5866 | </context-group> | ||
5867 | </trans-unit><trans-unit id="ebe38d36a40a2383c5fefa9b4608ffbda08bd4a3" datatype="html"> | ||
5868 | <source>SS</source><target state="new">SS</target> | ||
5869 | <context-group purpose="location"> | ||
5870 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5871 | <context context-type="linenumber">1</context> | ||
5872 | </context-group> | ||
5873 | </trans-unit><trans-unit id="4f2ed9e71a7c981db3e50ae2fedb28aff2ec4e6c" datatype="html"> | ||
5874 | <source>Seconds</source><target state="new">Seconds</target> | ||
5875 | <context-group purpose="location"> | ||
5876 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5877 | <context context-type="linenumber">1</context> | ||
5878 | </context-group> | ||
5879 | </trans-unit><trans-unit id="912322ecee7d659d04dcf494a70e22e49d334b26" datatype="html"> | ||
5880 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
5881 | <context-group purpose="location"> | ||
5882 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5883 | <context context-type="linenumber">1</context> | ||
5884 | </context-group> | ||
5885 | </trans-unit><trans-unit id="5db47ac104294243a70eb9124fbea9d0004ddf69" datatype="html"> | ||
5886 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
5887 | <context-group purpose="location"> | ||
5888 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5889 | <context context-type="linenumber">1</context> | ||
5890 | </context-group> | ||
5891 | </trans-unit><trans-unit id="8d6e691e10306c1b34c6b26805151aaea320ef7f" datatype="html"> | ||
5892 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5893 | <context-group purpose="location"> | ||
5894 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5895 | <context context-type="linenumber">1</context> | ||
5896 | </context-group> | ||
5897 | </trans-unit><trans-unit id="69a1f176a93998876952adac57c3bc3863b6105e" datatype="html"> | ||
5898 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5899 | <context-group purpose="location"> | ||
5900 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5901 | <context context-type="linenumber">1</context> | ||
5902 | </context-group> | ||
5903 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
5904 | <source>Get help</source><target state="new">Get help</target> | 5748 | <source>Get help</source><target state="new">Get help</target> |
5905 | <context-group purpose="location"> | 5749 | <context-group purpose="location"> |
5906 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 5750 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> |
@@ -9443,7 +9287,193 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9443 | <source>Only users of this instance can see this video</source> | 9287 | <source>Only users of this instance can see this video</source> |
9444 | <target state="new">Only users of this instance can see this video</target> | 9288 | <target state="new">Only users of this instance can see this video</target> |
9445 | 9289 | ||
9446 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit> | 9290 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit><trans-unit id="ngb.alert.close" datatype="html"> |
9291 | <source>Close</source><target state="new">Close</target> | ||
9292 | <context-group purpose="location"> | ||
9293 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/alert/alert.ts</context> | ||
9294 | <context context-type="linenumber">74</context> | ||
9295 | </context-group> | ||
9296 | </trans-unit><trans-unit id="ngb.carousel.previous" datatype="html"> | ||
9297 | <source>Previous</source><target state="new">Previous</target> | ||
9298 | <context-group purpose="location"> | ||
9299 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9300 | <context context-type="linenumber">349</context> | ||
9301 | </context-group> | ||
9302 | </trans-unit><trans-unit id="ngb.carousel.next" datatype="html"> | ||
9303 | <source>Next</source><target state="new">Next</target> | ||
9304 | <context-group purpose="location"> | ||
9305 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9306 | <context context-type="linenumber">349</context> | ||
9307 | </context-group> | ||
9308 | </trans-unit><trans-unit id="ngb.datepicker.previous-month" datatype="html"> | ||
9309 | <source>Previous month</source><target state="new">Previous month</target> | ||
9310 | <context-group purpose="location"> | ||
9311 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation.ts</context> | ||
9312 | <context context-type="linenumber">69</context> | ||
9313 | </context-group> | ||
9314 | </trans-unit><trans-unit id="ngb.datepicker.next-month" datatype="html"> | ||
9315 | <source>Next month</source><target state="new">Next month</target> | ||
9316 | <context-group purpose="location"> | ||
9317 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-month.ts</context> | ||
9318 | <context context-type="linenumber">72</context> | ||
9319 | </context-group> | ||
9320 | </trans-unit><trans-unit id="ngb.datepicker.select-month" datatype="html"> | ||
9321 | <source>Select month</source><target state="new">Select month</target> | ||
9322 | <context-group purpose="location"> | ||
9323 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9324 | <context context-type="linenumber">74</context> | ||
9325 | </context-group> | ||
9326 | </trans-unit><trans-unit id="ngb.datepicker.select-year" datatype="html"> | ||
9327 | <source>Select year</source><target state="new">Select year</target> | ||
9328 | <context-group purpose="location"> | ||
9329 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9330 | <context context-type="linenumber">74</context> | ||
9331 | </context-group> | ||
9332 | </trans-unit><trans-unit id="ngb.pagination.first" datatype="html"> | ||
9333 | <source>««</source><target state="new">««</target> | ||
9334 | <context-group purpose="location"> | ||
9335 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9336 | <context context-type="linenumber">404</context> | ||
9337 | </context-group> | ||
9338 | </trans-unit><trans-unit id="ngb.pagination.previous" datatype="html"> | ||
9339 | <source>«</source><target state="new">«</target> | ||
9340 | <context-group purpose="location"> | ||
9341 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9342 | <context context-type="linenumber">404</context> | ||
9343 | </context-group> | ||
9344 | </trans-unit><trans-unit id="ngb.pagination.next" datatype="html"> | ||
9345 | <source>»</source><target state="new">»</target> | ||
9346 | <context-group purpose="location"> | ||
9347 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9348 | <context context-type="linenumber">404</context> | ||
9349 | </context-group> | ||
9350 | </trans-unit><trans-unit id="ngb.pagination.last" datatype="html"> | ||
9351 | <source>»»</source><target state="new">»»</target> | ||
9352 | <context-group purpose="location"> | ||
9353 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9354 | <context context-type="linenumber">404</context> | ||
9355 | </context-group> | ||
9356 | </trans-unit><trans-unit id="ngb.pagination.first-aria" datatype="html"> | ||
9357 | <source>First</source><target state="new">First</target> | ||
9358 | <context-group purpose="location"> | ||
9359 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9360 | <context context-type="linenumber">404</context> | ||
9361 | </context-group> | ||
9362 | </trans-unit><trans-unit id="ngb.pagination.previous-aria" datatype="html"> | ||
9363 | <source>Previous</source><target state="new">Previous</target> | ||
9364 | <context-group purpose="location"> | ||
9365 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9366 | <context context-type="linenumber">404</context> | ||
9367 | </context-group> | ||
9368 | </trans-unit><trans-unit id="ngb.pagination.next-aria" datatype="html"> | ||
9369 | <source>Next</source><target state="new">Next</target> | ||
9370 | <context-group purpose="location"> | ||
9371 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9372 | <context context-type="linenumber">404</context> | ||
9373 | </context-group> | ||
9374 | </trans-unit><trans-unit id="ngb.pagination.last-aria" datatype="html"> | ||
9375 | <source>Last</source><target state="new">Last</target> | ||
9376 | <context-group purpose="location"> | ||
9377 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9378 | <context context-type="linenumber">404</context> | ||
9379 | </context-group> | ||
9380 | </trans-unit><trans-unit id="ngb.progressbar.value" datatype="html"> | ||
9381 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9382 | <context-group purpose="location"> | ||
9383 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/progressbar/progressbar.ts</context> | ||
9384 | <context context-type="linenumber">101</context> | ||
9385 | </context-group> | ||
9386 | </trans-unit><trans-unit id="ngb.timepicker.HH" datatype="html"> | ||
9387 | <source>HH</source><target state="new">HH</target> | ||
9388 | <context-group purpose="location"> | ||
9389 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9390 | <context context-type="linenumber">296</context> | ||
9391 | </context-group> | ||
9392 | </trans-unit><trans-unit id="ngb.timepicker.hours" datatype="html"> | ||
9393 | <source>Hours</source><target state="new">Hours</target> | ||
9394 | <context-group purpose="location"> | ||
9395 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9396 | <context context-type="linenumber">296</context> | ||
9397 | </context-group> | ||
9398 | </trans-unit><trans-unit id="ngb.timepicker.MM" datatype="html"> | ||
9399 | <source>MM</source><target state="new">MM</target> | ||
9400 | <context-group purpose="location"> | ||
9401 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9402 | <context context-type="linenumber">296</context> | ||
9403 | </context-group> | ||
9404 | </trans-unit><trans-unit id="ngb.timepicker.minutes" datatype="html"> | ||
9405 | <source>Minutes</source><target state="new">Minutes</target> | ||
9406 | <context-group purpose="location"> | ||
9407 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9408 | <context context-type="linenumber">296</context> | ||
9409 | </context-group> | ||
9410 | </trans-unit><trans-unit id="ngb.timepicker.increment-hours" datatype="html"> | ||
9411 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
9412 | <context-group purpose="location"> | ||
9413 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9414 | <context context-type="linenumber">296</context> | ||
9415 | </context-group> | ||
9416 | </trans-unit><trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> | ||
9417 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
9418 | <context-group purpose="location"> | ||
9419 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9420 | <context context-type="linenumber">296</context> | ||
9421 | </context-group> | ||
9422 | </trans-unit><trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> | ||
9423 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
9424 | <context-group purpose="location"> | ||
9425 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9426 | <context context-type="linenumber">296</context> | ||
9427 | </context-group> | ||
9428 | </trans-unit><trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> | ||
9429 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
9430 | <context-group purpose="location"> | ||
9431 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9432 | <context context-type="linenumber">296</context> | ||
9433 | </context-group> | ||
9434 | </trans-unit><trans-unit id="ngb.timepicker.SS" datatype="html"> | ||
9435 | <source>SS</source><target state="new">SS</target> | ||
9436 | <context-group purpose="location"> | ||
9437 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9438 | <context context-type="linenumber">296</context> | ||
9439 | </context-group> | ||
9440 | </trans-unit><trans-unit id="ngb.timepicker.seconds" datatype="html"> | ||
9441 | <source>Seconds</source><target state="new">Seconds</target> | ||
9442 | <context-group purpose="location"> | ||
9443 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9444 | <context context-type="linenumber">296</context> | ||
9445 | </context-group> | ||
9446 | </trans-unit><trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> | ||
9447 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
9448 | <context-group purpose="location"> | ||
9449 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9450 | <context context-type="linenumber">296</context> | ||
9451 | </context-group> | ||
9452 | </trans-unit><trans-unit id="ngb.timepicker.decrement-seconds" datatype="html"> | ||
9453 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
9454 | <context-group purpose="location"> | ||
9455 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9456 | <context context-type="linenumber">296</context> | ||
9457 | </context-group> | ||
9458 | </trans-unit><trans-unit id="ngb.timepicker.PM" datatype="html"> | ||
9459 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9460 | <context-group purpose="location"> | ||
9461 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9462 | <context context-type="linenumber">296</context> | ||
9463 | </context-group> | ||
9464 | </trans-unit><trans-unit id="ngb.timepicker.AM" datatype="html"> | ||
9465 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9466 | <context-group purpose="location"> | ||
9467 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9468 | <context context-type="linenumber">296</context> | ||
9469 | </context-group> | ||
9470 | </trans-unit><trans-unit id="ngb.toast.close-aria" datatype="html"> | ||
9471 | <source>Close</source><target state="new">Close</target> | ||
9472 | <context-group purpose="location"> | ||
9473 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/toast/toast.ts</context> | ||
9474 | <context context-type="linenumber">137</context> | ||
9475 | </context-group> | ||
9476 | </trans-unit> | ||
9447 | <trans-unit id="5210096066382592800"> | 9477 | <trans-unit id="5210096066382592800"> |
9448 | <source>Video to import updated.</source> | 9478 | <source>Video to import updated.</source> |
9449 | <target>Ενημερώθηκε το βίντεο προς εισαγωγή.</target> | 9479 | <target>Ενημερώθηκε το βίντεο προς εισαγωγή.</target> |
diff --git a/client/src/locale/angular.en-GB.xlf b/client/src/locale/angular.en-GB.xlf index fa2c7e862..e1336463a 100644 --- a/client/src/locale/angular.en-GB.xlf +++ b/client/src/locale/angular.en-GB.xlf | |||
@@ -1305,13 +1305,7 @@ The link will expire within 1 hour.</target> | |||
1305 | <source>Close</source> | 1305 | <source>Close</source> |
1306 | <target>Close</target> | 1306 | <target>Close</target> |
1307 | 1307 | ||
1308 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="680d5c75b7fd8d37961083608b9fcdc4167b4c43" datatype="html"> | 1308 | <context-group purpose="location"><context context-type="sourcefile">../app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1309 | <source>Previous</source><target state="new">Previous</target> | ||
1310 | <context-group purpose="location"> | ||
1311 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
1312 | <context context-type="linenumber">1</context> | ||
1313 | </context-group> | ||
1314 | </trans-unit> | ||
1315 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> | 1309 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> |
1316 | <source> | 1310 | <source> |
1317 | Configure | 1311 | Configure |
@@ -5765,157 +5759,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5765 | <source>Next</source> | 5759 | <source>Next</source> |
5766 | <target state="new">Next</target> | 5760 | <target state="new">Next</target> |
5767 | 5761 | ||
5768 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="c3b08b07b5ab98e7cdcf18df39355690ab7d3884" datatype="html"> | 5762 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit><trans-unit id="9082008222523034483" datatype="html"> |
5769 | <source>Previous month</source><target state="new">Previous month</target> | ||
5770 | <context-group purpose="location"> | ||
5771 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5772 | <context context-type="linenumber">1</context> | ||
5773 | </context-group> | ||
5774 | </trans-unit><trans-unit id="4bd046985cfe13040d5ef0cd881edce0968a111a" datatype="html"> | ||
5775 | <source>Next month</source><target state="new">Next month</target> | ||
5776 | <context-group purpose="location"> | ||
5777 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5778 | <context context-type="linenumber">1</context> | ||
5779 | </context-group> | ||
5780 | </trans-unit><trans-unit id="1dbc84807f35518112f62e5775d1daebd3d8462b" datatype="html"> | ||
5781 | <source>Select month</source><target state="new">Select month</target> | ||
5782 | <context-group purpose="location"> | ||
5783 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5784 | <context context-type="linenumber">1</context> | ||
5785 | </context-group> | ||
5786 | </trans-unit><trans-unit id="8ceb09d002bf0c5d1cac171dfbffe1805d2b3962" datatype="html"> | ||
5787 | <source>Select year</source><target state="new">Select year</target> | ||
5788 | <context-group purpose="location"> | ||
5789 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5790 | <context context-type="linenumber">1</context> | ||
5791 | </context-group> | ||
5792 | </trans-unit><trans-unit id="656506dfd46380956a655f919f1498d018f75ca0" datatype="html"> | ||
5793 | <source>««</source><target state="new">««</target> | ||
5794 | <context-group purpose="location"> | ||
5795 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5796 | <context context-type="linenumber">1</context> | ||
5797 | </context-group> | ||
5798 | </trans-unit><trans-unit id="6e52b6ee77a4848d899dd21b591c6fd499e3aef3" datatype="html"> | ||
5799 | <source>«</source><target state="new">«</target> | ||
5800 | <context-group purpose="location"> | ||
5801 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5802 | <context context-type="linenumber">1</context> | ||
5803 | </context-group> | ||
5804 | </trans-unit><trans-unit id="ba9cbb4ff311464308a3627e4f1c3345d9fe6d7d" datatype="html"> | ||
5805 | <source>»</source><target state="new">»</target> | ||
5806 | <context-group purpose="location"> | ||
5807 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5808 | <context context-type="linenumber">1</context> | ||
5809 | </context-group> | ||
5810 | </trans-unit><trans-unit id="49f27a460bc97e7e00be5b37098bfa79884fc7d9" datatype="html"> | ||
5811 | <source>»»</source><target state="new">»»</target> | ||
5812 | <context-group purpose="location"> | ||
5813 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5814 | <context context-type="linenumber">1</context> | ||
5815 | </context-group> | ||
5816 | </trans-unit><trans-unit id="f2f852318759c6396b5d3d17031d53817d7b38cc" datatype="html"> | ||
5817 | <source>First</source><target state="new">First</target> | ||
5818 | <context-group purpose="location"> | ||
5819 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5820 | <context context-type="linenumber">1</context> | ||
5821 | </context-group> | ||
5822 | </trans-unit><trans-unit id="5c729788ba138508aca1bec050b610f7bf81db3e" datatype="html"> | ||
5823 | <source>Last</source><target state="new">Last</target> | ||
5824 | <context-group purpose="location"> | ||
5825 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5826 | <context context-type="linenumber">1</context> | ||
5827 | </context-group> | ||
5828 | </trans-unit><trans-unit id="f8e9a947b9db4252c0e9905765338712f2fd032f" datatype="html"> | ||
5829 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5830 | <context-group purpose="location"> | ||
5831 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5832 | <context context-type="linenumber">1</context> | ||
5833 | </context-group> | ||
5834 | </trans-unit><trans-unit id="ce676ab1d6d98f85c836381cf100a4a91ef95a1f" datatype="html"> | ||
5835 | <source>HH</source><target state="new">HH</target> | ||
5836 | <context-group purpose="location"> | ||
5837 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5838 | <context context-type="linenumber">1</context> | ||
5839 | </context-group> | ||
5840 | </trans-unit><trans-unit id="3bbce5fef7e1151da052a4e529453edb340e3912" datatype="html"> | ||
5841 | <source>Hours</source><target state="new">Hours</target> | ||
5842 | <context-group purpose="location"> | ||
5843 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5844 | <context context-type="linenumber">1</context> | ||
5845 | </context-group> | ||
5846 | </trans-unit><trans-unit id="72c8edf6a50068a05bde70991e36b1e881f4ca54" datatype="html"> | ||
5847 | <source>MM</source><target state="new">MM</target> | ||
5848 | <context-group purpose="location"> | ||
5849 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5850 | <context context-type="linenumber">1</context> | ||
5851 | </context-group> | ||
5852 | </trans-unit><trans-unit id="41e62daa962947c0d23ded0981975d1bddf0bf38" datatype="html"> | ||
5853 | <source>Minutes</source><target state="new">Minutes</target> | ||
5854 | <context-group purpose="location"> | ||
5855 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5856 | <context context-type="linenumber">1</context> | ||
5857 | </context-group> | ||
5858 | </trans-unit><trans-unit id="cb74bc1d625a6c1742f0d7d47306cf495780c218" datatype="html"> | ||
5859 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
5860 | <context-group purpose="location"> | ||
5861 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5862 | <context context-type="linenumber">1</context> | ||
5863 | </context-group> | ||
5864 | </trans-unit><trans-unit id="147c7a19429da7d999e247d22e33fee370b1691b" datatype="html"> | ||
5865 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
5866 | <context-group purpose="location"> | ||
5867 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5868 | <context context-type="linenumber">1</context> | ||
5869 | </context-group> | ||
5870 | </trans-unit><trans-unit id="f5a4a3bc05e053f6732475d0e74875ec01c3a348" datatype="html"> | ||
5871 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
5872 | <context-group purpose="location"> | ||
5873 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5874 | <context context-type="linenumber">1</context> | ||
5875 | </context-group> | ||
5876 | </trans-unit><trans-unit id="c1a6899e529c096da5b660385d4e77fe1f7ad271" datatype="html"> | ||
5877 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
5878 | <context-group purpose="location"> | ||
5879 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5880 | <context context-type="linenumber">1</context> | ||
5881 | </context-group> | ||
5882 | </trans-unit><trans-unit id="ebe38d36a40a2383c5fefa9b4608ffbda08bd4a3" datatype="html"> | ||
5883 | <source>SS</source><target state="new">SS</target> | ||
5884 | <context-group purpose="location"> | ||
5885 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5886 | <context context-type="linenumber">1</context> | ||
5887 | </context-group> | ||
5888 | </trans-unit><trans-unit id="4f2ed9e71a7c981db3e50ae2fedb28aff2ec4e6c" datatype="html"> | ||
5889 | <source>Seconds</source><target state="new">Seconds</target> | ||
5890 | <context-group purpose="location"> | ||
5891 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5892 | <context context-type="linenumber">1</context> | ||
5893 | </context-group> | ||
5894 | </trans-unit><trans-unit id="912322ecee7d659d04dcf494a70e22e49d334b26" datatype="html"> | ||
5895 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
5896 | <context-group purpose="location"> | ||
5897 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5898 | <context context-type="linenumber">1</context> | ||
5899 | </context-group> | ||
5900 | </trans-unit><trans-unit id="5db47ac104294243a70eb9124fbea9d0004ddf69" datatype="html"> | ||
5901 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
5902 | <context-group purpose="location"> | ||
5903 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5904 | <context context-type="linenumber">1</context> | ||
5905 | </context-group> | ||
5906 | </trans-unit><trans-unit id="8d6e691e10306c1b34c6b26805151aaea320ef7f" datatype="html"> | ||
5907 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5908 | <context-group purpose="location"> | ||
5909 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5910 | <context context-type="linenumber">1</context> | ||
5911 | </context-group> | ||
5912 | </trans-unit><trans-unit id="69a1f176a93998876952adac57c3bc3863b6105e" datatype="html"> | ||
5913 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5914 | <context-group purpose="location"> | ||
5915 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5916 | <context context-type="linenumber">1</context> | ||
5917 | </context-group> | ||
5918 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
5919 | <source>Get help</source><target state="new">Get help</target> | 5763 | <source>Get help</source><target state="new">Get help</target> |
5920 | <context-group purpose="location"> | 5764 | <context-group purpose="location"> |
5921 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 5765 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> |
@@ -9462,7 +9306,193 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9462 | <source>Only users of this instance can see this video</source> | 9306 | <source>Only users of this instance can see this video</source> |
9463 | <target state="new">Only users of this instance can see this video</target> | 9307 | <target state="new">Only users of this instance can see this video</target> |
9464 | 9308 | ||
9465 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit> | 9309 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit><trans-unit id="ngb.alert.close" datatype="html"> |
9310 | <source>Close</source><target state="new">Close</target> | ||
9311 | <context-group purpose="location"> | ||
9312 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/alert/alert.ts</context> | ||
9313 | <context context-type="linenumber">74</context> | ||
9314 | </context-group> | ||
9315 | </trans-unit><trans-unit id="ngb.carousel.previous" datatype="html"> | ||
9316 | <source>Previous</source><target state="new">Previous</target> | ||
9317 | <context-group purpose="location"> | ||
9318 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9319 | <context context-type="linenumber">349</context> | ||
9320 | </context-group> | ||
9321 | </trans-unit><trans-unit id="ngb.carousel.next" datatype="html"> | ||
9322 | <source>Next</source><target state="new">Next</target> | ||
9323 | <context-group purpose="location"> | ||
9324 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9325 | <context context-type="linenumber">349</context> | ||
9326 | </context-group> | ||
9327 | </trans-unit><trans-unit id="ngb.datepicker.previous-month" datatype="html"> | ||
9328 | <source>Previous month</source><target state="new">Previous month</target> | ||
9329 | <context-group purpose="location"> | ||
9330 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation.ts</context> | ||
9331 | <context context-type="linenumber">69</context> | ||
9332 | </context-group> | ||
9333 | </trans-unit><trans-unit id="ngb.datepicker.next-month" datatype="html"> | ||
9334 | <source>Next month</source><target state="new">Next month</target> | ||
9335 | <context-group purpose="location"> | ||
9336 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-month.ts</context> | ||
9337 | <context context-type="linenumber">72</context> | ||
9338 | </context-group> | ||
9339 | </trans-unit><trans-unit id="ngb.datepicker.select-month" datatype="html"> | ||
9340 | <source>Select month</source><target state="new">Select month</target> | ||
9341 | <context-group purpose="location"> | ||
9342 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9343 | <context context-type="linenumber">74</context> | ||
9344 | </context-group> | ||
9345 | </trans-unit><trans-unit id="ngb.datepicker.select-year" datatype="html"> | ||
9346 | <source>Select year</source><target state="new">Select year</target> | ||
9347 | <context-group purpose="location"> | ||
9348 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9349 | <context context-type="linenumber">74</context> | ||
9350 | </context-group> | ||
9351 | </trans-unit><trans-unit id="ngb.pagination.first" datatype="html"> | ||
9352 | <source>««</source><target state="new">««</target> | ||
9353 | <context-group purpose="location"> | ||
9354 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9355 | <context context-type="linenumber">404</context> | ||
9356 | </context-group> | ||
9357 | </trans-unit><trans-unit id="ngb.pagination.previous" datatype="html"> | ||
9358 | <source>«</source><target state="new">«</target> | ||
9359 | <context-group purpose="location"> | ||
9360 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9361 | <context context-type="linenumber">404</context> | ||
9362 | </context-group> | ||
9363 | </trans-unit><trans-unit id="ngb.pagination.next" datatype="html"> | ||
9364 | <source>»</source><target state="new">»</target> | ||
9365 | <context-group purpose="location"> | ||
9366 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9367 | <context context-type="linenumber">404</context> | ||
9368 | </context-group> | ||
9369 | </trans-unit><trans-unit id="ngb.pagination.last" datatype="html"> | ||
9370 | <source>»»</source><target state="new">»»</target> | ||
9371 | <context-group purpose="location"> | ||
9372 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9373 | <context context-type="linenumber">404</context> | ||
9374 | </context-group> | ||
9375 | </trans-unit><trans-unit id="ngb.pagination.first-aria" datatype="html"> | ||
9376 | <source>First</source><target state="new">First</target> | ||
9377 | <context-group purpose="location"> | ||
9378 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9379 | <context context-type="linenumber">404</context> | ||
9380 | </context-group> | ||
9381 | </trans-unit><trans-unit id="ngb.pagination.previous-aria" datatype="html"> | ||
9382 | <source>Previous</source><target state="new">Previous</target> | ||
9383 | <context-group purpose="location"> | ||
9384 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9385 | <context context-type="linenumber">404</context> | ||
9386 | </context-group> | ||
9387 | </trans-unit><trans-unit id="ngb.pagination.next-aria" datatype="html"> | ||
9388 | <source>Next</source><target state="new">Next</target> | ||
9389 | <context-group purpose="location"> | ||
9390 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9391 | <context context-type="linenumber">404</context> | ||
9392 | </context-group> | ||
9393 | </trans-unit><trans-unit id="ngb.pagination.last-aria" datatype="html"> | ||
9394 | <source>Last</source><target state="new">Last</target> | ||
9395 | <context-group purpose="location"> | ||
9396 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9397 | <context context-type="linenumber">404</context> | ||
9398 | </context-group> | ||
9399 | </trans-unit><trans-unit id="ngb.progressbar.value" datatype="html"> | ||
9400 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9401 | <context-group purpose="location"> | ||
9402 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/progressbar/progressbar.ts</context> | ||
9403 | <context context-type="linenumber">101</context> | ||
9404 | </context-group> | ||
9405 | </trans-unit><trans-unit id="ngb.timepicker.HH" datatype="html"> | ||
9406 | <source>HH</source><target state="new">HH</target> | ||
9407 | <context-group purpose="location"> | ||
9408 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9409 | <context context-type="linenumber">296</context> | ||
9410 | </context-group> | ||
9411 | </trans-unit><trans-unit id="ngb.timepicker.hours" datatype="html"> | ||
9412 | <source>Hours</source><target state="new">Hours</target> | ||
9413 | <context-group purpose="location"> | ||
9414 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9415 | <context context-type="linenumber">296</context> | ||
9416 | </context-group> | ||
9417 | </trans-unit><trans-unit id="ngb.timepicker.MM" datatype="html"> | ||
9418 | <source>MM</source><target state="new">MM</target> | ||
9419 | <context-group purpose="location"> | ||
9420 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9421 | <context context-type="linenumber">296</context> | ||
9422 | </context-group> | ||
9423 | </trans-unit><trans-unit id="ngb.timepicker.minutes" datatype="html"> | ||
9424 | <source>Minutes</source><target state="new">Minutes</target> | ||
9425 | <context-group purpose="location"> | ||
9426 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9427 | <context context-type="linenumber">296</context> | ||
9428 | </context-group> | ||
9429 | </trans-unit><trans-unit id="ngb.timepicker.increment-hours" datatype="html"> | ||
9430 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
9431 | <context-group purpose="location"> | ||
9432 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9433 | <context context-type="linenumber">296</context> | ||
9434 | </context-group> | ||
9435 | </trans-unit><trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> | ||
9436 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
9437 | <context-group purpose="location"> | ||
9438 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9439 | <context context-type="linenumber">296</context> | ||
9440 | </context-group> | ||
9441 | </trans-unit><trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> | ||
9442 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
9443 | <context-group purpose="location"> | ||
9444 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9445 | <context context-type="linenumber">296</context> | ||
9446 | </context-group> | ||
9447 | </trans-unit><trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> | ||
9448 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
9449 | <context-group purpose="location"> | ||
9450 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9451 | <context context-type="linenumber">296</context> | ||
9452 | </context-group> | ||
9453 | </trans-unit><trans-unit id="ngb.timepicker.SS" datatype="html"> | ||
9454 | <source>SS</source><target state="new">SS</target> | ||
9455 | <context-group purpose="location"> | ||
9456 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9457 | <context context-type="linenumber">296</context> | ||
9458 | </context-group> | ||
9459 | </trans-unit><trans-unit id="ngb.timepicker.seconds" datatype="html"> | ||
9460 | <source>Seconds</source><target state="new">Seconds</target> | ||
9461 | <context-group purpose="location"> | ||
9462 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9463 | <context context-type="linenumber">296</context> | ||
9464 | </context-group> | ||
9465 | </trans-unit><trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> | ||
9466 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
9467 | <context-group purpose="location"> | ||
9468 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9469 | <context context-type="linenumber">296</context> | ||
9470 | </context-group> | ||
9471 | </trans-unit><trans-unit id="ngb.timepicker.decrement-seconds" datatype="html"> | ||
9472 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
9473 | <context-group purpose="location"> | ||
9474 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9475 | <context context-type="linenumber">296</context> | ||
9476 | </context-group> | ||
9477 | </trans-unit><trans-unit id="ngb.timepicker.PM" datatype="html"> | ||
9478 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9479 | <context-group purpose="location"> | ||
9480 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9481 | <context context-type="linenumber">296</context> | ||
9482 | </context-group> | ||
9483 | </trans-unit><trans-unit id="ngb.timepicker.AM" datatype="html"> | ||
9484 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9485 | <context-group purpose="location"> | ||
9486 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9487 | <context context-type="linenumber">296</context> | ||
9488 | </context-group> | ||
9489 | </trans-unit><trans-unit id="ngb.toast.close-aria" datatype="html"> | ||
9490 | <source>Close</source><target state="new">Close</target> | ||
9491 | <context-group purpose="location"> | ||
9492 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/toast/toast.ts</context> | ||
9493 | <context context-type="linenumber">137</context> | ||
9494 | </context-group> | ||
9495 | </trans-unit> | ||
9466 | <trans-unit id="5210096066382592800"> | 9496 | <trans-unit id="5210096066382592800"> |
9467 | <source>Video to import updated.</source> | 9497 | <source>Video to import updated.</source> |
9468 | <target>Video to import updated.</target> | 9498 | <target>Video to import updated.</target> |
diff --git a/client/src/locale/angular.en-US.xlf b/client/src/locale/angular.en-US.xlf index a43e9f2de..cdf202d52 100644 --- a/client/src/locale/angular.en-US.xlf +++ b/client/src/locale/angular.en-US.xlf | |||
@@ -1070,13 +1070,7 @@ The link will expire within 1 hour.</target> | |||
1070 | <source>Close</source> | 1070 | <source>Close</source> |
1071 | <target state="final">Close</target> | 1071 | <target state="final">Close</target> |
1072 | 1072 | ||
1073 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="680d5c75b7fd8d37961083608b9fcdc4167b4c43" datatype="html"> | 1073 | <context-group purpose="location"><context context-type="sourcefile">../app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1074 | <source>Previous</source><target state="final">Previous</target> | ||
1075 | <context-group purpose="location"> | ||
1076 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
1077 | <context context-type="linenumber">1</context> | ||
1078 | </context-group> | ||
1079 | </trans-unit> | ||
1080 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> | 1074 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> |
1081 | <source> | 1075 | <source> |
1082 | Configure | 1076 | Configure |
@@ -5153,157 +5147,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5153 | <source>Next</source> | 5147 | <source>Next</source> |
5154 | <target state="final">Next</target> | 5148 | <target state="final">Next</target> |
5155 | 5149 | ||
5156 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="c3b08b07b5ab98e7cdcf18df39355690ab7d3884" datatype="html"> | 5150 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit><trans-unit id="9082008222523034483" datatype="html"> |
5157 | <source>Previous month</source><target state="final">Previous month</target> | ||
5158 | <context-group purpose="location"> | ||
5159 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5160 | <context context-type="linenumber">1</context> | ||
5161 | </context-group> | ||
5162 | </trans-unit><trans-unit id="4bd046985cfe13040d5ef0cd881edce0968a111a" datatype="html"> | ||
5163 | <source>Next month</source><target state="final">Next month</target> | ||
5164 | <context-group purpose="location"> | ||
5165 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5166 | <context context-type="linenumber">1</context> | ||
5167 | </context-group> | ||
5168 | </trans-unit><trans-unit id="1dbc84807f35518112f62e5775d1daebd3d8462b" datatype="html"> | ||
5169 | <source>Select month</source><target state="final">Select month</target> | ||
5170 | <context-group purpose="location"> | ||
5171 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5172 | <context context-type="linenumber">1</context> | ||
5173 | </context-group> | ||
5174 | </trans-unit><trans-unit id="8ceb09d002bf0c5d1cac171dfbffe1805d2b3962" datatype="html"> | ||
5175 | <source>Select year</source><target state="final">Select year</target> | ||
5176 | <context-group purpose="location"> | ||
5177 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5178 | <context context-type="linenumber">1</context> | ||
5179 | </context-group> | ||
5180 | </trans-unit><trans-unit id="656506dfd46380956a655f919f1498d018f75ca0" datatype="html"> | ||
5181 | <source>««</source><target state="final">««</target> | ||
5182 | <context-group purpose="location"> | ||
5183 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5184 | <context context-type="linenumber">1</context> | ||
5185 | </context-group> | ||
5186 | </trans-unit><trans-unit id="6e52b6ee77a4848d899dd21b591c6fd499e3aef3" datatype="html"> | ||
5187 | <source>«</source><target state="final">«</target> | ||
5188 | <context-group purpose="location"> | ||
5189 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5190 | <context context-type="linenumber">1</context> | ||
5191 | </context-group> | ||
5192 | </trans-unit><trans-unit id="ba9cbb4ff311464308a3627e4f1c3345d9fe6d7d" datatype="html"> | ||
5193 | <source>»</source><target state="final">»</target> | ||
5194 | <context-group purpose="location"> | ||
5195 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5196 | <context context-type="linenumber">1</context> | ||
5197 | </context-group> | ||
5198 | </trans-unit><trans-unit id="49f27a460bc97e7e00be5b37098bfa79884fc7d9" datatype="html"> | ||
5199 | <source>»»</source><target state="final">»»</target> | ||
5200 | <context-group purpose="location"> | ||
5201 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5202 | <context context-type="linenumber">1</context> | ||
5203 | </context-group> | ||
5204 | </trans-unit><trans-unit id="f2f852318759c6396b5d3d17031d53817d7b38cc" datatype="html"> | ||
5205 | <source>First</source><target state="final">First</target> | ||
5206 | <context-group purpose="location"> | ||
5207 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5208 | <context context-type="linenumber">1</context> | ||
5209 | </context-group> | ||
5210 | </trans-unit><trans-unit id="5c729788ba138508aca1bec050b610f7bf81db3e" datatype="html"> | ||
5211 | <source>Last</source><target state="final">Last</target> | ||
5212 | <context-group purpose="location"> | ||
5213 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5214 | <context context-type="linenumber">1</context> | ||
5215 | </context-group> | ||
5216 | </trans-unit><trans-unit id="f8e9a947b9db4252c0e9905765338712f2fd032f" datatype="html"> | ||
5217 | <source><x id="INTERPOLATION"/></source><target state="final"><x id="INTERPOLATION"/></target> | ||
5218 | <context-group purpose="location"> | ||
5219 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5220 | <context context-type="linenumber">1</context> | ||
5221 | </context-group> | ||
5222 | </trans-unit><trans-unit id="ce676ab1d6d98f85c836381cf100a4a91ef95a1f" datatype="html"> | ||
5223 | <source>HH</source><target state="final">HH</target> | ||
5224 | <context-group purpose="location"> | ||
5225 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5226 | <context context-type="linenumber">1</context> | ||
5227 | </context-group> | ||
5228 | </trans-unit><trans-unit id="3bbce5fef7e1151da052a4e529453edb340e3912" datatype="html"> | ||
5229 | <source>Hours</source><target state="final">Hours</target> | ||
5230 | <context-group purpose="location"> | ||
5231 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5232 | <context context-type="linenumber">1</context> | ||
5233 | </context-group> | ||
5234 | </trans-unit><trans-unit id="72c8edf6a50068a05bde70991e36b1e881f4ca54" datatype="html"> | ||
5235 | <source>MM</source><target state="final">MM</target> | ||
5236 | <context-group purpose="location"> | ||
5237 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5238 | <context context-type="linenumber">1</context> | ||
5239 | </context-group> | ||
5240 | </trans-unit><trans-unit id="41e62daa962947c0d23ded0981975d1bddf0bf38" datatype="html"> | ||
5241 | <source>Minutes</source><target state="final">Minutes</target> | ||
5242 | <context-group purpose="location"> | ||
5243 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5244 | <context context-type="linenumber">1</context> | ||
5245 | </context-group> | ||
5246 | </trans-unit><trans-unit id="cb74bc1d625a6c1742f0d7d47306cf495780c218" datatype="html"> | ||
5247 | <source>Increment hours</source><target state="final">Increment hours</target> | ||
5248 | <context-group purpose="location"> | ||
5249 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5250 | <context context-type="linenumber">1</context> | ||
5251 | </context-group> | ||
5252 | </trans-unit><trans-unit id="147c7a19429da7d999e247d22e33fee370b1691b" datatype="html"> | ||
5253 | <source>Decrement hours</source><target state="final">Decrement hours</target> | ||
5254 | <context-group purpose="location"> | ||
5255 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5256 | <context context-type="linenumber">1</context> | ||
5257 | </context-group> | ||
5258 | </trans-unit><trans-unit id="f5a4a3bc05e053f6732475d0e74875ec01c3a348" datatype="html"> | ||
5259 | <source>Increment minutes</source><target state="final">Increment minutes</target> | ||
5260 | <context-group purpose="location"> | ||
5261 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5262 | <context context-type="linenumber">1</context> | ||
5263 | </context-group> | ||
5264 | </trans-unit><trans-unit id="c1a6899e529c096da5b660385d4e77fe1f7ad271" datatype="html"> | ||
5265 | <source>Decrement minutes</source><target state="final">Decrement minutes</target> | ||
5266 | <context-group purpose="location"> | ||
5267 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5268 | <context context-type="linenumber">1</context> | ||
5269 | </context-group> | ||
5270 | </trans-unit><trans-unit id="ebe38d36a40a2383c5fefa9b4608ffbda08bd4a3" datatype="html"> | ||
5271 | <source>SS</source><target state="final">SS</target> | ||
5272 | <context-group purpose="location"> | ||
5273 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5274 | <context context-type="linenumber">1</context> | ||
5275 | </context-group> | ||
5276 | </trans-unit><trans-unit id="4f2ed9e71a7c981db3e50ae2fedb28aff2ec4e6c" datatype="html"> | ||
5277 | <source>Seconds</source><target state="final">Seconds</target> | ||
5278 | <context-group purpose="location"> | ||
5279 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5280 | <context context-type="linenumber">1</context> | ||
5281 | </context-group> | ||
5282 | </trans-unit><trans-unit id="912322ecee7d659d04dcf494a70e22e49d334b26" datatype="html"> | ||
5283 | <source>Increment seconds</source><target state="final">Increment seconds</target> | ||
5284 | <context-group purpose="location"> | ||
5285 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5286 | <context context-type="linenumber">1</context> | ||
5287 | </context-group> | ||
5288 | </trans-unit><trans-unit id="5db47ac104294243a70eb9124fbea9d0004ddf69" datatype="html"> | ||
5289 | <source>Decrement seconds</source><target state="final">Decrement seconds</target> | ||
5290 | <context-group purpose="location"> | ||
5291 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5292 | <context context-type="linenumber">1</context> | ||
5293 | </context-group> | ||
5294 | </trans-unit><trans-unit id="8d6e691e10306c1b34c6b26805151aaea320ef7f" datatype="html"> | ||
5295 | <source><x id="INTERPOLATION"/></source><target state="final"><x id="INTERPOLATION"/></target> | ||
5296 | <context-group purpose="location"> | ||
5297 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5298 | <context context-type="linenumber">1</context> | ||
5299 | </context-group> | ||
5300 | </trans-unit><trans-unit id="69a1f176a93998876952adac57c3bc3863b6105e" datatype="html"> | ||
5301 | <source><x id="INTERPOLATION"/></source><target state="final"><x id="INTERPOLATION"/></target> | ||
5302 | <context-group purpose="location"> | ||
5303 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5304 | <context context-type="linenumber">1</context> | ||
5305 | </context-group> | ||
5306 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
5307 | <source>Get help</source><target state="final">Get help</target> | 5151 | <source>Get help</source><target state="final">Get help</target> |
5308 | <context-group purpose="location"> | 5152 | <context-group purpose="location"> |
5309 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 5153 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> |
@@ -8733,7 +8577,193 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8733 | <source>Only users of this instance can see this video</source> | 8577 | <source>Only users of this instance can see this video</source> |
8734 | <target state="final">Only users of this instance can see this video</target> | 8578 | <target state="final">Only users of this instance can see this video</target> |
8735 | 8579 | ||
8736 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit> | 8580 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit><trans-unit id="ngb.alert.close" datatype="html"> |
8581 | <source>Close</source><target state="final">Close</target> | ||
8582 | <context-group purpose="location"> | ||
8583 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/alert/alert.ts</context> | ||
8584 | <context context-type="linenumber">74</context> | ||
8585 | </context-group> | ||
8586 | </trans-unit><trans-unit id="ngb.carousel.previous" datatype="html"> | ||
8587 | <source>Previous</source><target state="final">Previous</target> | ||
8588 | <context-group purpose="location"> | ||
8589 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
8590 | <context context-type="linenumber">349</context> | ||
8591 | </context-group> | ||
8592 | </trans-unit><trans-unit id="ngb.carousel.next" datatype="html"> | ||
8593 | <source>Next</source><target state="final">Next</target> | ||
8594 | <context-group purpose="location"> | ||
8595 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
8596 | <context context-type="linenumber">349</context> | ||
8597 | </context-group> | ||
8598 | </trans-unit><trans-unit id="ngb.datepicker.previous-month" datatype="html"> | ||
8599 | <source>Previous month</source><target state="final">Previous month</target> | ||
8600 | <context-group purpose="location"> | ||
8601 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation.ts</context> | ||
8602 | <context context-type="linenumber">69</context> | ||
8603 | </context-group> | ||
8604 | </trans-unit><trans-unit id="ngb.datepicker.next-month" datatype="html"> | ||
8605 | <source>Next month</source><target state="final">Next month</target> | ||
8606 | <context-group purpose="location"> | ||
8607 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-month.ts</context> | ||
8608 | <context context-type="linenumber">72</context> | ||
8609 | </context-group> | ||
8610 | </trans-unit><trans-unit id="ngb.datepicker.select-month" datatype="html"> | ||
8611 | <source>Select month</source><target state="final">Select month</target> | ||
8612 | <context-group purpose="location"> | ||
8613 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
8614 | <context context-type="linenumber">74</context> | ||
8615 | </context-group> | ||
8616 | </trans-unit><trans-unit id="ngb.datepicker.select-year" datatype="html"> | ||
8617 | <source>Select year</source><target state="final">Select year</target> | ||
8618 | <context-group purpose="location"> | ||
8619 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
8620 | <context context-type="linenumber">74</context> | ||
8621 | </context-group> | ||
8622 | </trans-unit><trans-unit id="ngb.pagination.first" datatype="html"> | ||
8623 | <source>««</source><target state="final">««</target> | ||
8624 | <context-group purpose="location"> | ||
8625 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8626 | <context context-type="linenumber">404</context> | ||
8627 | </context-group> | ||
8628 | </trans-unit><trans-unit id="ngb.pagination.previous" datatype="html"> | ||
8629 | <source>«</source><target state="final">«</target> | ||
8630 | <context-group purpose="location"> | ||
8631 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8632 | <context context-type="linenumber">404</context> | ||
8633 | </context-group> | ||
8634 | </trans-unit><trans-unit id="ngb.pagination.next" datatype="html"> | ||
8635 | <source>»</source><target state="final">»</target> | ||
8636 | <context-group purpose="location"> | ||
8637 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8638 | <context context-type="linenumber">404</context> | ||
8639 | </context-group> | ||
8640 | </trans-unit><trans-unit id="ngb.pagination.last" datatype="html"> | ||
8641 | <source>»»</source><target state="final">»»</target> | ||
8642 | <context-group purpose="location"> | ||
8643 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8644 | <context context-type="linenumber">404</context> | ||
8645 | </context-group> | ||
8646 | </trans-unit><trans-unit id="ngb.pagination.first-aria" datatype="html"> | ||
8647 | <source>First</source><target state="final">First</target> | ||
8648 | <context-group purpose="location"> | ||
8649 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8650 | <context context-type="linenumber">404</context> | ||
8651 | </context-group> | ||
8652 | </trans-unit><trans-unit id="ngb.pagination.previous-aria" datatype="html"> | ||
8653 | <source>Previous</source><target state="final">Previous</target> | ||
8654 | <context-group purpose="location"> | ||
8655 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8656 | <context context-type="linenumber">404</context> | ||
8657 | </context-group> | ||
8658 | </trans-unit><trans-unit id="ngb.pagination.next-aria" datatype="html"> | ||
8659 | <source>Next</source><target state="final">Next</target> | ||
8660 | <context-group purpose="location"> | ||
8661 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8662 | <context context-type="linenumber">404</context> | ||
8663 | </context-group> | ||
8664 | </trans-unit><trans-unit id="ngb.pagination.last-aria" datatype="html"> | ||
8665 | <source>Last</source><target state="final">Last</target> | ||
8666 | <context-group purpose="location"> | ||
8667 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8668 | <context context-type="linenumber">404</context> | ||
8669 | </context-group> | ||
8670 | </trans-unit><trans-unit id="ngb.progressbar.value" datatype="html"> | ||
8671 | <source><x id="INTERPOLATION"/></source><target state="final"><x id="INTERPOLATION"/></target> | ||
8672 | <context-group purpose="location"> | ||
8673 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/progressbar/progressbar.ts</context> | ||
8674 | <context context-type="linenumber">101</context> | ||
8675 | </context-group> | ||
8676 | </trans-unit><trans-unit id="ngb.timepicker.HH" datatype="html"> | ||
8677 | <source>HH</source><target state="final">HH</target> | ||
8678 | <context-group purpose="location"> | ||
8679 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8680 | <context context-type="linenumber">296</context> | ||
8681 | </context-group> | ||
8682 | </trans-unit><trans-unit id="ngb.timepicker.hours" datatype="html"> | ||
8683 | <source>Hours</source><target state="final">Hours</target> | ||
8684 | <context-group purpose="location"> | ||
8685 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8686 | <context context-type="linenumber">296</context> | ||
8687 | </context-group> | ||
8688 | </trans-unit><trans-unit id="ngb.timepicker.MM" datatype="html"> | ||
8689 | <source>MM</source><target state="final">MM</target> | ||
8690 | <context-group purpose="location"> | ||
8691 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8692 | <context context-type="linenumber">296</context> | ||
8693 | </context-group> | ||
8694 | </trans-unit><trans-unit id="ngb.timepicker.minutes" datatype="html"> | ||
8695 | <source>Minutes</source><target state="final">Minutes</target> | ||
8696 | <context-group purpose="location"> | ||
8697 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8698 | <context context-type="linenumber">296</context> | ||
8699 | </context-group> | ||
8700 | </trans-unit><trans-unit id="ngb.timepicker.increment-hours" datatype="html"> | ||
8701 | <source>Increment hours</source><target state="final">Increment hours</target> | ||
8702 | <context-group purpose="location"> | ||
8703 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8704 | <context context-type="linenumber">296</context> | ||
8705 | </context-group> | ||
8706 | </trans-unit><trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> | ||
8707 | <source>Decrement hours</source><target state="final">Decrement hours</target> | ||
8708 | <context-group purpose="location"> | ||
8709 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8710 | <context context-type="linenumber">296</context> | ||
8711 | </context-group> | ||
8712 | </trans-unit><trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> | ||
8713 | <source>Increment minutes</source><target state="final">Increment minutes</target> | ||
8714 | <context-group purpose="location"> | ||
8715 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8716 | <context context-type="linenumber">296</context> | ||
8717 | </context-group> | ||
8718 | </trans-unit><trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> | ||
8719 | <source>Decrement minutes</source><target state="final">Decrement minutes</target> | ||
8720 | <context-group purpose="location"> | ||
8721 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8722 | <context context-type="linenumber">296</context> | ||
8723 | </context-group> | ||
8724 | </trans-unit><trans-unit id="ngb.timepicker.SS" datatype="html"> | ||
8725 | <source>SS</source><target state="final">SS</target> | ||
8726 | <context-group purpose="location"> | ||
8727 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8728 | <context context-type="linenumber">296</context> | ||
8729 | </context-group> | ||
8730 | </trans-unit><trans-unit id="ngb.timepicker.seconds" datatype="html"> | ||
8731 | <source>Seconds</source><target state="final">Seconds</target> | ||
8732 | <context-group purpose="location"> | ||
8733 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8734 | <context context-type="linenumber">296</context> | ||
8735 | </context-group> | ||
8736 | </trans-unit><trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> | ||
8737 | <source>Increment seconds</source><target state="final">Increment seconds</target> | ||
8738 | <context-group purpose="location"> | ||
8739 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8740 | <context context-type="linenumber">296</context> | ||
8741 | </context-group> | ||
8742 | </trans-unit><trans-unit id="ngb.timepicker.decrement-seconds" datatype="html"> | ||
8743 | <source>Decrement seconds</source><target state="final">Decrement seconds</target> | ||
8744 | <context-group purpose="location"> | ||
8745 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8746 | <context context-type="linenumber">296</context> | ||
8747 | </context-group> | ||
8748 | </trans-unit><trans-unit id="ngb.timepicker.PM" datatype="html"> | ||
8749 | <source><x id="INTERPOLATION"/></source><target state="final"><x id="INTERPOLATION"/></target> | ||
8750 | <context-group purpose="location"> | ||
8751 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8752 | <context context-type="linenumber">296</context> | ||
8753 | </context-group> | ||
8754 | </trans-unit><trans-unit id="ngb.timepicker.AM" datatype="html"> | ||
8755 | <source><x id="INTERPOLATION"/></source><target state="final"><x id="INTERPOLATION"/></target> | ||
8756 | <context-group purpose="location"> | ||
8757 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8758 | <context context-type="linenumber">296</context> | ||
8759 | </context-group> | ||
8760 | </trans-unit><trans-unit id="ngb.toast.close-aria" datatype="html"> | ||
8761 | <source>Close</source><target state="final">Close</target> | ||
8762 | <context-group purpose="location"> | ||
8763 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/toast/toast.ts</context> | ||
8764 | <context context-type="linenumber">137</context> | ||
8765 | </context-group> | ||
8766 | </trans-unit> | ||
8737 | <trans-unit id="5210096066382592800" datatype="html"> | 8767 | <trans-unit id="5210096066382592800" datatype="html"> |
8738 | <source>Video to import updated.</source> | 8768 | <source>Video to import updated.</source> |
8739 | <target state="final">Video to import updated.</target> | 8769 | <target state="final">Video to import updated.</target> |
diff --git a/client/src/locale/angular.eo.xlf b/client/src/locale/angular.eo.xlf index 02ea66a5c..3dc9a2725 100644 --- a/client/src/locale/angular.eo.xlf +++ b/client/src/locale/angular.eo.xlf | |||
@@ -1263,13 +1263,7 @@ The link will expire within 1 hour.</target> | |||
1263 | <source>Close</source> | 1263 | <source>Close</source> |
1264 | <target>Fermi</target> | 1264 | <target>Fermi</target> |
1265 | 1265 | ||
1266 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="680d5c75b7fd8d37961083608b9fcdc4167b4c43" datatype="html"> | 1266 | <context-group purpose="location"><context context-type="sourcefile">../app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1267 | <source>Previous</source><target state="new">Previous</target> | ||
1268 | <context-group purpose="location"> | ||
1269 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
1270 | <context context-type="linenumber">1</context> | ||
1271 | </context-group> | ||
1272 | </trans-unit> | ||
1273 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> | 1267 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> |
1274 | <source>Configure</source> | 1268 | <source>Configure</source> |
1275 | <target state="translated">Agordi</target> | 1269 | <target state="translated">Agordi</target> |
@@ -5557,157 +5551,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5557 | <source>Next</source> | 5551 | <source>Next</source> |
5558 | <target>Sekva</target> | 5552 | <target>Sekva</target> |
5559 | 5553 | ||
5560 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="c3b08b07b5ab98e7cdcf18df39355690ab7d3884" datatype="html"> | 5554 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit><trans-unit id="9082008222523034483" datatype="html"> |
5561 | <source>Previous month</source><target state="new">Previous month</target> | ||
5562 | <context-group purpose="location"> | ||
5563 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5564 | <context context-type="linenumber">1</context> | ||
5565 | </context-group> | ||
5566 | </trans-unit><trans-unit id="4bd046985cfe13040d5ef0cd881edce0968a111a" datatype="html"> | ||
5567 | <source>Next month</source><target state="new">Next month</target> | ||
5568 | <context-group purpose="location"> | ||
5569 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5570 | <context context-type="linenumber">1</context> | ||
5571 | </context-group> | ||
5572 | </trans-unit><trans-unit id="1dbc84807f35518112f62e5775d1daebd3d8462b" datatype="html"> | ||
5573 | <source>Select month</source><target state="new">Select month</target> | ||
5574 | <context-group purpose="location"> | ||
5575 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5576 | <context context-type="linenumber">1</context> | ||
5577 | </context-group> | ||
5578 | </trans-unit><trans-unit id="8ceb09d002bf0c5d1cac171dfbffe1805d2b3962" datatype="html"> | ||
5579 | <source>Select year</source><target state="new">Select year</target> | ||
5580 | <context-group purpose="location"> | ||
5581 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5582 | <context context-type="linenumber">1</context> | ||
5583 | </context-group> | ||
5584 | </trans-unit><trans-unit id="656506dfd46380956a655f919f1498d018f75ca0" datatype="html"> | ||
5585 | <source>««</source><target state="new">««</target> | ||
5586 | <context-group purpose="location"> | ||
5587 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5588 | <context context-type="linenumber">1</context> | ||
5589 | </context-group> | ||
5590 | </trans-unit><trans-unit id="6e52b6ee77a4848d899dd21b591c6fd499e3aef3" datatype="html"> | ||
5591 | <source>«</source><target state="new">«</target> | ||
5592 | <context-group purpose="location"> | ||
5593 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5594 | <context context-type="linenumber">1</context> | ||
5595 | </context-group> | ||
5596 | </trans-unit><trans-unit id="ba9cbb4ff311464308a3627e4f1c3345d9fe6d7d" datatype="html"> | ||
5597 | <source>»</source><target state="new">»</target> | ||
5598 | <context-group purpose="location"> | ||
5599 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5600 | <context context-type="linenumber">1</context> | ||
5601 | </context-group> | ||
5602 | </trans-unit><trans-unit id="49f27a460bc97e7e00be5b37098bfa79884fc7d9" datatype="html"> | ||
5603 | <source>»»</source><target state="new">»»</target> | ||
5604 | <context-group purpose="location"> | ||
5605 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5606 | <context context-type="linenumber">1</context> | ||
5607 | </context-group> | ||
5608 | </trans-unit><trans-unit id="f2f852318759c6396b5d3d17031d53817d7b38cc" datatype="html"> | ||
5609 | <source>First</source><target state="new">First</target> | ||
5610 | <context-group purpose="location"> | ||
5611 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5612 | <context context-type="linenumber">1</context> | ||
5613 | </context-group> | ||
5614 | </trans-unit><trans-unit id="5c729788ba138508aca1bec050b610f7bf81db3e" datatype="html"> | ||
5615 | <source>Last</source><target state="new">Last</target> | ||
5616 | <context-group purpose="location"> | ||
5617 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5618 | <context context-type="linenumber">1</context> | ||
5619 | </context-group> | ||
5620 | </trans-unit><trans-unit id="f8e9a947b9db4252c0e9905765338712f2fd032f" datatype="html"> | ||
5621 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5622 | <context-group purpose="location"> | ||
5623 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5624 | <context context-type="linenumber">1</context> | ||
5625 | </context-group> | ||
5626 | </trans-unit><trans-unit id="ce676ab1d6d98f85c836381cf100a4a91ef95a1f" datatype="html"> | ||
5627 | <source>HH</source><target state="new">HH</target> | ||
5628 | <context-group purpose="location"> | ||
5629 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5630 | <context context-type="linenumber">1</context> | ||
5631 | </context-group> | ||
5632 | </trans-unit><trans-unit id="3bbce5fef7e1151da052a4e529453edb340e3912" datatype="html"> | ||
5633 | <source>Hours</source><target state="new">Hours</target> | ||
5634 | <context-group purpose="location"> | ||
5635 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5636 | <context context-type="linenumber">1</context> | ||
5637 | </context-group> | ||
5638 | </trans-unit><trans-unit id="72c8edf6a50068a05bde70991e36b1e881f4ca54" datatype="html"> | ||
5639 | <source>MM</source><target state="new">MM</target> | ||
5640 | <context-group purpose="location"> | ||
5641 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5642 | <context context-type="linenumber">1</context> | ||
5643 | </context-group> | ||
5644 | </trans-unit><trans-unit id="41e62daa962947c0d23ded0981975d1bddf0bf38" datatype="html"> | ||
5645 | <source>Minutes</source><target state="new">Minutes</target> | ||
5646 | <context-group purpose="location"> | ||
5647 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5648 | <context context-type="linenumber">1</context> | ||
5649 | </context-group> | ||
5650 | </trans-unit><trans-unit id="cb74bc1d625a6c1742f0d7d47306cf495780c218" datatype="html"> | ||
5651 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
5652 | <context-group purpose="location"> | ||
5653 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5654 | <context context-type="linenumber">1</context> | ||
5655 | </context-group> | ||
5656 | </trans-unit><trans-unit id="147c7a19429da7d999e247d22e33fee370b1691b" datatype="html"> | ||
5657 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
5658 | <context-group purpose="location"> | ||
5659 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5660 | <context context-type="linenumber">1</context> | ||
5661 | </context-group> | ||
5662 | </trans-unit><trans-unit id="f5a4a3bc05e053f6732475d0e74875ec01c3a348" datatype="html"> | ||
5663 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
5664 | <context-group purpose="location"> | ||
5665 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5666 | <context context-type="linenumber">1</context> | ||
5667 | </context-group> | ||
5668 | </trans-unit><trans-unit id="c1a6899e529c096da5b660385d4e77fe1f7ad271" datatype="html"> | ||
5669 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
5670 | <context-group purpose="location"> | ||
5671 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5672 | <context context-type="linenumber">1</context> | ||
5673 | </context-group> | ||
5674 | </trans-unit><trans-unit id="ebe38d36a40a2383c5fefa9b4608ffbda08bd4a3" datatype="html"> | ||
5675 | <source>SS</source><target state="new">SS</target> | ||
5676 | <context-group purpose="location"> | ||
5677 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5678 | <context context-type="linenumber">1</context> | ||
5679 | </context-group> | ||
5680 | </trans-unit><trans-unit id="4f2ed9e71a7c981db3e50ae2fedb28aff2ec4e6c" datatype="html"> | ||
5681 | <source>Seconds</source><target state="new">Seconds</target> | ||
5682 | <context-group purpose="location"> | ||
5683 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5684 | <context context-type="linenumber">1</context> | ||
5685 | </context-group> | ||
5686 | </trans-unit><trans-unit id="912322ecee7d659d04dcf494a70e22e49d334b26" datatype="html"> | ||
5687 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
5688 | <context-group purpose="location"> | ||
5689 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5690 | <context context-type="linenumber">1</context> | ||
5691 | </context-group> | ||
5692 | </trans-unit><trans-unit id="5db47ac104294243a70eb9124fbea9d0004ddf69" datatype="html"> | ||
5693 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
5694 | <context-group purpose="location"> | ||
5695 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5696 | <context context-type="linenumber">1</context> | ||
5697 | </context-group> | ||
5698 | </trans-unit><trans-unit id="8d6e691e10306c1b34c6b26805151aaea320ef7f" datatype="html"> | ||
5699 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5700 | <context-group purpose="location"> | ||
5701 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5702 | <context context-type="linenumber">1</context> | ||
5703 | </context-group> | ||
5704 | </trans-unit><trans-unit id="69a1f176a93998876952adac57c3bc3863b6105e" datatype="html"> | ||
5705 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5706 | <context-group purpose="location"> | ||
5707 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5708 | <context context-type="linenumber">1</context> | ||
5709 | </context-group> | ||
5710 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
5711 | <source>Get help</source><target state="new">Get help</target> | 5555 | <source>Get help</source><target state="new">Get help</target> |
5712 | <context-group purpose="location"> | 5556 | <context-group purpose="location"> |
5713 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 5557 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> |
@@ -9246,7 +9090,193 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9246 | <source>Only users of this instance can see this video</source> | 9090 | <source>Only users of this instance can see this video</source> |
9247 | <target state="translated">Nur uzantoj de ĉi tiu nodo povas vidi ĉi tiun filmon</target> | 9091 | <target state="translated">Nur uzantoj de ĉi tiu nodo povas vidi ĉi tiun filmon</target> |
9248 | 9092 | ||
9249 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit> | 9093 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit><trans-unit id="ngb.alert.close" datatype="html"> |
9094 | <source>Close</source><target state="new">Close</target> | ||
9095 | <context-group purpose="location"> | ||
9096 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/alert/alert.ts</context> | ||
9097 | <context context-type="linenumber">74</context> | ||
9098 | </context-group> | ||
9099 | </trans-unit><trans-unit id="ngb.carousel.previous" datatype="html"> | ||
9100 | <source>Previous</source><target state="new">Previous</target> | ||
9101 | <context-group purpose="location"> | ||
9102 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9103 | <context context-type="linenumber">349</context> | ||
9104 | </context-group> | ||
9105 | </trans-unit><trans-unit id="ngb.carousel.next" datatype="html"> | ||
9106 | <source>Next</source><target state="new">Next</target> | ||
9107 | <context-group purpose="location"> | ||
9108 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9109 | <context context-type="linenumber">349</context> | ||
9110 | </context-group> | ||
9111 | </trans-unit><trans-unit id="ngb.datepicker.previous-month" datatype="html"> | ||
9112 | <source>Previous month</source><target state="new">Previous month</target> | ||
9113 | <context-group purpose="location"> | ||
9114 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation.ts</context> | ||
9115 | <context context-type="linenumber">69</context> | ||
9116 | </context-group> | ||
9117 | </trans-unit><trans-unit id="ngb.datepicker.next-month" datatype="html"> | ||
9118 | <source>Next month</source><target state="new">Next month</target> | ||
9119 | <context-group purpose="location"> | ||
9120 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-month.ts</context> | ||
9121 | <context context-type="linenumber">72</context> | ||
9122 | </context-group> | ||
9123 | </trans-unit><trans-unit id="ngb.datepicker.select-month" datatype="html"> | ||
9124 | <source>Select month</source><target state="new">Select month</target> | ||
9125 | <context-group purpose="location"> | ||
9126 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9127 | <context context-type="linenumber">74</context> | ||
9128 | </context-group> | ||
9129 | </trans-unit><trans-unit id="ngb.datepicker.select-year" datatype="html"> | ||
9130 | <source>Select year</source><target state="new">Select year</target> | ||
9131 | <context-group purpose="location"> | ||
9132 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9133 | <context context-type="linenumber">74</context> | ||
9134 | </context-group> | ||
9135 | </trans-unit><trans-unit id="ngb.pagination.first" datatype="html"> | ||
9136 | <source>««</source><target state="new">««</target> | ||
9137 | <context-group purpose="location"> | ||
9138 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9139 | <context context-type="linenumber">404</context> | ||
9140 | </context-group> | ||
9141 | </trans-unit><trans-unit id="ngb.pagination.previous" datatype="html"> | ||
9142 | <source>«</source><target state="new">«</target> | ||
9143 | <context-group purpose="location"> | ||
9144 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9145 | <context context-type="linenumber">404</context> | ||
9146 | </context-group> | ||
9147 | </trans-unit><trans-unit id="ngb.pagination.next" datatype="html"> | ||
9148 | <source>»</source><target state="new">»</target> | ||
9149 | <context-group purpose="location"> | ||
9150 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9151 | <context context-type="linenumber">404</context> | ||
9152 | </context-group> | ||
9153 | </trans-unit><trans-unit id="ngb.pagination.last" datatype="html"> | ||
9154 | <source>»»</source><target state="new">»»</target> | ||
9155 | <context-group purpose="location"> | ||
9156 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9157 | <context context-type="linenumber">404</context> | ||
9158 | </context-group> | ||
9159 | </trans-unit><trans-unit id="ngb.pagination.first-aria" datatype="html"> | ||
9160 | <source>First</source><target state="new">First</target> | ||
9161 | <context-group purpose="location"> | ||
9162 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9163 | <context context-type="linenumber">404</context> | ||
9164 | </context-group> | ||
9165 | </trans-unit><trans-unit id="ngb.pagination.previous-aria" datatype="html"> | ||
9166 | <source>Previous</source><target state="new">Previous</target> | ||
9167 | <context-group purpose="location"> | ||
9168 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9169 | <context context-type="linenumber">404</context> | ||
9170 | </context-group> | ||
9171 | </trans-unit><trans-unit id="ngb.pagination.next-aria" datatype="html"> | ||
9172 | <source>Next</source><target state="new">Next</target> | ||
9173 | <context-group purpose="location"> | ||
9174 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9175 | <context context-type="linenumber">404</context> | ||
9176 | </context-group> | ||
9177 | </trans-unit><trans-unit id="ngb.pagination.last-aria" datatype="html"> | ||
9178 | <source>Last</source><target state="new">Last</target> | ||
9179 | <context-group purpose="location"> | ||
9180 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9181 | <context context-type="linenumber">404</context> | ||
9182 | </context-group> | ||
9183 | </trans-unit><trans-unit id="ngb.progressbar.value" datatype="html"> | ||
9184 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9185 | <context-group purpose="location"> | ||
9186 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/progressbar/progressbar.ts</context> | ||
9187 | <context context-type="linenumber">101</context> | ||
9188 | </context-group> | ||
9189 | </trans-unit><trans-unit id="ngb.timepicker.HH" datatype="html"> | ||
9190 | <source>HH</source><target state="new">HH</target> | ||
9191 | <context-group purpose="location"> | ||
9192 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9193 | <context context-type="linenumber">296</context> | ||
9194 | </context-group> | ||
9195 | </trans-unit><trans-unit id="ngb.timepicker.hours" datatype="html"> | ||
9196 | <source>Hours</source><target state="new">Hours</target> | ||
9197 | <context-group purpose="location"> | ||
9198 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9199 | <context context-type="linenumber">296</context> | ||
9200 | </context-group> | ||
9201 | </trans-unit><trans-unit id="ngb.timepicker.MM" datatype="html"> | ||
9202 | <source>MM</source><target state="new">MM</target> | ||
9203 | <context-group purpose="location"> | ||
9204 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9205 | <context context-type="linenumber">296</context> | ||
9206 | </context-group> | ||
9207 | </trans-unit><trans-unit id="ngb.timepicker.minutes" datatype="html"> | ||
9208 | <source>Minutes</source><target state="new">Minutes</target> | ||
9209 | <context-group purpose="location"> | ||
9210 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9211 | <context context-type="linenumber">296</context> | ||
9212 | </context-group> | ||
9213 | </trans-unit><trans-unit id="ngb.timepicker.increment-hours" datatype="html"> | ||
9214 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
9215 | <context-group purpose="location"> | ||
9216 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9217 | <context context-type="linenumber">296</context> | ||
9218 | </context-group> | ||
9219 | </trans-unit><trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> | ||
9220 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
9221 | <context-group purpose="location"> | ||
9222 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9223 | <context context-type="linenumber">296</context> | ||
9224 | </context-group> | ||
9225 | </trans-unit><trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> | ||
9226 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
9227 | <context-group purpose="location"> | ||
9228 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9229 | <context context-type="linenumber">296</context> | ||
9230 | </context-group> | ||
9231 | </trans-unit><trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> | ||
9232 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
9233 | <context-group purpose="location"> | ||
9234 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9235 | <context context-type="linenumber">296</context> | ||
9236 | </context-group> | ||
9237 | </trans-unit><trans-unit id="ngb.timepicker.SS" datatype="html"> | ||
9238 | <source>SS</source><target state="new">SS</target> | ||
9239 | <context-group purpose="location"> | ||
9240 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9241 | <context context-type="linenumber">296</context> | ||
9242 | </context-group> | ||
9243 | </trans-unit><trans-unit id="ngb.timepicker.seconds" datatype="html"> | ||
9244 | <source>Seconds</source><target state="new">Seconds</target> | ||
9245 | <context-group purpose="location"> | ||
9246 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9247 | <context context-type="linenumber">296</context> | ||
9248 | </context-group> | ||
9249 | </trans-unit><trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> | ||
9250 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
9251 | <context-group purpose="location"> | ||
9252 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9253 | <context context-type="linenumber">296</context> | ||
9254 | </context-group> | ||
9255 | </trans-unit><trans-unit id="ngb.timepicker.decrement-seconds" datatype="html"> | ||
9256 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
9257 | <context-group purpose="location"> | ||
9258 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9259 | <context context-type="linenumber">296</context> | ||
9260 | </context-group> | ||
9261 | </trans-unit><trans-unit id="ngb.timepicker.PM" datatype="html"> | ||
9262 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9263 | <context-group purpose="location"> | ||
9264 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9265 | <context context-type="linenumber">296</context> | ||
9266 | </context-group> | ||
9267 | </trans-unit><trans-unit id="ngb.timepicker.AM" datatype="html"> | ||
9268 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9269 | <context-group purpose="location"> | ||
9270 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9271 | <context context-type="linenumber">296</context> | ||
9272 | </context-group> | ||
9273 | </trans-unit><trans-unit id="ngb.toast.close-aria" datatype="html"> | ||
9274 | <source>Close</source><target state="new">Close</target> | ||
9275 | <context-group purpose="location"> | ||
9276 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/toast/toast.ts</context> | ||
9277 | <context context-type="linenumber">137</context> | ||
9278 | </context-group> | ||
9279 | </trans-unit> | ||
9250 | <trans-unit id="5210096066382592800"> | 9280 | <trans-unit id="5210096066382592800"> |
9251 | <source>Video to import updated.</source> | 9281 | <source>Video to import updated.</source> |
9252 | <target>Enportota filmo ĝisdatigita.</target> | 9282 | <target>Enportota filmo ĝisdatigita.</target> |
diff --git a/client/src/locale/angular.es-ES.xlf b/client/src/locale/angular.es-ES.xlf index 030f7b20f..654f4d10c 100644 --- a/client/src/locale/angular.es-ES.xlf +++ b/client/src/locale/angular.es-ES.xlf | |||
@@ -911,16 +911,9 @@ The link will expire within 1 hour.</source> | |||
911 | <trans-unit id="f4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8"> | 911 | <trans-unit id="f4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8"> |
912 | <source>Close</source> | 912 | <source>Close</source> |
913 | <target>Cerrar</target> | 913 | <target>Cerrar</target> |
914 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group> | 914 | |
915 | </trans-unit> | 915 | <context-group purpose="location"><context context-type="sourcefile">../app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
916 | <trans-unit id="680d5c75b7fd8d37961083608b9fcdc4167b4c43" datatype="html"> | 916 | |
917 | <source>Previous</source> | ||
918 | <target state="translated">Anterior</target> | ||
919 | <context-group purpose="location"> | ||
920 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
921 | <context context-type="linenumber">1</context> | ||
922 | </context-group> | ||
923 | </trans-unit> | ||
924 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> | 917 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> |
925 | <source>Configure</source> | 918 | <source>Configure</source> |
926 | <target state="translated">Configurar</target> | 919 | <target state="translated">Configurar</target> |
@@ -4651,208 +4644,33 @@ channel with the same name (<x id="PH_2"/>)!</source> | |||
4651 | <trans-unit id="f732c304c7433e5a83ffcd862c3dce709a0f4982" datatype="html"> | 4644 | <trans-unit id="f732c304c7433e5a83ffcd862c3dce709a0f4982" datatype="html"> |
4652 | <source>Next</source> | 4645 | <source>Next</source> |
4653 | <target state="translated">Siguiente</target> | 4646 | <target state="translated">Siguiente</target> |
4654 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group> | 4647 | |
4655 | </trans-unit> | 4648 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit> |
4656 | <trans-unit id="c3b08b07b5ab98e7cdcf18df39355690ab7d3884" datatype="html"> | 4649 | |
4657 | <source>Previous month</source> | 4650 | |
4658 | <target state="translated">Mes anterior</target> | 4651 | |
4659 | <context-group purpose="location"> | 4652 | |
4660 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 4653 | |
4661 | <context context-type="linenumber">1</context> | 4654 | |
4662 | </context-group> | 4655 | |
4663 | </trans-unit> | 4656 | |
4664 | <trans-unit id="4bd046985cfe13040d5ef0cd881edce0968a111a" datatype="html"> | 4657 | |
4665 | <source>Next month</source> | 4658 | |
4666 | <target state="translated">Próximo mes</target> | 4659 | |
4667 | <context-group purpose="location"> | 4660 | |
4668 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 4661 | |
4669 | <context context-type="linenumber">1</context> | 4662 | |
4670 | </context-group> | 4663 | |
4671 | </trans-unit> | 4664 | |
4672 | <trans-unit id="1dbc84807f35518112f62e5775d1daebd3d8462b" datatype="html"> | 4665 | |
4673 | <source>Select month</source> | 4666 | |
4674 | <target state="translated">Seleccione mes</target> | 4667 | |
4675 | <context-group purpose="location"> | 4668 | |
4676 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 4669 | |
4677 | <context context-type="linenumber">1</context> | 4670 | |
4678 | </context-group> | 4671 | |
4679 | </trans-unit> | 4672 | |
4680 | <trans-unit id="8ceb09d002bf0c5d1cac171dfbffe1805d2b3962" datatype="html"> | 4673 | <trans-unit id="9082008222523034483" datatype="html"> |
4681 | <source>Select year</source> | ||
4682 | <target state="translated">Seleccionar año</target> | ||
4683 | <context-group purpose="location"> | ||
4684 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4685 | <context context-type="linenumber">1</context> | ||
4686 | </context-group> | ||
4687 | </trans-unit> | ||
4688 | <trans-unit id="656506dfd46380956a655f919f1498d018f75ca0" datatype="html"> | ||
4689 | <source>««</source> | ||
4690 | <target state="translated">««</target> | ||
4691 | <context-group purpose="location"> | ||
4692 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4693 | <context context-type="linenumber">1</context> | ||
4694 | </context-group> | ||
4695 | </trans-unit> | ||
4696 | <trans-unit id="6e52b6ee77a4848d899dd21b591c6fd499e3aef3" datatype="html"> | ||
4697 | <source>«</source> | ||
4698 | <target state="translated">«</target> | ||
4699 | <context-group purpose="location"> | ||
4700 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4701 | <context context-type="linenumber">1</context> | ||
4702 | </context-group> | ||
4703 | </trans-unit> | ||
4704 | <trans-unit id="ba9cbb4ff311464308a3627e4f1c3345d9fe6d7d" datatype="html"> | ||
4705 | <source>»</source> | ||
4706 | <target state="translated">»</target> | ||
4707 | <context-group purpose="location"> | ||
4708 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4709 | <context context-type="linenumber">1</context> | ||
4710 | </context-group> | ||
4711 | </trans-unit> | ||
4712 | <trans-unit id="49f27a460bc97e7e00be5b37098bfa79884fc7d9" datatype="html"> | ||
4713 | <source>»»</source> | ||
4714 | <target state="translated">»»</target> | ||
4715 | <context-group purpose="location"> | ||
4716 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4717 | <context context-type="linenumber">1</context> | ||
4718 | </context-group> | ||
4719 | </trans-unit> | ||
4720 | <trans-unit id="f2f852318759c6396b5d3d17031d53817d7b38cc" datatype="html"> | ||
4721 | <source>First</source> | ||
4722 | <target state="translated">Primero</target> | ||
4723 | <context-group purpose="location"> | ||
4724 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4725 | <context context-type="linenumber">1</context> | ||
4726 | </context-group> | ||
4727 | </trans-unit> | ||
4728 | <trans-unit id="5c729788ba138508aca1bec050b610f7bf81db3e" datatype="html"> | ||
4729 | <source>Last</source> | ||
4730 | <target state="translated">Último</target> | ||
4731 | <context-group purpose="location"> | ||
4732 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4733 | <context context-type="linenumber">1</context> | ||
4734 | </context-group> | ||
4735 | </trans-unit> | ||
4736 | <trans-unit id="f8e9a947b9db4252c0e9905765338712f2fd032f" datatype="html"> | ||
4737 | <source><x id="INTERPOLATION"/></source> | ||
4738 | <target state="translated"><x id="INTERPOLATION"/></target> | ||
4739 | <context-group purpose="location"> | ||
4740 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4741 | <context context-type="linenumber">1</context> | ||
4742 | </context-group> | ||
4743 | </trans-unit> | ||
4744 | <trans-unit id="ce676ab1d6d98f85c836381cf100a4a91ef95a1f" datatype="html"> | ||
4745 | <source>HH</source> | ||
4746 | <target state="translated">HH</target> | ||
4747 | <context-group purpose="location"> | ||
4748 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4749 | <context context-type="linenumber">1</context> | ||
4750 | </context-group> | ||
4751 | </trans-unit> | ||
4752 | <trans-unit id="3bbce5fef7e1151da052a4e529453edb340e3912" datatype="html"> | ||
4753 | <source>Hours</source> | ||
4754 | <target state="translated">Horas</target> | ||
4755 | <context-group purpose="location"> | ||
4756 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4757 | <context context-type="linenumber">1</context> | ||
4758 | </context-group> | ||
4759 | </trans-unit> | ||
4760 | <trans-unit id="72c8edf6a50068a05bde70991e36b1e881f4ca54" datatype="html"> | ||
4761 | <source>MM</source> | ||
4762 | <target state="translated">MM</target> | ||
4763 | <context-group purpose="location"> | ||
4764 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4765 | <context context-type="linenumber">1</context> | ||
4766 | </context-group> | ||
4767 | </trans-unit> | ||
4768 | <trans-unit id="41e62daa962947c0d23ded0981975d1bddf0bf38" datatype="html"> | ||
4769 | <source>Minutes</source> | ||
4770 | <target state="translated">Minutos</target> | ||
4771 | <context-group purpose="location"> | ||
4772 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4773 | <context context-type="linenumber">1</context> | ||
4774 | </context-group> | ||
4775 | </trans-unit> | ||
4776 | <trans-unit id="cb74bc1d625a6c1742f0d7d47306cf495780c218" datatype="html"> | ||
4777 | <source>Increment hours</source> | ||
4778 | <target state="translated">Incrementar horas</target> | ||
4779 | <context-group purpose="location"> | ||
4780 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4781 | <context context-type="linenumber">1</context> | ||
4782 | </context-group> | ||
4783 | </trans-unit> | ||
4784 | <trans-unit id="147c7a19429da7d999e247d22e33fee370b1691b" datatype="html"> | ||
4785 | <source>Decrement hours</source> | ||
4786 | <target state="translated">Disminuir horas</target> | ||
4787 | <context-group purpose="location"> | ||
4788 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4789 | <context context-type="linenumber">1</context> | ||
4790 | </context-group> | ||
4791 | </trans-unit> | ||
4792 | <trans-unit id="f5a4a3bc05e053f6732475d0e74875ec01c3a348" datatype="html"> | ||
4793 | <source>Increment minutes</source> | ||
4794 | <target state="translated">Incrementar minutos</target> | ||
4795 | <context-group purpose="location"> | ||
4796 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4797 | <context context-type="linenumber">1</context> | ||
4798 | </context-group> | ||
4799 | </trans-unit> | ||
4800 | <trans-unit id="c1a6899e529c096da5b660385d4e77fe1f7ad271" datatype="html"> | ||
4801 | <source>Decrement minutes</source> | ||
4802 | <target state="translated">Disminuir minutos</target> | ||
4803 | <context-group purpose="location"> | ||
4804 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4805 | <context context-type="linenumber">1</context> | ||
4806 | </context-group> | ||
4807 | </trans-unit> | ||
4808 | <trans-unit id="ebe38d36a40a2383c5fefa9b4608ffbda08bd4a3" datatype="html"> | ||
4809 | <source>SS</source> | ||
4810 | <target state="translated">SS</target> | ||
4811 | <context-group purpose="location"> | ||
4812 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4813 | <context context-type="linenumber">1</context> | ||
4814 | </context-group> | ||
4815 | </trans-unit> | ||
4816 | <trans-unit id="4f2ed9e71a7c981db3e50ae2fedb28aff2ec4e6c" datatype="html"> | ||
4817 | <source>Seconds</source> | ||
4818 | <target state="translated">Segundos</target> | ||
4819 | <context-group purpose="location"> | ||
4820 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4821 | <context context-type="linenumber">1</context> | ||
4822 | </context-group> | ||
4823 | </trans-unit> | ||
4824 | <trans-unit id="912322ecee7d659d04dcf494a70e22e49d334b26" datatype="html"> | ||
4825 | <source>Increment seconds</source> | ||
4826 | <target state="translated">Incrementar segundos</target> | ||
4827 | <context-group purpose="location"> | ||
4828 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4829 | <context context-type="linenumber">1</context> | ||
4830 | </context-group> | ||
4831 | </trans-unit> | ||
4832 | <trans-unit id="5db47ac104294243a70eb9124fbea9d0004ddf69" datatype="html"> | ||
4833 | <source>Decrement seconds</source> | ||
4834 | <target state="translated">Disminuir segundos</target> | ||
4835 | <context-group purpose="location"> | ||
4836 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4837 | <context context-type="linenumber">1</context> | ||
4838 | </context-group> | ||
4839 | </trans-unit> | ||
4840 | <trans-unit id="8d6e691e10306c1b34c6b26805151aaea320ef7f" datatype="html"> | ||
4841 | <source><x id="INTERPOLATION"/></source> | ||
4842 | <target state="translated"><x id="INTERPOLATION"/></target> | ||
4843 | <context-group purpose="location"> | ||
4844 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4845 | <context context-type="linenumber">1</context> | ||
4846 | </context-group> | ||
4847 | </trans-unit> | ||
4848 | <trans-unit id="69a1f176a93998876952adac57c3bc3863b6105e" datatype="html"> | ||
4849 | <source><x id="INTERPOLATION"/></source> | ||
4850 | <target state="translated"><x id="INTERPOLATION"/></target> | ||
4851 | <context-group purpose="location"> | ||
4852 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4853 | <context context-type="linenumber">1</context> | ||
4854 | </context-group> | ||
4855 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
4856 | <source>Get help</source><target state="new">Get help</target> | 4674 | <source>Get help</source><target state="new">Get help</target> |
4857 | <context-group purpose="location"> | 4675 | <context-group purpose="location"> |
4858 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 4676 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> |
@@ -8164,7 +7982,193 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8164 | <source>Only users of this instance can see this video</source> | 7982 | <source>Only users of this instance can see this video</source> |
8165 | <target state="translated">Solo los usuarios de esta instancia pueden ver este video</target> | 7983 | <target state="translated">Solo los usuarios de esta instancia pueden ver este video</target> |
8166 | 7984 | ||
8167 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit> | 7985 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit><trans-unit id="ngb.alert.close" datatype="html"> |
7986 | <source>Close</source><target state="new">Close</target> | ||
7987 | <context-group purpose="location"> | ||
7988 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/alert/alert.ts</context> | ||
7989 | <context context-type="linenumber">74</context> | ||
7990 | </context-group> | ||
7991 | </trans-unit><trans-unit id="ngb.carousel.previous" datatype="html"> | ||
7992 | <source>Previous</source><target state="new">Previous</target> | ||
7993 | <context-group purpose="location"> | ||
7994 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
7995 | <context context-type="linenumber">349</context> | ||
7996 | </context-group> | ||
7997 | </trans-unit><trans-unit id="ngb.carousel.next" datatype="html"> | ||
7998 | <source>Next</source><target state="new">Next</target> | ||
7999 | <context-group purpose="location"> | ||
8000 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
8001 | <context context-type="linenumber">349</context> | ||
8002 | </context-group> | ||
8003 | </trans-unit><trans-unit id="ngb.datepicker.previous-month" datatype="html"> | ||
8004 | <source>Previous month</source><target state="new">Previous month</target> | ||
8005 | <context-group purpose="location"> | ||
8006 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation.ts</context> | ||
8007 | <context context-type="linenumber">69</context> | ||
8008 | </context-group> | ||
8009 | </trans-unit><trans-unit id="ngb.datepicker.next-month" datatype="html"> | ||
8010 | <source>Next month</source><target state="new">Next month</target> | ||
8011 | <context-group purpose="location"> | ||
8012 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-month.ts</context> | ||
8013 | <context context-type="linenumber">72</context> | ||
8014 | </context-group> | ||
8015 | </trans-unit><trans-unit id="ngb.datepicker.select-month" datatype="html"> | ||
8016 | <source>Select month</source><target state="new">Select month</target> | ||
8017 | <context-group purpose="location"> | ||
8018 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
8019 | <context context-type="linenumber">74</context> | ||
8020 | </context-group> | ||
8021 | </trans-unit><trans-unit id="ngb.datepicker.select-year" datatype="html"> | ||
8022 | <source>Select year</source><target state="new">Select year</target> | ||
8023 | <context-group purpose="location"> | ||
8024 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
8025 | <context context-type="linenumber">74</context> | ||
8026 | </context-group> | ||
8027 | </trans-unit><trans-unit id="ngb.pagination.first" datatype="html"> | ||
8028 | <source>««</source><target state="new">««</target> | ||
8029 | <context-group purpose="location"> | ||
8030 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8031 | <context context-type="linenumber">404</context> | ||
8032 | </context-group> | ||
8033 | </trans-unit><trans-unit id="ngb.pagination.previous" datatype="html"> | ||
8034 | <source>«</source><target state="new">«</target> | ||
8035 | <context-group purpose="location"> | ||
8036 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8037 | <context context-type="linenumber">404</context> | ||
8038 | </context-group> | ||
8039 | </trans-unit><trans-unit id="ngb.pagination.next" datatype="html"> | ||
8040 | <source>»</source><target state="new">»</target> | ||
8041 | <context-group purpose="location"> | ||
8042 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8043 | <context context-type="linenumber">404</context> | ||
8044 | </context-group> | ||
8045 | </trans-unit><trans-unit id="ngb.pagination.last" datatype="html"> | ||
8046 | <source>»»</source><target state="new">»»</target> | ||
8047 | <context-group purpose="location"> | ||
8048 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8049 | <context context-type="linenumber">404</context> | ||
8050 | </context-group> | ||
8051 | </trans-unit><trans-unit id="ngb.pagination.first-aria" datatype="html"> | ||
8052 | <source>First</source><target state="new">First</target> | ||
8053 | <context-group purpose="location"> | ||
8054 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8055 | <context context-type="linenumber">404</context> | ||
8056 | </context-group> | ||
8057 | </trans-unit><trans-unit id="ngb.pagination.previous-aria" datatype="html"> | ||
8058 | <source>Previous</source><target state="new">Previous</target> | ||
8059 | <context-group purpose="location"> | ||
8060 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8061 | <context context-type="linenumber">404</context> | ||
8062 | </context-group> | ||
8063 | </trans-unit><trans-unit id="ngb.pagination.next-aria" datatype="html"> | ||
8064 | <source>Next</source><target state="new">Next</target> | ||
8065 | <context-group purpose="location"> | ||
8066 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8067 | <context context-type="linenumber">404</context> | ||
8068 | </context-group> | ||
8069 | </trans-unit><trans-unit id="ngb.pagination.last-aria" datatype="html"> | ||
8070 | <source>Last</source><target state="new">Last</target> | ||
8071 | <context-group purpose="location"> | ||
8072 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8073 | <context context-type="linenumber">404</context> | ||
8074 | </context-group> | ||
8075 | </trans-unit><trans-unit id="ngb.progressbar.value" datatype="html"> | ||
8076 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
8077 | <context-group purpose="location"> | ||
8078 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/progressbar/progressbar.ts</context> | ||
8079 | <context context-type="linenumber">101</context> | ||
8080 | </context-group> | ||
8081 | </trans-unit><trans-unit id="ngb.timepicker.HH" datatype="html"> | ||
8082 | <source>HH</source><target state="new">HH</target> | ||
8083 | <context-group purpose="location"> | ||
8084 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8085 | <context context-type="linenumber">296</context> | ||
8086 | </context-group> | ||
8087 | </trans-unit><trans-unit id="ngb.timepicker.hours" datatype="html"> | ||
8088 | <source>Hours</source><target state="new">Hours</target> | ||
8089 | <context-group purpose="location"> | ||
8090 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8091 | <context context-type="linenumber">296</context> | ||
8092 | </context-group> | ||
8093 | </trans-unit><trans-unit id="ngb.timepicker.MM" datatype="html"> | ||
8094 | <source>MM</source><target state="new">MM</target> | ||
8095 | <context-group purpose="location"> | ||
8096 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8097 | <context context-type="linenumber">296</context> | ||
8098 | </context-group> | ||
8099 | </trans-unit><trans-unit id="ngb.timepicker.minutes" datatype="html"> | ||
8100 | <source>Minutes</source><target state="new">Minutes</target> | ||
8101 | <context-group purpose="location"> | ||
8102 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8103 | <context context-type="linenumber">296</context> | ||
8104 | </context-group> | ||
8105 | </trans-unit><trans-unit id="ngb.timepicker.increment-hours" datatype="html"> | ||
8106 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
8107 | <context-group purpose="location"> | ||
8108 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8109 | <context context-type="linenumber">296</context> | ||
8110 | </context-group> | ||
8111 | </trans-unit><trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> | ||
8112 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
8113 | <context-group purpose="location"> | ||
8114 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8115 | <context context-type="linenumber">296</context> | ||
8116 | </context-group> | ||
8117 | </trans-unit><trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> | ||
8118 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
8119 | <context-group purpose="location"> | ||
8120 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8121 | <context context-type="linenumber">296</context> | ||
8122 | </context-group> | ||
8123 | </trans-unit><trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> | ||
8124 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
8125 | <context-group purpose="location"> | ||
8126 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8127 | <context context-type="linenumber">296</context> | ||
8128 | </context-group> | ||
8129 | </trans-unit><trans-unit id="ngb.timepicker.SS" datatype="html"> | ||
8130 | <source>SS</source><target state="new">SS</target> | ||
8131 | <context-group purpose="location"> | ||
8132 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8133 | <context context-type="linenumber">296</context> | ||
8134 | </context-group> | ||
8135 | </trans-unit><trans-unit id="ngb.timepicker.seconds" datatype="html"> | ||
8136 | <source>Seconds</source><target state="new">Seconds</target> | ||
8137 | <context-group purpose="location"> | ||
8138 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8139 | <context context-type="linenumber">296</context> | ||
8140 | </context-group> | ||
8141 | </trans-unit><trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> | ||
8142 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
8143 | <context-group purpose="location"> | ||
8144 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8145 | <context context-type="linenumber">296</context> | ||
8146 | </context-group> | ||
8147 | </trans-unit><trans-unit id="ngb.timepicker.decrement-seconds" datatype="html"> | ||
8148 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
8149 | <context-group purpose="location"> | ||
8150 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8151 | <context context-type="linenumber">296</context> | ||
8152 | </context-group> | ||
8153 | </trans-unit><trans-unit id="ngb.timepicker.PM" datatype="html"> | ||
8154 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
8155 | <context-group purpose="location"> | ||
8156 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8157 | <context context-type="linenumber">296</context> | ||
8158 | </context-group> | ||
8159 | </trans-unit><trans-unit id="ngb.timepicker.AM" datatype="html"> | ||
8160 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
8161 | <context-group purpose="location"> | ||
8162 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8163 | <context context-type="linenumber">296</context> | ||
8164 | </context-group> | ||
8165 | </trans-unit><trans-unit id="ngb.toast.close-aria" datatype="html"> | ||
8166 | <source>Close</source><target state="new">Close</target> | ||
8167 | <context-group purpose="location"> | ||
8168 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/toast/toast.ts</context> | ||
8169 | <context context-type="linenumber">137</context> | ||
8170 | </context-group> | ||
8171 | </trans-unit> | ||
8168 | <trans-unit id="5210096066382592800"> | 8172 | <trans-unit id="5210096066382592800"> |
8169 | <source>Video to import updated.</source> | 8173 | <source>Video to import updated.</source> |
8170 | <target>Vídeo a importar actualizado.</target> | 8174 | <target>Vídeo a importar actualizado.</target> |
diff --git a/client/src/locale/angular.eu-ES.xlf b/client/src/locale/angular.eu-ES.xlf index 1491f6ddc..70e5dab0b 100644 --- a/client/src/locale/angular.eu-ES.xlf +++ b/client/src/locale/angular.eu-ES.xlf | |||
@@ -1228,13 +1228,7 @@ The link will expire within 1 hour.</target> | |||
1228 | <source>Close</source> | 1228 | <source>Close</source> |
1229 | <target>Itxi</target> | 1229 | <target>Itxi</target> |
1230 | 1230 | ||
1231 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="680d5c75b7fd8d37961083608b9fcdc4167b4c43" datatype="html"> | 1231 | <context-group purpose="location"><context context-type="sourcefile">../app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1232 | <source>Previous</source><target state="new">Previous</target> | ||
1233 | <context-group purpose="location"> | ||
1234 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
1235 | <context context-type="linenumber">1</context> | ||
1236 | </context-group> | ||
1237 | </trans-unit> | ||
1238 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> | 1232 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> |
1239 | <source> | 1233 | <source> |
1240 | Configure | 1234 | Configure |
@@ -5612,157 +5606,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5612 | <source>Next</source> | 5606 | <source>Next</source> |
5613 | <target state="new">Next</target> | 5607 | <target state="new">Next</target> |
5614 | 5608 | ||
5615 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="c3b08b07b5ab98e7cdcf18df39355690ab7d3884" datatype="html"> | 5609 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit><trans-unit id="9082008222523034483" datatype="html"> |
5616 | <source>Previous month</source><target state="new">Previous month</target> | ||
5617 | <context-group purpose="location"> | ||
5618 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5619 | <context context-type="linenumber">1</context> | ||
5620 | </context-group> | ||
5621 | </trans-unit><trans-unit id="4bd046985cfe13040d5ef0cd881edce0968a111a" datatype="html"> | ||
5622 | <source>Next month</source><target state="new">Next month</target> | ||
5623 | <context-group purpose="location"> | ||
5624 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5625 | <context context-type="linenumber">1</context> | ||
5626 | </context-group> | ||
5627 | </trans-unit><trans-unit id="1dbc84807f35518112f62e5775d1daebd3d8462b" datatype="html"> | ||
5628 | <source>Select month</source><target state="new">Select month</target> | ||
5629 | <context-group purpose="location"> | ||
5630 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5631 | <context context-type="linenumber">1</context> | ||
5632 | </context-group> | ||
5633 | </trans-unit><trans-unit id="8ceb09d002bf0c5d1cac171dfbffe1805d2b3962" datatype="html"> | ||
5634 | <source>Select year</source><target state="new">Select year</target> | ||
5635 | <context-group purpose="location"> | ||
5636 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5637 | <context context-type="linenumber">1</context> | ||
5638 | </context-group> | ||
5639 | </trans-unit><trans-unit id="656506dfd46380956a655f919f1498d018f75ca0" datatype="html"> | ||
5640 | <source>««</source><target state="new">««</target> | ||
5641 | <context-group purpose="location"> | ||
5642 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5643 | <context context-type="linenumber">1</context> | ||
5644 | </context-group> | ||
5645 | </trans-unit><trans-unit id="6e52b6ee77a4848d899dd21b591c6fd499e3aef3" datatype="html"> | ||
5646 | <source>«</source><target state="new">«</target> | ||
5647 | <context-group purpose="location"> | ||
5648 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5649 | <context context-type="linenumber">1</context> | ||
5650 | </context-group> | ||
5651 | </trans-unit><trans-unit id="ba9cbb4ff311464308a3627e4f1c3345d9fe6d7d" datatype="html"> | ||
5652 | <source>»</source><target state="new">»</target> | ||
5653 | <context-group purpose="location"> | ||
5654 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5655 | <context context-type="linenumber">1</context> | ||
5656 | </context-group> | ||
5657 | </trans-unit><trans-unit id="49f27a460bc97e7e00be5b37098bfa79884fc7d9" datatype="html"> | ||
5658 | <source>»»</source><target state="new">»»</target> | ||
5659 | <context-group purpose="location"> | ||
5660 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5661 | <context context-type="linenumber">1</context> | ||
5662 | </context-group> | ||
5663 | </trans-unit><trans-unit id="f2f852318759c6396b5d3d17031d53817d7b38cc" datatype="html"> | ||
5664 | <source>First</source><target state="new">First</target> | ||
5665 | <context-group purpose="location"> | ||
5666 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5667 | <context context-type="linenumber">1</context> | ||
5668 | </context-group> | ||
5669 | </trans-unit><trans-unit id="5c729788ba138508aca1bec050b610f7bf81db3e" datatype="html"> | ||
5670 | <source>Last</source><target state="new">Last</target> | ||
5671 | <context-group purpose="location"> | ||
5672 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5673 | <context context-type="linenumber">1</context> | ||
5674 | </context-group> | ||
5675 | </trans-unit><trans-unit id="f8e9a947b9db4252c0e9905765338712f2fd032f" datatype="html"> | ||
5676 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5677 | <context-group purpose="location"> | ||
5678 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5679 | <context context-type="linenumber">1</context> | ||
5680 | </context-group> | ||
5681 | </trans-unit><trans-unit id="ce676ab1d6d98f85c836381cf100a4a91ef95a1f" datatype="html"> | ||
5682 | <source>HH</source><target state="new">HH</target> | ||
5683 | <context-group purpose="location"> | ||
5684 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5685 | <context context-type="linenumber">1</context> | ||
5686 | </context-group> | ||
5687 | </trans-unit><trans-unit id="3bbce5fef7e1151da052a4e529453edb340e3912" datatype="html"> | ||
5688 | <source>Hours</source><target state="new">Hours</target> | ||
5689 | <context-group purpose="location"> | ||
5690 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5691 | <context context-type="linenumber">1</context> | ||
5692 | </context-group> | ||
5693 | </trans-unit><trans-unit id="72c8edf6a50068a05bde70991e36b1e881f4ca54" datatype="html"> | ||
5694 | <source>MM</source><target state="new">MM</target> | ||
5695 | <context-group purpose="location"> | ||
5696 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5697 | <context context-type="linenumber">1</context> | ||
5698 | </context-group> | ||
5699 | </trans-unit><trans-unit id="41e62daa962947c0d23ded0981975d1bddf0bf38" datatype="html"> | ||
5700 | <source>Minutes</source><target state="new">Minutes</target> | ||
5701 | <context-group purpose="location"> | ||
5702 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5703 | <context context-type="linenumber">1</context> | ||
5704 | </context-group> | ||
5705 | </trans-unit><trans-unit id="cb74bc1d625a6c1742f0d7d47306cf495780c218" datatype="html"> | ||
5706 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
5707 | <context-group purpose="location"> | ||
5708 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5709 | <context context-type="linenumber">1</context> | ||
5710 | </context-group> | ||
5711 | </trans-unit><trans-unit id="147c7a19429da7d999e247d22e33fee370b1691b" datatype="html"> | ||
5712 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
5713 | <context-group purpose="location"> | ||
5714 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5715 | <context context-type="linenumber">1</context> | ||
5716 | </context-group> | ||
5717 | </trans-unit><trans-unit id="f5a4a3bc05e053f6732475d0e74875ec01c3a348" datatype="html"> | ||
5718 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
5719 | <context-group purpose="location"> | ||
5720 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5721 | <context context-type="linenumber">1</context> | ||
5722 | </context-group> | ||
5723 | </trans-unit><trans-unit id="c1a6899e529c096da5b660385d4e77fe1f7ad271" datatype="html"> | ||
5724 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
5725 | <context-group purpose="location"> | ||
5726 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5727 | <context context-type="linenumber">1</context> | ||
5728 | </context-group> | ||
5729 | </trans-unit><trans-unit id="ebe38d36a40a2383c5fefa9b4608ffbda08bd4a3" datatype="html"> | ||
5730 | <source>SS</source><target state="new">SS</target> | ||
5731 | <context-group purpose="location"> | ||
5732 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5733 | <context context-type="linenumber">1</context> | ||
5734 | </context-group> | ||
5735 | </trans-unit><trans-unit id="4f2ed9e71a7c981db3e50ae2fedb28aff2ec4e6c" datatype="html"> | ||
5736 | <source>Seconds</source><target state="new">Seconds</target> | ||
5737 | <context-group purpose="location"> | ||
5738 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5739 | <context context-type="linenumber">1</context> | ||
5740 | </context-group> | ||
5741 | </trans-unit><trans-unit id="912322ecee7d659d04dcf494a70e22e49d334b26" datatype="html"> | ||
5742 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
5743 | <context-group purpose="location"> | ||
5744 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5745 | <context context-type="linenumber">1</context> | ||
5746 | </context-group> | ||
5747 | </trans-unit><trans-unit id="5db47ac104294243a70eb9124fbea9d0004ddf69" datatype="html"> | ||
5748 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
5749 | <context-group purpose="location"> | ||
5750 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5751 | <context context-type="linenumber">1</context> | ||
5752 | </context-group> | ||
5753 | </trans-unit><trans-unit id="8d6e691e10306c1b34c6b26805151aaea320ef7f" datatype="html"> | ||
5754 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5755 | <context-group purpose="location"> | ||
5756 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5757 | <context context-type="linenumber">1</context> | ||
5758 | </context-group> | ||
5759 | </trans-unit><trans-unit id="69a1f176a93998876952adac57c3bc3863b6105e" datatype="html"> | ||
5760 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5761 | <context-group purpose="location"> | ||
5762 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5763 | <context context-type="linenumber">1</context> | ||
5764 | </context-group> | ||
5765 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
5766 | <source>Get help</source><target state="new">Get help</target> | 5610 | <source>Get help</source><target state="new">Get help</target> |
5767 | <context-group purpose="location"> | 5611 | <context-group purpose="location"> |
5768 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 5612 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> |
@@ -9281,7 +9125,193 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9281 | <source>Only users of this instance can see this video</source> | 9125 | <source>Only users of this instance can see this video</source> |
9282 | <target state="new">Only users of this instance can see this video</target> | 9126 | <target state="new">Only users of this instance can see this video</target> |
9283 | 9127 | ||
9284 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit> | 9128 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit><trans-unit id="ngb.alert.close" datatype="html"> |
9129 | <source>Close</source><target state="new">Close</target> | ||
9130 | <context-group purpose="location"> | ||
9131 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/alert/alert.ts</context> | ||
9132 | <context context-type="linenumber">74</context> | ||
9133 | </context-group> | ||
9134 | </trans-unit><trans-unit id="ngb.carousel.previous" datatype="html"> | ||
9135 | <source>Previous</source><target state="new">Previous</target> | ||
9136 | <context-group purpose="location"> | ||
9137 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9138 | <context context-type="linenumber">349</context> | ||
9139 | </context-group> | ||
9140 | </trans-unit><trans-unit id="ngb.carousel.next" datatype="html"> | ||
9141 | <source>Next</source><target state="new">Next</target> | ||
9142 | <context-group purpose="location"> | ||
9143 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9144 | <context context-type="linenumber">349</context> | ||
9145 | </context-group> | ||
9146 | </trans-unit><trans-unit id="ngb.datepicker.previous-month" datatype="html"> | ||
9147 | <source>Previous month</source><target state="new">Previous month</target> | ||
9148 | <context-group purpose="location"> | ||
9149 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation.ts</context> | ||
9150 | <context context-type="linenumber">69</context> | ||
9151 | </context-group> | ||
9152 | </trans-unit><trans-unit id="ngb.datepicker.next-month" datatype="html"> | ||
9153 | <source>Next month</source><target state="new">Next month</target> | ||
9154 | <context-group purpose="location"> | ||
9155 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-month.ts</context> | ||
9156 | <context context-type="linenumber">72</context> | ||
9157 | </context-group> | ||
9158 | </trans-unit><trans-unit id="ngb.datepicker.select-month" datatype="html"> | ||
9159 | <source>Select month</source><target state="new">Select month</target> | ||
9160 | <context-group purpose="location"> | ||
9161 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9162 | <context context-type="linenumber">74</context> | ||
9163 | </context-group> | ||
9164 | </trans-unit><trans-unit id="ngb.datepicker.select-year" datatype="html"> | ||
9165 | <source>Select year</source><target state="new">Select year</target> | ||
9166 | <context-group purpose="location"> | ||
9167 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9168 | <context context-type="linenumber">74</context> | ||
9169 | </context-group> | ||
9170 | </trans-unit><trans-unit id="ngb.pagination.first" datatype="html"> | ||
9171 | <source>««</source><target state="new">««</target> | ||
9172 | <context-group purpose="location"> | ||
9173 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9174 | <context context-type="linenumber">404</context> | ||
9175 | </context-group> | ||
9176 | </trans-unit><trans-unit id="ngb.pagination.previous" datatype="html"> | ||
9177 | <source>«</source><target state="new">«</target> | ||
9178 | <context-group purpose="location"> | ||
9179 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9180 | <context context-type="linenumber">404</context> | ||
9181 | </context-group> | ||
9182 | </trans-unit><trans-unit id="ngb.pagination.next" datatype="html"> | ||
9183 | <source>»</source><target state="new">»</target> | ||
9184 | <context-group purpose="location"> | ||
9185 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9186 | <context context-type="linenumber">404</context> | ||
9187 | </context-group> | ||
9188 | </trans-unit><trans-unit id="ngb.pagination.last" datatype="html"> | ||
9189 | <source>»»</source><target state="new">»»</target> | ||
9190 | <context-group purpose="location"> | ||
9191 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9192 | <context context-type="linenumber">404</context> | ||
9193 | </context-group> | ||
9194 | </trans-unit><trans-unit id="ngb.pagination.first-aria" datatype="html"> | ||
9195 | <source>First</source><target state="new">First</target> | ||
9196 | <context-group purpose="location"> | ||
9197 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9198 | <context context-type="linenumber">404</context> | ||
9199 | </context-group> | ||
9200 | </trans-unit><trans-unit id="ngb.pagination.previous-aria" datatype="html"> | ||
9201 | <source>Previous</source><target state="new">Previous</target> | ||
9202 | <context-group purpose="location"> | ||
9203 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9204 | <context context-type="linenumber">404</context> | ||
9205 | </context-group> | ||
9206 | </trans-unit><trans-unit id="ngb.pagination.next-aria" datatype="html"> | ||
9207 | <source>Next</source><target state="new">Next</target> | ||
9208 | <context-group purpose="location"> | ||
9209 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9210 | <context context-type="linenumber">404</context> | ||
9211 | </context-group> | ||
9212 | </trans-unit><trans-unit id="ngb.pagination.last-aria" datatype="html"> | ||
9213 | <source>Last</source><target state="new">Last</target> | ||
9214 | <context-group purpose="location"> | ||
9215 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9216 | <context context-type="linenumber">404</context> | ||
9217 | </context-group> | ||
9218 | </trans-unit><trans-unit id="ngb.progressbar.value" datatype="html"> | ||
9219 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9220 | <context-group purpose="location"> | ||
9221 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/progressbar/progressbar.ts</context> | ||
9222 | <context context-type="linenumber">101</context> | ||
9223 | </context-group> | ||
9224 | </trans-unit><trans-unit id="ngb.timepicker.HH" datatype="html"> | ||
9225 | <source>HH</source><target state="new">HH</target> | ||
9226 | <context-group purpose="location"> | ||
9227 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9228 | <context context-type="linenumber">296</context> | ||
9229 | </context-group> | ||
9230 | </trans-unit><trans-unit id="ngb.timepicker.hours" datatype="html"> | ||
9231 | <source>Hours</source><target state="new">Hours</target> | ||
9232 | <context-group purpose="location"> | ||
9233 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9234 | <context context-type="linenumber">296</context> | ||
9235 | </context-group> | ||
9236 | </trans-unit><trans-unit id="ngb.timepicker.MM" datatype="html"> | ||
9237 | <source>MM</source><target state="new">MM</target> | ||
9238 | <context-group purpose="location"> | ||
9239 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9240 | <context context-type="linenumber">296</context> | ||
9241 | </context-group> | ||
9242 | </trans-unit><trans-unit id="ngb.timepicker.minutes" datatype="html"> | ||
9243 | <source>Minutes</source><target state="new">Minutes</target> | ||
9244 | <context-group purpose="location"> | ||
9245 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9246 | <context context-type="linenumber">296</context> | ||
9247 | </context-group> | ||
9248 | </trans-unit><trans-unit id="ngb.timepicker.increment-hours" datatype="html"> | ||
9249 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
9250 | <context-group purpose="location"> | ||
9251 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9252 | <context context-type="linenumber">296</context> | ||
9253 | </context-group> | ||
9254 | </trans-unit><trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> | ||
9255 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
9256 | <context-group purpose="location"> | ||
9257 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9258 | <context context-type="linenumber">296</context> | ||
9259 | </context-group> | ||
9260 | </trans-unit><trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> | ||
9261 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
9262 | <context-group purpose="location"> | ||
9263 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9264 | <context context-type="linenumber">296</context> | ||
9265 | </context-group> | ||
9266 | </trans-unit><trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> | ||
9267 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
9268 | <context-group purpose="location"> | ||
9269 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9270 | <context context-type="linenumber">296</context> | ||
9271 | </context-group> | ||
9272 | </trans-unit><trans-unit id="ngb.timepicker.SS" datatype="html"> | ||
9273 | <source>SS</source><target state="new">SS</target> | ||
9274 | <context-group purpose="location"> | ||
9275 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9276 | <context context-type="linenumber">296</context> | ||
9277 | </context-group> | ||
9278 | </trans-unit><trans-unit id="ngb.timepicker.seconds" datatype="html"> | ||
9279 | <source>Seconds</source><target state="new">Seconds</target> | ||
9280 | <context-group purpose="location"> | ||
9281 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9282 | <context context-type="linenumber">296</context> | ||
9283 | </context-group> | ||
9284 | </trans-unit><trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> | ||
9285 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
9286 | <context-group purpose="location"> | ||
9287 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9288 | <context context-type="linenumber">296</context> | ||
9289 | </context-group> | ||
9290 | </trans-unit><trans-unit id="ngb.timepicker.decrement-seconds" datatype="html"> | ||
9291 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
9292 | <context-group purpose="location"> | ||
9293 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9294 | <context context-type="linenumber">296</context> | ||
9295 | </context-group> | ||
9296 | </trans-unit><trans-unit id="ngb.timepicker.PM" datatype="html"> | ||
9297 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9298 | <context-group purpose="location"> | ||
9299 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9300 | <context context-type="linenumber">296</context> | ||
9301 | </context-group> | ||
9302 | </trans-unit><trans-unit id="ngb.timepicker.AM" datatype="html"> | ||
9303 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9304 | <context-group purpose="location"> | ||
9305 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9306 | <context context-type="linenumber">296</context> | ||
9307 | </context-group> | ||
9308 | </trans-unit><trans-unit id="ngb.toast.close-aria" datatype="html"> | ||
9309 | <source>Close</source><target state="new">Close</target> | ||
9310 | <context-group purpose="location"> | ||
9311 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/toast/toast.ts</context> | ||
9312 | <context context-type="linenumber">137</context> | ||
9313 | </context-group> | ||
9314 | </trans-unit> | ||
9285 | <trans-unit id="5210096066382592800"> | 9315 | <trans-unit id="5210096066382592800"> |
9286 | <source>Video to import updated.</source> | 9316 | <source>Video to import updated.</source> |
9287 | <target>Inportatzeko bideoa eguneratuta.</target> | 9317 | <target>Inportatzeko bideoa eguneratuta.</target> |
diff --git a/client/src/locale/angular.fa-IR.xlf b/client/src/locale/angular.fa-IR.xlf index 23815d28f..b274a4eef 100644 --- a/client/src/locale/angular.fa-IR.xlf +++ b/client/src/locale/angular.fa-IR.xlf | |||
@@ -1304,13 +1304,7 @@ The link will expire within 1 hour.</target> | |||
1304 | <source>Close</source> | 1304 | <source>Close</source> |
1305 | <target state="new">Close</target> | 1305 | <target state="new">Close</target> |
1306 | 1306 | ||
1307 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="680d5c75b7fd8d37961083608b9fcdc4167b4c43" datatype="html"> | 1307 | <context-group purpose="location"><context context-type="sourcefile">../app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1308 | <source>Previous</source><target state="new">Previous</target> | ||
1309 | <context-group purpose="location"> | ||
1310 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
1311 | <context context-type="linenumber">1</context> | ||
1312 | </context-group> | ||
1313 | </trans-unit> | ||
1314 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> | 1308 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> |
1315 | <source> | 1309 | <source> |
1316 | Configure | 1310 | Configure |
@@ -5764,157 +5758,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5764 | <source>Next</source> | 5758 | <source>Next</source> |
5765 | <target state="new">Next</target> | 5759 | <target state="new">Next</target> |
5766 | 5760 | ||
5767 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="c3b08b07b5ab98e7cdcf18df39355690ab7d3884" datatype="html"> | 5761 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit><trans-unit id="9082008222523034483" datatype="html"> |
5768 | <source>Previous month</source><target state="new">Previous month</target> | ||
5769 | <context-group purpose="location"> | ||
5770 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5771 | <context context-type="linenumber">1</context> | ||
5772 | </context-group> | ||
5773 | </trans-unit><trans-unit id="4bd046985cfe13040d5ef0cd881edce0968a111a" datatype="html"> | ||
5774 | <source>Next month</source><target state="new">Next month</target> | ||
5775 | <context-group purpose="location"> | ||
5776 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5777 | <context context-type="linenumber">1</context> | ||
5778 | </context-group> | ||
5779 | </trans-unit><trans-unit id="1dbc84807f35518112f62e5775d1daebd3d8462b" datatype="html"> | ||
5780 | <source>Select month</source><target state="new">Select month</target> | ||
5781 | <context-group purpose="location"> | ||
5782 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5783 | <context context-type="linenumber">1</context> | ||
5784 | </context-group> | ||
5785 | </trans-unit><trans-unit id="8ceb09d002bf0c5d1cac171dfbffe1805d2b3962" datatype="html"> | ||
5786 | <source>Select year</source><target state="new">Select year</target> | ||
5787 | <context-group purpose="location"> | ||
5788 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5789 | <context context-type="linenumber">1</context> | ||
5790 | </context-group> | ||
5791 | </trans-unit><trans-unit id="656506dfd46380956a655f919f1498d018f75ca0" datatype="html"> | ||
5792 | <source>««</source><target state="new">««</target> | ||
5793 | <context-group purpose="location"> | ||
5794 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5795 | <context context-type="linenumber">1</context> | ||
5796 | </context-group> | ||
5797 | </trans-unit><trans-unit id="6e52b6ee77a4848d899dd21b591c6fd499e3aef3" datatype="html"> | ||
5798 | <source>«</source><target state="new">«</target> | ||
5799 | <context-group purpose="location"> | ||
5800 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5801 | <context context-type="linenumber">1</context> | ||
5802 | </context-group> | ||
5803 | </trans-unit><trans-unit id="ba9cbb4ff311464308a3627e4f1c3345d9fe6d7d" datatype="html"> | ||
5804 | <source>»</source><target state="new">»</target> | ||
5805 | <context-group purpose="location"> | ||
5806 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5807 | <context context-type="linenumber">1</context> | ||
5808 | </context-group> | ||
5809 | </trans-unit><trans-unit id="49f27a460bc97e7e00be5b37098bfa79884fc7d9" datatype="html"> | ||
5810 | <source>»»</source><target state="new">»»</target> | ||
5811 | <context-group purpose="location"> | ||
5812 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5813 | <context context-type="linenumber">1</context> | ||
5814 | </context-group> | ||
5815 | </trans-unit><trans-unit id="f2f852318759c6396b5d3d17031d53817d7b38cc" datatype="html"> | ||
5816 | <source>First</source><target state="new">First</target> | ||
5817 | <context-group purpose="location"> | ||
5818 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5819 | <context context-type="linenumber">1</context> | ||
5820 | </context-group> | ||
5821 | </trans-unit><trans-unit id="5c729788ba138508aca1bec050b610f7bf81db3e" datatype="html"> | ||
5822 | <source>Last</source><target state="new">Last</target> | ||
5823 | <context-group purpose="location"> | ||
5824 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5825 | <context context-type="linenumber">1</context> | ||
5826 | </context-group> | ||
5827 | </trans-unit><trans-unit id="f8e9a947b9db4252c0e9905765338712f2fd032f" datatype="html"> | ||
5828 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5829 | <context-group purpose="location"> | ||
5830 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5831 | <context context-type="linenumber">1</context> | ||
5832 | </context-group> | ||
5833 | </trans-unit><trans-unit id="ce676ab1d6d98f85c836381cf100a4a91ef95a1f" datatype="html"> | ||
5834 | <source>HH</source><target state="new">HH</target> | ||
5835 | <context-group purpose="location"> | ||
5836 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5837 | <context context-type="linenumber">1</context> | ||
5838 | </context-group> | ||
5839 | </trans-unit><trans-unit id="3bbce5fef7e1151da052a4e529453edb340e3912" datatype="html"> | ||
5840 | <source>Hours</source><target state="new">Hours</target> | ||
5841 | <context-group purpose="location"> | ||
5842 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5843 | <context context-type="linenumber">1</context> | ||
5844 | </context-group> | ||
5845 | </trans-unit><trans-unit id="72c8edf6a50068a05bde70991e36b1e881f4ca54" datatype="html"> | ||
5846 | <source>MM</source><target state="new">MM</target> | ||
5847 | <context-group purpose="location"> | ||
5848 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5849 | <context context-type="linenumber">1</context> | ||
5850 | </context-group> | ||
5851 | </trans-unit><trans-unit id="41e62daa962947c0d23ded0981975d1bddf0bf38" datatype="html"> | ||
5852 | <source>Minutes</source><target state="new">Minutes</target> | ||
5853 | <context-group purpose="location"> | ||
5854 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5855 | <context context-type="linenumber">1</context> | ||
5856 | </context-group> | ||
5857 | </trans-unit><trans-unit id="cb74bc1d625a6c1742f0d7d47306cf495780c218" datatype="html"> | ||
5858 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
5859 | <context-group purpose="location"> | ||
5860 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5861 | <context context-type="linenumber">1</context> | ||
5862 | </context-group> | ||
5863 | </trans-unit><trans-unit id="147c7a19429da7d999e247d22e33fee370b1691b" datatype="html"> | ||
5864 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
5865 | <context-group purpose="location"> | ||
5866 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5867 | <context context-type="linenumber">1</context> | ||
5868 | </context-group> | ||
5869 | </trans-unit><trans-unit id="f5a4a3bc05e053f6732475d0e74875ec01c3a348" datatype="html"> | ||
5870 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
5871 | <context-group purpose="location"> | ||
5872 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5873 | <context context-type="linenumber">1</context> | ||
5874 | </context-group> | ||
5875 | </trans-unit><trans-unit id="c1a6899e529c096da5b660385d4e77fe1f7ad271" datatype="html"> | ||
5876 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
5877 | <context-group purpose="location"> | ||
5878 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5879 | <context context-type="linenumber">1</context> | ||
5880 | </context-group> | ||
5881 | </trans-unit><trans-unit id="ebe38d36a40a2383c5fefa9b4608ffbda08bd4a3" datatype="html"> | ||
5882 | <source>SS</source><target state="new">SS</target> | ||
5883 | <context-group purpose="location"> | ||
5884 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5885 | <context context-type="linenumber">1</context> | ||
5886 | </context-group> | ||
5887 | </trans-unit><trans-unit id="4f2ed9e71a7c981db3e50ae2fedb28aff2ec4e6c" datatype="html"> | ||
5888 | <source>Seconds</source><target state="new">Seconds</target> | ||
5889 | <context-group purpose="location"> | ||
5890 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5891 | <context context-type="linenumber">1</context> | ||
5892 | </context-group> | ||
5893 | </trans-unit><trans-unit id="912322ecee7d659d04dcf494a70e22e49d334b26" datatype="html"> | ||
5894 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
5895 | <context-group purpose="location"> | ||
5896 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5897 | <context context-type="linenumber">1</context> | ||
5898 | </context-group> | ||
5899 | </trans-unit><trans-unit id="5db47ac104294243a70eb9124fbea9d0004ddf69" datatype="html"> | ||
5900 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
5901 | <context-group purpose="location"> | ||
5902 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5903 | <context context-type="linenumber">1</context> | ||
5904 | </context-group> | ||
5905 | </trans-unit><trans-unit id="8d6e691e10306c1b34c6b26805151aaea320ef7f" datatype="html"> | ||
5906 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5907 | <context-group purpose="location"> | ||
5908 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5909 | <context context-type="linenumber">1</context> | ||
5910 | </context-group> | ||
5911 | </trans-unit><trans-unit id="69a1f176a93998876952adac57c3bc3863b6105e" datatype="html"> | ||
5912 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5913 | <context-group purpose="location"> | ||
5914 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5915 | <context context-type="linenumber">1</context> | ||
5916 | </context-group> | ||
5917 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
5918 | <source>Get help</source><target state="new">Get help</target> | 5762 | <source>Get help</source><target state="new">Get help</target> |
5919 | <context-group purpose="location"> | 5763 | <context-group purpose="location"> |
5920 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 5764 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> |
@@ -9461,7 +9305,193 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9461 | <source>Only users of this instance can see this video</source> | 9305 | <source>Only users of this instance can see this video</source> |
9462 | <target state="new">Only users of this instance can see this video</target> | 9306 | <target state="new">Only users of this instance can see this video</target> |
9463 | 9307 | ||
9464 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit> | 9308 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit><trans-unit id="ngb.alert.close" datatype="html"> |
9309 | <source>Close</source><target state="new">Close</target> | ||
9310 | <context-group purpose="location"> | ||
9311 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/alert/alert.ts</context> | ||
9312 | <context context-type="linenumber">74</context> | ||
9313 | </context-group> | ||
9314 | </trans-unit><trans-unit id="ngb.carousel.previous" datatype="html"> | ||
9315 | <source>Previous</source><target state="new">Previous</target> | ||
9316 | <context-group purpose="location"> | ||
9317 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9318 | <context context-type="linenumber">349</context> | ||
9319 | </context-group> | ||
9320 | </trans-unit><trans-unit id="ngb.carousel.next" datatype="html"> | ||
9321 | <source>Next</source><target state="new">Next</target> | ||
9322 | <context-group purpose="location"> | ||
9323 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9324 | <context context-type="linenumber">349</context> | ||
9325 | </context-group> | ||
9326 | </trans-unit><trans-unit id="ngb.datepicker.previous-month" datatype="html"> | ||
9327 | <source>Previous month</source><target state="new">Previous month</target> | ||
9328 | <context-group purpose="location"> | ||
9329 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation.ts</context> | ||
9330 | <context context-type="linenumber">69</context> | ||
9331 | </context-group> | ||
9332 | </trans-unit><trans-unit id="ngb.datepicker.next-month" datatype="html"> | ||
9333 | <source>Next month</source><target state="new">Next month</target> | ||
9334 | <context-group purpose="location"> | ||
9335 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-month.ts</context> | ||
9336 | <context context-type="linenumber">72</context> | ||
9337 | </context-group> | ||
9338 | </trans-unit><trans-unit id="ngb.datepicker.select-month" datatype="html"> | ||
9339 | <source>Select month</source><target state="new">Select month</target> | ||
9340 | <context-group purpose="location"> | ||
9341 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9342 | <context context-type="linenumber">74</context> | ||
9343 | </context-group> | ||
9344 | </trans-unit><trans-unit id="ngb.datepicker.select-year" datatype="html"> | ||
9345 | <source>Select year</source><target state="new">Select year</target> | ||
9346 | <context-group purpose="location"> | ||
9347 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9348 | <context context-type="linenumber">74</context> | ||
9349 | </context-group> | ||
9350 | </trans-unit><trans-unit id="ngb.pagination.first" datatype="html"> | ||
9351 | <source>««</source><target state="new">««</target> | ||
9352 | <context-group purpose="location"> | ||
9353 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9354 | <context context-type="linenumber">404</context> | ||
9355 | </context-group> | ||
9356 | </trans-unit><trans-unit id="ngb.pagination.previous" datatype="html"> | ||
9357 | <source>«</source><target state="new">«</target> | ||
9358 | <context-group purpose="location"> | ||
9359 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9360 | <context context-type="linenumber">404</context> | ||
9361 | </context-group> | ||
9362 | </trans-unit><trans-unit id="ngb.pagination.next" datatype="html"> | ||
9363 | <source>»</source><target state="new">»</target> | ||
9364 | <context-group purpose="location"> | ||
9365 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9366 | <context context-type="linenumber">404</context> | ||
9367 | </context-group> | ||
9368 | </trans-unit><trans-unit id="ngb.pagination.last" datatype="html"> | ||
9369 | <source>»»</source><target state="new">»»</target> | ||
9370 | <context-group purpose="location"> | ||
9371 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9372 | <context context-type="linenumber">404</context> | ||
9373 | </context-group> | ||
9374 | </trans-unit><trans-unit id="ngb.pagination.first-aria" datatype="html"> | ||
9375 | <source>First</source><target state="new">First</target> | ||
9376 | <context-group purpose="location"> | ||
9377 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9378 | <context context-type="linenumber">404</context> | ||
9379 | </context-group> | ||
9380 | </trans-unit><trans-unit id="ngb.pagination.previous-aria" datatype="html"> | ||
9381 | <source>Previous</source><target state="new">Previous</target> | ||
9382 | <context-group purpose="location"> | ||
9383 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9384 | <context context-type="linenumber">404</context> | ||
9385 | </context-group> | ||
9386 | </trans-unit><trans-unit id="ngb.pagination.next-aria" datatype="html"> | ||
9387 | <source>Next</source><target state="new">Next</target> | ||
9388 | <context-group purpose="location"> | ||
9389 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9390 | <context context-type="linenumber">404</context> | ||
9391 | </context-group> | ||
9392 | </trans-unit><trans-unit id="ngb.pagination.last-aria" datatype="html"> | ||
9393 | <source>Last</source><target state="new">Last</target> | ||
9394 | <context-group purpose="location"> | ||
9395 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9396 | <context context-type="linenumber">404</context> | ||
9397 | </context-group> | ||
9398 | </trans-unit><trans-unit id="ngb.progressbar.value" datatype="html"> | ||
9399 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9400 | <context-group purpose="location"> | ||
9401 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/progressbar/progressbar.ts</context> | ||
9402 | <context context-type="linenumber">101</context> | ||
9403 | </context-group> | ||
9404 | </trans-unit><trans-unit id="ngb.timepicker.HH" datatype="html"> | ||
9405 | <source>HH</source><target state="new">HH</target> | ||
9406 | <context-group purpose="location"> | ||
9407 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9408 | <context context-type="linenumber">296</context> | ||
9409 | </context-group> | ||
9410 | </trans-unit><trans-unit id="ngb.timepicker.hours" datatype="html"> | ||
9411 | <source>Hours</source><target state="new">Hours</target> | ||
9412 | <context-group purpose="location"> | ||
9413 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9414 | <context context-type="linenumber">296</context> | ||
9415 | </context-group> | ||
9416 | </trans-unit><trans-unit id="ngb.timepicker.MM" datatype="html"> | ||
9417 | <source>MM</source><target state="new">MM</target> | ||
9418 | <context-group purpose="location"> | ||
9419 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9420 | <context context-type="linenumber">296</context> | ||
9421 | </context-group> | ||
9422 | </trans-unit><trans-unit id="ngb.timepicker.minutes" datatype="html"> | ||
9423 | <source>Minutes</source><target state="new">Minutes</target> | ||
9424 | <context-group purpose="location"> | ||
9425 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9426 | <context context-type="linenumber">296</context> | ||
9427 | </context-group> | ||
9428 | </trans-unit><trans-unit id="ngb.timepicker.increment-hours" datatype="html"> | ||
9429 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
9430 | <context-group purpose="location"> | ||
9431 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9432 | <context context-type="linenumber">296</context> | ||
9433 | </context-group> | ||
9434 | </trans-unit><trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> | ||
9435 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
9436 | <context-group purpose="location"> | ||
9437 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9438 | <context context-type="linenumber">296</context> | ||
9439 | </context-group> | ||
9440 | </trans-unit><trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> | ||
9441 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
9442 | <context-group purpose="location"> | ||
9443 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9444 | <context context-type="linenumber">296</context> | ||
9445 | </context-group> | ||
9446 | </trans-unit><trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> | ||
9447 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
9448 | <context-group purpose="location"> | ||
9449 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9450 | <context context-type="linenumber">296</context> | ||
9451 | </context-group> | ||
9452 | </trans-unit><trans-unit id="ngb.timepicker.SS" datatype="html"> | ||
9453 | <source>SS</source><target state="new">SS</target> | ||
9454 | <context-group purpose="location"> | ||
9455 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9456 | <context context-type="linenumber">296</context> | ||
9457 | </context-group> | ||
9458 | </trans-unit><trans-unit id="ngb.timepicker.seconds" datatype="html"> | ||
9459 | <source>Seconds</source><target state="new">Seconds</target> | ||
9460 | <context-group purpose="location"> | ||
9461 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9462 | <context context-type="linenumber">296</context> | ||
9463 | </context-group> | ||
9464 | </trans-unit><trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> | ||
9465 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
9466 | <context-group purpose="location"> | ||
9467 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9468 | <context context-type="linenumber">296</context> | ||
9469 | </context-group> | ||
9470 | </trans-unit><trans-unit id="ngb.timepicker.decrement-seconds" datatype="html"> | ||
9471 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
9472 | <context-group purpose="location"> | ||
9473 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9474 | <context context-type="linenumber">296</context> | ||
9475 | </context-group> | ||
9476 | </trans-unit><trans-unit id="ngb.timepicker.PM" datatype="html"> | ||
9477 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9478 | <context-group purpose="location"> | ||
9479 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9480 | <context context-type="linenumber">296</context> | ||
9481 | </context-group> | ||
9482 | </trans-unit><trans-unit id="ngb.timepicker.AM" datatype="html"> | ||
9483 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9484 | <context-group purpose="location"> | ||
9485 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9486 | <context context-type="linenumber">296</context> | ||
9487 | </context-group> | ||
9488 | </trans-unit><trans-unit id="ngb.toast.close-aria" datatype="html"> | ||
9489 | <source>Close</source><target state="new">Close</target> | ||
9490 | <context-group purpose="location"> | ||
9491 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/toast/toast.ts</context> | ||
9492 | <context context-type="linenumber">137</context> | ||
9493 | </context-group> | ||
9494 | </trans-unit> | ||
9465 | <trans-unit id="5210096066382592800" datatype="html"> | 9495 | <trans-unit id="5210096066382592800" datatype="html"> |
9466 | <source>Video to import updated.</source> | 9496 | <source>Video to import updated.</source> |
9467 | <target state="new">Video to import updated.</target> | 9497 | <target state="new">Video to import updated.</target> |
diff --git a/client/src/locale/angular.fi-FI.xlf b/client/src/locale/angular.fi-FI.xlf index 5ffb5c38a..3c9c22446 100644 --- a/client/src/locale/angular.fi-FI.xlf +++ b/client/src/locale/angular.fi-FI.xlf | |||
@@ -1259,13 +1259,7 @@ The link will expire within 1 hour.</target> | |||
1259 | <source>Close</source> | 1259 | <source>Close</source> |
1260 | <target>Sulje</target> | 1260 | <target>Sulje</target> |
1261 | 1261 | ||
1262 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="680d5c75b7fd8d37961083608b9fcdc4167b4c43" datatype="html"> | 1262 | <context-group purpose="location"><context context-type="sourcefile">../app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1263 | <source>Previous</source><target state="new">Previous</target> | ||
1264 | <context-group purpose="location"> | ||
1265 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
1266 | <context context-type="linenumber">1</context> | ||
1267 | </context-group> | ||
1268 | </trans-unit> | ||
1269 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> | 1263 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> |
1270 | <source> | 1264 | <source> |
1271 | Configure | 1265 | Configure |
@@ -5720,157 +5714,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5720 | <source>Next</source> | 5714 | <source>Next</source> |
5721 | <target>Seuraava</target> | 5715 | <target>Seuraava</target> |
5722 | 5716 | ||
5723 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="c3b08b07b5ab98e7cdcf18df39355690ab7d3884" datatype="html"> | 5717 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit><trans-unit id="9082008222523034483" datatype="html"> |
5724 | <source>Previous month</source><target state="new">Previous month</target> | ||
5725 | <context-group purpose="location"> | ||
5726 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5727 | <context context-type="linenumber">1</context> | ||
5728 | </context-group> | ||
5729 | </trans-unit><trans-unit id="4bd046985cfe13040d5ef0cd881edce0968a111a" datatype="html"> | ||
5730 | <source>Next month</source><target state="new">Next month</target> | ||
5731 | <context-group purpose="location"> | ||
5732 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5733 | <context context-type="linenumber">1</context> | ||
5734 | </context-group> | ||
5735 | </trans-unit><trans-unit id="1dbc84807f35518112f62e5775d1daebd3d8462b" datatype="html"> | ||
5736 | <source>Select month</source><target state="new">Select month</target> | ||
5737 | <context-group purpose="location"> | ||
5738 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5739 | <context context-type="linenumber">1</context> | ||
5740 | </context-group> | ||
5741 | </trans-unit><trans-unit id="8ceb09d002bf0c5d1cac171dfbffe1805d2b3962" datatype="html"> | ||
5742 | <source>Select year</source><target state="new">Select year</target> | ||
5743 | <context-group purpose="location"> | ||
5744 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5745 | <context context-type="linenumber">1</context> | ||
5746 | </context-group> | ||
5747 | </trans-unit><trans-unit id="656506dfd46380956a655f919f1498d018f75ca0" datatype="html"> | ||
5748 | <source>««</source><target state="new">««</target> | ||
5749 | <context-group purpose="location"> | ||
5750 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5751 | <context context-type="linenumber">1</context> | ||
5752 | </context-group> | ||
5753 | </trans-unit><trans-unit id="6e52b6ee77a4848d899dd21b591c6fd499e3aef3" datatype="html"> | ||
5754 | <source>«</source><target state="new">«</target> | ||
5755 | <context-group purpose="location"> | ||
5756 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5757 | <context context-type="linenumber">1</context> | ||
5758 | </context-group> | ||
5759 | </trans-unit><trans-unit id="ba9cbb4ff311464308a3627e4f1c3345d9fe6d7d" datatype="html"> | ||
5760 | <source>»</source><target state="new">»</target> | ||
5761 | <context-group purpose="location"> | ||
5762 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5763 | <context context-type="linenumber">1</context> | ||
5764 | </context-group> | ||
5765 | </trans-unit><trans-unit id="49f27a460bc97e7e00be5b37098bfa79884fc7d9" datatype="html"> | ||
5766 | <source>»»</source><target state="new">»»</target> | ||
5767 | <context-group purpose="location"> | ||
5768 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5769 | <context context-type="linenumber">1</context> | ||
5770 | </context-group> | ||
5771 | </trans-unit><trans-unit id="f2f852318759c6396b5d3d17031d53817d7b38cc" datatype="html"> | ||
5772 | <source>First</source><target state="new">First</target> | ||
5773 | <context-group purpose="location"> | ||
5774 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5775 | <context context-type="linenumber">1</context> | ||
5776 | </context-group> | ||
5777 | </trans-unit><trans-unit id="5c729788ba138508aca1bec050b610f7bf81db3e" datatype="html"> | ||
5778 | <source>Last</source><target state="new">Last</target> | ||
5779 | <context-group purpose="location"> | ||
5780 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5781 | <context context-type="linenumber">1</context> | ||
5782 | </context-group> | ||
5783 | </trans-unit><trans-unit id="f8e9a947b9db4252c0e9905765338712f2fd032f" datatype="html"> | ||
5784 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5785 | <context-group purpose="location"> | ||
5786 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5787 | <context context-type="linenumber">1</context> | ||
5788 | </context-group> | ||
5789 | </trans-unit><trans-unit id="ce676ab1d6d98f85c836381cf100a4a91ef95a1f" datatype="html"> | ||
5790 | <source>HH</source><target state="new">HH</target> | ||
5791 | <context-group purpose="location"> | ||
5792 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5793 | <context context-type="linenumber">1</context> | ||
5794 | </context-group> | ||
5795 | </trans-unit><trans-unit id="3bbce5fef7e1151da052a4e529453edb340e3912" datatype="html"> | ||
5796 | <source>Hours</source><target state="new">Hours</target> | ||
5797 | <context-group purpose="location"> | ||
5798 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5799 | <context context-type="linenumber">1</context> | ||
5800 | </context-group> | ||
5801 | </trans-unit><trans-unit id="72c8edf6a50068a05bde70991e36b1e881f4ca54" datatype="html"> | ||
5802 | <source>MM</source><target state="new">MM</target> | ||
5803 | <context-group purpose="location"> | ||
5804 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5805 | <context context-type="linenumber">1</context> | ||
5806 | </context-group> | ||
5807 | </trans-unit><trans-unit id="41e62daa962947c0d23ded0981975d1bddf0bf38" datatype="html"> | ||
5808 | <source>Minutes</source><target state="new">Minutes</target> | ||
5809 | <context-group purpose="location"> | ||
5810 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5811 | <context context-type="linenumber">1</context> | ||
5812 | </context-group> | ||
5813 | </trans-unit><trans-unit id="cb74bc1d625a6c1742f0d7d47306cf495780c218" datatype="html"> | ||
5814 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
5815 | <context-group purpose="location"> | ||
5816 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5817 | <context context-type="linenumber">1</context> | ||
5818 | </context-group> | ||
5819 | </trans-unit><trans-unit id="147c7a19429da7d999e247d22e33fee370b1691b" datatype="html"> | ||
5820 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
5821 | <context-group purpose="location"> | ||
5822 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5823 | <context context-type="linenumber">1</context> | ||
5824 | </context-group> | ||
5825 | </trans-unit><trans-unit id="f5a4a3bc05e053f6732475d0e74875ec01c3a348" datatype="html"> | ||
5826 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
5827 | <context-group purpose="location"> | ||
5828 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5829 | <context context-type="linenumber">1</context> | ||
5830 | </context-group> | ||
5831 | </trans-unit><trans-unit id="c1a6899e529c096da5b660385d4e77fe1f7ad271" datatype="html"> | ||
5832 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
5833 | <context-group purpose="location"> | ||
5834 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5835 | <context context-type="linenumber">1</context> | ||
5836 | </context-group> | ||
5837 | </trans-unit><trans-unit id="ebe38d36a40a2383c5fefa9b4608ffbda08bd4a3" datatype="html"> | ||
5838 | <source>SS</source><target state="new">SS</target> | ||
5839 | <context-group purpose="location"> | ||
5840 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5841 | <context context-type="linenumber">1</context> | ||
5842 | </context-group> | ||
5843 | </trans-unit><trans-unit id="4f2ed9e71a7c981db3e50ae2fedb28aff2ec4e6c" datatype="html"> | ||
5844 | <source>Seconds</source><target state="new">Seconds</target> | ||
5845 | <context-group purpose="location"> | ||
5846 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5847 | <context context-type="linenumber">1</context> | ||
5848 | </context-group> | ||
5849 | </trans-unit><trans-unit id="912322ecee7d659d04dcf494a70e22e49d334b26" datatype="html"> | ||
5850 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
5851 | <context-group purpose="location"> | ||
5852 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5853 | <context context-type="linenumber">1</context> | ||
5854 | </context-group> | ||
5855 | </trans-unit><trans-unit id="5db47ac104294243a70eb9124fbea9d0004ddf69" datatype="html"> | ||
5856 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
5857 | <context-group purpose="location"> | ||
5858 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5859 | <context context-type="linenumber">1</context> | ||
5860 | </context-group> | ||
5861 | </trans-unit><trans-unit id="8d6e691e10306c1b34c6b26805151aaea320ef7f" datatype="html"> | ||
5862 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5863 | <context-group purpose="location"> | ||
5864 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5865 | <context context-type="linenumber">1</context> | ||
5866 | </context-group> | ||
5867 | </trans-unit><trans-unit id="69a1f176a93998876952adac57c3bc3863b6105e" datatype="html"> | ||
5868 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5869 | <context-group purpose="location"> | ||
5870 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5871 | <context context-type="linenumber">1</context> | ||
5872 | </context-group> | ||
5873 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
5874 | <source>Get help</source><target state="new">Get help</target> | 5718 | <source>Get help</source><target state="new">Get help</target> |
5875 | <context-group purpose="location"> | 5719 | <context-group purpose="location"> |
5876 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 5720 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> |
@@ -9395,7 +9239,193 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9395 | <source>Only users of this instance can see this video</source> | 9239 | <source>Only users of this instance can see this video</source> |
9396 | <target state="new">Only users of this instance can see this video</target> | 9240 | <target state="new">Only users of this instance can see this video</target> |
9397 | 9241 | ||
9398 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit> | 9242 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit><trans-unit id="ngb.alert.close" datatype="html"> |
9243 | <source>Close</source><target state="new">Close</target> | ||
9244 | <context-group purpose="location"> | ||
9245 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/alert/alert.ts</context> | ||
9246 | <context context-type="linenumber">74</context> | ||
9247 | </context-group> | ||
9248 | </trans-unit><trans-unit id="ngb.carousel.previous" datatype="html"> | ||
9249 | <source>Previous</source><target state="new">Previous</target> | ||
9250 | <context-group purpose="location"> | ||
9251 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9252 | <context context-type="linenumber">349</context> | ||
9253 | </context-group> | ||
9254 | </trans-unit><trans-unit id="ngb.carousel.next" datatype="html"> | ||
9255 | <source>Next</source><target state="new">Next</target> | ||
9256 | <context-group purpose="location"> | ||
9257 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9258 | <context context-type="linenumber">349</context> | ||
9259 | </context-group> | ||
9260 | </trans-unit><trans-unit id="ngb.datepicker.previous-month" datatype="html"> | ||
9261 | <source>Previous month</source><target state="new">Previous month</target> | ||
9262 | <context-group purpose="location"> | ||
9263 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation.ts</context> | ||
9264 | <context context-type="linenumber">69</context> | ||
9265 | </context-group> | ||
9266 | </trans-unit><trans-unit id="ngb.datepicker.next-month" datatype="html"> | ||
9267 | <source>Next month</source><target state="new">Next month</target> | ||
9268 | <context-group purpose="location"> | ||
9269 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-month.ts</context> | ||
9270 | <context context-type="linenumber">72</context> | ||
9271 | </context-group> | ||
9272 | </trans-unit><trans-unit id="ngb.datepicker.select-month" datatype="html"> | ||
9273 | <source>Select month</source><target state="new">Select month</target> | ||
9274 | <context-group purpose="location"> | ||
9275 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9276 | <context context-type="linenumber">74</context> | ||
9277 | </context-group> | ||
9278 | </trans-unit><trans-unit id="ngb.datepicker.select-year" datatype="html"> | ||
9279 | <source>Select year</source><target state="new">Select year</target> | ||
9280 | <context-group purpose="location"> | ||
9281 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9282 | <context context-type="linenumber">74</context> | ||
9283 | </context-group> | ||
9284 | </trans-unit><trans-unit id="ngb.pagination.first" datatype="html"> | ||
9285 | <source>««</source><target state="new">««</target> | ||
9286 | <context-group purpose="location"> | ||
9287 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9288 | <context context-type="linenumber">404</context> | ||
9289 | </context-group> | ||
9290 | </trans-unit><trans-unit id="ngb.pagination.previous" datatype="html"> | ||
9291 | <source>«</source><target state="new">«</target> | ||
9292 | <context-group purpose="location"> | ||
9293 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9294 | <context context-type="linenumber">404</context> | ||
9295 | </context-group> | ||
9296 | </trans-unit><trans-unit id="ngb.pagination.next" datatype="html"> | ||
9297 | <source>»</source><target state="new">»</target> | ||
9298 | <context-group purpose="location"> | ||
9299 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9300 | <context context-type="linenumber">404</context> | ||
9301 | </context-group> | ||
9302 | </trans-unit><trans-unit id="ngb.pagination.last" datatype="html"> | ||
9303 | <source>»»</source><target state="new">»»</target> | ||
9304 | <context-group purpose="location"> | ||
9305 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9306 | <context context-type="linenumber">404</context> | ||
9307 | </context-group> | ||
9308 | </trans-unit><trans-unit id="ngb.pagination.first-aria" datatype="html"> | ||
9309 | <source>First</source><target state="new">First</target> | ||
9310 | <context-group purpose="location"> | ||
9311 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9312 | <context context-type="linenumber">404</context> | ||
9313 | </context-group> | ||
9314 | </trans-unit><trans-unit id="ngb.pagination.previous-aria" datatype="html"> | ||
9315 | <source>Previous</source><target state="new">Previous</target> | ||
9316 | <context-group purpose="location"> | ||
9317 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9318 | <context context-type="linenumber">404</context> | ||
9319 | </context-group> | ||
9320 | </trans-unit><trans-unit id="ngb.pagination.next-aria" datatype="html"> | ||
9321 | <source>Next</source><target state="new">Next</target> | ||
9322 | <context-group purpose="location"> | ||
9323 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9324 | <context context-type="linenumber">404</context> | ||
9325 | </context-group> | ||
9326 | </trans-unit><trans-unit id="ngb.pagination.last-aria" datatype="html"> | ||
9327 | <source>Last</source><target state="new">Last</target> | ||
9328 | <context-group purpose="location"> | ||
9329 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9330 | <context context-type="linenumber">404</context> | ||
9331 | </context-group> | ||
9332 | </trans-unit><trans-unit id="ngb.progressbar.value" datatype="html"> | ||
9333 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9334 | <context-group purpose="location"> | ||
9335 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/progressbar/progressbar.ts</context> | ||
9336 | <context context-type="linenumber">101</context> | ||
9337 | </context-group> | ||
9338 | </trans-unit><trans-unit id="ngb.timepicker.HH" datatype="html"> | ||
9339 | <source>HH</source><target state="new">HH</target> | ||
9340 | <context-group purpose="location"> | ||
9341 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9342 | <context context-type="linenumber">296</context> | ||
9343 | </context-group> | ||
9344 | </trans-unit><trans-unit id="ngb.timepicker.hours" datatype="html"> | ||
9345 | <source>Hours</source><target state="new">Hours</target> | ||
9346 | <context-group purpose="location"> | ||
9347 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9348 | <context context-type="linenumber">296</context> | ||
9349 | </context-group> | ||
9350 | </trans-unit><trans-unit id="ngb.timepicker.MM" datatype="html"> | ||
9351 | <source>MM</source><target state="new">MM</target> | ||
9352 | <context-group purpose="location"> | ||
9353 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9354 | <context context-type="linenumber">296</context> | ||
9355 | </context-group> | ||
9356 | </trans-unit><trans-unit id="ngb.timepicker.minutes" datatype="html"> | ||
9357 | <source>Minutes</source><target state="new">Minutes</target> | ||
9358 | <context-group purpose="location"> | ||
9359 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9360 | <context context-type="linenumber">296</context> | ||
9361 | </context-group> | ||
9362 | </trans-unit><trans-unit id="ngb.timepicker.increment-hours" datatype="html"> | ||
9363 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
9364 | <context-group purpose="location"> | ||
9365 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9366 | <context context-type="linenumber">296</context> | ||
9367 | </context-group> | ||
9368 | </trans-unit><trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> | ||
9369 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
9370 | <context-group purpose="location"> | ||
9371 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9372 | <context context-type="linenumber">296</context> | ||
9373 | </context-group> | ||
9374 | </trans-unit><trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> | ||
9375 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
9376 | <context-group purpose="location"> | ||
9377 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9378 | <context context-type="linenumber">296</context> | ||
9379 | </context-group> | ||
9380 | </trans-unit><trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> | ||
9381 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
9382 | <context-group purpose="location"> | ||
9383 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9384 | <context context-type="linenumber">296</context> | ||
9385 | </context-group> | ||
9386 | </trans-unit><trans-unit id="ngb.timepicker.SS" datatype="html"> | ||
9387 | <source>SS</source><target state="new">SS</target> | ||
9388 | <context-group purpose="location"> | ||
9389 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9390 | <context context-type="linenumber">296</context> | ||
9391 | </context-group> | ||
9392 | </trans-unit><trans-unit id="ngb.timepicker.seconds" datatype="html"> | ||
9393 | <source>Seconds</source><target state="new">Seconds</target> | ||
9394 | <context-group purpose="location"> | ||
9395 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9396 | <context context-type="linenumber">296</context> | ||
9397 | </context-group> | ||
9398 | </trans-unit><trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> | ||
9399 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
9400 | <context-group purpose="location"> | ||
9401 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9402 | <context context-type="linenumber">296</context> | ||
9403 | </context-group> | ||
9404 | </trans-unit><trans-unit id="ngb.timepicker.decrement-seconds" datatype="html"> | ||
9405 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
9406 | <context-group purpose="location"> | ||
9407 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9408 | <context context-type="linenumber">296</context> | ||
9409 | </context-group> | ||
9410 | </trans-unit><trans-unit id="ngb.timepicker.PM" datatype="html"> | ||
9411 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9412 | <context-group purpose="location"> | ||
9413 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9414 | <context context-type="linenumber">296</context> | ||
9415 | </context-group> | ||
9416 | </trans-unit><trans-unit id="ngb.timepicker.AM" datatype="html"> | ||
9417 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9418 | <context-group purpose="location"> | ||
9419 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9420 | <context context-type="linenumber">296</context> | ||
9421 | </context-group> | ||
9422 | </trans-unit><trans-unit id="ngb.toast.close-aria" datatype="html"> | ||
9423 | <source>Close</source><target state="new">Close</target> | ||
9424 | <context-group purpose="location"> | ||
9425 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/toast/toast.ts</context> | ||
9426 | <context context-type="linenumber">137</context> | ||
9427 | </context-group> | ||
9428 | </trans-unit> | ||
9399 | <trans-unit id="5210096066382592800"> | 9429 | <trans-unit id="5210096066382592800"> |
9400 | <source>Video to import updated.</source> | 9430 | <source>Video to import updated.</source> |
9401 | <target>Tuotava video päivitetty.</target> | 9431 | <target>Tuotava video päivitetty.</target> |
diff --git a/client/src/locale/angular.fr-FR.xlf b/client/src/locale/angular.fr-FR.xlf index 3f59acdf3..b8a596d8f 100644 --- a/client/src/locale/angular.fr-FR.xlf +++ b/client/src/locale/angular.fr-FR.xlf | |||
@@ -392,8 +392,8 @@ | |||
392 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-forms/markdown-textarea.component.html</context><context context-type="linenumber">19</context></context-group> | 392 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-forms/markdown-textarea.component.html</context><context context-type="linenumber">19</context></context-group> |
393 | </trans-unit> | 393 | </trans-unit> |
394 | <trans-unit id="8644431249513874405" datatype="html"> | 394 | <trans-unit id="8644431249513874405" datatype="html"> |
395 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source> | 395 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source> |
396 | <target state="translated"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible qui supporte :</target> | 396 | <target state="translated"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible qui supporte :</target> |
397 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">75</context></context-group> | 397 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">75</context></context-group> |
398 | </trans-unit> | 398 | </trans-unit> |
399 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> | 399 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> |
@@ -693,7 +693,8 @@ | |||
693 | <context-group purpose="location"><context context-type="sourcefile">../app/+login/login.component.html</context><context context-type="linenumber">91</context></context-group> | 693 | <context-group purpose="location"><context context-type="sourcefile">../app/+login/login.component.html</context><context context-type="linenumber">91</context></context-group> |
694 | </trans-unit> | 694 | </trans-unit> |
695 | <trans-unit id="1190256911880544559" datatype="html"> | 695 | <trans-unit id="1190256911880544559" datatype="html"> |
696 | <source>An email with the reset password instructions will be sent to <x id="PH"/>. The link will expire within 1 hour.</source> | 696 | <source>An email with the reset password instructions will be sent to <x id="PH"/>. |
697 | The link will expire within 1 hour.</source> | ||
697 | <target state="translated">Un e-mail contenant les instructions de réinitialisation du mot de passe sera envoyé à <x id="PH"/>. Le lien expirera dans 1 heure.</target> | 698 | <target state="translated">Un e-mail contenant les instructions de réinitialisation du mot de passe sera envoyé à <x id="PH"/>. Le lien expirera dans 1 heure.</target> |
698 | <context-group purpose="location"> | 699 | <context-group purpose="location"> |
699 | <context context-type="sourcefile">../app/+login/login.component.ts</context> | 700 | <context context-type="sourcefile">../app/+login/login.component.ts</context> |
@@ -909,16 +910,9 @@ | |||
909 | <trans-unit id="f4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8"> | 910 | <trans-unit id="f4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8"> |
910 | <source>Close</source> | 911 | <source>Close</source> |
911 | <target>Fermer</target> | 912 | <target>Fermer</target> |
912 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group> | 913 | |
913 | </trans-unit> | 914 | <context-group purpose="location"><context context-type="sourcefile">../app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
914 | <trans-unit id="680d5c75b7fd8d37961083608b9fcdc4167b4c43" datatype="html"> | 915 | |
915 | <source>Previous</source> | ||
916 | <target state="translated">Précédent</target> | ||
917 | <context-group purpose="location"> | ||
918 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
919 | <context context-type="linenumber">1</context> | ||
920 | </context-group> | ||
921 | </trans-unit> | ||
922 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> | 916 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> |
923 | <source>Configure</source> | 917 | <source>Configure</source> |
924 | <target state="translated">Configurer</target> | 918 | <target state="translated">Configurer</target> |
@@ -1486,7 +1480,7 @@ | |||
1486 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">163</context></context-group> | 1480 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">163</context></context-group> |
1487 | </trans-unit> | 1481 | </trans-unit> |
1488 | <trans-unit id="e687f6387adbaf61ce650b58f0e60ca42d843cee"> | 1482 | <trans-unit id="e687f6387adbaf61ce650b58f0e60ca42d843cee"> |
1489 | <source>Already uploaded ✔</source> | 1483 | <source>Already uploaded ✔</source> |
1490 | <target>Déjà téléversé ✔</target> | 1484 | <target>Déjà téléversé ✔</target> |
1491 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">167</context></context-group> | 1485 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">167</context></context-group> |
1492 | </trans-unit> | 1486 | </trans-unit> |
@@ -3051,8 +3045,8 @@ | |||
3051 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">24</context></context-group> | 3045 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">24</context></context-group> |
3052 | </trans-unit> | 3046 | </trans-unit> |
3053 | <trans-unit id="e4ce2d897f4bdce126c9012769654301a587110a" datatype="html"> | 3047 | <trans-unit id="e4ce2d897f4bdce126c9012769654301a587110a" datatype="html"> |
3054 | <source>By <x id="INTERPOLATION"/> -></source> | 3048 | <source>By <x id="INTERPOLATION"/> -></source> |
3055 | <target state="translated">Par <x id="INTERPOLATION"/> -></target> | 3049 | <target state="translated">Par <x id="INTERPOLATION"/> -></target> |
3056 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">32</context></context-group> | 3050 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/system/logs/logs.component.html</context><context context-type="linenumber">32</context></context-group> |
3057 | </trans-unit> | 3051 | </trans-unit> |
3058 | <trans-unit id="3441b78841dad60f36576d99e38241ae7fefa933" datatype="html"> | 3052 | <trans-unit id="3441b78841dad60f36576d99e38241ae7fefa933" datatype="html"> |
@@ -3636,8 +3630,8 @@ | |||
3636 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">758</context></context-group> | 3630 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">758</context></context-group> |
3637 | </trans-unit> | 3631 | </trans-unit> |
3638 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> | 3632 | <trans-unit id="a0a116af355dfc3ac02f4501c2ffadb882768564" datatype="html"> |
3639 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> | 3633 | <source><x id="START_TAG_STRONG"/>Requires ffmpeg >= 4.1<x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Generate HLS playlists and fragmented MP4 files resulting in a better playback than with the current default player:<x id="CLOSE_PARAGRAPH"/><x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Resolution change is smoother<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Faster playback in particular with long videos<x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>More stable playback (less bugs/infinite loading)<x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>If you also enabled WebTorrent support, it will multiply videos storage by 2<x id="CLOSE_PARAGRAPH"/></source> |
3640 | <target state="translated"><x id="START_TAG_STRONG"/>Requiert ffmpeg >= 4.1 <x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Génère des listes de lecture HLS et des MP4 fragmentés résultant en une meilleure lecture de la vidéo qu'avec le lecteur traditionnel : <x id="CLOSE_PARAGRAPH"/> <x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Le changement de résolution se fait sans heurts <x id="CLOSE_LIST_ITEM"/> <x id="START_LIST_ITEM"/>Chargement de la mémoire tampon plus rapide au démarrage de la lecture <x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Lecture plus stable (moins de bugs/plus de chargement infini) <x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>Si vous avez aussi laissé activé WebTorrent, multiplie par 2 le stockage requis <x id="CLOSE_PARAGRAPH"/></target> | 3634 | <target state="translated"><x id="START_TAG_STRONG"/>Requiert ffmpeg >= 4.1 <x id="CLOSE_TAG_STRONG"/><x id="START_PARAGRAPH"/>Génère des listes de lecture HLS et des MP4 fragmentés résultant en une meilleure lecture de la vidéo qu'avec le lecteur traditionnel : <x id="CLOSE_PARAGRAPH"/> <x id="START_UNORDERED_LIST"/><x id="START_LIST_ITEM"/>Le changement de résolution se fait sans heurts <x id="CLOSE_LIST_ITEM"/> <x id="START_LIST_ITEM"/>Chargement de la mémoire tampon plus rapide au démarrage de la lecture <x id="CLOSE_LIST_ITEM"/><x id="START_LIST_ITEM"/>Lecture plus stable (moins de bugs/plus de chargement infini) <x id="CLOSE_LIST_ITEM"/><x id="CLOSE_UNORDERED_LIST"/><x id="START_PARAGRAPH"/>Si vous avez aussi laissé activé WebTorrent, multiplie par 2 le stockage requis <x id="CLOSE_PARAGRAPH"/></target> |
3641 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">783</context></context-group> | 3635 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">783</context></context-group> |
3642 | </trans-unit> | 3636 | </trans-unit> |
3643 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> | 3637 | <trans-unit id="5ac527cc856e9fa02927ccb0a6172688e07c1d7a" datatype="html"> |
@@ -3696,7 +3690,13 @@ | |||
3696 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">892</context></context-group> | 3690 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">892</context></context-group> |
3697 | </trans-unit> | 3691 | </trans-unit> |
3698 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> | 3692 | <trans-unit id="ef86c28e82ac4b08e6914d2a067e5455b4d4f4f7" datatype="html"> |
3699 | <source>Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> color: red; <x id="INTERPOLATION_1"/> <x id="CLOSE_TAG_PRE"/> Prepend with <x id="START_EMPHASISED_TEXT"/>#custom-css<x id="CLOSE_EMPHASISED_TEXT"/> to override styles. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css .logged-in-email <x id="INTERPOLATION"/> color: red; <x id="INTERPOLATION_1"/> <x id="CLOSE_TAG_PRE"/></source> | 3693 | <source> Write CSS code directly. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> |
3694 | color: red; | ||
3695 | <x id="INTERPOLATION_1"/> | ||
3696 | <x id="CLOSE_TAG_PRE"/> Prepend with <x id="START_EMPHASISED_TEXT"/>#custom-css<x id="CLOSE_EMPHASISED_TEXT"/> to override styles. Example:<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css .logged-in-email <x id="INTERPOLATION"/> | ||
3697 | color: red; | ||
3698 | <x id="INTERPOLATION_1"/> | ||
3699 | <x id="CLOSE_TAG_PRE"/></source> | ||
3700 | <target state="translated">Écrivez directement du code CSS. Exemple :<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> color: red; <x id="INTERPOLATION_1"/> <x id="CLOSE_TAG_PRE"/> Simuler avec <x id="START_EMPHASISED_TEXT"/>#custom-css<x id="CLOSE_EMPHASISED_TEXT"/> pour passer outre les styles. Exemple :<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css .logged-in-email <x id="INTERPOLATION"/> color: red; <x id="INTERPOLATION_1"/> <x id="CLOSE_TAG_PRE"/></target> | 3700 | <target state="translated">Écrivez directement du code CSS. Exemple :<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css <x id="INTERPOLATION"/> color: red; <x id="INTERPOLATION_1"/> <x id="CLOSE_TAG_PRE"/> Simuler avec <x id="START_EMPHASISED_TEXT"/>#custom-css<x id="CLOSE_EMPHASISED_TEXT"/> pour passer outre les styles. Exemple :<x id="LINE_BREAK"/><x id="LINE_BREAK"/><x id="START_TAG_PRE"/> #custom-css .logged-in-email <x id="INTERPOLATION"/> color: red; <x id="INTERPOLATION_1"/> <x id="CLOSE_TAG_PRE"/></target> |
3701 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">911</context></context-group> | 3701 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.html</context><context context-type="linenumber">911</context></context-group> |
3702 | </trans-unit> | 3702 | </trans-unit> |
@@ -4017,8 +4017,9 @@ | |||
4017 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channel-edit.component.html</context><context context-type="linenumber">26</context></context-group> | 4017 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channel-edit.component.html</context><context context-type="linenumber">26</context></context-group> |
4018 | </trans-unit> | 4018 | </trans-unit> |
4019 | <trans-unit id="66ad6eb3f06251c75325b780943a07f94c949df7" datatype="html"> | 4019 | <trans-unit id="66ad6eb3f06251c75325b780943a07f94c949df7" datatype="html"> |
4020 | <source>Short text to tell people how they can support your channel (membership platform...).<br /><br /> When you will upload a video in this channel, the video support field will be automatically filled by this text.</source> | 4020 | <source>Short text to tell people how they can support your channel (membership platform...).<br /><br /> |
4021 | <target state="translated">Court texte décrivant les moyens de soutien à disposition (plateforme de dons, médias...).<br /><br /> Quand vous mettrez en ligne une vidéo dans cette chaîne, son champ de support sera automatiquement rempli par celui-ci.</target> | 4021 | When you will upload a video in this channel, the video support field will be automatically filled by this text.</source> |
4022 | <target state="translated">Court texte décrivant les moyens de soutien à disposition (plateforme de dons, médias...).<br /><br /> Quand vous mettrez en ligne une vidéo dans cette chaîne, son champ de support sera automatiquement rempli par celui-ci.</target> | ||
4022 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channel-edit.component.html</context><context context-type="linenumber">77</context></context-group> | 4023 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channel-edit.component.html</context><context context-type="linenumber">77</context></context-group> |
4023 | </trans-unit> | 4024 | </trans-unit> |
4024 | <trans-unit id="6ff0350d2659cdb4722370bf5dafbad651f441cd"> | 4025 | <trans-unit id="6ff0350d2659cdb4722370bf5dafbad651f441cd"> |
@@ -4303,7 +4304,9 @@ | |||
4303 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.html</context><context context-type="linenumber">37</context></context-group> | 4304 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.html</context><context context-type="linenumber">37</context></context-group> |
4304 | </trans-unit> | 4305 | </trans-unit> |
4305 | <trans-unit id="7152797255397280410" datatype="html"> | 4306 | <trans-unit id="7152797255397280410" datatype="html"> |
4306 | <source>Do you really want to delete <x id="PH"/>? It will delete <x id="PH_1"/> videos uploaded in this channel, and you will not be able to create another channel with the same name (<x id="PH_2"/>)!</source> | 4307 | <source>Do you really want to delete <x id="PH"/>? |
4308 | It will delete <x id="PH_1"/> videos uploaded in this channel, and you will not be able to create another | ||
4309 | channel with the same name (<x id="PH_2"/>)!</source> | ||
4307 | <target state="translated">Voulez-vous vraiment supprimer <x id="PH"/> ? Cela supprimera <x id="PH_1"/> vidéos mises en ligne sur cette chaîne, et vous ne pourrez pas créer une autre chaine avec le même nom (<x id="PH_2"/>) !</target> | 4310 | <target state="translated">Voulez-vous vraiment supprimer <x id="PH"/> ? Cela supprimera <x id="PH_1"/> vidéos mises en ligne sur cette chaîne, et vous ne pourrez pas créer une autre chaine avec le même nom (<x id="PH_2"/>) !</target> |
4308 | <context-group purpose="location"> | 4311 | <context-group purpose="location"> |
4309 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context> | 4312 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context> |
@@ -4722,208 +4725,33 @@ | |||
4722 | <trans-unit id="f732c304c7433e5a83ffcd862c3dce709a0f4982"> | 4725 | <trans-unit id="f732c304c7433e5a83ffcd862c3dce709a0f4982"> |
4723 | <source>Next</source> | 4726 | <source>Next</source> |
4724 | <target>Suivant</target> | 4727 | <target>Suivant</target> |
4725 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group> | 4728 | |
4726 | </trans-unit> | 4729 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit> |
4727 | <trans-unit id="c3b08b07b5ab98e7cdcf18df39355690ab7d3884" datatype="html"> | 4730 | |
4728 | <source>Previous month</source> | 4731 | |
4729 | <target state="translated">Mois précédent</target> | 4732 | |
4730 | <context-group purpose="location"> | 4733 | |
4731 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 4734 | |
4732 | <context context-type="linenumber">1</context> | 4735 | |
4733 | </context-group> | 4736 | |
4734 | </trans-unit> | 4737 | |
4735 | <trans-unit id="4bd046985cfe13040d5ef0cd881edce0968a111a" datatype="html"> | 4738 | |
4736 | <source>Next month</source> | 4739 | |
4737 | <target state="translated">Mois suivant</target> | 4740 | |
4738 | <context-group purpose="location"> | 4741 | |
4739 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 4742 | |
4740 | <context context-type="linenumber">1</context> | 4743 | |
4741 | </context-group> | 4744 | |
4742 | </trans-unit> | 4745 | |
4743 | <trans-unit id="1dbc84807f35518112f62e5775d1daebd3d8462b" datatype="html"> | 4746 | |
4744 | <source>Select month</source> | 4747 | |
4745 | <target state="translated">Sélectionnez le mois</target> | 4748 | |
4746 | <context-group purpose="location"> | 4749 | |
4747 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 4750 | |
4748 | <context context-type="linenumber">1</context> | 4751 | |
4749 | </context-group> | 4752 | |
4750 | </trans-unit> | 4753 | |
4751 | <trans-unit id="8ceb09d002bf0c5d1cac171dfbffe1805d2b3962" datatype="html"> | 4754 | |
4752 | <source>Select year</source> | ||
4753 | <target state="translated">Sélectionnez l'année</target> | ||
4754 | <context-group purpose="location"> | ||
4755 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4756 | <context context-type="linenumber">1</context> | ||
4757 | </context-group> | ||
4758 | </trans-unit> | ||
4759 | <trans-unit id="656506dfd46380956a655f919f1498d018f75ca0" datatype="html"> | ||
4760 | <source>««</source> | ||
4761 | <target state="translated">««</target> | ||
4762 | <context-group purpose="location"> | ||
4763 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4764 | <context context-type="linenumber">1</context> | ||
4765 | </context-group> | ||
4766 | </trans-unit> | ||
4767 | <trans-unit id="6e52b6ee77a4848d899dd21b591c6fd499e3aef3" datatype="html"> | ||
4768 | <source>«</source> | ||
4769 | <target state="translated">«</target> | ||
4770 | <context-group purpose="location"> | ||
4771 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4772 | <context context-type="linenumber">1</context> | ||
4773 | </context-group> | ||
4774 | </trans-unit> | ||
4775 | <trans-unit id="ba9cbb4ff311464308a3627e4f1c3345d9fe6d7d" datatype="html"> | ||
4776 | <source>»</source> | ||
4777 | <target state="translated">»</target> | ||
4778 | <context-group purpose="location"> | ||
4779 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4780 | <context context-type="linenumber">1</context> | ||
4781 | </context-group> | ||
4782 | </trans-unit> | ||
4783 | <trans-unit id="49f27a460bc97e7e00be5b37098bfa79884fc7d9" datatype="html"> | ||
4784 | <source>»»</source> | ||
4785 | <target state="translated">»»</target> | ||
4786 | <context-group purpose="location"> | ||
4787 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4788 | <context context-type="linenumber">1</context> | ||
4789 | </context-group> | ||
4790 | </trans-unit> | ||
4791 | <trans-unit id="f2f852318759c6396b5d3d17031d53817d7b38cc" datatype="html"> | ||
4792 | <source>First</source> | ||
4793 | <target state="translated">Premier</target> | ||
4794 | <context-group purpose="location"> | ||
4795 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4796 | <context context-type="linenumber">1</context> | ||
4797 | </context-group> | ||
4798 | </trans-unit> | ||
4799 | <trans-unit id="5c729788ba138508aca1bec050b610f7bf81db3e" datatype="html"> | ||
4800 | <source>Last</source> | ||
4801 | <target state="translated">Dernier</target> | ||
4802 | <context-group purpose="location"> | ||
4803 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4804 | <context context-type="linenumber">1</context> | ||
4805 | </context-group> | ||
4806 | </trans-unit> | ||
4807 | <trans-unit id="f8e9a947b9db4252c0e9905765338712f2fd032f" datatype="html"> | ||
4808 | <source><x id="INTERPOLATION"/></source> | ||
4809 | <target state="translated"><x id="INTERPOLATION"/></target> | ||
4810 | <context-group purpose="location"> | ||
4811 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4812 | <context context-type="linenumber">1</context> | ||
4813 | </context-group> | ||
4814 | </trans-unit> | ||
4815 | <trans-unit id="ce676ab1d6d98f85c836381cf100a4a91ef95a1f" datatype="html"> | ||
4816 | <source>HH</source> | ||
4817 | <target state="translated">HH</target> | ||
4818 | <context-group purpose="location"> | ||
4819 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4820 | <context context-type="linenumber">1</context> | ||
4821 | </context-group> | ||
4822 | </trans-unit> | ||
4823 | <trans-unit id="3bbce5fef7e1151da052a4e529453edb340e3912" datatype="html"> | ||
4824 | <source>Hours</source> | ||
4825 | <target state="translated">Heures</target> | ||
4826 | <context-group purpose="location"> | ||
4827 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4828 | <context context-type="linenumber">1</context> | ||
4829 | </context-group> | ||
4830 | </trans-unit> | ||
4831 | <trans-unit id="72c8edf6a50068a05bde70991e36b1e881f4ca54" datatype="html"> | ||
4832 | <source>MM</source> | ||
4833 | <target state="translated">MM</target> | ||
4834 | <context-group purpose="location"> | ||
4835 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4836 | <context context-type="linenumber">1</context> | ||
4837 | </context-group> | ||
4838 | </trans-unit> | ||
4839 | <trans-unit id="41e62daa962947c0d23ded0981975d1bddf0bf38" datatype="html"> | ||
4840 | <source>Minutes</source> | ||
4841 | <target state="translated">Minutes</target> | ||
4842 | <context-group purpose="location"> | ||
4843 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4844 | <context context-type="linenumber">1</context> | ||
4845 | </context-group> | ||
4846 | </trans-unit> | ||
4847 | <trans-unit id="cb74bc1d625a6c1742f0d7d47306cf495780c218" datatype="html"> | ||
4848 | <source>Increment hours</source> | ||
4849 | <target state="translated">Incrémenter les heures</target> | ||
4850 | <context-group purpose="location"> | ||
4851 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4852 | <context context-type="linenumber">1</context> | ||
4853 | </context-group> | ||
4854 | </trans-unit> | ||
4855 | <trans-unit id="147c7a19429da7d999e247d22e33fee370b1691b" datatype="html"> | ||
4856 | <source>Decrement hours</source> | ||
4857 | <target state="translated">Décrémenter les heures</target> | ||
4858 | <context-group purpose="location"> | ||
4859 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4860 | <context context-type="linenumber">1</context> | ||
4861 | </context-group> | ||
4862 | </trans-unit> | ||
4863 | <trans-unit id="f5a4a3bc05e053f6732475d0e74875ec01c3a348" datatype="html"> | ||
4864 | <source>Increment minutes</source> | ||
4865 | <target state="translated">Incrémenter les minutes</target> | ||
4866 | <context-group purpose="location"> | ||
4867 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4868 | <context context-type="linenumber">1</context> | ||
4869 | </context-group> | ||
4870 | </trans-unit> | ||
4871 | <trans-unit id="c1a6899e529c096da5b660385d4e77fe1f7ad271" datatype="html"> | ||
4872 | <source>Decrement minutes</source> | ||
4873 | <target state="translated">Décrémenter les minutes</target> | ||
4874 | <context-group purpose="location"> | ||
4875 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4876 | <context context-type="linenumber">1</context> | ||
4877 | </context-group> | ||
4878 | </trans-unit> | ||
4879 | <trans-unit id="ebe38d36a40a2383c5fefa9b4608ffbda08bd4a3" datatype="html"> | ||
4880 | <source>SS</source> | ||
4881 | <target state="translated">SS</target> | ||
4882 | <context-group purpose="location"> | ||
4883 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4884 | <context context-type="linenumber">1</context> | ||
4885 | </context-group> | ||
4886 | </trans-unit> | ||
4887 | <trans-unit id="4f2ed9e71a7c981db3e50ae2fedb28aff2ec4e6c" datatype="html"> | ||
4888 | <source>Seconds</source> | ||
4889 | <target state="translated">Secondes</target> | ||
4890 | <context-group purpose="location"> | ||
4891 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4892 | <context context-type="linenumber">1</context> | ||
4893 | </context-group> | ||
4894 | </trans-unit> | ||
4895 | <trans-unit id="912322ecee7d659d04dcf494a70e22e49d334b26" datatype="html"> | ||
4896 | <source>Increment seconds</source> | ||
4897 | <target state="translated">Incrémenter les secondes</target> | ||
4898 | <context-group purpose="location"> | ||
4899 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4900 | <context context-type="linenumber">1</context> | ||
4901 | </context-group> | ||
4902 | </trans-unit> | ||
4903 | <trans-unit id="5db47ac104294243a70eb9124fbea9d0004ddf69" datatype="html"> | ||
4904 | <source>Decrement seconds</source> | ||
4905 | <target state="translated">Décrémenter les secondes</target> | ||
4906 | <context-group purpose="location"> | ||
4907 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4908 | <context context-type="linenumber">1</context> | ||
4909 | </context-group> | ||
4910 | </trans-unit> | ||
4911 | <trans-unit id="8d6e691e10306c1b34c6b26805151aaea320ef7f" datatype="html"> | ||
4912 | <source><x id="INTERPOLATION"/></source> | ||
4913 | <target state="translated"><x id="INTERPOLATION"/></target> | ||
4914 | <context-group purpose="location"> | ||
4915 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4916 | <context context-type="linenumber">1</context> | ||
4917 | </context-group> | ||
4918 | </trans-unit> | ||
4919 | <trans-unit id="69a1f176a93998876952adac57c3bc3863b6105e" datatype="html"> | ||
4920 | <source><x id="INTERPOLATION"/></source> | ||
4921 | <target state="translated"><x id="INTERPOLATION"/></target> | ||
4922 | <context-group purpose="location"> | ||
4923 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4924 | <context context-type="linenumber">1</context> | ||
4925 | </context-group> | ||
4926 | </trans-unit> | ||
4927 | <trans-unit id="9082008222523034483" datatype="html"> | 4755 | <trans-unit id="9082008222523034483" datatype="html"> |
4928 | <source>Get help</source> | 4756 | <source>Get help</source> |
4929 | <target state="translated">Obtenir de l'aide</target> | 4757 | <target state="translated">Obtenir de l'aide</target> |
@@ -5156,8 +4984,8 @@ | |||
5156 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">56</context></context-group> | 4984 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">56</context></context-group> |
5157 | </trans-unit> | 4985 | </trans-unit> |
5158 | <trans-unit id="8011855989482474311" datatype="html"> | 4986 | <trans-unit id="8011855989482474311" datatype="html"> |
5159 | <source>A <code>.mp4</code> that keeps the original audio track, with no video</source> | 4987 | <source>A <code>.mp4</code> that keeps the original audio track, with no video</source> |
5160 | <target state="translated">Un <code>.mp4</code> qui conserve le son original, sans la vidéo</target> | 4988 | <target state="translated">Un <code>.mp4</code> qui conserve le son original, sans la vidéo</target> |
5161 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">57</context></context-group> | 4989 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">57</context></context-group> |
5162 | </trans-unit> | 4990 | </trans-unit> |
5163 | <trans-unit id="3768852440495368591"> | 4991 | <trans-unit id="3768852440495368591"> |
@@ -6474,7 +6302,8 @@ | |||
6474 | <context-group purpose="location"><context context-type="sourcefile">../app/core/auth/auth.service.ts</context><context context-type="linenumber">75</context></context-group> | 6302 | <context-group purpose="location"><context context-type="sourcefile">../app/core/auth/auth.service.ts</context><context context-type="linenumber">75</context></context-group> |
6475 | </trans-unit> | 6303 | </trans-unit> |
6476 | <trans-unit id="2013324644839511073" datatype="html"> | 6304 | <trans-unit id="2013324644839511073" datatype="html"> |
6477 | <source>Cannot retrieve OAuth Client credentials: <x id="PH"/>. Ensure you have correctly configured PeerTube (config/ directory), in particular the "webserver" section.</source> | 6305 | <source>Cannot retrieve OAuth Client credentials: <x id="PH"/>. |
6306 | Ensure you have correctly configured PeerTube (config/ directory), in particular the "webserver" section.</source> | ||
6478 | <target state="translated">Impossible de récupérer les identifiants du Client OAuth : <x id="PH"/>. Assurez-vous d'avoir correctement configuré PeerTube (dossier config/), en particulier la section "serveur web".</target> | 6307 | <target state="translated">Impossible de récupérer les identifiants du Client OAuth : <x id="PH"/>. Assurez-vous d'avoir correctement configuré PeerTube (dossier config/), en particulier la section "serveur web".</target> |
6479 | <context-group purpose="location"> | 6308 | <context-group purpose="location"> |
6480 | <context context-type="sourcefile">../app/core/auth/auth.service.ts</context> | 6309 | <context context-type="sourcefile">../app/core/auth/auth.service.ts</context> |
@@ -6604,8 +6433,8 @@ | |||
6604 | <context-group purpose="location"><context context-type="sourcefile">../app/+search/search-filters.component.ts</context><context context-type="linenumber">69</context></context-group> | 6433 | <context-group purpose="location"><context context-type="sourcefile">../app/+search/search-filters.component.ts</context><context context-type="linenumber">69</context></context-group> |
6605 | </trans-unit> | 6434 | </trans-unit> |
6606 | <trans-unit id="6613870447286561244"> | 6435 | <trans-unit id="6613870447286561244"> |
6607 | <source>Long (> 10 min)</source> | 6436 | <source>Long (> 10 min)</source> |
6608 | <target>Longue (> 10 min)</target> | 6437 | <target>Longue (> 10 min)</target> |
6609 | <context-group purpose="location"><context context-type="sourcefile">../app/+search/search-filters.component.ts</context><context context-type="linenumber">73</context></context-group> | 6438 | <context-group purpose="location"><context context-type="sourcefile">../app/+search/search-filters.component.ts</context><context context-type="linenumber">73</context></context-group> |
6610 | </trans-unit> | 6439 | </trans-unit> |
6611 | <trans-unit id="1787083504545967"> | 6440 | <trans-unit id="1787083504545967"> |
@@ -7146,7 +6975,8 @@ | |||
7146 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/form-validators/video-comment-validators.ts</context><context context-type="linenumber">9</context></context-group> | 6975 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/form-validators/video-comment-validators.ts</context><context context-type="linenumber">9</context></context-group> |
7147 | </trans-unit> | 6976 | </trans-unit> |
7148 | <trans-unit id="6541082750381847310" datatype="html"> | 6977 | <trans-unit id="6541082750381847310" datatype="html"> |
7149 | <source>Request is too large for the server. Please contact you administrator if you want to increase the limit size.</source> | 6978 | <source>Request is too large for the server. |
6979 | Please contact you administrator if you want to increase the limit size.</source> | ||
7150 | <target state="translated">La requête est trop volumineuse pour le serveur. Veuillez contacter votre administrateur si vous souhaitez augmenter la taille limite.</target> | 6980 | <target state="translated">La requête est trop volumineuse pour le serveur. Veuillez contacter votre administrateur si vous souhaitez augmenter la taille limite.</target> |
7151 | <context-group purpose="location"> | 6981 | <context-group purpose="location"> |
7152 | <context context-type="sourcefile">../app/core/rest/rest-extractor.service.ts</context> | 6982 | <context context-type="sourcefile">../app/core/rest/rest-extractor.service.ts</context> |
@@ -8290,6 +8120,192 @@ | |||
8290 | <source>Only users of this instance can see this video</source> | 8120 | <source>Only users of this instance can see this video</source> |
8291 | <target state="translated">Seuls les utilisateurs de cette instance peuvent voir cette vidéo</target> | 8121 | <target state="translated">Seuls les utilisateurs de cette instance peuvent voir cette vidéo</target> |
8292 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group> | 8122 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group> |
8123 | </trans-unit><trans-unit id="ngb.alert.close" datatype="html"> | ||
8124 | <source>Close</source><target state="new">Close</target> | ||
8125 | <context-group purpose="location"> | ||
8126 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/alert/alert.ts</context> | ||
8127 | <context context-type="linenumber">74</context> | ||
8128 | </context-group> | ||
8129 | </trans-unit><trans-unit id="ngb.carousel.previous" datatype="html"> | ||
8130 | <source>Previous</source><target state="new">Previous</target> | ||
8131 | <context-group purpose="location"> | ||
8132 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
8133 | <context context-type="linenumber">349</context> | ||
8134 | </context-group> | ||
8135 | </trans-unit><trans-unit id="ngb.carousel.next" datatype="html"> | ||
8136 | <source>Next</source><target state="new">Next</target> | ||
8137 | <context-group purpose="location"> | ||
8138 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
8139 | <context context-type="linenumber">349</context> | ||
8140 | </context-group> | ||
8141 | </trans-unit><trans-unit id="ngb.datepicker.previous-month" datatype="html"> | ||
8142 | <source>Previous month</source><target state="new">Previous month</target> | ||
8143 | <context-group purpose="location"> | ||
8144 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation.ts</context> | ||
8145 | <context context-type="linenumber">69</context> | ||
8146 | </context-group> | ||
8147 | </trans-unit><trans-unit id="ngb.datepicker.next-month" datatype="html"> | ||
8148 | <source>Next month</source><target state="new">Next month</target> | ||
8149 | <context-group purpose="location"> | ||
8150 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-month.ts</context> | ||
8151 | <context context-type="linenumber">72</context> | ||
8152 | </context-group> | ||
8153 | </trans-unit><trans-unit id="ngb.datepicker.select-month" datatype="html"> | ||
8154 | <source>Select month</source><target state="new">Select month</target> | ||
8155 | <context-group purpose="location"> | ||
8156 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
8157 | <context context-type="linenumber">74</context> | ||
8158 | </context-group> | ||
8159 | </trans-unit><trans-unit id="ngb.datepicker.select-year" datatype="html"> | ||
8160 | <source>Select year</source><target state="new">Select year</target> | ||
8161 | <context-group purpose="location"> | ||
8162 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
8163 | <context context-type="linenumber">74</context> | ||
8164 | </context-group> | ||
8165 | </trans-unit><trans-unit id="ngb.pagination.first" datatype="html"> | ||
8166 | <source>««</source><target state="new">««</target> | ||
8167 | <context-group purpose="location"> | ||
8168 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8169 | <context context-type="linenumber">404</context> | ||
8170 | </context-group> | ||
8171 | </trans-unit><trans-unit id="ngb.pagination.previous" datatype="html"> | ||
8172 | <source>«</source><target state="new">«</target> | ||
8173 | <context-group purpose="location"> | ||
8174 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8175 | <context context-type="linenumber">404</context> | ||
8176 | </context-group> | ||
8177 | </trans-unit><trans-unit id="ngb.pagination.next" datatype="html"> | ||
8178 | <source>»</source><target state="new">»</target> | ||
8179 | <context-group purpose="location"> | ||
8180 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8181 | <context context-type="linenumber">404</context> | ||
8182 | </context-group> | ||
8183 | </trans-unit><trans-unit id="ngb.pagination.last" datatype="html"> | ||
8184 | <source>»»</source><target state="new">»»</target> | ||
8185 | <context-group purpose="location"> | ||
8186 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8187 | <context context-type="linenumber">404</context> | ||
8188 | </context-group> | ||
8189 | </trans-unit><trans-unit id="ngb.pagination.first-aria" datatype="html"> | ||
8190 | <source>First</source><target state="new">First</target> | ||
8191 | <context-group purpose="location"> | ||
8192 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8193 | <context context-type="linenumber">404</context> | ||
8194 | </context-group> | ||
8195 | </trans-unit><trans-unit id="ngb.pagination.previous-aria" datatype="html"> | ||
8196 | <source>Previous</source><target state="new">Previous</target> | ||
8197 | <context-group purpose="location"> | ||
8198 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8199 | <context context-type="linenumber">404</context> | ||
8200 | </context-group> | ||
8201 | </trans-unit><trans-unit id="ngb.pagination.next-aria" datatype="html"> | ||
8202 | <source>Next</source><target state="new">Next</target> | ||
8203 | <context-group purpose="location"> | ||
8204 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8205 | <context context-type="linenumber">404</context> | ||
8206 | </context-group> | ||
8207 | </trans-unit><trans-unit id="ngb.pagination.last-aria" datatype="html"> | ||
8208 | <source>Last</source><target state="new">Last</target> | ||
8209 | <context-group purpose="location"> | ||
8210 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8211 | <context context-type="linenumber">404</context> | ||
8212 | </context-group> | ||
8213 | </trans-unit><trans-unit id="ngb.progressbar.value" datatype="html"> | ||
8214 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
8215 | <context-group purpose="location"> | ||
8216 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/progressbar/progressbar.ts</context> | ||
8217 | <context context-type="linenumber">101</context> | ||
8218 | </context-group> | ||
8219 | </trans-unit><trans-unit id="ngb.timepicker.HH" datatype="html"> | ||
8220 | <source>HH</source><target state="new">HH</target> | ||
8221 | <context-group purpose="location"> | ||
8222 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8223 | <context context-type="linenumber">296</context> | ||
8224 | </context-group> | ||
8225 | </trans-unit><trans-unit id="ngb.timepicker.hours" datatype="html"> | ||
8226 | <source>Hours</source><target state="new">Hours</target> | ||
8227 | <context-group purpose="location"> | ||
8228 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8229 | <context context-type="linenumber">296</context> | ||
8230 | </context-group> | ||
8231 | </trans-unit><trans-unit id="ngb.timepicker.MM" datatype="html"> | ||
8232 | <source>MM</source><target state="new">MM</target> | ||
8233 | <context-group purpose="location"> | ||
8234 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8235 | <context context-type="linenumber">296</context> | ||
8236 | </context-group> | ||
8237 | </trans-unit><trans-unit id="ngb.timepicker.minutes" datatype="html"> | ||
8238 | <source>Minutes</source><target state="new">Minutes</target> | ||
8239 | <context-group purpose="location"> | ||
8240 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8241 | <context context-type="linenumber">296</context> | ||
8242 | </context-group> | ||
8243 | </trans-unit><trans-unit id="ngb.timepicker.increment-hours" datatype="html"> | ||
8244 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
8245 | <context-group purpose="location"> | ||
8246 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8247 | <context context-type="linenumber">296</context> | ||
8248 | </context-group> | ||
8249 | </trans-unit><trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> | ||
8250 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
8251 | <context-group purpose="location"> | ||
8252 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8253 | <context context-type="linenumber">296</context> | ||
8254 | </context-group> | ||
8255 | </trans-unit><trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> | ||
8256 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
8257 | <context-group purpose="location"> | ||
8258 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8259 | <context context-type="linenumber">296</context> | ||
8260 | </context-group> | ||
8261 | </trans-unit><trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> | ||
8262 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
8263 | <context-group purpose="location"> | ||
8264 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8265 | <context context-type="linenumber">296</context> | ||
8266 | </context-group> | ||
8267 | </trans-unit><trans-unit id="ngb.timepicker.SS" datatype="html"> | ||
8268 | <source>SS</source><target state="new">SS</target> | ||
8269 | <context-group purpose="location"> | ||
8270 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8271 | <context context-type="linenumber">296</context> | ||
8272 | </context-group> | ||
8273 | </trans-unit><trans-unit id="ngb.timepicker.seconds" datatype="html"> | ||
8274 | <source>Seconds</source><target state="new">Seconds</target> | ||
8275 | <context-group purpose="location"> | ||
8276 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8277 | <context context-type="linenumber">296</context> | ||
8278 | </context-group> | ||
8279 | </trans-unit><trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> | ||
8280 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
8281 | <context-group purpose="location"> | ||
8282 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8283 | <context context-type="linenumber">296</context> | ||
8284 | </context-group> | ||
8285 | </trans-unit><trans-unit id="ngb.timepicker.decrement-seconds" datatype="html"> | ||
8286 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
8287 | <context-group purpose="location"> | ||
8288 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8289 | <context context-type="linenumber">296</context> | ||
8290 | </context-group> | ||
8291 | </trans-unit><trans-unit id="ngb.timepicker.PM" datatype="html"> | ||
8292 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
8293 | <context-group purpose="location"> | ||
8294 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8295 | <context context-type="linenumber">296</context> | ||
8296 | </context-group> | ||
8297 | </trans-unit><trans-unit id="ngb.timepicker.AM" datatype="html"> | ||
8298 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
8299 | <context-group purpose="location"> | ||
8300 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8301 | <context context-type="linenumber">296</context> | ||
8302 | </context-group> | ||
8303 | </trans-unit><trans-unit id="ngb.toast.close-aria" datatype="html"> | ||
8304 | <source>Close</source><target state="new">Close</target> | ||
8305 | <context-group purpose="location"> | ||
8306 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/toast/toast.ts</context> | ||
8307 | <context context-type="linenumber">137</context> | ||
8308 | </context-group> | ||
8293 | </trans-unit> | 8309 | </trans-unit> |
8294 | <trans-unit id="5210096066382592800"> | 8310 | <trans-unit id="5210096066382592800"> |
8295 | <source>Video to import updated.</source> | 8311 | <source>Video to import updated.</source> |
@@ -8337,7 +8353,8 @@ | |||
8337 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">243</context></context-group> | 8353 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-edit/video-add-components/video-upload.component.ts</context><context context-type="linenumber">243</context></context-group> |
8338 | </trans-unit> | 8354 | </trans-unit> |
8339 | <trans-unit id="5297709903228580202" datatype="html"> | 8355 | <trans-unit id="5297709903228580202" datatype="html"> |
8340 | <source>Your video quota is exceeded with this video ( video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</source> | 8356 | <source>Your video quota is exceeded with this video ( |
8357 | video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</source> | ||
8341 | <target state="translated">Votre quota vidéo est dépassé avec cette vidéo ( taille de la vidéo : <x id="PH"/>, utilisé : <x id="PH_1"/>, quota : <x id="PH_2"/>)</target> | 8358 | <target state="translated">Votre quota vidéo est dépassé avec cette vidéo ( taille de la vidéo : <x id="PH"/>, utilisé : <x id="PH_1"/>, quota : <x id="PH_2"/>)</target> |
8342 | <context-group purpose="location"> | 8359 | <context-group purpose="location"> |
8343 | <context context-type="sourcefile">../app/+videos/+video-edit/video-add-components/video-upload.component.ts</context> | 8360 | <context context-type="sourcefile">../app/+videos/+video-edit/video-add-components/video-upload.component.ts</context> |
@@ -8345,7 +8362,8 @@ | |||
8345 | </context-group> | 8362 | </context-group> |
8346 | </trans-unit> | 8363 | </trans-unit> |
8347 | <trans-unit id="1267976082314717617" datatype="html"> | 8364 | <trans-unit id="1267976082314717617" datatype="html"> |
8348 | <source>Your daily video quota is exceeded with this video ( video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</source> | 8365 | <source>Your daily video quota is exceeded with this video ( |
8366 | video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</source> | ||
8349 | <target state="translated">Votre quota vidéo journalier est dépassé avec cette vidéo ( taille de la vidéo : <x id="PH"/>, utilisé : <x id="PH_1"/>, quota : <x id="PH_2"/>)</target> | 8367 | <target state="translated">Votre quota vidéo journalier est dépassé avec cette vidéo ( taille de la vidéo : <x id="PH"/>, utilisé : <x id="PH_1"/>, quota : <x id="PH_2"/>)</target> |
8350 | <context-group purpose="location"> | 8368 | <context-group purpose="location"> |
8351 | <context context-type="sourcefile">../app/+videos/+video-edit/video-add-components/video-upload.component.ts</context> | 8369 | <context context-type="sourcefile">../app/+videos/+video-edit/video-add-components/video-upload.component.ts</context> |
diff --git a/client/src/locale/angular.gd.xlf b/client/src/locale/angular.gd.xlf index 38c219b7b..3e003f59c 100644 --- a/client/src/locale/angular.gd.xlf +++ b/client/src/locale/angular.gd.xlf | |||
@@ -1266,13 +1266,7 @@ The link will expire within 1 hour.</target> | |||
1266 | <source>Close</source> | 1266 | <source>Close</source> |
1267 | <target state="translated">Dùin</target> | 1267 | <target state="translated">Dùin</target> |
1268 | 1268 | ||
1269 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="680d5c75b7fd8d37961083608b9fcdc4167b4c43" datatype="html"> | 1269 | <context-group purpose="location"><context context-type="sourcefile">../app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1270 | <source>Previous</source><target state="new">Previous</target> | ||
1271 | <context-group purpose="location"> | ||
1272 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
1273 | <context context-type="linenumber">1</context> | ||
1274 | </context-group> | ||
1275 | </trans-unit> | ||
1276 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> | 1270 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> |
1277 | <source> | 1271 | <source> |
1278 | Configure | 1272 | Configure |
@@ -5667,157 +5661,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5667 | <source>Next</source> | 5661 | <source>Next</source> |
5668 | <target state="new">Next</target> | 5662 | <target state="new">Next</target> |
5669 | 5663 | ||
5670 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="c3b08b07b5ab98e7cdcf18df39355690ab7d3884" datatype="html"> | 5664 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit><trans-unit id="9082008222523034483" datatype="html"> |
5671 | <source>Previous month</source><target state="new">Previous month</target> | ||
5672 | <context-group purpose="location"> | ||
5673 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5674 | <context context-type="linenumber">1</context> | ||
5675 | </context-group> | ||
5676 | </trans-unit><trans-unit id="4bd046985cfe13040d5ef0cd881edce0968a111a" datatype="html"> | ||
5677 | <source>Next month</source><target state="new">Next month</target> | ||
5678 | <context-group purpose="location"> | ||
5679 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5680 | <context context-type="linenumber">1</context> | ||
5681 | </context-group> | ||
5682 | </trans-unit><trans-unit id="1dbc84807f35518112f62e5775d1daebd3d8462b" datatype="html"> | ||
5683 | <source>Select month</source><target state="new">Select month</target> | ||
5684 | <context-group purpose="location"> | ||
5685 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5686 | <context context-type="linenumber">1</context> | ||
5687 | </context-group> | ||
5688 | </trans-unit><trans-unit id="8ceb09d002bf0c5d1cac171dfbffe1805d2b3962" datatype="html"> | ||
5689 | <source>Select year</source><target state="new">Select year</target> | ||
5690 | <context-group purpose="location"> | ||
5691 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5692 | <context context-type="linenumber">1</context> | ||
5693 | </context-group> | ||
5694 | </trans-unit><trans-unit id="656506dfd46380956a655f919f1498d018f75ca0" datatype="html"> | ||
5695 | <source>««</source><target state="new">««</target> | ||
5696 | <context-group purpose="location"> | ||
5697 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5698 | <context context-type="linenumber">1</context> | ||
5699 | </context-group> | ||
5700 | </trans-unit><trans-unit id="6e52b6ee77a4848d899dd21b591c6fd499e3aef3" datatype="html"> | ||
5701 | <source>«</source><target state="new">«</target> | ||
5702 | <context-group purpose="location"> | ||
5703 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5704 | <context context-type="linenumber">1</context> | ||
5705 | </context-group> | ||
5706 | </trans-unit><trans-unit id="ba9cbb4ff311464308a3627e4f1c3345d9fe6d7d" datatype="html"> | ||
5707 | <source>»</source><target state="new">»</target> | ||
5708 | <context-group purpose="location"> | ||
5709 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5710 | <context context-type="linenumber">1</context> | ||
5711 | </context-group> | ||
5712 | </trans-unit><trans-unit id="49f27a460bc97e7e00be5b37098bfa79884fc7d9" datatype="html"> | ||
5713 | <source>»»</source><target state="new">»»</target> | ||
5714 | <context-group purpose="location"> | ||
5715 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5716 | <context context-type="linenumber">1</context> | ||
5717 | </context-group> | ||
5718 | </trans-unit><trans-unit id="f2f852318759c6396b5d3d17031d53817d7b38cc" datatype="html"> | ||
5719 | <source>First</source><target state="new">First</target> | ||
5720 | <context-group purpose="location"> | ||
5721 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5722 | <context context-type="linenumber">1</context> | ||
5723 | </context-group> | ||
5724 | </trans-unit><trans-unit id="5c729788ba138508aca1bec050b610f7bf81db3e" datatype="html"> | ||
5725 | <source>Last</source><target state="new">Last</target> | ||
5726 | <context-group purpose="location"> | ||
5727 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5728 | <context context-type="linenumber">1</context> | ||
5729 | </context-group> | ||
5730 | </trans-unit><trans-unit id="f8e9a947b9db4252c0e9905765338712f2fd032f" datatype="html"> | ||
5731 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5732 | <context-group purpose="location"> | ||
5733 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5734 | <context context-type="linenumber">1</context> | ||
5735 | </context-group> | ||
5736 | </trans-unit><trans-unit id="ce676ab1d6d98f85c836381cf100a4a91ef95a1f" datatype="html"> | ||
5737 | <source>HH</source><target state="new">HH</target> | ||
5738 | <context-group purpose="location"> | ||
5739 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5740 | <context context-type="linenumber">1</context> | ||
5741 | </context-group> | ||
5742 | </trans-unit><trans-unit id="3bbce5fef7e1151da052a4e529453edb340e3912" datatype="html"> | ||
5743 | <source>Hours</source><target state="new">Hours</target> | ||
5744 | <context-group purpose="location"> | ||
5745 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5746 | <context context-type="linenumber">1</context> | ||
5747 | </context-group> | ||
5748 | </trans-unit><trans-unit id="72c8edf6a50068a05bde70991e36b1e881f4ca54" datatype="html"> | ||
5749 | <source>MM</source><target state="new">MM</target> | ||
5750 | <context-group purpose="location"> | ||
5751 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5752 | <context context-type="linenumber">1</context> | ||
5753 | </context-group> | ||
5754 | </trans-unit><trans-unit id="41e62daa962947c0d23ded0981975d1bddf0bf38" datatype="html"> | ||
5755 | <source>Minutes</source><target state="new">Minutes</target> | ||
5756 | <context-group purpose="location"> | ||
5757 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5758 | <context context-type="linenumber">1</context> | ||
5759 | </context-group> | ||
5760 | </trans-unit><trans-unit id="cb74bc1d625a6c1742f0d7d47306cf495780c218" datatype="html"> | ||
5761 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
5762 | <context-group purpose="location"> | ||
5763 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5764 | <context context-type="linenumber">1</context> | ||
5765 | </context-group> | ||
5766 | </trans-unit><trans-unit id="147c7a19429da7d999e247d22e33fee370b1691b" datatype="html"> | ||
5767 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
5768 | <context-group purpose="location"> | ||
5769 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5770 | <context context-type="linenumber">1</context> | ||
5771 | </context-group> | ||
5772 | </trans-unit><trans-unit id="f5a4a3bc05e053f6732475d0e74875ec01c3a348" datatype="html"> | ||
5773 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
5774 | <context-group purpose="location"> | ||
5775 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5776 | <context context-type="linenumber">1</context> | ||
5777 | </context-group> | ||
5778 | </trans-unit><trans-unit id="c1a6899e529c096da5b660385d4e77fe1f7ad271" datatype="html"> | ||
5779 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
5780 | <context-group purpose="location"> | ||
5781 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5782 | <context context-type="linenumber">1</context> | ||
5783 | </context-group> | ||
5784 | </trans-unit><trans-unit id="ebe38d36a40a2383c5fefa9b4608ffbda08bd4a3" datatype="html"> | ||
5785 | <source>SS</source><target state="new">SS</target> | ||
5786 | <context-group purpose="location"> | ||
5787 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5788 | <context context-type="linenumber">1</context> | ||
5789 | </context-group> | ||
5790 | </trans-unit><trans-unit id="4f2ed9e71a7c981db3e50ae2fedb28aff2ec4e6c" datatype="html"> | ||
5791 | <source>Seconds</source><target state="new">Seconds</target> | ||
5792 | <context-group purpose="location"> | ||
5793 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5794 | <context context-type="linenumber">1</context> | ||
5795 | </context-group> | ||
5796 | </trans-unit><trans-unit id="912322ecee7d659d04dcf494a70e22e49d334b26" datatype="html"> | ||
5797 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
5798 | <context-group purpose="location"> | ||
5799 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5800 | <context context-type="linenumber">1</context> | ||
5801 | </context-group> | ||
5802 | </trans-unit><trans-unit id="5db47ac104294243a70eb9124fbea9d0004ddf69" datatype="html"> | ||
5803 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
5804 | <context-group purpose="location"> | ||
5805 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5806 | <context context-type="linenumber">1</context> | ||
5807 | </context-group> | ||
5808 | </trans-unit><trans-unit id="8d6e691e10306c1b34c6b26805151aaea320ef7f" datatype="html"> | ||
5809 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5810 | <context-group purpose="location"> | ||
5811 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5812 | <context context-type="linenumber">1</context> | ||
5813 | </context-group> | ||
5814 | </trans-unit><trans-unit id="69a1f176a93998876952adac57c3bc3863b6105e" datatype="html"> | ||
5815 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5816 | <context-group purpose="location"> | ||
5817 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5818 | <context context-type="linenumber">1</context> | ||
5819 | </context-group> | ||
5820 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
5821 | <source>Get help</source><target state="new">Get help</target> | 5665 | <source>Get help</source><target state="new">Get help</target> |
5822 | <context-group purpose="location"> | 5666 | <context-group purpose="location"> |
5823 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 5667 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> |
@@ -9364,7 +9208,193 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9364 | <source>Only users of this instance can see this video</source> | 9208 | <source>Only users of this instance can see this video</source> |
9365 | <target state="new">Only users of this instance can see this video</target> | 9209 | <target state="new">Only users of this instance can see this video</target> |
9366 | 9210 | ||
9367 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit> | 9211 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit><trans-unit id="ngb.alert.close" datatype="html"> |
9212 | <source>Close</source><target state="new">Close</target> | ||
9213 | <context-group purpose="location"> | ||
9214 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/alert/alert.ts</context> | ||
9215 | <context context-type="linenumber">74</context> | ||
9216 | </context-group> | ||
9217 | </trans-unit><trans-unit id="ngb.carousel.previous" datatype="html"> | ||
9218 | <source>Previous</source><target state="new">Previous</target> | ||
9219 | <context-group purpose="location"> | ||
9220 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9221 | <context context-type="linenumber">349</context> | ||
9222 | </context-group> | ||
9223 | </trans-unit><trans-unit id="ngb.carousel.next" datatype="html"> | ||
9224 | <source>Next</source><target state="new">Next</target> | ||
9225 | <context-group purpose="location"> | ||
9226 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9227 | <context context-type="linenumber">349</context> | ||
9228 | </context-group> | ||
9229 | </trans-unit><trans-unit id="ngb.datepicker.previous-month" datatype="html"> | ||
9230 | <source>Previous month</source><target state="new">Previous month</target> | ||
9231 | <context-group purpose="location"> | ||
9232 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation.ts</context> | ||
9233 | <context context-type="linenumber">69</context> | ||
9234 | </context-group> | ||
9235 | </trans-unit><trans-unit id="ngb.datepicker.next-month" datatype="html"> | ||
9236 | <source>Next month</source><target state="new">Next month</target> | ||
9237 | <context-group purpose="location"> | ||
9238 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-month.ts</context> | ||
9239 | <context context-type="linenumber">72</context> | ||
9240 | </context-group> | ||
9241 | </trans-unit><trans-unit id="ngb.datepicker.select-month" datatype="html"> | ||
9242 | <source>Select month</source><target state="new">Select month</target> | ||
9243 | <context-group purpose="location"> | ||
9244 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9245 | <context context-type="linenumber">74</context> | ||
9246 | </context-group> | ||
9247 | </trans-unit><trans-unit id="ngb.datepicker.select-year" datatype="html"> | ||
9248 | <source>Select year</source><target state="new">Select year</target> | ||
9249 | <context-group purpose="location"> | ||
9250 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9251 | <context context-type="linenumber">74</context> | ||
9252 | </context-group> | ||
9253 | </trans-unit><trans-unit id="ngb.pagination.first" datatype="html"> | ||
9254 | <source>««</source><target state="new">««</target> | ||
9255 | <context-group purpose="location"> | ||
9256 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9257 | <context context-type="linenumber">404</context> | ||
9258 | </context-group> | ||
9259 | </trans-unit><trans-unit id="ngb.pagination.previous" datatype="html"> | ||
9260 | <source>«</source><target state="new">«</target> | ||
9261 | <context-group purpose="location"> | ||
9262 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9263 | <context context-type="linenumber">404</context> | ||
9264 | </context-group> | ||
9265 | </trans-unit><trans-unit id="ngb.pagination.next" datatype="html"> | ||
9266 | <source>»</source><target state="new">»</target> | ||
9267 | <context-group purpose="location"> | ||
9268 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9269 | <context context-type="linenumber">404</context> | ||
9270 | </context-group> | ||
9271 | </trans-unit><trans-unit id="ngb.pagination.last" datatype="html"> | ||
9272 | <source>»»</source><target state="new">»»</target> | ||
9273 | <context-group purpose="location"> | ||
9274 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9275 | <context context-type="linenumber">404</context> | ||
9276 | </context-group> | ||
9277 | </trans-unit><trans-unit id="ngb.pagination.first-aria" datatype="html"> | ||
9278 | <source>First</source><target state="new">First</target> | ||
9279 | <context-group purpose="location"> | ||
9280 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9281 | <context context-type="linenumber">404</context> | ||
9282 | </context-group> | ||
9283 | </trans-unit><trans-unit id="ngb.pagination.previous-aria" datatype="html"> | ||
9284 | <source>Previous</source><target state="new">Previous</target> | ||
9285 | <context-group purpose="location"> | ||
9286 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9287 | <context context-type="linenumber">404</context> | ||
9288 | </context-group> | ||
9289 | </trans-unit><trans-unit id="ngb.pagination.next-aria" datatype="html"> | ||
9290 | <source>Next</source><target state="new">Next</target> | ||
9291 | <context-group purpose="location"> | ||
9292 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9293 | <context context-type="linenumber">404</context> | ||
9294 | </context-group> | ||
9295 | </trans-unit><trans-unit id="ngb.pagination.last-aria" datatype="html"> | ||
9296 | <source>Last</source><target state="new">Last</target> | ||
9297 | <context-group purpose="location"> | ||
9298 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9299 | <context context-type="linenumber">404</context> | ||
9300 | </context-group> | ||
9301 | </trans-unit><trans-unit id="ngb.progressbar.value" datatype="html"> | ||
9302 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9303 | <context-group purpose="location"> | ||
9304 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/progressbar/progressbar.ts</context> | ||
9305 | <context context-type="linenumber">101</context> | ||
9306 | </context-group> | ||
9307 | </trans-unit><trans-unit id="ngb.timepicker.HH" datatype="html"> | ||
9308 | <source>HH</source><target state="new">HH</target> | ||
9309 | <context-group purpose="location"> | ||
9310 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9311 | <context context-type="linenumber">296</context> | ||
9312 | </context-group> | ||
9313 | </trans-unit><trans-unit id="ngb.timepicker.hours" datatype="html"> | ||
9314 | <source>Hours</source><target state="new">Hours</target> | ||
9315 | <context-group purpose="location"> | ||
9316 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9317 | <context context-type="linenumber">296</context> | ||
9318 | </context-group> | ||
9319 | </trans-unit><trans-unit id="ngb.timepicker.MM" datatype="html"> | ||
9320 | <source>MM</source><target state="new">MM</target> | ||
9321 | <context-group purpose="location"> | ||
9322 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9323 | <context context-type="linenumber">296</context> | ||
9324 | </context-group> | ||
9325 | </trans-unit><trans-unit id="ngb.timepicker.minutes" datatype="html"> | ||
9326 | <source>Minutes</source><target state="new">Minutes</target> | ||
9327 | <context-group purpose="location"> | ||
9328 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9329 | <context context-type="linenumber">296</context> | ||
9330 | </context-group> | ||
9331 | </trans-unit><trans-unit id="ngb.timepicker.increment-hours" datatype="html"> | ||
9332 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
9333 | <context-group purpose="location"> | ||
9334 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9335 | <context context-type="linenumber">296</context> | ||
9336 | </context-group> | ||
9337 | </trans-unit><trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> | ||
9338 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
9339 | <context-group purpose="location"> | ||
9340 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9341 | <context context-type="linenumber">296</context> | ||
9342 | </context-group> | ||
9343 | </trans-unit><trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> | ||
9344 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
9345 | <context-group purpose="location"> | ||
9346 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9347 | <context context-type="linenumber">296</context> | ||
9348 | </context-group> | ||
9349 | </trans-unit><trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> | ||
9350 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
9351 | <context-group purpose="location"> | ||
9352 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9353 | <context context-type="linenumber">296</context> | ||
9354 | </context-group> | ||
9355 | </trans-unit><trans-unit id="ngb.timepicker.SS" datatype="html"> | ||
9356 | <source>SS</source><target state="new">SS</target> | ||
9357 | <context-group purpose="location"> | ||
9358 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9359 | <context context-type="linenumber">296</context> | ||
9360 | </context-group> | ||
9361 | </trans-unit><trans-unit id="ngb.timepicker.seconds" datatype="html"> | ||
9362 | <source>Seconds</source><target state="new">Seconds</target> | ||
9363 | <context-group purpose="location"> | ||
9364 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9365 | <context context-type="linenumber">296</context> | ||
9366 | </context-group> | ||
9367 | </trans-unit><trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> | ||
9368 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
9369 | <context-group purpose="location"> | ||
9370 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9371 | <context context-type="linenumber">296</context> | ||
9372 | </context-group> | ||
9373 | </trans-unit><trans-unit id="ngb.timepicker.decrement-seconds" datatype="html"> | ||
9374 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
9375 | <context-group purpose="location"> | ||
9376 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9377 | <context context-type="linenumber">296</context> | ||
9378 | </context-group> | ||
9379 | </trans-unit><trans-unit id="ngb.timepicker.PM" datatype="html"> | ||
9380 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9381 | <context-group purpose="location"> | ||
9382 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9383 | <context context-type="linenumber">296</context> | ||
9384 | </context-group> | ||
9385 | </trans-unit><trans-unit id="ngb.timepicker.AM" datatype="html"> | ||
9386 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9387 | <context-group purpose="location"> | ||
9388 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9389 | <context context-type="linenumber">296</context> | ||
9390 | </context-group> | ||
9391 | </trans-unit><trans-unit id="ngb.toast.close-aria" datatype="html"> | ||
9392 | <source>Close</source><target state="new">Close</target> | ||
9393 | <context-group purpose="location"> | ||
9394 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/toast/toast.ts</context> | ||
9395 | <context context-type="linenumber">137</context> | ||
9396 | </context-group> | ||
9397 | </trans-unit> | ||
9368 | <trans-unit id="5210096066382592800" datatype="html"> | 9398 | <trans-unit id="5210096066382592800" datatype="html"> |
9369 | <source>Video to import updated.</source> | 9399 | <source>Video to import updated.</source> |
9370 | <target state="new">Video to import updated.</target> | 9400 | <target state="new">Video to import updated.</target> |
diff --git a/client/src/locale/angular.gl-ES.xlf b/client/src/locale/angular.gl-ES.xlf index 0874a0fc3..715d9ba30 100644 --- a/client/src/locale/angular.gl-ES.xlf +++ b/client/src/locale/angular.gl-ES.xlf | |||
@@ -1250,13 +1250,7 @@ The link will expire within 1 hour.</target> | |||
1250 | <source>Close</source> | 1250 | <source>Close</source> |
1251 | <target state="new">Close</target> | 1251 | <target state="new">Close</target> |
1252 | 1252 | ||
1253 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="680d5c75b7fd8d37961083608b9fcdc4167b4c43" datatype="html"> | 1253 | <context-group purpose="location"><context context-type="sourcefile">../app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1254 | <source>Previous</source><target state="new">Previous</target> | ||
1255 | <context-group purpose="location"> | ||
1256 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
1257 | <context context-type="linenumber">1</context> | ||
1258 | </context-group> | ||
1259 | </trans-unit> | ||
1260 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> | 1254 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> |
1261 | <source> | 1255 | <source> |
1262 | Configure | 1256 | Configure |
@@ -5706,157 +5700,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5706 | <source>Next</source> | 5700 | <source>Next</source> |
5707 | <target state="new">Next</target> | 5701 | <target state="new">Next</target> |
5708 | 5702 | ||
5709 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="c3b08b07b5ab98e7cdcf18df39355690ab7d3884" datatype="html"> | 5703 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit><trans-unit id="9082008222523034483" datatype="html"> |
5710 | <source>Previous month</source><target state="new">Previous month</target> | ||
5711 | <context-group purpose="location"> | ||
5712 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5713 | <context context-type="linenumber">1</context> | ||
5714 | </context-group> | ||
5715 | </trans-unit><trans-unit id="4bd046985cfe13040d5ef0cd881edce0968a111a" datatype="html"> | ||
5716 | <source>Next month</source><target state="new">Next month</target> | ||
5717 | <context-group purpose="location"> | ||
5718 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5719 | <context context-type="linenumber">1</context> | ||
5720 | </context-group> | ||
5721 | </trans-unit><trans-unit id="1dbc84807f35518112f62e5775d1daebd3d8462b" datatype="html"> | ||
5722 | <source>Select month</source><target state="new">Select month</target> | ||
5723 | <context-group purpose="location"> | ||
5724 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5725 | <context context-type="linenumber">1</context> | ||
5726 | </context-group> | ||
5727 | </trans-unit><trans-unit id="8ceb09d002bf0c5d1cac171dfbffe1805d2b3962" datatype="html"> | ||
5728 | <source>Select year</source><target state="new">Select year</target> | ||
5729 | <context-group purpose="location"> | ||
5730 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5731 | <context context-type="linenumber">1</context> | ||
5732 | </context-group> | ||
5733 | </trans-unit><trans-unit id="656506dfd46380956a655f919f1498d018f75ca0" datatype="html"> | ||
5734 | <source>««</source><target state="new">««</target> | ||
5735 | <context-group purpose="location"> | ||
5736 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5737 | <context context-type="linenumber">1</context> | ||
5738 | </context-group> | ||
5739 | </trans-unit><trans-unit id="6e52b6ee77a4848d899dd21b591c6fd499e3aef3" datatype="html"> | ||
5740 | <source>«</source><target state="new">«</target> | ||
5741 | <context-group purpose="location"> | ||
5742 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5743 | <context context-type="linenumber">1</context> | ||
5744 | </context-group> | ||
5745 | </trans-unit><trans-unit id="ba9cbb4ff311464308a3627e4f1c3345d9fe6d7d" datatype="html"> | ||
5746 | <source>»</source><target state="new">»</target> | ||
5747 | <context-group purpose="location"> | ||
5748 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5749 | <context context-type="linenumber">1</context> | ||
5750 | </context-group> | ||
5751 | </trans-unit><trans-unit id="49f27a460bc97e7e00be5b37098bfa79884fc7d9" datatype="html"> | ||
5752 | <source>»»</source><target state="new">»»</target> | ||
5753 | <context-group purpose="location"> | ||
5754 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5755 | <context context-type="linenumber">1</context> | ||
5756 | </context-group> | ||
5757 | </trans-unit><trans-unit id="f2f852318759c6396b5d3d17031d53817d7b38cc" datatype="html"> | ||
5758 | <source>First</source><target state="new">First</target> | ||
5759 | <context-group purpose="location"> | ||
5760 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5761 | <context context-type="linenumber">1</context> | ||
5762 | </context-group> | ||
5763 | </trans-unit><trans-unit id="5c729788ba138508aca1bec050b610f7bf81db3e" datatype="html"> | ||
5764 | <source>Last</source><target state="new">Last</target> | ||
5765 | <context-group purpose="location"> | ||
5766 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5767 | <context context-type="linenumber">1</context> | ||
5768 | </context-group> | ||
5769 | </trans-unit><trans-unit id="f8e9a947b9db4252c0e9905765338712f2fd032f" datatype="html"> | ||
5770 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5771 | <context-group purpose="location"> | ||
5772 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5773 | <context context-type="linenumber">1</context> | ||
5774 | </context-group> | ||
5775 | </trans-unit><trans-unit id="ce676ab1d6d98f85c836381cf100a4a91ef95a1f" datatype="html"> | ||
5776 | <source>HH</source><target state="new">HH</target> | ||
5777 | <context-group purpose="location"> | ||
5778 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5779 | <context context-type="linenumber">1</context> | ||
5780 | </context-group> | ||
5781 | </trans-unit><trans-unit id="3bbce5fef7e1151da052a4e529453edb340e3912" datatype="html"> | ||
5782 | <source>Hours</source><target state="new">Hours</target> | ||
5783 | <context-group purpose="location"> | ||
5784 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5785 | <context context-type="linenumber">1</context> | ||
5786 | </context-group> | ||
5787 | </trans-unit><trans-unit id="72c8edf6a50068a05bde70991e36b1e881f4ca54" datatype="html"> | ||
5788 | <source>MM</source><target state="new">MM</target> | ||
5789 | <context-group purpose="location"> | ||
5790 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5791 | <context context-type="linenumber">1</context> | ||
5792 | </context-group> | ||
5793 | </trans-unit><trans-unit id="41e62daa962947c0d23ded0981975d1bddf0bf38" datatype="html"> | ||
5794 | <source>Minutes</source><target state="new">Minutes</target> | ||
5795 | <context-group purpose="location"> | ||
5796 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5797 | <context context-type="linenumber">1</context> | ||
5798 | </context-group> | ||
5799 | </trans-unit><trans-unit id="cb74bc1d625a6c1742f0d7d47306cf495780c218" datatype="html"> | ||
5800 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
5801 | <context-group purpose="location"> | ||
5802 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5803 | <context context-type="linenumber">1</context> | ||
5804 | </context-group> | ||
5805 | </trans-unit><trans-unit id="147c7a19429da7d999e247d22e33fee370b1691b" datatype="html"> | ||
5806 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
5807 | <context-group purpose="location"> | ||
5808 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5809 | <context context-type="linenumber">1</context> | ||
5810 | </context-group> | ||
5811 | </trans-unit><trans-unit id="f5a4a3bc05e053f6732475d0e74875ec01c3a348" datatype="html"> | ||
5812 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
5813 | <context-group purpose="location"> | ||
5814 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5815 | <context context-type="linenumber">1</context> | ||
5816 | </context-group> | ||
5817 | </trans-unit><trans-unit id="c1a6899e529c096da5b660385d4e77fe1f7ad271" datatype="html"> | ||
5818 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
5819 | <context-group purpose="location"> | ||
5820 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5821 | <context context-type="linenumber">1</context> | ||
5822 | </context-group> | ||
5823 | </trans-unit><trans-unit id="ebe38d36a40a2383c5fefa9b4608ffbda08bd4a3" datatype="html"> | ||
5824 | <source>SS</source><target state="new">SS</target> | ||
5825 | <context-group purpose="location"> | ||
5826 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5827 | <context context-type="linenumber">1</context> | ||
5828 | </context-group> | ||
5829 | </trans-unit><trans-unit id="4f2ed9e71a7c981db3e50ae2fedb28aff2ec4e6c" datatype="html"> | ||
5830 | <source>Seconds</source><target state="new">Seconds</target> | ||
5831 | <context-group purpose="location"> | ||
5832 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5833 | <context context-type="linenumber">1</context> | ||
5834 | </context-group> | ||
5835 | </trans-unit><trans-unit id="912322ecee7d659d04dcf494a70e22e49d334b26" datatype="html"> | ||
5836 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
5837 | <context-group purpose="location"> | ||
5838 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5839 | <context context-type="linenumber">1</context> | ||
5840 | </context-group> | ||
5841 | </trans-unit><trans-unit id="5db47ac104294243a70eb9124fbea9d0004ddf69" datatype="html"> | ||
5842 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
5843 | <context-group purpose="location"> | ||
5844 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5845 | <context context-type="linenumber">1</context> | ||
5846 | </context-group> | ||
5847 | </trans-unit><trans-unit id="8d6e691e10306c1b34c6b26805151aaea320ef7f" datatype="html"> | ||
5848 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5849 | <context-group purpose="location"> | ||
5850 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5851 | <context context-type="linenumber">1</context> | ||
5852 | </context-group> | ||
5853 | </trans-unit><trans-unit id="69a1f176a93998876952adac57c3bc3863b6105e" datatype="html"> | ||
5854 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5855 | <context-group purpose="location"> | ||
5856 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5857 | <context context-type="linenumber">1</context> | ||
5858 | </context-group> | ||
5859 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
5860 | <source>Get help</source><target state="new">Get help</target> | 5704 | <source>Get help</source><target state="new">Get help</target> |
5861 | <context-group purpose="location"> | 5705 | <context-group purpose="location"> |
5862 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 5706 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> |
@@ -9399,7 +9243,193 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9399 | <source>Only users of this instance can see this video</source> | 9243 | <source>Only users of this instance can see this video</source> |
9400 | <target state="new">Only users of this instance can see this video</target> | 9244 | <target state="new">Only users of this instance can see this video</target> |
9401 | 9245 | ||
9402 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit> | 9246 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit><trans-unit id="ngb.alert.close" datatype="html"> |
9247 | <source>Close</source><target state="new">Close</target> | ||
9248 | <context-group purpose="location"> | ||
9249 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/alert/alert.ts</context> | ||
9250 | <context context-type="linenumber">74</context> | ||
9251 | </context-group> | ||
9252 | </trans-unit><trans-unit id="ngb.carousel.previous" datatype="html"> | ||
9253 | <source>Previous</source><target state="new">Previous</target> | ||
9254 | <context-group purpose="location"> | ||
9255 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9256 | <context context-type="linenumber">349</context> | ||
9257 | </context-group> | ||
9258 | </trans-unit><trans-unit id="ngb.carousel.next" datatype="html"> | ||
9259 | <source>Next</source><target state="new">Next</target> | ||
9260 | <context-group purpose="location"> | ||
9261 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9262 | <context context-type="linenumber">349</context> | ||
9263 | </context-group> | ||
9264 | </trans-unit><trans-unit id="ngb.datepicker.previous-month" datatype="html"> | ||
9265 | <source>Previous month</source><target state="new">Previous month</target> | ||
9266 | <context-group purpose="location"> | ||
9267 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation.ts</context> | ||
9268 | <context context-type="linenumber">69</context> | ||
9269 | </context-group> | ||
9270 | </trans-unit><trans-unit id="ngb.datepicker.next-month" datatype="html"> | ||
9271 | <source>Next month</source><target state="new">Next month</target> | ||
9272 | <context-group purpose="location"> | ||
9273 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-month.ts</context> | ||
9274 | <context context-type="linenumber">72</context> | ||
9275 | </context-group> | ||
9276 | </trans-unit><trans-unit id="ngb.datepicker.select-month" datatype="html"> | ||
9277 | <source>Select month</source><target state="new">Select month</target> | ||
9278 | <context-group purpose="location"> | ||
9279 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9280 | <context context-type="linenumber">74</context> | ||
9281 | </context-group> | ||
9282 | </trans-unit><trans-unit id="ngb.datepicker.select-year" datatype="html"> | ||
9283 | <source>Select year</source><target state="new">Select year</target> | ||
9284 | <context-group purpose="location"> | ||
9285 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9286 | <context context-type="linenumber">74</context> | ||
9287 | </context-group> | ||
9288 | </trans-unit><trans-unit id="ngb.pagination.first" datatype="html"> | ||
9289 | <source>««</source><target state="new">««</target> | ||
9290 | <context-group purpose="location"> | ||
9291 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9292 | <context context-type="linenumber">404</context> | ||
9293 | </context-group> | ||
9294 | </trans-unit><trans-unit id="ngb.pagination.previous" datatype="html"> | ||
9295 | <source>«</source><target state="new">«</target> | ||
9296 | <context-group purpose="location"> | ||
9297 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9298 | <context context-type="linenumber">404</context> | ||
9299 | </context-group> | ||
9300 | </trans-unit><trans-unit id="ngb.pagination.next" datatype="html"> | ||
9301 | <source>»</source><target state="new">»</target> | ||
9302 | <context-group purpose="location"> | ||
9303 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9304 | <context context-type="linenumber">404</context> | ||
9305 | </context-group> | ||
9306 | </trans-unit><trans-unit id="ngb.pagination.last" datatype="html"> | ||
9307 | <source>»»</source><target state="new">»»</target> | ||
9308 | <context-group purpose="location"> | ||
9309 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9310 | <context context-type="linenumber">404</context> | ||
9311 | </context-group> | ||
9312 | </trans-unit><trans-unit id="ngb.pagination.first-aria" datatype="html"> | ||
9313 | <source>First</source><target state="new">First</target> | ||
9314 | <context-group purpose="location"> | ||
9315 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9316 | <context context-type="linenumber">404</context> | ||
9317 | </context-group> | ||
9318 | </trans-unit><trans-unit id="ngb.pagination.previous-aria" datatype="html"> | ||
9319 | <source>Previous</source><target state="new">Previous</target> | ||
9320 | <context-group purpose="location"> | ||
9321 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9322 | <context context-type="linenumber">404</context> | ||
9323 | </context-group> | ||
9324 | </trans-unit><trans-unit id="ngb.pagination.next-aria" datatype="html"> | ||
9325 | <source>Next</source><target state="new">Next</target> | ||
9326 | <context-group purpose="location"> | ||
9327 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9328 | <context context-type="linenumber">404</context> | ||
9329 | </context-group> | ||
9330 | </trans-unit><trans-unit id="ngb.pagination.last-aria" datatype="html"> | ||
9331 | <source>Last</source><target state="new">Last</target> | ||
9332 | <context-group purpose="location"> | ||
9333 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9334 | <context context-type="linenumber">404</context> | ||
9335 | </context-group> | ||
9336 | </trans-unit><trans-unit id="ngb.progressbar.value" datatype="html"> | ||
9337 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9338 | <context-group purpose="location"> | ||
9339 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/progressbar/progressbar.ts</context> | ||
9340 | <context context-type="linenumber">101</context> | ||
9341 | </context-group> | ||
9342 | </trans-unit><trans-unit id="ngb.timepicker.HH" datatype="html"> | ||
9343 | <source>HH</source><target state="new">HH</target> | ||
9344 | <context-group purpose="location"> | ||
9345 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9346 | <context context-type="linenumber">296</context> | ||
9347 | </context-group> | ||
9348 | </trans-unit><trans-unit id="ngb.timepicker.hours" datatype="html"> | ||
9349 | <source>Hours</source><target state="new">Hours</target> | ||
9350 | <context-group purpose="location"> | ||
9351 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9352 | <context context-type="linenumber">296</context> | ||
9353 | </context-group> | ||
9354 | </trans-unit><trans-unit id="ngb.timepicker.MM" datatype="html"> | ||
9355 | <source>MM</source><target state="new">MM</target> | ||
9356 | <context-group purpose="location"> | ||
9357 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9358 | <context context-type="linenumber">296</context> | ||
9359 | </context-group> | ||
9360 | </trans-unit><trans-unit id="ngb.timepicker.minutes" datatype="html"> | ||
9361 | <source>Minutes</source><target state="new">Minutes</target> | ||
9362 | <context-group purpose="location"> | ||
9363 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9364 | <context context-type="linenumber">296</context> | ||
9365 | </context-group> | ||
9366 | </trans-unit><trans-unit id="ngb.timepicker.increment-hours" datatype="html"> | ||
9367 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
9368 | <context-group purpose="location"> | ||
9369 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9370 | <context context-type="linenumber">296</context> | ||
9371 | </context-group> | ||
9372 | </trans-unit><trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> | ||
9373 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
9374 | <context-group purpose="location"> | ||
9375 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9376 | <context context-type="linenumber">296</context> | ||
9377 | </context-group> | ||
9378 | </trans-unit><trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> | ||
9379 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
9380 | <context-group purpose="location"> | ||
9381 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9382 | <context context-type="linenumber">296</context> | ||
9383 | </context-group> | ||
9384 | </trans-unit><trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> | ||
9385 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
9386 | <context-group purpose="location"> | ||
9387 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9388 | <context context-type="linenumber">296</context> | ||
9389 | </context-group> | ||
9390 | </trans-unit><trans-unit id="ngb.timepicker.SS" datatype="html"> | ||
9391 | <source>SS</source><target state="new">SS</target> | ||
9392 | <context-group purpose="location"> | ||
9393 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9394 | <context context-type="linenumber">296</context> | ||
9395 | </context-group> | ||
9396 | </trans-unit><trans-unit id="ngb.timepicker.seconds" datatype="html"> | ||
9397 | <source>Seconds</source><target state="new">Seconds</target> | ||
9398 | <context-group purpose="location"> | ||
9399 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9400 | <context context-type="linenumber">296</context> | ||
9401 | </context-group> | ||
9402 | </trans-unit><trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> | ||
9403 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
9404 | <context-group purpose="location"> | ||
9405 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9406 | <context context-type="linenumber">296</context> | ||
9407 | </context-group> | ||
9408 | </trans-unit><trans-unit id="ngb.timepicker.decrement-seconds" datatype="html"> | ||
9409 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
9410 | <context-group purpose="location"> | ||
9411 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9412 | <context context-type="linenumber">296</context> | ||
9413 | </context-group> | ||
9414 | </trans-unit><trans-unit id="ngb.timepicker.PM" datatype="html"> | ||
9415 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9416 | <context-group purpose="location"> | ||
9417 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9418 | <context context-type="linenumber">296</context> | ||
9419 | </context-group> | ||
9420 | </trans-unit><trans-unit id="ngb.timepicker.AM" datatype="html"> | ||
9421 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9422 | <context-group purpose="location"> | ||
9423 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9424 | <context context-type="linenumber">296</context> | ||
9425 | </context-group> | ||
9426 | </trans-unit><trans-unit id="ngb.toast.close-aria" datatype="html"> | ||
9427 | <source>Close</source><target state="new">Close</target> | ||
9428 | <context-group purpose="location"> | ||
9429 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/toast/toast.ts</context> | ||
9430 | <context context-type="linenumber">137</context> | ||
9431 | </context-group> | ||
9432 | </trans-unit> | ||
9403 | <trans-unit id="5210096066382592800" datatype="html"> | 9433 | <trans-unit id="5210096066382592800" datatype="html"> |
9404 | <source>Video to import updated.</source> | 9434 | <source>Video to import updated.</source> |
9405 | <target state="new">Video to import updated.</target> | 9435 | <target state="new">Video to import updated.</target> |
diff --git a/client/src/locale/angular.hu-HU.xlf b/client/src/locale/angular.hu-HU.xlf index ad847f948..a05ca0927 100644 --- a/client/src/locale/angular.hu-HU.xlf +++ b/client/src/locale/angular.hu-HU.xlf | |||
@@ -1097,16 +1097,9 @@ The link will expire within 1 hour.</target> | |||
1097 | <trans-unit id="f4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8"> | 1097 | <trans-unit id="f4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8"> |
1098 | <source>Close</source> | 1098 | <source>Close</source> |
1099 | <target>Bezárás</target> | 1099 | <target>Bezárás</target> |
1100 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group> | 1100 | |
1101 | </trans-unit> | 1101 | <context-group purpose="location"><context context-type="sourcefile">../app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1102 | <trans-unit id="680d5c75b7fd8d37961083608b9fcdc4167b4c43" datatype="html"> | 1102 | |
1103 | <source>Previous</source> | ||
1104 | <target state="translated">Előző</target> | ||
1105 | <context-group purpose="location"> | ||
1106 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
1107 | <context context-type="linenumber">1</context> | ||
1108 | </context-group> | ||
1109 | </trans-unit> | ||
1110 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> | 1103 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> |
1111 | <source>Configure</source> | 1104 | <source>Configure</source> |
1112 | <target state="translated">Beállítás</target> | 1105 | <target state="translated">Beállítás</target> |
@@ -5135,208 +5128,33 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5135 | <trans-unit id="f732c304c7433e5a83ffcd862c3dce709a0f4982" datatype="html"> | 5128 | <trans-unit id="f732c304c7433e5a83ffcd862c3dce709a0f4982" datatype="html"> |
5136 | <source>Next</source> | 5129 | <source>Next</source> |
5137 | <target state="translated">Következő</target> | 5130 | <target state="translated">Következő</target> |
5138 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group> | 5131 | |
5139 | </trans-unit> | 5132 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit> |
5140 | <trans-unit id="c3b08b07b5ab98e7cdcf18df39355690ab7d3884" datatype="html"> | 5133 | |
5141 | <source>Previous month</source> | 5134 | |
5142 | <target state="translated">Előző hónap</target> | 5135 | |
5143 | <context-group purpose="location"> | 5136 | |
5144 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 5137 | |
5145 | <context context-type="linenumber">1</context> | 5138 | |
5146 | </context-group> | 5139 | |
5147 | </trans-unit> | 5140 | |
5148 | <trans-unit id="4bd046985cfe13040d5ef0cd881edce0968a111a" datatype="html"> | 5141 | |
5149 | <source>Next month</source> | 5142 | |
5150 | <target state="translated">Következő hónap</target> | 5143 | |
5151 | <context-group purpose="location"> | 5144 | |
5152 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 5145 | |
5153 | <context context-type="linenumber">1</context> | 5146 | |
5154 | </context-group> | 5147 | |
5155 | </trans-unit> | 5148 | |
5156 | <trans-unit id="1dbc84807f35518112f62e5775d1daebd3d8462b" datatype="html"> | 5149 | |
5157 | <source>Select month</source> | 5150 | |
5158 | <target state="translated">Hónap kiválasztása</target> | 5151 | |
5159 | <context-group purpose="location"> | 5152 | |
5160 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 5153 | |
5161 | <context context-type="linenumber">1</context> | 5154 | |
5162 | </context-group> | 5155 | |
5163 | </trans-unit> | 5156 | |
5164 | <trans-unit id="8ceb09d002bf0c5d1cac171dfbffe1805d2b3962" datatype="html"> | 5157 | <trans-unit id="9082008222523034483" datatype="html"> |
5165 | <source>Select year</source> | ||
5166 | <target state="translated">Év kiválasztása</target> | ||
5167 | <context-group purpose="location"> | ||
5168 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5169 | <context context-type="linenumber">1</context> | ||
5170 | </context-group> | ||
5171 | </trans-unit> | ||
5172 | <trans-unit id="656506dfd46380956a655f919f1498d018f75ca0" datatype="html"> | ||
5173 | <source>««</source> | ||
5174 | <target state="translated">««</target> | ||
5175 | <context-group purpose="location"> | ||
5176 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5177 | <context context-type="linenumber">1</context> | ||
5178 | </context-group> | ||
5179 | </trans-unit> | ||
5180 | <trans-unit id="6e52b6ee77a4848d899dd21b591c6fd499e3aef3" datatype="html"> | ||
5181 | <source>«</source> | ||
5182 | <target state="translated">«</target> | ||
5183 | <context-group purpose="location"> | ||
5184 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5185 | <context context-type="linenumber">1</context> | ||
5186 | </context-group> | ||
5187 | </trans-unit> | ||
5188 | <trans-unit id="ba9cbb4ff311464308a3627e4f1c3345d9fe6d7d" datatype="html"> | ||
5189 | <source>»</source> | ||
5190 | <target state="translated">»</target> | ||
5191 | <context-group purpose="location"> | ||
5192 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5193 | <context context-type="linenumber">1</context> | ||
5194 | </context-group> | ||
5195 | </trans-unit> | ||
5196 | <trans-unit id="49f27a460bc97e7e00be5b37098bfa79884fc7d9" datatype="html"> | ||
5197 | <source>»»</source> | ||
5198 | <target state="translated">»»</target> | ||
5199 | <context-group purpose="location"> | ||
5200 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5201 | <context context-type="linenumber">1</context> | ||
5202 | </context-group> | ||
5203 | </trans-unit> | ||
5204 | <trans-unit id="f2f852318759c6396b5d3d17031d53817d7b38cc" datatype="html"> | ||
5205 | <source>First</source> | ||
5206 | <target state="translated">Első</target> | ||
5207 | <context-group purpose="location"> | ||
5208 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5209 | <context context-type="linenumber">1</context> | ||
5210 | </context-group> | ||
5211 | </trans-unit> | ||
5212 | <trans-unit id="5c729788ba138508aca1bec050b610f7bf81db3e" datatype="html"> | ||
5213 | <source>Last</source> | ||
5214 | <target state="translated">Utolsó</target> | ||
5215 | <context-group purpose="location"> | ||
5216 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5217 | <context context-type="linenumber">1</context> | ||
5218 | </context-group> | ||
5219 | </trans-unit> | ||
5220 | <trans-unit id="f8e9a947b9db4252c0e9905765338712f2fd032f" datatype="html"> | ||
5221 | <source><x id="INTERPOLATION"/></source> | ||
5222 | <target state="new"><x id="INTERPOLATION"/></target> | ||
5223 | <context-group purpose="location"> | ||
5224 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5225 | <context context-type="linenumber">1</context> | ||
5226 | </context-group> | ||
5227 | </trans-unit> | ||
5228 | <trans-unit id="ce676ab1d6d98f85c836381cf100a4a91ef95a1f" datatype="html"> | ||
5229 | <source>HH</source> | ||
5230 | <target state="translated">ÓÓ</target> | ||
5231 | <context-group purpose="location"> | ||
5232 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5233 | <context context-type="linenumber">1</context> | ||
5234 | </context-group> | ||
5235 | </trans-unit> | ||
5236 | <trans-unit id="3bbce5fef7e1151da052a4e529453edb340e3912" datatype="html"> | ||
5237 | <source>Hours</source> | ||
5238 | <target state="translated">Óra</target> | ||
5239 | <context-group purpose="location"> | ||
5240 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5241 | <context context-type="linenumber">1</context> | ||
5242 | </context-group> | ||
5243 | </trans-unit> | ||
5244 | <trans-unit id="72c8edf6a50068a05bde70991e36b1e881f4ca54" datatype="html"> | ||
5245 | <source>MM</source> | ||
5246 | <target state="translated">PP</target> | ||
5247 | <context-group purpose="location"> | ||
5248 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5249 | <context context-type="linenumber">1</context> | ||
5250 | </context-group> | ||
5251 | </trans-unit> | ||
5252 | <trans-unit id="41e62daa962947c0d23ded0981975d1bddf0bf38" datatype="html"> | ||
5253 | <source>Minutes</source> | ||
5254 | <target state="translated">Perc</target> | ||
5255 | <context-group purpose="location"> | ||
5256 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5257 | <context context-type="linenumber">1</context> | ||
5258 | </context-group> | ||
5259 | </trans-unit> | ||
5260 | <trans-unit id="cb74bc1d625a6c1742f0d7d47306cf495780c218" datatype="html"> | ||
5261 | <source>Increment hours</source> | ||
5262 | <target state="translated">Óra növelése</target> | ||
5263 | <context-group purpose="location"> | ||
5264 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5265 | <context context-type="linenumber">1</context> | ||
5266 | </context-group> | ||
5267 | </trans-unit> | ||
5268 | <trans-unit id="147c7a19429da7d999e247d22e33fee370b1691b" datatype="html"> | ||
5269 | <source>Decrement hours</source> | ||
5270 | <target state="translated">Óra csökkentése</target> | ||
5271 | <context-group purpose="location"> | ||
5272 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5273 | <context context-type="linenumber">1</context> | ||
5274 | </context-group> | ||
5275 | </trans-unit> | ||
5276 | <trans-unit id="f5a4a3bc05e053f6732475d0e74875ec01c3a348" datatype="html"> | ||
5277 | <source>Increment minutes</source> | ||
5278 | <target state="translated">Perc növelése</target> | ||
5279 | <context-group purpose="location"> | ||
5280 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5281 | <context context-type="linenumber">1</context> | ||
5282 | </context-group> | ||
5283 | </trans-unit> | ||
5284 | <trans-unit id="c1a6899e529c096da5b660385d4e77fe1f7ad271" datatype="html"> | ||
5285 | <source>Decrement minutes</source> | ||
5286 | <target state="translated">Perc csökkentése</target> | ||
5287 | <context-group purpose="location"> | ||
5288 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5289 | <context context-type="linenumber">1</context> | ||
5290 | </context-group> | ||
5291 | </trans-unit> | ||
5292 | <trans-unit id="ebe38d36a40a2383c5fefa9b4608ffbda08bd4a3" datatype="html"> | ||
5293 | <source>SS</source> | ||
5294 | <target state="translated">MP</target> | ||
5295 | <context-group purpose="location"> | ||
5296 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5297 | <context context-type="linenumber">1</context> | ||
5298 | </context-group> | ||
5299 | </trans-unit> | ||
5300 | <trans-unit id="4f2ed9e71a7c981db3e50ae2fedb28aff2ec4e6c" datatype="html"> | ||
5301 | <source>Seconds</source> | ||
5302 | <target state="translated">Másodperc</target> | ||
5303 | <context-group purpose="location"> | ||
5304 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5305 | <context context-type="linenumber">1</context> | ||
5306 | </context-group> | ||
5307 | </trans-unit> | ||
5308 | <trans-unit id="912322ecee7d659d04dcf494a70e22e49d334b26" datatype="html"> | ||
5309 | <source>Increment seconds</source> | ||
5310 | <target state="translated">Másodperc növelése</target> | ||
5311 | <context-group purpose="location"> | ||
5312 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5313 | <context context-type="linenumber">1</context> | ||
5314 | </context-group> | ||
5315 | </trans-unit> | ||
5316 | <trans-unit id="5db47ac104294243a70eb9124fbea9d0004ddf69" datatype="html"> | ||
5317 | <source>Decrement seconds</source> | ||
5318 | <target state="translated">Másodperc csökkentése</target> | ||
5319 | <context-group purpose="location"> | ||
5320 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5321 | <context context-type="linenumber">1</context> | ||
5322 | </context-group> | ||
5323 | </trans-unit> | ||
5324 | <trans-unit id="8d6e691e10306c1b34c6b26805151aaea320ef7f" datatype="html"> | ||
5325 | <source><x id="INTERPOLATION"/></source> | ||
5326 | <target state="new"><x id="INTERPOLATION"/></target> | ||
5327 | <context-group purpose="location"> | ||
5328 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5329 | <context context-type="linenumber">1</context> | ||
5330 | </context-group> | ||
5331 | </trans-unit> | ||
5332 | <trans-unit id="69a1f176a93998876952adac57c3bc3863b6105e" datatype="html"> | ||
5333 | <source><x id="INTERPOLATION"/></source> | ||
5334 | <target state="new"><x id="INTERPOLATION"/></target> | ||
5335 | <context-group purpose="location"> | ||
5336 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5337 | <context context-type="linenumber">1</context> | ||
5338 | </context-group> | ||
5339 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
5340 | <source>Get help</source><target state="new">Get help</target> | 5158 | <source>Get help</source><target state="new">Get help</target> |
5341 | <context-group purpose="location"> | 5159 | <context-group purpose="location"> |
5342 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 5160 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> |
@@ -8761,7 +8579,193 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8761 | <source>Only users of this instance can see this video</source> | 8579 | <source>Only users of this instance can see this video</source> |
8762 | <target state="translated">Csak a példány felhasználói nézhetik meg ezt a videót</target> | 8580 | <target state="translated">Csak a példány felhasználói nézhetik meg ezt a videót</target> |
8763 | 8581 | ||
8764 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit> | 8582 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit><trans-unit id="ngb.alert.close" datatype="html"> |
8583 | <source>Close</source><target state="new">Close</target> | ||
8584 | <context-group purpose="location"> | ||
8585 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/alert/alert.ts</context> | ||
8586 | <context context-type="linenumber">74</context> | ||
8587 | </context-group> | ||
8588 | </trans-unit><trans-unit id="ngb.carousel.previous" datatype="html"> | ||
8589 | <source>Previous</source><target state="new">Previous</target> | ||
8590 | <context-group purpose="location"> | ||
8591 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
8592 | <context context-type="linenumber">349</context> | ||
8593 | </context-group> | ||
8594 | </trans-unit><trans-unit id="ngb.carousel.next" datatype="html"> | ||
8595 | <source>Next</source><target state="new">Next</target> | ||
8596 | <context-group purpose="location"> | ||
8597 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
8598 | <context context-type="linenumber">349</context> | ||
8599 | </context-group> | ||
8600 | </trans-unit><trans-unit id="ngb.datepicker.previous-month" datatype="html"> | ||
8601 | <source>Previous month</source><target state="new">Previous month</target> | ||
8602 | <context-group purpose="location"> | ||
8603 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation.ts</context> | ||
8604 | <context context-type="linenumber">69</context> | ||
8605 | </context-group> | ||
8606 | </trans-unit><trans-unit id="ngb.datepicker.next-month" datatype="html"> | ||
8607 | <source>Next month</source><target state="new">Next month</target> | ||
8608 | <context-group purpose="location"> | ||
8609 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-month.ts</context> | ||
8610 | <context context-type="linenumber">72</context> | ||
8611 | </context-group> | ||
8612 | </trans-unit><trans-unit id="ngb.datepicker.select-month" datatype="html"> | ||
8613 | <source>Select month</source><target state="new">Select month</target> | ||
8614 | <context-group purpose="location"> | ||
8615 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
8616 | <context context-type="linenumber">74</context> | ||
8617 | </context-group> | ||
8618 | </trans-unit><trans-unit id="ngb.datepicker.select-year" datatype="html"> | ||
8619 | <source>Select year</source><target state="new">Select year</target> | ||
8620 | <context-group purpose="location"> | ||
8621 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
8622 | <context context-type="linenumber">74</context> | ||
8623 | </context-group> | ||
8624 | </trans-unit><trans-unit id="ngb.pagination.first" datatype="html"> | ||
8625 | <source>««</source><target state="new">««</target> | ||
8626 | <context-group purpose="location"> | ||
8627 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8628 | <context context-type="linenumber">404</context> | ||
8629 | </context-group> | ||
8630 | </trans-unit><trans-unit id="ngb.pagination.previous" datatype="html"> | ||
8631 | <source>«</source><target state="new">«</target> | ||
8632 | <context-group purpose="location"> | ||
8633 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8634 | <context context-type="linenumber">404</context> | ||
8635 | </context-group> | ||
8636 | </trans-unit><trans-unit id="ngb.pagination.next" datatype="html"> | ||
8637 | <source>»</source><target state="new">»</target> | ||
8638 | <context-group purpose="location"> | ||
8639 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8640 | <context context-type="linenumber">404</context> | ||
8641 | </context-group> | ||
8642 | </trans-unit><trans-unit id="ngb.pagination.last" datatype="html"> | ||
8643 | <source>»»</source><target state="new">»»</target> | ||
8644 | <context-group purpose="location"> | ||
8645 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8646 | <context context-type="linenumber">404</context> | ||
8647 | </context-group> | ||
8648 | </trans-unit><trans-unit id="ngb.pagination.first-aria" datatype="html"> | ||
8649 | <source>First</source><target state="new">First</target> | ||
8650 | <context-group purpose="location"> | ||
8651 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8652 | <context context-type="linenumber">404</context> | ||
8653 | </context-group> | ||
8654 | </trans-unit><trans-unit id="ngb.pagination.previous-aria" datatype="html"> | ||
8655 | <source>Previous</source><target state="new">Previous</target> | ||
8656 | <context-group purpose="location"> | ||
8657 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8658 | <context context-type="linenumber">404</context> | ||
8659 | </context-group> | ||
8660 | </trans-unit><trans-unit id="ngb.pagination.next-aria" datatype="html"> | ||
8661 | <source>Next</source><target state="new">Next</target> | ||
8662 | <context-group purpose="location"> | ||
8663 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8664 | <context context-type="linenumber">404</context> | ||
8665 | </context-group> | ||
8666 | </trans-unit><trans-unit id="ngb.pagination.last-aria" datatype="html"> | ||
8667 | <source>Last</source><target state="new">Last</target> | ||
8668 | <context-group purpose="location"> | ||
8669 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8670 | <context context-type="linenumber">404</context> | ||
8671 | </context-group> | ||
8672 | </trans-unit><trans-unit id="ngb.progressbar.value" datatype="html"> | ||
8673 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
8674 | <context-group purpose="location"> | ||
8675 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/progressbar/progressbar.ts</context> | ||
8676 | <context context-type="linenumber">101</context> | ||
8677 | </context-group> | ||
8678 | </trans-unit><trans-unit id="ngb.timepicker.HH" datatype="html"> | ||
8679 | <source>HH</source><target state="new">HH</target> | ||
8680 | <context-group purpose="location"> | ||
8681 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8682 | <context context-type="linenumber">296</context> | ||
8683 | </context-group> | ||
8684 | </trans-unit><trans-unit id="ngb.timepicker.hours" datatype="html"> | ||
8685 | <source>Hours</source><target state="new">Hours</target> | ||
8686 | <context-group purpose="location"> | ||
8687 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8688 | <context context-type="linenumber">296</context> | ||
8689 | </context-group> | ||
8690 | </trans-unit><trans-unit id="ngb.timepicker.MM" datatype="html"> | ||
8691 | <source>MM</source><target state="new">MM</target> | ||
8692 | <context-group purpose="location"> | ||
8693 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8694 | <context context-type="linenumber">296</context> | ||
8695 | </context-group> | ||
8696 | </trans-unit><trans-unit id="ngb.timepicker.minutes" datatype="html"> | ||
8697 | <source>Minutes</source><target state="new">Minutes</target> | ||
8698 | <context-group purpose="location"> | ||
8699 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8700 | <context context-type="linenumber">296</context> | ||
8701 | </context-group> | ||
8702 | </trans-unit><trans-unit id="ngb.timepicker.increment-hours" datatype="html"> | ||
8703 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
8704 | <context-group purpose="location"> | ||
8705 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8706 | <context context-type="linenumber">296</context> | ||
8707 | </context-group> | ||
8708 | </trans-unit><trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> | ||
8709 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
8710 | <context-group purpose="location"> | ||
8711 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8712 | <context context-type="linenumber">296</context> | ||
8713 | </context-group> | ||
8714 | </trans-unit><trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> | ||
8715 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
8716 | <context-group purpose="location"> | ||
8717 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8718 | <context context-type="linenumber">296</context> | ||
8719 | </context-group> | ||
8720 | </trans-unit><trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> | ||
8721 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
8722 | <context-group purpose="location"> | ||
8723 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8724 | <context context-type="linenumber">296</context> | ||
8725 | </context-group> | ||
8726 | </trans-unit><trans-unit id="ngb.timepicker.SS" datatype="html"> | ||
8727 | <source>SS</source><target state="new">SS</target> | ||
8728 | <context-group purpose="location"> | ||
8729 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8730 | <context context-type="linenumber">296</context> | ||
8731 | </context-group> | ||
8732 | </trans-unit><trans-unit id="ngb.timepicker.seconds" datatype="html"> | ||
8733 | <source>Seconds</source><target state="new">Seconds</target> | ||
8734 | <context-group purpose="location"> | ||
8735 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8736 | <context context-type="linenumber">296</context> | ||
8737 | </context-group> | ||
8738 | </trans-unit><trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> | ||
8739 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
8740 | <context-group purpose="location"> | ||
8741 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8742 | <context context-type="linenumber">296</context> | ||
8743 | </context-group> | ||
8744 | </trans-unit><trans-unit id="ngb.timepicker.decrement-seconds" datatype="html"> | ||
8745 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
8746 | <context-group purpose="location"> | ||
8747 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8748 | <context context-type="linenumber">296</context> | ||
8749 | </context-group> | ||
8750 | </trans-unit><trans-unit id="ngb.timepicker.PM" datatype="html"> | ||
8751 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
8752 | <context-group purpose="location"> | ||
8753 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8754 | <context context-type="linenumber">296</context> | ||
8755 | </context-group> | ||
8756 | </trans-unit><trans-unit id="ngb.timepicker.AM" datatype="html"> | ||
8757 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
8758 | <context-group purpose="location"> | ||
8759 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8760 | <context context-type="linenumber">296</context> | ||
8761 | </context-group> | ||
8762 | </trans-unit><trans-unit id="ngb.toast.close-aria" datatype="html"> | ||
8763 | <source>Close</source><target state="new">Close</target> | ||
8764 | <context-group purpose="location"> | ||
8765 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/toast/toast.ts</context> | ||
8766 | <context context-type="linenumber">137</context> | ||
8767 | </context-group> | ||
8768 | </trans-unit> | ||
8765 | <trans-unit id="5210096066382592800" datatype="html"> | 8769 | <trans-unit id="5210096066382592800" datatype="html"> |
8766 | <source>Video to import updated.</source> | 8770 | <source>Video to import updated.</source> |
8767 | <target state="translated">Az importálandó videó frissítve.</target> | 8771 | <target state="translated">Az importálandó videó frissítve.</target> |
diff --git a/client/src/locale/angular.it-IT.xlf b/client/src/locale/angular.it-IT.xlf index edb0e1335..ea74261bc 100644 --- a/client/src/locale/angular.it-IT.xlf +++ b/client/src/locale/angular.it-IT.xlf | |||
@@ -1286,13 +1286,7 @@ The link will expire within 1 hour.</target> | |||
1286 | <source>Close</source> | 1286 | <source>Close</source> |
1287 | <target>Chiudi</target> | 1287 | <target>Chiudi</target> |
1288 | 1288 | ||
1289 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="680d5c75b7fd8d37961083608b9fcdc4167b4c43" datatype="html"> | 1289 | <context-group purpose="location"><context context-type="sourcefile">../app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1290 | <source>Previous</source><target state="new">Previous</target> | ||
1291 | <context-group purpose="location"> | ||
1292 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
1293 | <context context-type="linenumber">1</context> | ||
1294 | </context-group> | ||
1295 | </trans-unit> | ||
1296 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> | 1290 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> |
1297 | <source> | 1291 | <source> |
1298 | Configure | 1292 | Configure |
@@ -5742,157 +5736,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5742 | <source>Next</source> | 5736 | <source>Next</source> |
5743 | <target state="new">Next</target> | 5737 | <target state="new">Next</target> |
5744 | 5738 | ||
5745 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="c3b08b07b5ab98e7cdcf18df39355690ab7d3884" datatype="html"> | 5739 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit><trans-unit id="9082008222523034483" datatype="html"> |
5746 | <source>Previous month</source><target state="new">Previous month</target> | ||
5747 | <context-group purpose="location"> | ||
5748 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5749 | <context context-type="linenumber">1</context> | ||
5750 | </context-group> | ||
5751 | </trans-unit><trans-unit id="4bd046985cfe13040d5ef0cd881edce0968a111a" datatype="html"> | ||
5752 | <source>Next month</source><target state="new">Next month</target> | ||
5753 | <context-group purpose="location"> | ||
5754 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5755 | <context context-type="linenumber">1</context> | ||
5756 | </context-group> | ||
5757 | </trans-unit><trans-unit id="1dbc84807f35518112f62e5775d1daebd3d8462b" datatype="html"> | ||
5758 | <source>Select month</source><target state="new">Select month</target> | ||
5759 | <context-group purpose="location"> | ||
5760 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5761 | <context context-type="linenumber">1</context> | ||
5762 | </context-group> | ||
5763 | </trans-unit><trans-unit id="8ceb09d002bf0c5d1cac171dfbffe1805d2b3962" datatype="html"> | ||
5764 | <source>Select year</source><target state="new">Select year</target> | ||
5765 | <context-group purpose="location"> | ||
5766 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5767 | <context context-type="linenumber">1</context> | ||
5768 | </context-group> | ||
5769 | </trans-unit><trans-unit id="656506dfd46380956a655f919f1498d018f75ca0" datatype="html"> | ||
5770 | <source>««</source><target state="new">««</target> | ||
5771 | <context-group purpose="location"> | ||
5772 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5773 | <context context-type="linenumber">1</context> | ||
5774 | </context-group> | ||
5775 | </trans-unit><trans-unit id="6e52b6ee77a4848d899dd21b591c6fd499e3aef3" datatype="html"> | ||
5776 | <source>«</source><target state="new">«</target> | ||
5777 | <context-group purpose="location"> | ||
5778 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5779 | <context context-type="linenumber">1</context> | ||
5780 | </context-group> | ||
5781 | </trans-unit><trans-unit id="ba9cbb4ff311464308a3627e4f1c3345d9fe6d7d" datatype="html"> | ||
5782 | <source>»</source><target state="new">»</target> | ||
5783 | <context-group purpose="location"> | ||
5784 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5785 | <context context-type="linenumber">1</context> | ||
5786 | </context-group> | ||
5787 | </trans-unit><trans-unit id="49f27a460bc97e7e00be5b37098bfa79884fc7d9" datatype="html"> | ||
5788 | <source>»»</source><target state="new">»»</target> | ||
5789 | <context-group purpose="location"> | ||
5790 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5791 | <context context-type="linenumber">1</context> | ||
5792 | </context-group> | ||
5793 | </trans-unit><trans-unit id="f2f852318759c6396b5d3d17031d53817d7b38cc" datatype="html"> | ||
5794 | <source>First</source><target state="new">First</target> | ||
5795 | <context-group purpose="location"> | ||
5796 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5797 | <context context-type="linenumber">1</context> | ||
5798 | </context-group> | ||
5799 | </trans-unit><trans-unit id="5c729788ba138508aca1bec050b610f7bf81db3e" datatype="html"> | ||
5800 | <source>Last</source><target state="new">Last</target> | ||
5801 | <context-group purpose="location"> | ||
5802 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5803 | <context context-type="linenumber">1</context> | ||
5804 | </context-group> | ||
5805 | </trans-unit><trans-unit id="f8e9a947b9db4252c0e9905765338712f2fd032f" datatype="html"> | ||
5806 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5807 | <context-group purpose="location"> | ||
5808 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5809 | <context context-type="linenumber">1</context> | ||
5810 | </context-group> | ||
5811 | </trans-unit><trans-unit id="ce676ab1d6d98f85c836381cf100a4a91ef95a1f" datatype="html"> | ||
5812 | <source>HH</source><target state="new">HH</target> | ||
5813 | <context-group purpose="location"> | ||
5814 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5815 | <context context-type="linenumber">1</context> | ||
5816 | </context-group> | ||
5817 | </trans-unit><trans-unit id="3bbce5fef7e1151da052a4e529453edb340e3912" datatype="html"> | ||
5818 | <source>Hours</source><target state="new">Hours</target> | ||
5819 | <context-group purpose="location"> | ||
5820 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5821 | <context context-type="linenumber">1</context> | ||
5822 | </context-group> | ||
5823 | </trans-unit><trans-unit id="72c8edf6a50068a05bde70991e36b1e881f4ca54" datatype="html"> | ||
5824 | <source>MM</source><target state="new">MM</target> | ||
5825 | <context-group purpose="location"> | ||
5826 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5827 | <context context-type="linenumber">1</context> | ||
5828 | </context-group> | ||
5829 | </trans-unit><trans-unit id="41e62daa962947c0d23ded0981975d1bddf0bf38" datatype="html"> | ||
5830 | <source>Minutes</source><target state="new">Minutes</target> | ||
5831 | <context-group purpose="location"> | ||
5832 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5833 | <context context-type="linenumber">1</context> | ||
5834 | </context-group> | ||
5835 | </trans-unit><trans-unit id="cb74bc1d625a6c1742f0d7d47306cf495780c218" datatype="html"> | ||
5836 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
5837 | <context-group purpose="location"> | ||
5838 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5839 | <context context-type="linenumber">1</context> | ||
5840 | </context-group> | ||
5841 | </trans-unit><trans-unit id="147c7a19429da7d999e247d22e33fee370b1691b" datatype="html"> | ||
5842 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
5843 | <context-group purpose="location"> | ||
5844 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5845 | <context context-type="linenumber">1</context> | ||
5846 | </context-group> | ||
5847 | </trans-unit><trans-unit id="f5a4a3bc05e053f6732475d0e74875ec01c3a348" datatype="html"> | ||
5848 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
5849 | <context-group purpose="location"> | ||
5850 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5851 | <context context-type="linenumber">1</context> | ||
5852 | </context-group> | ||
5853 | </trans-unit><trans-unit id="c1a6899e529c096da5b660385d4e77fe1f7ad271" datatype="html"> | ||
5854 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
5855 | <context-group purpose="location"> | ||
5856 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5857 | <context context-type="linenumber">1</context> | ||
5858 | </context-group> | ||
5859 | </trans-unit><trans-unit id="ebe38d36a40a2383c5fefa9b4608ffbda08bd4a3" datatype="html"> | ||
5860 | <source>SS</source><target state="new">SS</target> | ||
5861 | <context-group purpose="location"> | ||
5862 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5863 | <context context-type="linenumber">1</context> | ||
5864 | </context-group> | ||
5865 | </trans-unit><trans-unit id="4f2ed9e71a7c981db3e50ae2fedb28aff2ec4e6c" datatype="html"> | ||
5866 | <source>Seconds</source><target state="new">Seconds</target> | ||
5867 | <context-group purpose="location"> | ||
5868 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5869 | <context context-type="linenumber">1</context> | ||
5870 | </context-group> | ||
5871 | </trans-unit><trans-unit id="912322ecee7d659d04dcf494a70e22e49d334b26" datatype="html"> | ||
5872 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
5873 | <context-group purpose="location"> | ||
5874 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5875 | <context context-type="linenumber">1</context> | ||
5876 | </context-group> | ||
5877 | </trans-unit><trans-unit id="5db47ac104294243a70eb9124fbea9d0004ddf69" datatype="html"> | ||
5878 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
5879 | <context-group purpose="location"> | ||
5880 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5881 | <context context-type="linenumber">1</context> | ||
5882 | </context-group> | ||
5883 | </trans-unit><trans-unit id="8d6e691e10306c1b34c6b26805151aaea320ef7f" datatype="html"> | ||
5884 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5885 | <context-group purpose="location"> | ||
5886 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5887 | <context context-type="linenumber">1</context> | ||
5888 | </context-group> | ||
5889 | </trans-unit><trans-unit id="69a1f176a93998876952adac57c3bc3863b6105e" datatype="html"> | ||
5890 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5891 | <context-group purpose="location"> | ||
5892 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5893 | <context context-type="linenumber">1</context> | ||
5894 | </context-group> | ||
5895 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
5896 | <source>Get help</source><target state="new">Get help</target> | 5740 | <source>Get help</source><target state="new">Get help</target> |
5897 | <context-group purpose="location"> | 5741 | <context-group purpose="location"> |
5898 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 5742 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> |
@@ -9435,7 +9279,193 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9435 | <source>Only users of this instance can see this video</source> | 9279 | <source>Only users of this instance can see this video</source> |
9436 | <target state="new">Only users of this instance can see this video</target> | 9280 | <target state="new">Only users of this instance can see this video</target> |
9437 | 9281 | ||
9438 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit> | 9282 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit><trans-unit id="ngb.alert.close" datatype="html"> |
9283 | <source>Close</source><target state="new">Close</target> | ||
9284 | <context-group purpose="location"> | ||
9285 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/alert/alert.ts</context> | ||
9286 | <context context-type="linenumber">74</context> | ||
9287 | </context-group> | ||
9288 | </trans-unit><trans-unit id="ngb.carousel.previous" datatype="html"> | ||
9289 | <source>Previous</source><target state="new">Previous</target> | ||
9290 | <context-group purpose="location"> | ||
9291 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9292 | <context context-type="linenumber">349</context> | ||
9293 | </context-group> | ||
9294 | </trans-unit><trans-unit id="ngb.carousel.next" datatype="html"> | ||
9295 | <source>Next</source><target state="new">Next</target> | ||
9296 | <context-group purpose="location"> | ||
9297 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9298 | <context context-type="linenumber">349</context> | ||
9299 | </context-group> | ||
9300 | </trans-unit><trans-unit id="ngb.datepicker.previous-month" datatype="html"> | ||
9301 | <source>Previous month</source><target state="new">Previous month</target> | ||
9302 | <context-group purpose="location"> | ||
9303 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation.ts</context> | ||
9304 | <context context-type="linenumber">69</context> | ||
9305 | </context-group> | ||
9306 | </trans-unit><trans-unit id="ngb.datepicker.next-month" datatype="html"> | ||
9307 | <source>Next month</source><target state="new">Next month</target> | ||
9308 | <context-group purpose="location"> | ||
9309 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-month.ts</context> | ||
9310 | <context context-type="linenumber">72</context> | ||
9311 | </context-group> | ||
9312 | </trans-unit><trans-unit id="ngb.datepicker.select-month" datatype="html"> | ||
9313 | <source>Select month</source><target state="new">Select month</target> | ||
9314 | <context-group purpose="location"> | ||
9315 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9316 | <context context-type="linenumber">74</context> | ||
9317 | </context-group> | ||
9318 | </trans-unit><trans-unit id="ngb.datepicker.select-year" datatype="html"> | ||
9319 | <source>Select year</source><target state="new">Select year</target> | ||
9320 | <context-group purpose="location"> | ||
9321 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9322 | <context context-type="linenumber">74</context> | ||
9323 | </context-group> | ||
9324 | </trans-unit><trans-unit id="ngb.pagination.first" datatype="html"> | ||
9325 | <source>««</source><target state="new">««</target> | ||
9326 | <context-group purpose="location"> | ||
9327 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9328 | <context context-type="linenumber">404</context> | ||
9329 | </context-group> | ||
9330 | </trans-unit><trans-unit id="ngb.pagination.previous" datatype="html"> | ||
9331 | <source>«</source><target state="new">«</target> | ||
9332 | <context-group purpose="location"> | ||
9333 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9334 | <context context-type="linenumber">404</context> | ||
9335 | </context-group> | ||
9336 | </trans-unit><trans-unit id="ngb.pagination.next" datatype="html"> | ||
9337 | <source>»</source><target state="new">»</target> | ||
9338 | <context-group purpose="location"> | ||
9339 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9340 | <context context-type="linenumber">404</context> | ||
9341 | </context-group> | ||
9342 | </trans-unit><trans-unit id="ngb.pagination.last" datatype="html"> | ||
9343 | <source>»»</source><target state="new">»»</target> | ||
9344 | <context-group purpose="location"> | ||
9345 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9346 | <context context-type="linenumber">404</context> | ||
9347 | </context-group> | ||
9348 | </trans-unit><trans-unit id="ngb.pagination.first-aria" datatype="html"> | ||
9349 | <source>First</source><target state="new">First</target> | ||
9350 | <context-group purpose="location"> | ||
9351 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9352 | <context context-type="linenumber">404</context> | ||
9353 | </context-group> | ||
9354 | </trans-unit><trans-unit id="ngb.pagination.previous-aria" datatype="html"> | ||
9355 | <source>Previous</source><target state="new">Previous</target> | ||
9356 | <context-group purpose="location"> | ||
9357 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9358 | <context context-type="linenumber">404</context> | ||
9359 | </context-group> | ||
9360 | </trans-unit><trans-unit id="ngb.pagination.next-aria" datatype="html"> | ||
9361 | <source>Next</source><target state="new">Next</target> | ||
9362 | <context-group purpose="location"> | ||
9363 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9364 | <context context-type="linenumber">404</context> | ||
9365 | </context-group> | ||
9366 | </trans-unit><trans-unit id="ngb.pagination.last-aria" datatype="html"> | ||
9367 | <source>Last</source><target state="new">Last</target> | ||
9368 | <context-group purpose="location"> | ||
9369 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9370 | <context context-type="linenumber">404</context> | ||
9371 | </context-group> | ||
9372 | </trans-unit><trans-unit id="ngb.progressbar.value" datatype="html"> | ||
9373 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9374 | <context-group purpose="location"> | ||
9375 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/progressbar/progressbar.ts</context> | ||
9376 | <context context-type="linenumber">101</context> | ||
9377 | </context-group> | ||
9378 | </trans-unit><trans-unit id="ngb.timepicker.HH" datatype="html"> | ||
9379 | <source>HH</source><target state="new">HH</target> | ||
9380 | <context-group purpose="location"> | ||
9381 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9382 | <context context-type="linenumber">296</context> | ||
9383 | </context-group> | ||
9384 | </trans-unit><trans-unit id="ngb.timepicker.hours" datatype="html"> | ||
9385 | <source>Hours</source><target state="new">Hours</target> | ||
9386 | <context-group purpose="location"> | ||
9387 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9388 | <context context-type="linenumber">296</context> | ||
9389 | </context-group> | ||
9390 | </trans-unit><trans-unit id="ngb.timepicker.MM" datatype="html"> | ||
9391 | <source>MM</source><target state="new">MM</target> | ||
9392 | <context-group purpose="location"> | ||
9393 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9394 | <context context-type="linenumber">296</context> | ||
9395 | </context-group> | ||
9396 | </trans-unit><trans-unit id="ngb.timepicker.minutes" datatype="html"> | ||
9397 | <source>Minutes</source><target state="new">Minutes</target> | ||
9398 | <context-group purpose="location"> | ||
9399 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9400 | <context context-type="linenumber">296</context> | ||
9401 | </context-group> | ||
9402 | </trans-unit><trans-unit id="ngb.timepicker.increment-hours" datatype="html"> | ||
9403 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
9404 | <context-group purpose="location"> | ||
9405 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9406 | <context context-type="linenumber">296</context> | ||
9407 | </context-group> | ||
9408 | </trans-unit><trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> | ||
9409 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
9410 | <context-group purpose="location"> | ||
9411 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9412 | <context context-type="linenumber">296</context> | ||
9413 | </context-group> | ||
9414 | </trans-unit><trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> | ||
9415 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
9416 | <context-group purpose="location"> | ||
9417 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9418 | <context context-type="linenumber">296</context> | ||
9419 | </context-group> | ||
9420 | </trans-unit><trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> | ||
9421 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
9422 | <context-group purpose="location"> | ||
9423 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9424 | <context context-type="linenumber">296</context> | ||
9425 | </context-group> | ||
9426 | </trans-unit><trans-unit id="ngb.timepicker.SS" datatype="html"> | ||
9427 | <source>SS</source><target state="new">SS</target> | ||
9428 | <context-group purpose="location"> | ||
9429 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9430 | <context context-type="linenumber">296</context> | ||
9431 | </context-group> | ||
9432 | </trans-unit><trans-unit id="ngb.timepicker.seconds" datatype="html"> | ||
9433 | <source>Seconds</source><target state="new">Seconds</target> | ||
9434 | <context-group purpose="location"> | ||
9435 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9436 | <context context-type="linenumber">296</context> | ||
9437 | </context-group> | ||
9438 | </trans-unit><trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> | ||
9439 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
9440 | <context-group purpose="location"> | ||
9441 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9442 | <context context-type="linenumber">296</context> | ||
9443 | </context-group> | ||
9444 | </trans-unit><trans-unit id="ngb.timepicker.decrement-seconds" datatype="html"> | ||
9445 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
9446 | <context-group purpose="location"> | ||
9447 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9448 | <context context-type="linenumber">296</context> | ||
9449 | </context-group> | ||
9450 | </trans-unit><trans-unit id="ngb.timepicker.PM" datatype="html"> | ||
9451 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9452 | <context-group purpose="location"> | ||
9453 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9454 | <context context-type="linenumber">296</context> | ||
9455 | </context-group> | ||
9456 | </trans-unit><trans-unit id="ngb.timepicker.AM" datatype="html"> | ||
9457 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9458 | <context-group purpose="location"> | ||
9459 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9460 | <context context-type="linenumber">296</context> | ||
9461 | </context-group> | ||
9462 | </trans-unit><trans-unit id="ngb.toast.close-aria" datatype="html"> | ||
9463 | <source>Close</source><target state="new">Close</target> | ||
9464 | <context-group purpose="location"> | ||
9465 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/toast/toast.ts</context> | ||
9466 | <context context-type="linenumber">137</context> | ||
9467 | </context-group> | ||
9468 | </trans-unit> | ||
9439 | <trans-unit id="5210096066382592800"> | 9469 | <trans-unit id="5210096066382592800"> |
9440 | <source>Video to import updated.</source> | 9470 | <source>Video to import updated.</source> |
9441 | <target>Video da importare aggiornato.</target> | 9471 | <target>Video da importare aggiornato.</target> |
diff --git a/client/src/locale/angular.ja-JP.xlf b/client/src/locale/angular.ja-JP.xlf index 1ba6330da..746ee9a8d 100644 --- a/client/src/locale/angular.ja-JP.xlf +++ b/client/src/locale/angular.ja-JP.xlf | |||
@@ -1305,13 +1305,7 @@ The link will expire within 1 hour.</target> | |||
1305 | <source>Close</source> | 1305 | <source>Close</source> |
1306 | <target>閉じる</target> | 1306 | <target>閉じる</target> |
1307 | 1307 | ||
1308 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="680d5c75b7fd8d37961083608b9fcdc4167b4c43" datatype="html"> | 1308 | <context-group purpose="location"><context context-type="sourcefile">../app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1309 | <source>Previous</source><target state="new">Previous</target> | ||
1310 | <context-group purpose="location"> | ||
1311 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
1312 | <context context-type="linenumber">1</context> | ||
1313 | </context-group> | ||
1314 | </trans-unit> | ||
1315 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> | 1309 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> |
1316 | <source> | 1310 | <source> |
1317 | Configure | 1311 | Configure |
@@ -5757,157 +5751,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5757 | <source>Next</source> | 5751 | <source>Next</source> |
5758 | <target state="translated">次</target> | 5752 | <target state="translated">次</target> |
5759 | 5753 | ||
5760 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="c3b08b07b5ab98e7cdcf18df39355690ab7d3884" datatype="html"> | 5754 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit><trans-unit id="9082008222523034483" datatype="html"> |
5761 | <source>Previous month</source><target state="new">Previous month</target> | ||
5762 | <context-group purpose="location"> | ||
5763 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5764 | <context context-type="linenumber">1</context> | ||
5765 | </context-group> | ||
5766 | </trans-unit><trans-unit id="4bd046985cfe13040d5ef0cd881edce0968a111a" datatype="html"> | ||
5767 | <source>Next month</source><target state="new">Next month</target> | ||
5768 | <context-group purpose="location"> | ||
5769 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5770 | <context context-type="linenumber">1</context> | ||
5771 | </context-group> | ||
5772 | </trans-unit><trans-unit id="1dbc84807f35518112f62e5775d1daebd3d8462b" datatype="html"> | ||
5773 | <source>Select month</source><target state="new">Select month</target> | ||
5774 | <context-group purpose="location"> | ||
5775 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5776 | <context context-type="linenumber">1</context> | ||
5777 | </context-group> | ||
5778 | </trans-unit><trans-unit id="8ceb09d002bf0c5d1cac171dfbffe1805d2b3962" datatype="html"> | ||
5779 | <source>Select year</source><target state="new">Select year</target> | ||
5780 | <context-group purpose="location"> | ||
5781 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5782 | <context context-type="linenumber">1</context> | ||
5783 | </context-group> | ||
5784 | </trans-unit><trans-unit id="656506dfd46380956a655f919f1498d018f75ca0" datatype="html"> | ||
5785 | <source>««</source><target state="new">««</target> | ||
5786 | <context-group purpose="location"> | ||
5787 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5788 | <context context-type="linenumber">1</context> | ||
5789 | </context-group> | ||
5790 | </trans-unit><trans-unit id="6e52b6ee77a4848d899dd21b591c6fd499e3aef3" datatype="html"> | ||
5791 | <source>«</source><target state="new">«</target> | ||
5792 | <context-group purpose="location"> | ||
5793 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5794 | <context context-type="linenumber">1</context> | ||
5795 | </context-group> | ||
5796 | </trans-unit><trans-unit id="ba9cbb4ff311464308a3627e4f1c3345d9fe6d7d" datatype="html"> | ||
5797 | <source>»</source><target state="new">»</target> | ||
5798 | <context-group purpose="location"> | ||
5799 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5800 | <context context-type="linenumber">1</context> | ||
5801 | </context-group> | ||
5802 | </trans-unit><trans-unit id="49f27a460bc97e7e00be5b37098bfa79884fc7d9" datatype="html"> | ||
5803 | <source>»»</source><target state="new">»»</target> | ||
5804 | <context-group purpose="location"> | ||
5805 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5806 | <context context-type="linenumber">1</context> | ||
5807 | </context-group> | ||
5808 | </trans-unit><trans-unit id="f2f852318759c6396b5d3d17031d53817d7b38cc" datatype="html"> | ||
5809 | <source>First</source><target state="new">First</target> | ||
5810 | <context-group purpose="location"> | ||
5811 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5812 | <context context-type="linenumber">1</context> | ||
5813 | </context-group> | ||
5814 | </trans-unit><trans-unit id="5c729788ba138508aca1bec050b610f7bf81db3e" datatype="html"> | ||
5815 | <source>Last</source><target state="new">Last</target> | ||
5816 | <context-group purpose="location"> | ||
5817 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5818 | <context context-type="linenumber">1</context> | ||
5819 | </context-group> | ||
5820 | </trans-unit><trans-unit id="f8e9a947b9db4252c0e9905765338712f2fd032f" datatype="html"> | ||
5821 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5822 | <context-group purpose="location"> | ||
5823 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5824 | <context context-type="linenumber">1</context> | ||
5825 | </context-group> | ||
5826 | </trans-unit><trans-unit id="ce676ab1d6d98f85c836381cf100a4a91ef95a1f" datatype="html"> | ||
5827 | <source>HH</source><target state="new">HH</target> | ||
5828 | <context-group purpose="location"> | ||
5829 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5830 | <context context-type="linenumber">1</context> | ||
5831 | </context-group> | ||
5832 | </trans-unit><trans-unit id="3bbce5fef7e1151da052a4e529453edb340e3912" datatype="html"> | ||
5833 | <source>Hours</source><target state="new">Hours</target> | ||
5834 | <context-group purpose="location"> | ||
5835 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5836 | <context context-type="linenumber">1</context> | ||
5837 | </context-group> | ||
5838 | </trans-unit><trans-unit id="72c8edf6a50068a05bde70991e36b1e881f4ca54" datatype="html"> | ||
5839 | <source>MM</source><target state="new">MM</target> | ||
5840 | <context-group purpose="location"> | ||
5841 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5842 | <context context-type="linenumber">1</context> | ||
5843 | </context-group> | ||
5844 | </trans-unit><trans-unit id="41e62daa962947c0d23ded0981975d1bddf0bf38" datatype="html"> | ||
5845 | <source>Minutes</source><target state="new">Minutes</target> | ||
5846 | <context-group purpose="location"> | ||
5847 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5848 | <context context-type="linenumber">1</context> | ||
5849 | </context-group> | ||
5850 | </trans-unit><trans-unit id="cb74bc1d625a6c1742f0d7d47306cf495780c218" datatype="html"> | ||
5851 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
5852 | <context-group purpose="location"> | ||
5853 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5854 | <context context-type="linenumber">1</context> | ||
5855 | </context-group> | ||
5856 | </trans-unit><trans-unit id="147c7a19429da7d999e247d22e33fee370b1691b" datatype="html"> | ||
5857 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
5858 | <context-group purpose="location"> | ||
5859 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5860 | <context context-type="linenumber">1</context> | ||
5861 | </context-group> | ||
5862 | </trans-unit><trans-unit id="f5a4a3bc05e053f6732475d0e74875ec01c3a348" datatype="html"> | ||
5863 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
5864 | <context-group purpose="location"> | ||
5865 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5866 | <context context-type="linenumber">1</context> | ||
5867 | </context-group> | ||
5868 | </trans-unit><trans-unit id="c1a6899e529c096da5b660385d4e77fe1f7ad271" datatype="html"> | ||
5869 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
5870 | <context-group purpose="location"> | ||
5871 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5872 | <context context-type="linenumber">1</context> | ||
5873 | </context-group> | ||
5874 | </trans-unit><trans-unit id="ebe38d36a40a2383c5fefa9b4608ffbda08bd4a3" datatype="html"> | ||
5875 | <source>SS</source><target state="new">SS</target> | ||
5876 | <context-group purpose="location"> | ||
5877 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5878 | <context context-type="linenumber">1</context> | ||
5879 | </context-group> | ||
5880 | </trans-unit><trans-unit id="4f2ed9e71a7c981db3e50ae2fedb28aff2ec4e6c" datatype="html"> | ||
5881 | <source>Seconds</source><target state="new">Seconds</target> | ||
5882 | <context-group purpose="location"> | ||
5883 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5884 | <context context-type="linenumber">1</context> | ||
5885 | </context-group> | ||
5886 | </trans-unit><trans-unit id="912322ecee7d659d04dcf494a70e22e49d334b26" datatype="html"> | ||
5887 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
5888 | <context-group purpose="location"> | ||
5889 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5890 | <context context-type="linenumber">1</context> | ||
5891 | </context-group> | ||
5892 | </trans-unit><trans-unit id="5db47ac104294243a70eb9124fbea9d0004ddf69" datatype="html"> | ||
5893 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
5894 | <context-group purpose="location"> | ||
5895 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5896 | <context context-type="linenumber">1</context> | ||
5897 | </context-group> | ||
5898 | </trans-unit><trans-unit id="8d6e691e10306c1b34c6b26805151aaea320ef7f" datatype="html"> | ||
5899 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5900 | <context-group purpose="location"> | ||
5901 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5902 | <context context-type="linenumber">1</context> | ||
5903 | </context-group> | ||
5904 | </trans-unit><trans-unit id="69a1f176a93998876952adac57c3bc3863b6105e" datatype="html"> | ||
5905 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5906 | <context-group purpose="location"> | ||
5907 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5908 | <context context-type="linenumber">1</context> | ||
5909 | </context-group> | ||
5910 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
5911 | <source>Get help</source><target state="new">Get help</target> | 5755 | <source>Get help</source><target state="new">Get help</target> |
5912 | <context-group purpose="location"> | 5756 | <context-group purpose="location"> |
5913 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 5757 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> |
@@ -9450,7 +9294,193 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9450 | <source>Only users of this instance can see this video</source> | 9294 | <source>Only users of this instance can see this video</source> |
9451 | <target state="new">Only users of this instance can see this video</target> | 9295 | <target state="new">Only users of this instance can see this video</target> |
9452 | 9296 | ||
9453 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit> | 9297 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit><trans-unit id="ngb.alert.close" datatype="html"> |
9298 | <source>Close</source><target state="new">Close</target> | ||
9299 | <context-group purpose="location"> | ||
9300 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/alert/alert.ts</context> | ||
9301 | <context context-type="linenumber">74</context> | ||
9302 | </context-group> | ||
9303 | </trans-unit><trans-unit id="ngb.carousel.previous" datatype="html"> | ||
9304 | <source>Previous</source><target state="new">Previous</target> | ||
9305 | <context-group purpose="location"> | ||
9306 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9307 | <context context-type="linenumber">349</context> | ||
9308 | </context-group> | ||
9309 | </trans-unit><trans-unit id="ngb.carousel.next" datatype="html"> | ||
9310 | <source>Next</source><target state="new">Next</target> | ||
9311 | <context-group purpose="location"> | ||
9312 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9313 | <context context-type="linenumber">349</context> | ||
9314 | </context-group> | ||
9315 | </trans-unit><trans-unit id="ngb.datepicker.previous-month" datatype="html"> | ||
9316 | <source>Previous month</source><target state="new">Previous month</target> | ||
9317 | <context-group purpose="location"> | ||
9318 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation.ts</context> | ||
9319 | <context context-type="linenumber">69</context> | ||
9320 | </context-group> | ||
9321 | </trans-unit><trans-unit id="ngb.datepicker.next-month" datatype="html"> | ||
9322 | <source>Next month</source><target state="new">Next month</target> | ||
9323 | <context-group purpose="location"> | ||
9324 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-month.ts</context> | ||
9325 | <context context-type="linenumber">72</context> | ||
9326 | </context-group> | ||
9327 | </trans-unit><trans-unit id="ngb.datepicker.select-month" datatype="html"> | ||
9328 | <source>Select month</source><target state="new">Select month</target> | ||
9329 | <context-group purpose="location"> | ||
9330 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9331 | <context context-type="linenumber">74</context> | ||
9332 | </context-group> | ||
9333 | </trans-unit><trans-unit id="ngb.datepicker.select-year" datatype="html"> | ||
9334 | <source>Select year</source><target state="new">Select year</target> | ||
9335 | <context-group purpose="location"> | ||
9336 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9337 | <context context-type="linenumber">74</context> | ||
9338 | </context-group> | ||
9339 | </trans-unit><trans-unit id="ngb.pagination.first" datatype="html"> | ||
9340 | <source>««</source><target state="new">««</target> | ||
9341 | <context-group purpose="location"> | ||
9342 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9343 | <context context-type="linenumber">404</context> | ||
9344 | </context-group> | ||
9345 | </trans-unit><trans-unit id="ngb.pagination.previous" datatype="html"> | ||
9346 | <source>«</source><target state="new">«</target> | ||
9347 | <context-group purpose="location"> | ||
9348 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9349 | <context context-type="linenumber">404</context> | ||
9350 | </context-group> | ||
9351 | </trans-unit><trans-unit id="ngb.pagination.next" datatype="html"> | ||
9352 | <source>»</source><target state="new">»</target> | ||
9353 | <context-group purpose="location"> | ||
9354 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9355 | <context context-type="linenumber">404</context> | ||
9356 | </context-group> | ||
9357 | </trans-unit><trans-unit id="ngb.pagination.last" datatype="html"> | ||
9358 | <source>»»</source><target state="new">»»</target> | ||
9359 | <context-group purpose="location"> | ||
9360 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9361 | <context context-type="linenumber">404</context> | ||
9362 | </context-group> | ||
9363 | </trans-unit><trans-unit id="ngb.pagination.first-aria" datatype="html"> | ||
9364 | <source>First</source><target state="new">First</target> | ||
9365 | <context-group purpose="location"> | ||
9366 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9367 | <context context-type="linenumber">404</context> | ||
9368 | </context-group> | ||
9369 | </trans-unit><trans-unit id="ngb.pagination.previous-aria" datatype="html"> | ||
9370 | <source>Previous</source><target state="new">Previous</target> | ||
9371 | <context-group purpose="location"> | ||
9372 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9373 | <context context-type="linenumber">404</context> | ||
9374 | </context-group> | ||
9375 | </trans-unit><trans-unit id="ngb.pagination.next-aria" datatype="html"> | ||
9376 | <source>Next</source><target state="new">Next</target> | ||
9377 | <context-group purpose="location"> | ||
9378 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9379 | <context context-type="linenumber">404</context> | ||
9380 | </context-group> | ||
9381 | </trans-unit><trans-unit id="ngb.pagination.last-aria" datatype="html"> | ||
9382 | <source>Last</source><target state="new">Last</target> | ||
9383 | <context-group purpose="location"> | ||
9384 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9385 | <context context-type="linenumber">404</context> | ||
9386 | </context-group> | ||
9387 | </trans-unit><trans-unit id="ngb.progressbar.value" datatype="html"> | ||
9388 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9389 | <context-group purpose="location"> | ||
9390 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/progressbar/progressbar.ts</context> | ||
9391 | <context context-type="linenumber">101</context> | ||
9392 | </context-group> | ||
9393 | </trans-unit><trans-unit id="ngb.timepicker.HH" datatype="html"> | ||
9394 | <source>HH</source><target state="new">HH</target> | ||
9395 | <context-group purpose="location"> | ||
9396 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9397 | <context context-type="linenumber">296</context> | ||
9398 | </context-group> | ||
9399 | </trans-unit><trans-unit id="ngb.timepicker.hours" datatype="html"> | ||
9400 | <source>Hours</source><target state="new">Hours</target> | ||
9401 | <context-group purpose="location"> | ||
9402 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9403 | <context context-type="linenumber">296</context> | ||
9404 | </context-group> | ||
9405 | </trans-unit><trans-unit id="ngb.timepicker.MM" datatype="html"> | ||
9406 | <source>MM</source><target state="new">MM</target> | ||
9407 | <context-group purpose="location"> | ||
9408 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9409 | <context context-type="linenumber">296</context> | ||
9410 | </context-group> | ||
9411 | </trans-unit><trans-unit id="ngb.timepicker.minutes" datatype="html"> | ||
9412 | <source>Minutes</source><target state="new">Minutes</target> | ||
9413 | <context-group purpose="location"> | ||
9414 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9415 | <context context-type="linenumber">296</context> | ||
9416 | </context-group> | ||
9417 | </trans-unit><trans-unit id="ngb.timepicker.increment-hours" datatype="html"> | ||
9418 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
9419 | <context-group purpose="location"> | ||
9420 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9421 | <context context-type="linenumber">296</context> | ||
9422 | </context-group> | ||
9423 | </trans-unit><trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> | ||
9424 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
9425 | <context-group purpose="location"> | ||
9426 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9427 | <context context-type="linenumber">296</context> | ||
9428 | </context-group> | ||
9429 | </trans-unit><trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> | ||
9430 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
9431 | <context-group purpose="location"> | ||
9432 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9433 | <context context-type="linenumber">296</context> | ||
9434 | </context-group> | ||
9435 | </trans-unit><trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> | ||
9436 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
9437 | <context-group purpose="location"> | ||
9438 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9439 | <context context-type="linenumber">296</context> | ||
9440 | </context-group> | ||
9441 | </trans-unit><trans-unit id="ngb.timepicker.SS" datatype="html"> | ||
9442 | <source>SS</source><target state="new">SS</target> | ||
9443 | <context-group purpose="location"> | ||
9444 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9445 | <context context-type="linenumber">296</context> | ||
9446 | </context-group> | ||
9447 | </trans-unit><trans-unit id="ngb.timepicker.seconds" datatype="html"> | ||
9448 | <source>Seconds</source><target state="new">Seconds</target> | ||
9449 | <context-group purpose="location"> | ||
9450 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9451 | <context context-type="linenumber">296</context> | ||
9452 | </context-group> | ||
9453 | </trans-unit><trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> | ||
9454 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
9455 | <context-group purpose="location"> | ||
9456 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9457 | <context context-type="linenumber">296</context> | ||
9458 | </context-group> | ||
9459 | </trans-unit><trans-unit id="ngb.timepicker.decrement-seconds" datatype="html"> | ||
9460 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
9461 | <context-group purpose="location"> | ||
9462 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9463 | <context context-type="linenumber">296</context> | ||
9464 | </context-group> | ||
9465 | </trans-unit><trans-unit id="ngb.timepicker.PM" datatype="html"> | ||
9466 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9467 | <context-group purpose="location"> | ||
9468 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9469 | <context context-type="linenumber">296</context> | ||
9470 | </context-group> | ||
9471 | </trans-unit><trans-unit id="ngb.timepicker.AM" datatype="html"> | ||
9472 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9473 | <context-group purpose="location"> | ||
9474 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9475 | <context context-type="linenumber">296</context> | ||
9476 | </context-group> | ||
9477 | </trans-unit><trans-unit id="ngb.toast.close-aria" datatype="html"> | ||
9478 | <source>Close</source><target state="new">Close</target> | ||
9479 | <context-group purpose="location"> | ||
9480 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/toast/toast.ts</context> | ||
9481 | <context context-type="linenumber">137</context> | ||
9482 | </context-group> | ||
9483 | </trans-unit> | ||
9454 | <trans-unit id="5210096066382592800"> | 9484 | <trans-unit id="5210096066382592800"> |
9455 | <source>Video to import updated.</source> | 9485 | <source>Video to import updated.</source> |
9456 | <target>動画のインポートが完了しました。</target> | 9486 | <target>動画のインポートが完了しました。</target> |
diff --git a/client/src/locale/angular.jbo.xlf b/client/src/locale/angular.jbo.xlf index 21c8a268f..3174f8c14 100644 --- a/client/src/locale/angular.jbo.xlf +++ b/client/src/locale/angular.jbo.xlf | |||
@@ -1329,13 +1329,7 @@ galfi le mi japyvla</target> | |||
1329 | <source>Close</source> | 1329 | <source>Close</source> |
1330 | <target>mipri</target> | 1330 | <target>mipri</target> |
1331 | 1331 | ||
1332 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="680d5c75b7fd8d37961083608b9fcdc4167b4c43" datatype="html"> | 1332 | <context-group purpose="location"><context context-type="sourcefile">../app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1333 | <source>Previous</source><target state="new">Previous</target> | ||
1334 | <context-group purpose="location"> | ||
1335 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
1336 | <context context-type="linenumber">1</context> | ||
1337 | </context-group> | ||
1338 | </trans-unit> | ||
1339 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> | 1333 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> |
1340 | <source> | 1334 | <source> |
1341 | Configure | 1335 | Configure |
@@ -5846,157 +5840,7 @@ zbasu lo pilno</target> | |||
5846 | <source>Next</source> | 5840 | <source>Next</source> |
5847 | <target state="new">Next</target> | 5841 | <target state="new">Next</target> |
5848 | 5842 | ||
5849 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="c3b08b07b5ab98e7cdcf18df39355690ab7d3884" datatype="html"> | 5843 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit><trans-unit id="9082008222523034483" datatype="html"> |
5850 | <source>Previous month</source><target state="new">Previous month</target> | ||
5851 | <context-group purpose="location"> | ||
5852 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5853 | <context context-type="linenumber">1</context> | ||
5854 | </context-group> | ||
5855 | </trans-unit><trans-unit id="4bd046985cfe13040d5ef0cd881edce0968a111a" datatype="html"> | ||
5856 | <source>Next month</source><target state="new">Next month</target> | ||
5857 | <context-group purpose="location"> | ||
5858 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5859 | <context context-type="linenumber">1</context> | ||
5860 | </context-group> | ||
5861 | </trans-unit><trans-unit id="1dbc84807f35518112f62e5775d1daebd3d8462b" datatype="html"> | ||
5862 | <source>Select month</source><target state="new">Select month</target> | ||
5863 | <context-group purpose="location"> | ||
5864 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5865 | <context context-type="linenumber">1</context> | ||
5866 | </context-group> | ||
5867 | </trans-unit><trans-unit id="8ceb09d002bf0c5d1cac171dfbffe1805d2b3962" datatype="html"> | ||
5868 | <source>Select year</source><target state="new">Select year</target> | ||
5869 | <context-group purpose="location"> | ||
5870 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5871 | <context context-type="linenumber">1</context> | ||
5872 | </context-group> | ||
5873 | </trans-unit><trans-unit id="656506dfd46380956a655f919f1498d018f75ca0" datatype="html"> | ||
5874 | <source>««</source><target state="new">««</target> | ||
5875 | <context-group purpose="location"> | ||
5876 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5877 | <context context-type="linenumber">1</context> | ||
5878 | </context-group> | ||
5879 | </trans-unit><trans-unit id="6e52b6ee77a4848d899dd21b591c6fd499e3aef3" datatype="html"> | ||
5880 | <source>«</source><target state="new">«</target> | ||
5881 | <context-group purpose="location"> | ||
5882 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5883 | <context context-type="linenumber">1</context> | ||
5884 | </context-group> | ||
5885 | </trans-unit><trans-unit id="ba9cbb4ff311464308a3627e4f1c3345d9fe6d7d" datatype="html"> | ||
5886 | <source>»</source><target state="new">»</target> | ||
5887 | <context-group purpose="location"> | ||
5888 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5889 | <context context-type="linenumber">1</context> | ||
5890 | </context-group> | ||
5891 | </trans-unit><trans-unit id="49f27a460bc97e7e00be5b37098bfa79884fc7d9" datatype="html"> | ||
5892 | <source>»»</source><target state="new">»»</target> | ||
5893 | <context-group purpose="location"> | ||
5894 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5895 | <context context-type="linenumber">1</context> | ||
5896 | </context-group> | ||
5897 | </trans-unit><trans-unit id="f2f852318759c6396b5d3d17031d53817d7b38cc" datatype="html"> | ||
5898 | <source>First</source><target state="new">First</target> | ||
5899 | <context-group purpose="location"> | ||
5900 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5901 | <context context-type="linenumber">1</context> | ||
5902 | </context-group> | ||
5903 | </trans-unit><trans-unit id="5c729788ba138508aca1bec050b610f7bf81db3e" datatype="html"> | ||
5904 | <source>Last</source><target state="new">Last</target> | ||
5905 | <context-group purpose="location"> | ||
5906 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5907 | <context context-type="linenumber">1</context> | ||
5908 | </context-group> | ||
5909 | </trans-unit><trans-unit id="f8e9a947b9db4252c0e9905765338712f2fd032f" datatype="html"> | ||
5910 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5911 | <context-group purpose="location"> | ||
5912 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5913 | <context context-type="linenumber">1</context> | ||
5914 | </context-group> | ||
5915 | </trans-unit><trans-unit id="ce676ab1d6d98f85c836381cf100a4a91ef95a1f" datatype="html"> | ||
5916 | <source>HH</source><target state="new">HH</target> | ||
5917 | <context-group purpose="location"> | ||
5918 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5919 | <context context-type="linenumber">1</context> | ||
5920 | </context-group> | ||
5921 | </trans-unit><trans-unit id="3bbce5fef7e1151da052a4e529453edb340e3912" datatype="html"> | ||
5922 | <source>Hours</source><target state="new">Hours</target> | ||
5923 | <context-group purpose="location"> | ||
5924 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5925 | <context context-type="linenumber">1</context> | ||
5926 | </context-group> | ||
5927 | </trans-unit><trans-unit id="72c8edf6a50068a05bde70991e36b1e881f4ca54" datatype="html"> | ||
5928 | <source>MM</source><target state="new">MM</target> | ||
5929 | <context-group purpose="location"> | ||
5930 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5931 | <context context-type="linenumber">1</context> | ||
5932 | </context-group> | ||
5933 | </trans-unit><trans-unit id="41e62daa962947c0d23ded0981975d1bddf0bf38" datatype="html"> | ||
5934 | <source>Minutes</source><target state="new">Minutes</target> | ||
5935 | <context-group purpose="location"> | ||
5936 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5937 | <context context-type="linenumber">1</context> | ||
5938 | </context-group> | ||
5939 | </trans-unit><trans-unit id="cb74bc1d625a6c1742f0d7d47306cf495780c218" datatype="html"> | ||
5940 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
5941 | <context-group purpose="location"> | ||
5942 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5943 | <context context-type="linenumber">1</context> | ||
5944 | </context-group> | ||
5945 | </trans-unit><trans-unit id="147c7a19429da7d999e247d22e33fee370b1691b" datatype="html"> | ||
5946 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
5947 | <context-group purpose="location"> | ||
5948 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5949 | <context context-type="linenumber">1</context> | ||
5950 | </context-group> | ||
5951 | </trans-unit><trans-unit id="f5a4a3bc05e053f6732475d0e74875ec01c3a348" datatype="html"> | ||
5952 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
5953 | <context-group purpose="location"> | ||
5954 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5955 | <context context-type="linenumber">1</context> | ||
5956 | </context-group> | ||
5957 | </trans-unit><trans-unit id="c1a6899e529c096da5b660385d4e77fe1f7ad271" datatype="html"> | ||
5958 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
5959 | <context-group purpose="location"> | ||
5960 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5961 | <context context-type="linenumber">1</context> | ||
5962 | </context-group> | ||
5963 | </trans-unit><trans-unit id="ebe38d36a40a2383c5fefa9b4608ffbda08bd4a3" datatype="html"> | ||
5964 | <source>SS</source><target state="new">SS</target> | ||
5965 | <context-group purpose="location"> | ||
5966 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5967 | <context context-type="linenumber">1</context> | ||
5968 | </context-group> | ||
5969 | </trans-unit><trans-unit id="4f2ed9e71a7c981db3e50ae2fedb28aff2ec4e6c" datatype="html"> | ||
5970 | <source>Seconds</source><target state="new">Seconds</target> | ||
5971 | <context-group purpose="location"> | ||
5972 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5973 | <context context-type="linenumber">1</context> | ||
5974 | </context-group> | ||
5975 | </trans-unit><trans-unit id="912322ecee7d659d04dcf494a70e22e49d334b26" datatype="html"> | ||
5976 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
5977 | <context-group purpose="location"> | ||
5978 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5979 | <context context-type="linenumber">1</context> | ||
5980 | </context-group> | ||
5981 | </trans-unit><trans-unit id="5db47ac104294243a70eb9124fbea9d0004ddf69" datatype="html"> | ||
5982 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
5983 | <context-group purpose="location"> | ||
5984 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5985 | <context context-type="linenumber">1</context> | ||
5986 | </context-group> | ||
5987 | </trans-unit><trans-unit id="8d6e691e10306c1b34c6b26805151aaea320ef7f" datatype="html"> | ||
5988 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5989 | <context-group purpose="location"> | ||
5990 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5991 | <context context-type="linenumber">1</context> | ||
5992 | </context-group> | ||
5993 | </trans-unit><trans-unit id="69a1f176a93998876952adac57c3bc3863b6105e" datatype="html"> | ||
5994 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5995 | <context-group purpose="location"> | ||
5996 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5997 | <context context-type="linenumber">1</context> | ||
5998 | </context-group> | ||
5999 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
6000 | <source>Get help</source><target state="new">Get help</target> | 5844 | <source>Get help</source><target state="new">Get help</target> |
6001 | <context-group purpose="location"> | 5845 | <context-group purpose="location"> |
6002 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 5846 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> |
@@ -9546,7 +9390,193 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9546 | <source>Only users of this instance can see this video</source> | 9390 | <source>Only users of this instance can see this video</source> |
9547 | <target state="new">Only users of this instance can see this video</target> | 9391 | <target state="new">Only users of this instance can see this video</target> |
9548 | 9392 | ||
9549 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit> | 9393 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit><trans-unit id="ngb.alert.close" datatype="html"> |
9394 | <source>Close</source><target state="new">Close</target> | ||
9395 | <context-group purpose="location"> | ||
9396 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/alert/alert.ts</context> | ||
9397 | <context context-type="linenumber">74</context> | ||
9398 | </context-group> | ||
9399 | </trans-unit><trans-unit id="ngb.carousel.previous" datatype="html"> | ||
9400 | <source>Previous</source><target state="new">Previous</target> | ||
9401 | <context-group purpose="location"> | ||
9402 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9403 | <context context-type="linenumber">349</context> | ||
9404 | </context-group> | ||
9405 | </trans-unit><trans-unit id="ngb.carousel.next" datatype="html"> | ||
9406 | <source>Next</source><target state="new">Next</target> | ||
9407 | <context-group purpose="location"> | ||
9408 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9409 | <context context-type="linenumber">349</context> | ||
9410 | </context-group> | ||
9411 | </trans-unit><trans-unit id="ngb.datepicker.previous-month" datatype="html"> | ||
9412 | <source>Previous month</source><target state="new">Previous month</target> | ||
9413 | <context-group purpose="location"> | ||
9414 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation.ts</context> | ||
9415 | <context context-type="linenumber">69</context> | ||
9416 | </context-group> | ||
9417 | </trans-unit><trans-unit id="ngb.datepicker.next-month" datatype="html"> | ||
9418 | <source>Next month</source><target state="new">Next month</target> | ||
9419 | <context-group purpose="location"> | ||
9420 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-month.ts</context> | ||
9421 | <context context-type="linenumber">72</context> | ||
9422 | </context-group> | ||
9423 | </trans-unit><trans-unit id="ngb.datepicker.select-month" datatype="html"> | ||
9424 | <source>Select month</source><target state="new">Select month</target> | ||
9425 | <context-group purpose="location"> | ||
9426 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9427 | <context context-type="linenumber">74</context> | ||
9428 | </context-group> | ||
9429 | </trans-unit><trans-unit id="ngb.datepicker.select-year" datatype="html"> | ||
9430 | <source>Select year</source><target state="new">Select year</target> | ||
9431 | <context-group purpose="location"> | ||
9432 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9433 | <context context-type="linenumber">74</context> | ||
9434 | </context-group> | ||
9435 | </trans-unit><trans-unit id="ngb.pagination.first" datatype="html"> | ||
9436 | <source>««</source><target state="new">««</target> | ||
9437 | <context-group purpose="location"> | ||
9438 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9439 | <context context-type="linenumber">404</context> | ||
9440 | </context-group> | ||
9441 | </trans-unit><trans-unit id="ngb.pagination.previous" datatype="html"> | ||
9442 | <source>«</source><target state="new">«</target> | ||
9443 | <context-group purpose="location"> | ||
9444 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9445 | <context context-type="linenumber">404</context> | ||
9446 | </context-group> | ||
9447 | </trans-unit><trans-unit id="ngb.pagination.next" datatype="html"> | ||
9448 | <source>»</source><target state="new">»</target> | ||
9449 | <context-group purpose="location"> | ||
9450 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9451 | <context context-type="linenumber">404</context> | ||
9452 | </context-group> | ||
9453 | </trans-unit><trans-unit id="ngb.pagination.last" datatype="html"> | ||
9454 | <source>»»</source><target state="new">»»</target> | ||
9455 | <context-group purpose="location"> | ||
9456 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9457 | <context context-type="linenumber">404</context> | ||
9458 | </context-group> | ||
9459 | </trans-unit><trans-unit id="ngb.pagination.first-aria" datatype="html"> | ||
9460 | <source>First</source><target state="new">First</target> | ||
9461 | <context-group purpose="location"> | ||
9462 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9463 | <context context-type="linenumber">404</context> | ||
9464 | </context-group> | ||
9465 | </trans-unit><trans-unit id="ngb.pagination.previous-aria" datatype="html"> | ||
9466 | <source>Previous</source><target state="new">Previous</target> | ||
9467 | <context-group purpose="location"> | ||
9468 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9469 | <context context-type="linenumber">404</context> | ||
9470 | </context-group> | ||
9471 | </trans-unit><trans-unit id="ngb.pagination.next-aria" datatype="html"> | ||
9472 | <source>Next</source><target state="new">Next</target> | ||
9473 | <context-group purpose="location"> | ||
9474 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9475 | <context context-type="linenumber">404</context> | ||
9476 | </context-group> | ||
9477 | </trans-unit><trans-unit id="ngb.pagination.last-aria" datatype="html"> | ||
9478 | <source>Last</source><target state="new">Last</target> | ||
9479 | <context-group purpose="location"> | ||
9480 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9481 | <context context-type="linenumber">404</context> | ||
9482 | </context-group> | ||
9483 | </trans-unit><trans-unit id="ngb.progressbar.value" datatype="html"> | ||
9484 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9485 | <context-group purpose="location"> | ||
9486 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/progressbar/progressbar.ts</context> | ||
9487 | <context context-type="linenumber">101</context> | ||
9488 | </context-group> | ||
9489 | </trans-unit><trans-unit id="ngb.timepicker.HH" datatype="html"> | ||
9490 | <source>HH</source><target state="new">HH</target> | ||
9491 | <context-group purpose="location"> | ||
9492 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9493 | <context context-type="linenumber">296</context> | ||
9494 | </context-group> | ||
9495 | </trans-unit><trans-unit id="ngb.timepicker.hours" datatype="html"> | ||
9496 | <source>Hours</source><target state="new">Hours</target> | ||
9497 | <context-group purpose="location"> | ||
9498 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9499 | <context context-type="linenumber">296</context> | ||
9500 | </context-group> | ||
9501 | </trans-unit><trans-unit id="ngb.timepicker.MM" datatype="html"> | ||
9502 | <source>MM</source><target state="new">MM</target> | ||
9503 | <context-group purpose="location"> | ||
9504 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9505 | <context context-type="linenumber">296</context> | ||
9506 | </context-group> | ||
9507 | </trans-unit><trans-unit id="ngb.timepicker.minutes" datatype="html"> | ||
9508 | <source>Minutes</source><target state="new">Minutes</target> | ||
9509 | <context-group purpose="location"> | ||
9510 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9511 | <context context-type="linenumber">296</context> | ||
9512 | </context-group> | ||
9513 | </trans-unit><trans-unit id="ngb.timepicker.increment-hours" datatype="html"> | ||
9514 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
9515 | <context-group purpose="location"> | ||
9516 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9517 | <context context-type="linenumber">296</context> | ||
9518 | </context-group> | ||
9519 | </trans-unit><trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> | ||
9520 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
9521 | <context-group purpose="location"> | ||
9522 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9523 | <context context-type="linenumber">296</context> | ||
9524 | </context-group> | ||
9525 | </trans-unit><trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> | ||
9526 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
9527 | <context-group purpose="location"> | ||
9528 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9529 | <context context-type="linenumber">296</context> | ||
9530 | </context-group> | ||
9531 | </trans-unit><trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> | ||
9532 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
9533 | <context-group purpose="location"> | ||
9534 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9535 | <context context-type="linenumber">296</context> | ||
9536 | </context-group> | ||
9537 | </trans-unit><trans-unit id="ngb.timepicker.SS" datatype="html"> | ||
9538 | <source>SS</source><target state="new">SS</target> | ||
9539 | <context-group purpose="location"> | ||
9540 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9541 | <context context-type="linenumber">296</context> | ||
9542 | </context-group> | ||
9543 | </trans-unit><trans-unit id="ngb.timepicker.seconds" datatype="html"> | ||
9544 | <source>Seconds</source><target state="new">Seconds</target> | ||
9545 | <context-group purpose="location"> | ||
9546 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9547 | <context context-type="linenumber">296</context> | ||
9548 | </context-group> | ||
9549 | </trans-unit><trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> | ||
9550 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
9551 | <context-group purpose="location"> | ||
9552 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9553 | <context context-type="linenumber">296</context> | ||
9554 | </context-group> | ||
9555 | </trans-unit><trans-unit id="ngb.timepicker.decrement-seconds" datatype="html"> | ||
9556 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
9557 | <context-group purpose="location"> | ||
9558 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9559 | <context context-type="linenumber">296</context> | ||
9560 | </context-group> | ||
9561 | </trans-unit><trans-unit id="ngb.timepicker.PM" datatype="html"> | ||
9562 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9563 | <context-group purpose="location"> | ||
9564 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9565 | <context context-type="linenumber">296</context> | ||
9566 | </context-group> | ||
9567 | </trans-unit><trans-unit id="ngb.timepicker.AM" datatype="html"> | ||
9568 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9569 | <context-group purpose="location"> | ||
9570 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9571 | <context context-type="linenumber">296</context> | ||
9572 | </context-group> | ||
9573 | </trans-unit><trans-unit id="ngb.toast.close-aria" datatype="html"> | ||
9574 | <source>Close</source><target state="new">Close</target> | ||
9575 | <context-group purpose="location"> | ||
9576 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/toast/toast.ts</context> | ||
9577 | <context context-type="linenumber">137</context> | ||
9578 | </context-group> | ||
9579 | </trans-unit> | ||
9550 | <trans-unit id="5210096066382592800" datatype="html"> | 9580 | <trans-unit id="5210096066382592800" datatype="html"> |
9551 | <source>Video to import updated.</source> | 9581 | <source>Video to import updated.</source> |
9552 | <target state="new">Video to import updated.</target> | 9582 | <target state="new">Video to import updated.</target> |
diff --git a/client/src/locale/angular.kab.xlf b/client/src/locale/angular.kab.xlf index 3e32e8e83..2c8b8eae3 100644 --- a/client/src/locale/angular.kab.xlf +++ b/client/src/locale/angular.kab.xlf | |||
@@ -1454,13 +1454,7 @@ The link will expire within 1 hour.</target> | |||
1454 | <source>Close</source> | 1454 | <source>Close</source> |
1455 | <target>Mdel</target> | 1455 | <target>Mdel</target> |
1456 | 1456 | ||
1457 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="680d5c75b7fd8d37961083608b9fcdc4167b4c43" datatype="html"> | 1457 | <context-group purpose="location"><context context-type="sourcefile">../app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1458 | <source>Previous</source><target state="new">Previous</target> | ||
1459 | <context-group purpose="location"> | ||
1460 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
1461 | <context context-type="linenumber">1</context> | ||
1462 | </context-group> | ||
1463 | </trans-unit> | ||
1464 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> | 1458 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> |
1465 | <source> | 1459 | <source> |
1466 | Configure | 1460 | Configure |
@@ -5700,157 +5694,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5700 | <source>Next</source> | 5694 | <source>Next</source> |
5701 | <target>Ɣer sdat</target> | 5695 | <target>Ɣer sdat</target> |
5702 | 5696 | ||
5703 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="c3b08b07b5ab98e7cdcf18df39355690ab7d3884" datatype="html"> | 5697 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit><trans-unit id="9082008222523034483" datatype="html"> |
5704 | <source>Previous month</source><target state="new">Previous month</target> | ||
5705 | <context-group purpose="location"> | ||
5706 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5707 | <context context-type="linenumber">1</context> | ||
5708 | </context-group> | ||
5709 | </trans-unit><trans-unit id="4bd046985cfe13040d5ef0cd881edce0968a111a" datatype="html"> | ||
5710 | <source>Next month</source><target state="new">Next month</target> | ||
5711 | <context-group purpose="location"> | ||
5712 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5713 | <context context-type="linenumber">1</context> | ||
5714 | </context-group> | ||
5715 | </trans-unit><trans-unit id="1dbc84807f35518112f62e5775d1daebd3d8462b" datatype="html"> | ||
5716 | <source>Select month</source><target state="new">Select month</target> | ||
5717 | <context-group purpose="location"> | ||
5718 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5719 | <context context-type="linenumber">1</context> | ||
5720 | </context-group> | ||
5721 | </trans-unit><trans-unit id="8ceb09d002bf0c5d1cac171dfbffe1805d2b3962" datatype="html"> | ||
5722 | <source>Select year</source><target state="new">Select year</target> | ||
5723 | <context-group purpose="location"> | ||
5724 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5725 | <context context-type="linenumber">1</context> | ||
5726 | </context-group> | ||
5727 | </trans-unit><trans-unit id="656506dfd46380956a655f919f1498d018f75ca0" datatype="html"> | ||
5728 | <source>««</source><target state="new">««</target> | ||
5729 | <context-group purpose="location"> | ||
5730 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5731 | <context context-type="linenumber">1</context> | ||
5732 | </context-group> | ||
5733 | </trans-unit><trans-unit id="6e52b6ee77a4848d899dd21b591c6fd499e3aef3" datatype="html"> | ||
5734 | <source>«</source><target state="new">«</target> | ||
5735 | <context-group purpose="location"> | ||
5736 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5737 | <context context-type="linenumber">1</context> | ||
5738 | </context-group> | ||
5739 | </trans-unit><trans-unit id="ba9cbb4ff311464308a3627e4f1c3345d9fe6d7d" datatype="html"> | ||
5740 | <source>»</source><target state="new">»</target> | ||
5741 | <context-group purpose="location"> | ||
5742 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5743 | <context context-type="linenumber">1</context> | ||
5744 | </context-group> | ||
5745 | </trans-unit><trans-unit id="49f27a460bc97e7e00be5b37098bfa79884fc7d9" datatype="html"> | ||
5746 | <source>»»</source><target state="new">»»</target> | ||
5747 | <context-group purpose="location"> | ||
5748 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5749 | <context context-type="linenumber">1</context> | ||
5750 | </context-group> | ||
5751 | </trans-unit><trans-unit id="f2f852318759c6396b5d3d17031d53817d7b38cc" datatype="html"> | ||
5752 | <source>First</source><target state="new">First</target> | ||
5753 | <context-group purpose="location"> | ||
5754 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5755 | <context context-type="linenumber">1</context> | ||
5756 | </context-group> | ||
5757 | </trans-unit><trans-unit id="5c729788ba138508aca1bec050b610f7bf81db3e" datatype="html"> | ||
5758 | <source>Last</source><target state="new">Last</target> | ||
5759 | <context-group purpose="location"> | ||
5760 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5761 | <context context-type="linenumber">1</context> | ||
5762 | </context-group> | ||
5763 | </trans-unit><trans-unit id="f8e9a947b9db4252c0e9905765338712f2fd032f" datatype="html"> | ||
5764 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5765 | <context-group purpose="location"> | ||
5766 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5767 | <context context-type="linenumber">1</context> | ||
5768 | </context-group> | ||
5769 | </trans-unit><trans-unit id="ce676ab1d6d98f85c836381cf100a4a91ef95a1f" datatype="html"> | ||
5770 | <source>HH</source><target state="new">HH</target> | ||
5771 | <context-group purpose="location"> | ||
5772 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5773 | <context context-type="linenumber">1</context> | ||
5774 | </context-group> | ||
5775 | </trans-unit><trans-unit id="3bbce5fef7e1151da052a4e529453edb340e3912" datatype="html"> | ||
5776 | <source>Hours</source><target state="new">Hours</target> | ||
5777 | <context-group purpose="location"> | ||
5778 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5779 | <context context-type="linenumber">1</context> | ||
5780 | </context-group> | ||
5781 | </trans-unit><trans-unit id="72c8edf6a50068a05bde70991e36b1e881f4ca54" datatype="html"> | ||
5782 | <source>MM</source><target state="new">MM</target> | ||
5783 | <context-group purpose="location"> | ||
5784 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5785 | <context context-type="linenumber">1</context> | ||
5786 | </context-group> | ||
5787 | </trans-unit><trans-unit id="41e62daa962947c0d23ded0981975d1bddf0bf38" datatype="html"> | ||
5788 | <source>Minutes</source><target state="new">Minutes</target> | ||
5789 | <context-group purpose="location"> | ||
5790 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5791 | <context context-type="linenumber">1</context> | ||
5792 | </context-group> | ||
5793 | </trans-unit><trans-unit id="cb74bc1d625a6c1742f0d7d47306cf495780c218" datatype="html"> | ||
5794 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
5795 | <context-group purpose="location"> | ||
5796 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5797 | <context context-type="linenumber">1</context> | ||
5798 | </context-group> | ||
5799 | </trans-unit><trans-unit id="147c7a19429da7d999e247d22e33fee370b1691b" datatype="html"> | ||
5800 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
5801 | <context-group purpose="location"> | ||
5802 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5803 | <context context-type="linenumber">1</context> | ||
5804 | </context-group> | ||
5805 | </trans-unit><trans-unit id="f5a4a3bc05e053f6732475d0e74875ec01c3a348" datatype="html"> | ||
5806 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
5807 | <context-group purpose="location"> | ||
5808 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5809 | <context context-type="linenumber">1</context> | ||
5810 | </context-group> | ||
5811 | </trans-unit><trans-unit id="c1a6899e529c096da5b660385d4e77fe1f7ad271" datatype="html"> | ||
5812 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
5813 | <context-group purpose="location"> | ||
5814 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5815 | <context context-type="linenumber">1</context> | ||
5816 | </context-group> | ||
5817 | </trans-unit><trans-unit id="ebe38d36a40a2383c5fefa9b4608ffbda08bd4a3" datatype="html"> | ||
5818 | <source>SS</source><target state="new">SS</target> | ||
5819 | <context-group purpose="location"> | ||
5820 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5821 | <context context-type="linenumber">1</context> | ||
5822 | </context-group> | ||
5823 | </trans-unit><trans-unit id="4f2ed9e71a7c981db3e50ae2fedb28aff2ec4e6c" datatype="html"> | ||
5824 | <source>Seconds</source><target state="new">Seconds</target> | ||
5825 | <context-group purpose="location"> | ||
5826 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5827 | <context context-type="linenumber">1</context> | ||
5828 | </context-group> | ||
5829 | </trans-unit><trans-unit id="912322ecee7d659d04dcf494a70e22e49d334b26" datatype="html"> | ||
5830 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
5831 | <context-group purpose="location"> | ||
5832 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5833 | <context context-type="linenumber">1</context> | ||
5834 | </context-group> | ||
5835 | </trans-unit><trans-unit id="5db47ac104294243a70eb9124fbea9d0004ddf69" datatype="html"> | ||
5836 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
5837 | <context-group purpose="location"> | ||
5838 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5839 | <context context-type="linenumber">1</context> | ||
5840 | </context-group> | ||
5841 | </trans-unit><trans-unit id="8d6e691e10306c1b34c6b26805151aaea320ef7f" datatype="html"> | ||
5842 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5843 | <context-group purpose="location"> | ||
5844 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5845 | <context context-type="linenumber">1</context> | ||
5846 | </context-group> | ||
5847 | </trans-unit><trans-unit id="69a1f176a93998876952adac57c3bc3863b6105e" datatype="html"> | ||
5848 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5849 | <context-group purpose="location"> | ||
5850 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5851 | <context context-type="linenumber">1</context> | ||
5852 | </context-group> | ||
5853 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
5854 | <source>Get help</source><target state="new">Get help</target> | 5698 | <source>Get help</source><target state="new">Get help</target> |
5855 | <context-group purpose="location"> | 5699 | <context-group purpose="location"> |
5856 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 5700 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> |
@@ -9424,7 +9268,193 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9424 | <source>Only users of this instance can see this video</source> | 9268 | <source>Only users of this instance can see this video</source> |
9425 | <target state="new">Only users of this instance can see this video</target> | 9269 | <target state="new">Only users of this instance can see this video</target> |
9426 | 9270 | ||
9427 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit> | 9271 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit><trans-unit id="ngb.alert.close" datatype="html"> |
9272 | <source>Close</source><target state="new">Close</target> | ||
9273 | <context-group purpose="location"> | ||
9274 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/alert/alert.ts</context> | ||
9275 | <context context-type="linenumber">74</context> | ||
9276 | </context-group> | ||
9277 | </trans-unit><trans-unit id="ngb.carousel.previous" datatype="html"> | ||
9278 | <source>Previous</source><target state="new">Previous</target> | ||
9279 | <context-group purpose="location"> | ||
9280 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9281 | <context context-type="linenumber">349</context> | ||
9282 | </context-group> | ||
9283 | </trans-unit><trans-unit id="ngb.carousel.next" datatype="html"> | ||
9284 | <source>Next</source><target state="new">Next</target> | ||
9285 | <context-group purpose="location"> | ||
9286 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9287 | <context context-type="linenumber">349</context> | ||
9288 | </context-group> | ||
9289 | </trans-unit><trans-unit id="ngb.datepicker.previous-month" datatype="html"> | ||
9290 | <source>Previous month</source><target state="new">Previous month</target> | ||
9291 | <context-group purpose="location"> | ||
9292 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation.ts</context> | ||
9293 | <context context-type="linenumber">69</context> | ||
9294 | </context-group> | ||
9295 | </trans-unit><trans-unit id="ngb.datepicker.next-month" datatype="html"> | ||
9296 | <source>Next month</source><target state="new">Next month</target> | ||
9297 | <context-group purpose="location"> | ||
9298 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-month.ts</context> | ||
9299 | <context context-type="linenumber">72</context> | ||
9300 | </context-group> | ||
9301 | </trans-unit><trans-unit id="ngb.datepicker.select-month" datatype="html"> | ||
9302 | <source>Select month</source><target state="new">Select month</target> | ||
9303 | <context-group purpose="location"> | ||
9304 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9305 | <context context-type="linenumber">74</context> | ||
9306 | </context-group> | ||
9307 | </trans-unit><trans-unit id="ngb.datepicker.select-year" datatype="html"> | ||
9308 | <source>Select year</source><target state="new">Select year</target> | ||
9309 | <context-group purpose="location"> | ||
9310 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9311 | <context context-type="linenumber">74</context> | ||
9312 | </context-group> | ||
9313 | </trans-unit><trans-unit id="ngb.pagination.first" datatype="html"> | ||
9314 | <source>««</source><target state="new">««</target> | ||
9315 | <context-group purpose="location"> | ||
9316 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9317 | <context context-type="linenumber">404</context> | ||
9318 | </context-group> | ||
9319 | </trans-unit><trans-unit id="ngb.pagination.previous" datatype="html"> | ||
9320 | <source>«</source><target state="new">«</target> | ||
9321 | <context-group purpose="location"> | ||
9322 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9323 | <context context-type="linenumber">404</context> | ||
9324 | </context-group> | ||
9325 | </trans-unit><trans-unit id="ngb.pagination.next" datatype="html"> | ||
9326 | <source>»</source><target state="new">»</target> | ||
9327 | <context-group purpose="location"> | ||
9328 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9329 | <context context-type="linenumber">404</context> | ||
9330 | </context-group> | ||
9331 | </trans-unit><trans-unit id="ngb.pagination.last" datatype="html"> | ||
9332 | <source>»»</source><target state="new">»»</target> | ||
9333 | <context-group purpose="location"> | ||
9334 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9335 | <context context-type="linenumber">404</context> | ||
9336 | </context-group> | ||
9337 | </trans-unit><trans-unit id="ngb.pagination.first-aria" datatype="html"> | ||
9338 | <source>First</source><target state="new">First</target> | ||
9339 | <context-group purpose="location"> | ||
9340 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9341 | <context context-type="linenumber">404</context> | ||
9342 | </context-group> | ||
9343 | </trans-unit><trans-unit id="ngb.pagination.previous-aria" datatype="html"> | ||
9344 | <source>Previous</source><target state="new">Previous</target> | ||
9345 | <context-group purpose="location"> | ||
9346 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9347 | <context context-type="linenumber">404</context> | ||
9348 | </context-group> | ||
9349 | </trans-unit><trans-unit id="ngb.pagination.next-aria" datatype="html"> | ||
9350 | <source>Next</source><target state="new">Next</target> | ||
9351 | <context-group purpose="location"> | ||
9352 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9353 | <context context-type="linenumber">404</context> | ||
9354 | </context-group> | ||
9355 | </trans-unit><trans-unit id="ngb.pagination.last-aria" datatype="html"> | ||
9356 | <source>Last</source><target state="new">Last</target> | ||
9357 | <context-group purpose="location"> | ||
9358 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9359 | <context context-type="linenumber">404</context> | ||
9360 | </context-group> | ||
9361 | </trans-unit><trans-unit id="ngb.progressbar.value" datatype="html"> | ||
9362 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9363 | <context-group purpose="location"> | ||
9364 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/progressbar/progressbar.ts</context> | ||
9365 | <context context-type="linenumber">101</context> | ||
9366 | </context-group> | ||
9367 | </trans-unit><trans-unit id="ngb.timepicker.HH" datatype="html"> | ||
9368 | <source>HH</source><target state="new">HH</target> | ||
9369 | <context-group purpose="location"> | ||
9370 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9371 | <context context-type="linenumber">296</context> | ||
9372 | </context-group> | ||
9373 | </trans-unit><trans-unit id="ngb.timepicker.hours" datatype="html"> | ||
9374 | <source>Hours</source><target state="new">Hours</target> | ||
9375 | <context-group purpose="location"> | ||
9376 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9377 | <context context-type="linenumber">296</context> | ||
9378 | </context-group> | ||
9379 | </trans-unit><trans-unit id="ngb.timepicker.MM" datatype="html"> | ||
9380 | <source>MM</source><target state="new">MM</target> | ||
9381 | <context-group purpose="location"> | ||
9382 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9383 | <context context-type="linenumber">296</context> | ||
9384 | </context-group> | ||
9385 | </trans-unit><trans-unit id="ngb.timepicker.minutes" datatype="html"> | ||
9386 | <source>Minutes</source><target state="new">Minutes</target> | ||
9387 | <context-group purpose="location"> | ||
9388 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9389 | <context context-type="linenumber">296</context> | ||
9390 | </context-group> | ||
9391 | </trans-unit><trans-unit id="ngb.timepicker.increment-hours" datatype="html"> | ||
9392 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
9393 | <context-group purpose="location"> | ||
9394 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9395 | <context context-type="linenumber">296</context> | ||
9396 | </context-group> | ||
9397 | </trans-unit><trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> | ||
9398 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
9399 | <context-group purpose="location"> | ||
9400 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9401 | <context context-type="linenumber">296</context> | ||
9402 | </context-group> | ||
9403 | </trans-unit><trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> | ||
9404 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
9405 | <context-group purpose="location"> | ||
9406 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9407 | <context context-type="linenumber">296</context> | ||
9408 | </context-group> | ||
9409 | </trans-unit><trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> | ||
9410 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
9411 | <context-group purpose="location"> | ||
9412 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9413 | <context context-type="linenumber">296</context> | ||
9414 | </context-group> | ||
9415 | </trans-unit><trans-unit id="ngb.timepicker.SS" datatype="html"> | ||
9416 | <source>SS</source><target state="new">SS</target> | ||
9417 | <context-group purpose="location"> | ||
9418 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9419 | <context context-type="linenumber">296</context> | ||
9420 | </context-group> | ||
9421 | </trans-unit><trans-unit id="ngb.timepicker.seconds" datatype="html"> | ||
9422 | <source>Seconds</source><target state="new">Seconds</target> | ||
9423 | <context-group purpose="location"> | ||
9424 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9425 | <context context-type="linenumber">296</context> | ||
9426 | </context-group> | ||
9427 | </trans-unit><trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> | ||
9428 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
9429 | <context-group purpose="location"> | ||
9430 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9431 | <context context-type="linenumber">296</context> | ||
9432 | </context-group> | ||
9433 | </trans-unit><trans-unit id="ngb.timepicker.decrement-seconds" datatype="html"> | ||
9434 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
9435 | <context-group purpose="location"> | ||
9436 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9437 | <context context-type="linenumber">296</context> | ||
9438 | </context-group> | ||
9439 | </trans-unit><trans-unit id="ngb.timepicker.PM" datatype="html"> | ||
9440 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9441 | <context-group purpose="location"> | ||
9442 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9443 | <context context-type="linenumber">296</context> | ||
9444 | </context-group> | ||
9445 | </trans-unit><trans-unit id="ngb.timepicker.AM" datatype="html"> | ||
9446 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9447 | <context-group purpose="location"> | ||
9448 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9449 | <context context-type="linenumber">296</context> | ||
9450 | </context-group> | ||
9451 | </trans-unit><trans-unit id="ngb.toast.close-aria" datatype="html"> | ||
9452 | <source>Close</source><target state="new">Close</target> | ||
9453 | <context-group purpose="location"> | ||
9454 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/toast/toast.ts</context> | ||
9455 | <context context-type="linenumber">137</context> | ||
9456 | </context-group> | ||
9457 | </trans-unit> | ||
9428 | <trans-unit id="5210096066382592800" datatype="html"> | 9458 | <trans-unit id="5210096066382592800" datatype="html"> |
9429 | <source>Video to import updated.</source> | 9459 | <source>Video to import updated.</source> |
9430 | <target state="new">Video to import updated.</target> | 9460 | <target state="new">Video to import updated.</target> |
diff --git a/client/src/locale/angular.ko-KR.xlf b/client/src/locale/angular.ko-KR.xlf index 31002651b..3fe4ed348 100644 --- a/client/src/locale/angular.ko-KR.xlf +++ b/client/src/locale/angular.ko-KR.xlf | |||
@@ -1300,13 +1300,7 @@ The link will expire within 1 hour.</target> | |||
1300 | <source>Close</source> | 1300 | <source>Close</source> |
1301 | <target state="new">Close</target> | 1301 | <target state="new">Close</target> |
1302 | 1302 | ||
1303 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="680d5c75b7fd8d37961083608b9fcdc4167b4c43" datatype="html"> | 1303 | <context-group purpose="location"><context context-type="sourcefile">../app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1304 | <source>Previous</source><target state="new">Previous</target> | ||
1305 | <context-group purpose="location"> | ||
1306 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
1307 | <context context-type="linenumber">1</context> | ||
1308 | </context-group> | ||
1309 | </trans-unit> | ||
1310 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> | 1304 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> |
1311 | <source> | 1305 | <source> |
1312 | Configure | 1306 | Configure |
@@ -5752,157 +5746,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5752 | <source>Next</source> | 5746 | <source>Next</source> |
5753 | <target state="new">Next</target> | 5747 | <target state="new">Next</target> |
5754 | 5748 | ||
5755 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="c3b08b07b5ab98e7cdcf18df39355690ab7d3884" datatype="html"> | 5749 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit><trans-unit id="9082008222523034483" datatype="html"> |
5756 | <source>Previous month</source><target state="new">Previous month</target> | ||
5757 | <context-group purpose="location"> | ||
5758 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5759 | <context context-type="linenumber">1</context> | ||
5760 | </context-group> | ||
5761 | </trans-unit><trans-unit id="4bd046985cfe13040d5ef0cd881edce0968a111a" datatype="html"> | ||
5762 | <source>Next month</source><target state="new">Next month</target> | ||
5763 | <context-group purpose="location"> | ||
5764 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5765 | <context context-type="linenumber">1</context> | ||
5766 | </context-group> | ||
5767 | </trans-unit><trans-unit id="1dbc84807f35518112f62e5775d1daebd3d8462b" datatype="html"> | ||
5768 | <source>Select month</source><target state="new">Select month</target> | ||
5769 | <context-group purpose="location"> | ||
5770 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5771 | <context context-type="linenumber">1</context> | ||
5772 | </context-group> | ||
5773 | </trans-unit><trans-unit id="8ceb09d002bf0c5d1cac171dfbffe1805d2b3962" datatype="html"> | ||
5774 | <source>Select year</source><target state="new">Select year</target> | ||
5775 | <context-group purpose="location"> | ||
5776 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5777 | <context context-type="linenumber">1</context> | ||
5778 | </context-group> | ||
5779 | </trans-unit><trans-unit id="656506dfd46380956a655f919f1498d018f75ca0" datatype="html"> | ||
5780 | <source>««</source><target state="new">««</target> | ||
5781 | <context-group purpose="location"> | ||
5782 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5783 | <context context-type="linenumber">1</context> | ||
5784 | </context-group> | ||
5785 | </trans-unit><trans-unit id="6e52b6ee77a4848d899dd21b591c6fd499e3aef3" datatype="html"> | ||
5786 | <source>«</source><target state="new">«</target> | ||
5787 | <context-group purpose="location"> | ||
5788 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5789 | <context context-type="linenumber">1</context> | ||
5790 | </context-group> | ||
5791 | </trans-unit><trans-unit id="ba9cbb4ff311464308a3627e4f1c3345d9fe6d7d" datatype="html"> | ||
5792 | <source>»</source><target state="new">»</target> | ||
5793 | <context-group purpose="location"> | ||
5794 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5795 | <context context-type="linenumber">1</context> | ||
5796 | </context-group> | ||
5797 | </trans-unit><trans-unit id="49f27a460bc97e7e00be5b37098bfa79884fc7d9" datatype="html"> | ||
5798 | <source>»»</source><target state="new">»»</target> | ||
5799 | <context-group purpose="location"> | ||
5800 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5801 | <context context-type="linenumber">1</context> | ||
5802 | </context-group> | ||
5803 | </trans-unit><trans-unit id="f2f852318759c6396b5d3d17031d53817d7b38cc" datatype="html"> | ||
5804 | <source>First</source><target state="new">First</target> | ||
5805 | <context-group purpose="location"> | ||
5806 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5807 | <context context-type="linenumber">1</context> | ||
5808 | </context-group> | ||
5809 | </trans-unit><trans-unit id="5c729788ba138508aca1bec050b610f7bf81db3e" datatype="html"> | ||
5810 | <source>Last</source><target state="new">Last</target> | ||
5811 | <context-group purpose="location"> | ||
5812 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5813 | <context context-type="linenumber">1</context> | ||
5814 | </context-group> | ||
5815 | </trans-unit><trans-unit id="f8e9a947b9db4252c0e9905765338712f2fd032f" datatype="html"> | ||
5816 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5817 | <context-group purpose="location"> | ||
5818 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5819 | <context context-type="linenumber">1</context> | ||
5820 | </context-group> | ||
5821 | </trans-unit><trans-unit id="ce676ab1d6d98f85c836381cf100a4a91ef95a1f" datatype="html"> | ||
5822 | <source>HH</source><target state="new">HH</target> | ||
5823 | <context-group purpose="location"> | ||
5824 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5825 | <context context-type="linenumber">1</context> | ||
5826 | </context-group> | ||
5827 | </trans-unit><trans-unit id="3bbce5fef7e1151da052a4e529453edb340e3912" datatype="html"> | ||
5828 | <source>Hours</source><target state="new">Hours</target> | ||
5829 | <context-group purpose="location"> | ||
5830 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5831 | <context context-type="linenumber">1</context> | ||
5832 | </context-group> | ||
5833 | </trans-unit><trans-unit id="72c8edf6a50068a05bde70991e36b1e881f4ca54" datatype="html"> | ||
5834 | <source>MM</source><target state="new">MM</target> | ||
5835 | <context-group purpose="location"> | ||
5836 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5837 | <context context-type="linenumber">1</context> | ||
5838 | </context-group> | ||
5839 | </trans-unit><trans-unit id="41e62daa962947c0d23ded0981975d1bddf0bf38" datatype="html"> | ||
5840 | <source>Minutes</source><target state="new">Minutes</target> | ||
5841 | <context-group purpose="location"> | ||
5842 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5843 | <context context-type="linenumber">1</context> | ||
5844 | </context-group> | ||
5845 | </trans-unit><trans-unit id="cb74bc1d625a6c1742f0d7d47306cf495780c218" datatype="html"> | ||
5846 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
5847 | <context-group purpose="location"> | ||
5848 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5849 | <context context-type="linenumber">1</context> | ||
5850 | </context-group> | ||
5851 | </trans-unit><trans-unit id="147c7a19429da7d999e247d22e33fee370b1691b" datatype="html"> | ||
5852 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
5853 | <context-group purpose="location"> | ||
5854 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5855 | <context context-type="linenumber">1</context> | ||
5856 | </context-group> | ||
5857 | </trans-unit><trans-unit id="f5a4a3bc05e053f6732475d0e74875ec01c3a348" datatype="html"> | ||
5858 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
5859 | <context-group purpose="location"> | ||
5860 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5861 | <context context-type="linenumber">1</context> | ||
5862 | </context-group> | ||
5863 | </trans-unit><trans-unit id="c1a6899e529c096da5b660385d4e77fe1f7ad271" datatype="html"> | ||
5864 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
5865 | <context-group purpose="location"> | ||
5866 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5867 | <context context-type="linenumber">1</context> | ||
5868 | </context-group> | ||
5869 | </trans-unit><trans-unit id="ebe38d36a40a2383c5fefa9b4608ffbda08bd4a3" datatype="html"> | ||
5870 | <source>SS</source><target state="new">SS</target> | ||
5871 | <context-group purpose="location"> | ||
5872 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5873 | <context context-type="linenumber">1</context> | ||
5874 | </context-group> | ||
5875 | </trans-unit><trans-unit id="4f2ed9e71a7c981db3e50ae2fedb28aff2ec4e6c" datatype="html"> | ||
5876 | <source>Seconds</source><target state="new">Seconds</target> | ||
5877 | <context-group purpose="location"> | ||
5878 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5879 | <context context-type="linenumber">1</context> | ||
5880 | </context-group> | ||
5881 | </trans-unit><trans-unit id="912322ecee7d659d04dcf494a70e22e49d334b26" datatype="html"> | ||
5882 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
5883 | <context-group purpose="location"> | ||
5884 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5885 | <context context-type="linenumber">1</context> | ||
5886 | </context-group> | ||
5887 | </trans-unit><trans-unit id="5db47ac104294243a70eb9124fbea9d0004ddf69" datatype="html"> | ||
5888 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
5889 | <context-group purpose="location"> | ||
5890 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5891 | <context context-type="linenumber">1</context> | ||
5892 | </context-group> | ||
5893 | </trans-unit><trans-unit id="8d6e691e10306c1b34c6b26805151aaea320ef7f" datatype="html"> | ||
5894 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5895 | <context-group purpose="location"> | ||
5896 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5897 | <context context-type="linenumber">1</context> | ||
5898 | </context-group> | ||
5899 | </trans-unit><trans-unit id="69a1f176a93998876952adac57c3bc3863b6105e" datatype="html"> | ||
5900 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5901 | <context-group purpose="location"> | ||
5902 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5903 | <context context-type="linenumber">1</context> | ||
5904 | </context-group> | ||
5905 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
5906 | <source>Get help</source><target state="new">Get help</target> | 5750 | <source>Get help</source><target state="new">Get help</target> |
5907 | <context-group purpose="location"> | 5751 | <context-group purpose="location"> |
5908 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 5752 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> |
@@ -9445,7 +9289,193 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9445 | <source>Only users of this instance can see this video</source> | 9289 | <source>Only users of this instance can see this video</source> |
9446 | <target state="new">Only users of this instance can see this video</target> | 9290 | <target state="new">Only users of this instance can see this video</target> |
9447 | 9291 | ||
9448 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit> | 9292 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit><trans-unit id="ngb.alert.close" datatype="html"> |
9293 | <source>Close</source><target state="new">Close</target> | ||
9294 | <context-group purpose="location"> | ||
9295 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/alert/alert.ts</context> | ||
9296 | <context context-type="linenumber">74</context> | ||
9297 | </context-group> | ||
9298 | </trans-unit><trans-unit id="ngb.carousel.previous" datatype="html"> | ||
9299 | <source>Previous</source><target state="new">Previous</target> | ||
9300 | <context-group purpose="location"> | ||
9301 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9302 | <context context-type="linenumber">349</context> | ||
9303 | </context-group> | ||
9304 | </trans-unit><trans-unit id="ngb.carousel.next" datatype="html"> | ||
9305 | <source>Next</source><target state="new">Next</target> | ||
9306 | <context-group purpose="location"> | ||
9307 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9308 | <context context-type="linenumber">349</context> | ||
9309 | </context-group> | ||
9310 | </trans-unit><trans-unit id="ngb.datepicker.previous-month" datatype="html"> | ||
9311 | <source>Previous month</source><target state="new">Previous month</target> | ||
9312 | <context-group purpose="location"> | ||
9313 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation.ts</context> | ||
9314 | <context context-type="linenumber">69</context> | ||
9315 | </context-group> | ||
9316 | </trans-unit><trans-unit id="ngb.datepicker.next-month" datatype="html"> | ||
9317 | <source>Next month</source><target state="new">Next month</target> | ||
9318 | <context-group purpose="location"> | ||
9319 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-month.ts</context> | ||
9320 | <context context-type="linenumber">72</context> | ||
9321 | </context-group> | ||
9322 | </trans-unit><trans-unit id="ngb.datepicker.select-month" datatype="html"> | ||
9323 | <source>Select month</source><target state="new">Select month</target> | ||
9324 | <context-group purpose="location"> | ||
9325 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9326 | <context context-type="linenumber">74</context> | ||
9327 | </context-group> | ||
9328 | </trans-unit><trans-unit id="ngb.datepicker.select-year" datatype="html"> | ||
9329 | <source>Select year</source><target state="new">Select year</target> | ||
9330 | <context-group purpose="location"> | ||
9331 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9332 | <context context-type="linenumber">74</context> | ||
9333 | </context-group> | ||
9334 | </trans-unit><trans-unit id="ngb.pagination.first" datatype="html"> | ||
9335 | <source>««</source><target state="new">««</target> | ||
9336 | <context-group purpose="location"> | ||
9337 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9338 | <context context-type="linenumber">404</context> | ||
9339 | </context-group> | ||
9340 | </trans-unit><trans-unit id="ngb.pagination.previous" datatype="html"> | ||
9341 | <source>«</source><target state="new">«</target> | ||
9342 | <context-group purpose="location"> | ||
9343 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9344 | <context context-type="linenumber">404</context> | ||
9345 | </context-group> | ||
9346 | </trans-unit><trans-unit id="ngb.pagination.next" datatype="html"> | ||
9347 | <source>»</source><target state="new">»</target> | ||
9348 | <context-group purpose="location"> | ||
9349 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9350 | <context context-type="linenumber">404</context> | ||
9351 | </context-group> | ||
9352 | </trans-unit><trans-unit id="ngb.pagination.last" datatype="html"> | ||
9353 | <source>»»</source><target state="new">»»</target> | ||
9354 | <context-group purpose="location"> | ||
9355 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9356 | <context context-type="linenumber">404</context> | ||
9357 | </context-group> | ||
9358 | </trans-unit><trans-unit id="ngb.pagination.first-aria" datatype="html"> | ||
9359 | <source>First</source><target state="new">First</target> | ||
9360 | <context-group purpose="location"> | ||
9361 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9362 | <context context-type="linenumber">404</context> | ||
9363 | </context-group> | ||
9364 | </trans-unit><trans-unit id="ngb.pagination.previous-aria" datatype="html"> | ||
9365 | <source>Previous</source><target state="new">Previous</target> | ||
9366 | <context-group purpose="location"> | ||
9367 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9368 | <context context-type="linenumber">404</context> | ||
9369 | </context-group> | ||
9370 | </trans-unit><trans-unit id="ngb.pagination.next-aria" datatype="html"> | ||
9371 | <source>Next</source><target state="new">Next</target> | ||
9372 | <context-group purpose="location"> | ||
9373 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9374 | <context context-type="linenumber">404</context> | ||
9375 | </context-group> | ||
9376 | </trans-unit><trans-unit id="ngb.pagination.last-aria" datatype="html"> | ||
9377 | <source>Last</source><target state="new">Last</target> | ||
9378 | <context-group purpose="location"> | ||
9379 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9380 | <context context-type="linenumber">404</context> | ||
9381 | </context-group> | ||
9382 | </trans-unit><trans-unit id="ngb.progressbar.value" datatype="html"> | ||
9383 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9384 | <context-group purpose="location"> | ||
9385 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/progressbar/progressbar.ts</context> | ||
9386 | <context context-type="linenumber">101</context> | ||
9387 | </context-group> | ||
9388 | </trans-unit><trans-unit id="ngb.timepicker.HH" datatype="html"> | ||
9389 | <source>HH</source><target state="new">HH</target> | ||
9390 | <context-group purpose="location"> | ||
9391 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9392 | <context context-type="linenumber">296</context> | ||
9393 | </context-group> | ||
9394 | </trans-unit><trans-unit id="ngb.timepicker.hours" datatype="html"> | ||
9395 | <source>Hours</source><target state="new">Hours</target> | ||
9396 | <context-group purpose="location"> | ||
9397 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9398 | <context context-type="linenumber">296</context> | ||
9399 | </context-group> | ||
9400 | </trans-unit><trans-unit id="ngb.timepicker.MM" datatype="html"> | ||
9401 | <source>MM</source><target state="new">MM</target> | ||
9402 | <context-group purpose="location"> | ||
9403 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9404 | <context context-type="linenumber">296</context> | ||
9405 | </context-group> | ||
9406 | </trans-unit><trans-unit id="ngb.timepicker.minutes" datatype="html"> | ||
9407 | <source>Minutes</source><target state="new">Minutes</target> | ||
9408 | <context-group purpose="location"> | ||
9409 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9410 | <context context-type="linenumber">296</context> | ||
9411 | </context-group> | ||
9412 | </trans-unit><trans-unit id="ngb.timepicker.increment-hours" datatype="html"> | ||
9413 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
9414 | <context-group purpose="location"> | ||
9415 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9416 | <context context-type="linenumber">296</context> | ||
9417 | </context-group> | ||
9418 | </trans-unit><trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> | ||
9419 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
9420 | <context-group purpose="location"> | ||
9421 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9422 | <context context-type="linenumber">296</context> | ||
9423 | </context-group> | ||
9424 | </trans-unit><trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> | ||
9425 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
9426 | <context-group purpose="location"> | ||
9427 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9428 | <context context-type="linenumber">296</context> | ||
9429 | </context-group> | ||
9430 | </trans-unit><trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> | ||
9431 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
9432 | <context-group purpose="location"> | ||
9433 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9434 | <context context-type="linenumber">296</context> | ||
9435 | </context-group> | ||
9436 | </trans-unit><trans-unit id="ngb.timepicker.SS" datatype="html"> | ||
9437 | <source>SS</source><target state="new">SS</target> | ||
9438 | <context-group purpose="location"> | ||
9439 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9440 | <context context-type="linenumber">296</context> | ||
9441 | </context-group> | ||
9442 | </trans-unit><trans-unit id="ngb.timepicker.seconds" datatype="html"> | ||
9443 | <source>Seconds</source><target state="new">Seconds</target> | ||
9444 | <context-group purpose="location"> | ||
9445 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9446 | <context context-type="linenumber">296</context> | ||
9447 | </context-group> | ||
9448 | </trans-unit><trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> | ||
9449 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
9450 | <context-group purpose="location"> | ||
9451 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9452 | <context context-type="linenumber">296</context> | ||
9453 | </context-group> | ||
9454 | </trans-unit><trans-unit id="ngb.timepicker.decrement-seconds" datatype="html"> | ||
9455 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
9456 | <context-group purpose="location"> | ||
9457 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9458 | <context context-type="linenumber">296</context> | ||
9459 | </context-group> | ||
9460 | </trans-unit><trans-unit id="ngb.timepicker.PM" datatype="html"> | ||
9461 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9462 | <context-group purpose="location"> | ||
9463 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9464 | <context context-type="linenumber">296</context> | ||
9465 | </context-group> | ||
9466 | </trans-unit><trans-unit id="ngb.timepicker.AM" datatype="html"> | ||
9467 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9468 | <context-group purpose="location"> | ||
9469 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9470 | <context context-type="linenumber">296</context> | ||
9471 | </context-group> | ||
9472 | </trans-unit><trans-unit id="ngb.toast.close-aria" datatype="html"> | ||
9473 | <source>Close</source><target state="new">Close</target> | ||
9474 | <context-group purpose="location"> | ||
9475 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/toast/toast.ts</context> | ||
9476 | <context context-type="linenumber">137</context> | ||
9477 | </context-group> | ||
9478 | </trans-unit> | ||
9449 | <trans-unit id="5210096066382592800" datatype="html"> | 9479 | <trans-unit id="5210096066382592800" datatype="html"> |
9450 | <source>Video to import updated.</source> | 9480 | <source>Video to import updated.</source> |
9451 | <target state="new">Video to import updated.</target> | 9481 | <target state="new">Video to import updated.</target> |
diff --git a/client/src/locale/angular.lt-LT.xlf b/client/src/locale/angular.lt-LT.xlf index 069eb23a8..f94272dfb 100644 --- a/client/src/locale/angular.lt-LT.xlf +++ b/client/src/locale/angular.lt-LT.xlf | |||
@@ -1297,13 +1297,7 @@ The link will expire within 1 hour.</target> | |||
1297 | <source>Close</source> | 1297 | <source>Close</source> |
1298 | <target state="new">Close</target> | 1298 | <target state="new">Close</target> |
1299 | 1299 | ||
1300 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="680d5c75b7fd8d37961083608b9fcdc4167b4c43" datatype="html"> | 1300 | <context-group purpose="location"><context context-type="sourcefile">../app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1301 | <source>Previous</source><target state="new">Previous</target> | ||
1302 | <context-group purpose="location"> | ||
1303 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
1304 | <context context-type="linenumber">1</context> | ||
1305 | </context-group> | ||
1306 | </trans-unit> | ||
1307 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> | 1301 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> |
1308 | <source> | 1302 | <source> |
1309 | Configure | 1303 | Configure |
@@ -5739,157 +5733,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5739 | <source>Next</source> | 5733 | <source>Next</source> |
5740 | <target state="new">Next</target> | 5734 | <target state="new">Next</target> |
5741 | 5735 | ||
5742 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="c3b08b07b5ab98e7cdcf18df39355690ab7d3884" datatype="html"> | 5736 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit><trans-unit id="9082008222523034483" datatype="html"> |
5743 | <source>Previous month</source><target state="new">Previous month</target> | ||
5744 | <context-group purpose="location"> | ||
5745 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5746 | <context context-type="linenumber">1</context> | ||
5747 | </context-group> | ||
5748 | </trans-unit><trans-unit id="4bd046985cfe13040d5ef0cd881edce0968a111a" datatype="html"> | ||
5749 | <source>Next month</source><target state="new">Next month</target> | ||
5750 | <context-group purpose="location"> | ||
5751 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5752 | <context context-type="linenumber">1</context> | ||
5753 | </context-group> | ||
5754 | </trans-unit><trans-unit id="1dbc84807f35518112f62e5775d1daebd3d8462b" datatype="html"> | ||
5755 | <source>Select month</source><target state="new">Select month</target> | ||
5756 | <context-group purpose="location"> | ||
5757 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5758 | <context context-type="linenumber">1</context> | ||
5759 | </context-group> | ||
5760 | </trans-unit><trans-unit id="8ceb09d002bf0c5d1cac171dfbffe1805d2b3962" datatype="html"> | ||
5761 | <source>Select year</source><target state="new">Select year</target> | ||
5762 | <context-group purpose="location"> | ||
5763 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5764 | <context context-type="linenumber">1</context> | ||
5765 | </context-group> | ||
5766 | </trans-unit><trans-unit id="656506dfd46380956a655f919f1498d018f75ca0" datatype="html"> | ||
5767 | <source>««</source><target state="new">««</target> | ||
5768 | <context-group purpose="location"> | ||
5769 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5770 | <context context-type="linenumber">1</context> | ||
5771 | </context-group> | ||
5772 | </trans-unit><trans-unit id="6e52b6ee77a4848d899dd21b591c6fd499e3aef3" datatype="html"> | ||
5773 | <source>«</source><target state="new">«</target> | ||
5774 | <context-group purpose="location"> | ||
5775 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5776 | <context context-type="linenumber">1</context> | ||
5777 | </context-group> | ||
5778 | </trans-unit><trans-unit id="ba9cbb4ff311464308a3627e4f1c3345d9fe6d7d" datatype="html"> | ||
5779 | <source>»</source><target state="new">»</target> | ||
5780 | <context-group purpose="location"> | ||
5781 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5782 | <context context-type="linenumber">1</context> | ||
5783 | </context-group> | ||
5784 | </trans-unit><trans-unit id="49f27a460bc97e7e00be5b37098bfa79884fc7d9" datatype="html"> | ||
5785 | <source>»»</source><target state="new">»»</target> | ||
5786 | <context-group purpose="location"> | ||
5787 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5788 | <context context-type="linenumber">1</context> | ||
5789 | </context-group> | ||
5790 | </trans-unit><trans-unit id="f2f852318759c6396b5d3d17031d53817d7b38cc" datatype="html"> | ||
5791 | <source>First</source><target state="new">First</target> | ||
5792 | <context-group purpose="location"> | ||
5793 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5794 | <context context-type="linenumber">1</context> | ||
5795 | </context-group> | ||
5796 | </trans-unit><trans-unit id="5c729788ba138508aca1bec050b610f7bf81db3e" datatype="html"> | ||
5797 | <source>Last</source><target state="new">Last</target> | ||
5798 | <context-group purpose="location"> | ||
5799 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5800 | <context context-type="linenumber">1</context> | ||
5801 | </context-group> | ||
5802 | </trans-unit><trans-unit id="f8e9a947b9db4252c0e9905765338712f2fd032f" datatype="html"> | ||
5803 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5804 | <context-group purpose="location"> | ||
5805 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5806 | <context context-type="linenumber">1</context> | ||
5807 | </context-group> | ||
5808 | </trans-unit><trans-unit id="ce676ab1d6d98f85c836381cf100a4a91ef95a1f" datatype="html"> | ||
5809 | <source>HH</source><target state="new">HH</target> | ||
5810 | <context-group purpose="location"> | ||
5811 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5812 | <context context-type="linenumber">1</context> | ||
5813 | </context-group> | ||
5814 | </trans-unit><trans-unit id="3bbce5fef7e1151da052a4e529453edb340e3912" datatype="html"> | ||
5815 | <source>Hours</source><target state="new">Hours</target> | ||
5816 | <context-group purpose="location"> | ||
5817 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5818 | <context context-type="linenumber">1</context> | ||
5819 | </context-group> | ||
5820 | </trans-unit><trans-unit id="72c8edf6a50068a05bde70991e36b1e881f4ca54" datatype="html"> | ||
5821 | <source>MM</source><target state="new">MM</target> | ||
5822 | <context-group purpose="location"> | ||
5823 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5824 | <context context-type="linenumber">1</context> | ||
5825 | </context-group> | ||
5826 | </trans-unit><trans-unit id="41e62daa962947c0d23ded0981975d1bddf0bf38" datatype="html"> | ||
5827 | <source>Minutes</source><target state="new">Minutes</target> | ||
5828 | <context-group purpose="location"> | ||
5829 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5830 | <context context-type="linenumber">1</context> | ||
5831 | </context-group> | ||
5832 | </trans-unit><trans-unit id="cb74bc1d625a6c1742f0d7d47306cf495780c218" datatype="html"> | ||
5833 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
5834 | <context-group purpose="location"> | ||
5835 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5836 | <context context-type="linenumber">1</context> | ||
5837 | </context-group> | ||
5838 | </trans-unit><trans-unit id="147c7a19429da7d999e247d22e33fee370b1691b" datatype="html"> | ||
5839 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
5840 | <context-group purpose="location"> | ||
5841 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5842 | <context context-type="linenumber">1</context> | ||
5843 | </context-group> | ||
5844 | </trans-unit><trans-unit id="f5a4a3bc05e053f6732475d0e74875ec01c3a348" datatype="html"> | ||
5845 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
5846 | <context-group purpose="location"> | ||
5847 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5848 | <context context-type="linenumber">1</context> | ||
5849 | </context-group> | ||
5850 | </trans-unit><trans-unit id="c1a6899e529c096da5b660385d4e77fe1f7ad271" datatype="html"> | ||
5851 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
5852 | <context-group purpose="location"> | ||
5853 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5854 | <context context-type="linenumber">1</context> | ||
5855 | </context-group> | ||
5856 | </trans-unit><trans-unit id="ebe38d36a40a2383c5fefa9b4608ffbda08bd4a3" datatype="html"> | ||
5857 | <source>SS</source><target state="new">SS</target> | ||
5858 | <context-group purpose="location"> | ||
5859 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5860 | <context context-type="linenumber">1</context> | ||
5861 | </context-group> | ||
5862 | </trans-unit><trans-unit id="4f2ed9e71a7c981db3e50ae2fedb28aff2ec4e6c" datatype="html"> | ||
5863 | <source>Seconds</source><target state="new">Seconds</target> | ||
5864 | <context-group purpose="location"> | ||
5865 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5866 | <context context-type="linenumber">1</context> | ||
5867 | </context-group> | ||
5868 | </trans-unit><trans-unit id="912322ecee7d659d04dcf494a70e22e49d334b26" datatype="html"> | ||
5869 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
5870 | <context-group purpose="location"> | ||
5871 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5872 | <context context-type="linenumber">1</context> | ||
5873 | </context-group> | ||
5874 | </trans-unit><trans-unit id="5db47ac104294243a70eb9124fbea9d0004ddf69" datatype="html"> | ||
5875 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
5876 | <context-group purpose="location"> | ||
5877 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5878 | <context context-type="linenumber">1</context> | ||
5879 | </context-group> | ||
5880 | </trans-unit><trans-unit id="8d6e691e10306c1b34c6b26805151aaea320ef7f" datatype="html"> | ||
5881 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5882 | <context-group purpose="location"> | ||
5883 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5884 | <context context-type="linenumber">1</context> | ||
5885 | </context-group> | ||
5886 | </trans-unit><trans-unit id="69a1f176a93998876952adac57c3bc3863b6105e" datatype="html"> | ||
5887 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5888 | <context-group purpose="location"> | ||
5889 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5890 | <context context-type="linenumber">1</context> | ||
5891 | </context-group> | ||
5892 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
5893 | <source>Get help</source><target state="new">Get help</target> | 5737 | <source>Get help</source><target state="new">Get help</target> |
5894 | <context-group purpose="location"> | 5738 | <context-group purpose="location"> |
5895 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 5739 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> |
@@ -9432,7 +9276,193 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9432 | <source>Only users of this instance can see this video</source> | 9276 | <source>Only users of this instance can see this video</source> |
9433 | <target state="new">Only users of this instance can see this video</target> | 9277 | <target state="new">Only users of this instance can see this video</target> |
9434 | 9278 | ||
9435 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit> | 9279 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit><trans-unit id="ngb.alert.close" datatype="html"> |
9280 | <source>Close</source><target state="new">Close</target> | ||
9281 | <context-group purpose="location"> | ||
9282 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/alert/alert.ts</context> | ||
9283 | <context context-type="linenumber">74</context> | ||
9284 | </context-group> | ||
9285 | </trans-unit><trans-unit id="ngb.carousel.previous" datatype="html"> | ||
9286 | <source>Previous</source><target state="new">Previous</target> | ||
9287 | <context-group purpose="location"> | ||
9288 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9289 | <context context-type="linenumber">349</context> | ||
9290 | </context-group> | ||
9291 | </trans-unit><trans-unit id="ngb.carousel.next" datatype="html"> | ||
9292 | <source>Next</source><target state="new">Next</target> | ||
9293 | <context-group purpose="location"> | ||
9294 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9295 | <context context-type="linenumber">349</context> | ||
9296 | </context-group> | ||
9297 | </trans-unit><trans-unit id="ngb.datepicker.previous-month" datatype="html"> | ||
9298 | <source>Previous month</source><target state="new">Previous month</target> | ||
9299 | <context-group purpose="location"> | ||
9300 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation.ts</context> | ||
9301 | <context context-type="linenumber">69</context> | ||
9302 | </context-group> | ||
9303 | </trans-unit><trans-unit id="ngb.datepicker.next-month" datatype="html"> | ||
9304 | <source>Next month</source><target state="new">Next month</target> | ||
9305 | <context-group purpose="location"> | ||
9306 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-month.ts</context> | ||
9307 | <context context-type="linenumber">72</context> | ||
9308 | </context-group> | ||
9309 | </trans-unit><trans-unit id="ngb.datepicker.select-month" datatype="html"> | ||
9310 | <source>Select month</source><target state="new">Select month</target> | ||
9311 | <context-group purpose="location"> | ||
9312 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9313 | <context context-type="linenumber">74</context> | ||
9314 | </context-group> | ||
9315 | </trans-unit><trans-unit id="ngb.datepicker.select-year" datatype="html"> | ||
9316 | <source>Select year</source><target state="new">Select year</target> | ||
9317 | <context-group purpose="location"> | ||
9318 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9319 | <context context-type="linenumber">74</context> | ||
9320 | </context-group> | ||
9321 | </trans-unit><trans-unit id="ngb.pagination.first" datatype="html"> | ||
9322 | <source>««</source><target state="new">««</target> | ||
9323 | <context-group purpose="location"> | ||
9324 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9325 | <context context-type="linenumber">404</context> | ||
9326 | </context-group> | ||
9327 | </trans-unit><trans-unit id="ngb.pagination.previous" datatype="html"> | ||
9328 | <source>«</source><target state="new">«</target> | ||
9329 | <context-group purpose="location"> | ||
9330 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9331 | <context context-type="linenumber">404</context> | ||
9332 | </context-group> | ||
9333 | </trans-unit><trans-unit id="ngb.pagination.next" datatype="html"> | ||
9334 | <source>»</source><target state="new">»</target> | ||
9335 | <context-group purpose="location"> | ||
9336 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9337 | <context context-type="linenumber">404</context> | ||
9338 | </context-group> | ||
9339 | </trans-unit><trans-unit id="ngb.pagination.last" datatype="html"> | ||
9340 | <source>»»</source><target state="new">»»</target> | ||
9341 | <context-group purpose="location"> | ||
9342 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9343 | <context context-type="linenumber">404</context> | ||
9344 | </context-group> | ||
9345 | </trans-unit><trans-unit id="ngb.pagination.first-aria" datatype="html"> | ||
9346 | <source>First</source><target state="new">First</target> | ||
9347 | <context-group purpose="location"> | ||
9348 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9349 | <context context-type="linenumber">404</context> | ||
9350 | </context-group> | ||
9351 | </trans-unit><trans-unit id="ngb.pagination.previous-aria" datatype="html"> | ||
9352 | <source>Previous</source><target state="new">Previous</target> | ||
9353 | <context-group purpose="location"> | ||
9354 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9355 | <context context-type="linenumber">404</context> | ||
9356 | </context-group> | ||
9357 | </trans-unit><trans-unit id="ngb.pagination.next-aria" datatype="html"> | ||
9358 | <source>Next</source><target state="new">Next</target> | ||
9359 | <context-group purpose="location"> | ||
9360 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9361 | <context context-type="linenumber">404</context> | ||
9362 | </context-group> | ||
9363 | </trans-unit><trans-unit id="ngb.pagination.last-aria" datatype="html"> | ||
9364 | <source>Last</source><target state="new">Last</target> | ||
9365 | <context-group purpose="location"> | ||
9366 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9367 | <context context-type="linenumber">404</context> | ||
9368 | </context-group> | ||
9369 | </trans-unit><trans-unit id="ngb.progressbar.value" datatype="html"> | ||
9370 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9371 | <context-group purpose="location"> | ||
9372 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/progressbar/progressbar.ts</context> | ||
9373 | <context context-type="linenumber">101</context> | ||
9374 | </context-group> | ||
9375 | </trans-unit><trans-unit id="ngb.timepicker.HH" datatype="html"> | ||
9376 | <source>HH</source><target state="new">HH</target> | ||
9377 | <context-group purpose="location"> | ||
9378 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9379 | <context context-type="linenumber">296</context> | ||
9380 | </context-group> | ||
9381 | </trans-unit><trans-unit id="ngb.timepicker.hours" datatype="html"> | ||
9382 | <source>Hours</source><target state="new">Hours</target> | ||
9383 | <context-group purpose="location"> | ||
9384 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9385 | <context context-type="linenumber">296</context> | ||
9386 | </context-group> | ||
9387 | </trans-unit><trans-unit id="ngb.timepicker.MM" datatype="html"> | ||
9388 | <source>MM</source><target state="new">MM</target> | ||
9389 | <context-group purpose="location"> | ||
9390 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9391 | <context context-type="linenumber">296</context> | ||
9392 | </context-group> | ||
9393 | </trans-unit><trans-unit id="ngb.timepicker.minutes" datatype="html"> | ||
9394 | <source>Minutes</source><target state="new">Minutes</target> | ||
9395 | <context-group purpose="location"> | ||
9396 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9397 | <context context-type="linenumber">296</context> | ||
9398 | </context-group> | ||
9399 | </trans-unit><trans-unit id="ngb.timepicker.increment-hours" datatype="html"> | ||
9400 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
9401 | <context-group purpose="location"> | ||
9402 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9403 | <context context-type="linenumber">296</context> | ||
9404 | </context-group> | ||
9405 | </trans-unit><trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> | ||
9406 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
9407 | <context-group purpose="location"> | ||
9408 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9409 | <context context-type="linenumber">296</context> | ||
9410 | </context-group> | ||
9411 | </trans-unit><trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> | ||
9412 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
9413 | <context-group purpose="location"> | ||
9414 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9415 | <context context-type="linenumber">296</context> | ||
9416 | </context-group> | ||
9417 | </trans-unit><trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> | ||
9418 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
9419 | <context-group purpose="location"> | ||
9420 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9421 | <context context-type="linenumber">296</context> | ||
9422 | </context-group> | ||
9423 | </trans-unit><trans-unit id="ngb.timepicker.SS" datatype="html"> | ||
9424 | <source>SS</source><target state="new">SS</target> | ||
9425 | <context-group purpose="location"> | ||
9426 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9427 | <context context-type="linenumber">296</context> | ||
9428 | </context-group> | ||
9429 | </trans-unit><trans-unit id="ngb.timepicker.seconds" datatype="html"> | ||
9430 | <source>Seconds</source><target state="new">Seconds</target> | ||
9431 | <context-group purpose="location"> | ||
9432 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9433 | <context context-type="linenumber">296</context> | ||
9434 | </context-group> | ||
9435 | </trans-unit><trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> | ||
9436 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
9437 | <context-group purpose="location"> | ||
9438 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9439 | <context context-type="linenumber">296</context> | ||
9440 | </context-group> | ||
9441 | </trans-unit><trans-unit id="ngb.timepicker.decrement-seconds" datatype="html"> | ||
9442 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
9443 | <context-group purpose="location"> | ||
9444 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9445 | <context context-type="linenumber">296</context> | ||
9446 | </context-group> | ||
9447 | </trans-unit><trans-unit id="ngb.timepicker.PM" datatype="html"> | ||
9448 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9449 | <context-group purpose="location"> | ||
9450 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9451 | <context context-type="linenumber">296</context> | ||
9452 | </context-group> | ||
9453 | </trans-unit><trans-unit id="ngb.timepicker.AM" datatype="html"> | ||
9454 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9455 | <context-group purpose="location"> | ||
9456 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9457 | <context context-type="linenumber">296</context> | ||
9458 | </context-group> | ||
9459 | </trans-unit><trans-unit id="ngb.toast.close-aria" datatype="html"> | ||
9460 | <source>Close</source><target state="new">Close</target> | ||
9461 | <context-group purpose="location"> | ||
9462 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/toast/toast.ts</context> | ||
9463 | <context context-type="linenumber">137</context> | ||
9464 | </context-group> | ||
9465 | </trans-unit> | ||
9436 | <trans-unit id="5210096066382592800" datatype="html"> | 9466 | <trans-unit id="5210096066382592800" datatype="html"> |
9437 | <source>Video to import updated.</source> | 9467 | <source>Video to import updated.</source> |
9438 | <target state="new">Video to import updated.</target> | 9468 | <target state="new">Video to import updated.</target> |
diff --git a/client/src/locale/angular.nb-NO.xlf b/client/src/locale/angular.nb-NO.xlf index 804953316..9721871cc 100644 --- a/client/src/locale/angular.nb-NO.xlf +++ b/client/src/locale/angular.nb-NO.xlf | |||
@@ -1331,13 +1331,7 @@ The link will expire within 1 hour.</target> | |||
1331 | <source>Close</source> | 1331 | <source>Close</source> |
1332 | <target state="new">Close</target> | 1332 | <target state="new">Close</target> |
1333 | 1333 | ||
1334 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="680d5c75b7fd8d37961083608b9fcdc4167b4c43" datatype="html"> | 1334 | <context-group purpose="location"><context context-type="sourcefile">../app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1335 | <source>Previous</source><target state="new">Previous</target> | ||
1336 | <context-group purpose="location"> | ||
1337 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
1338 | <context context-type="linenumber">1</context> | ||
1339 | </context-group> | ||
1340 | </trans-unit> | ||
1341 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> | 1335 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> |
1342 | <source> | 1336 | <source> |
1343 | Configure | 1337 | Configure |
@@ -5851,157 +5845,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5851 | <source>Next</source> | 5845 | <source>Next</source> |
5852 | <target state="new">Next</target> | 5846 | <target state="new">Next</target> |
5853 | 5847 | ||
5854 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="c3b08b07b5ab98e7cdcf18df39355690ab7d3884" datatype="html"> | 5848 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit><trans-unit id="9082008222523034483" datatype="html"> |
5855 | <source>Previous month</source><target state="new">Previous month</target> | ||
5856 | <context-group purpose="location"> | ||
5857 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5858 | <context context-type="linenumber">1</context> | ||
5859 | </context-group> | ||
5860 | </trans-unit><trans-unit id="4bd046985cfe13040d5ef0cd881edce0968a111a" datatype="html"> | ||
5861 | <source>Next month</source><target state="new">Next month</target> | ||
5862 | <context-group purpose="location"> | ||
5863 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5864 | <context context-type="linenumber">1</context> | ||
5865 | </context-group> | ||
5866 | </trans-unit><trans-unit id="1dbc84807f35518112f62e5775d1daebd3d8462b" datatype="html"> | ||
5867 | <source>Select month</source><target state="new">Select month</target> | ||
5868 | <context-group purpose="location"> | ||
5869 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5870 | <context context-type="linenumber">1</context> | ||
5871 | </context-group> | ||
5872 | </trans-unit><trans-unit id="8ceb09d002bf0c5d1cac171dfbffe1805d2b3962" datatype="html"> | ||
5873 | <source>Select year</source><target state="new">Select year</target> | ||
5874 | <context-group purpose="location"> | ||
5875 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5876 | <context context-type="linenumber">1</context> | ||
5877 | </context-group> | ||
5878 | </trans-unit><trans-unit id="656506dfd46380956a655f919f1498d018f75ca0" datatype="html"> | ||
5879 | <source>««</source><target state="new">««</target> | ||
5880 | <context-group purpose="location"> | ||
5881 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5882 | <context context-type="linenumber">1</context> | ||
5883 | </context-group> | ||
5884 | </trans-unit><trans-unit id="6e52b6ee77a4848d899dd21b591c6fd499e3aef3" datatype="html"> | ||
5885 | <source>«</source><target state="new">«</target> | ||
5886 | <context-group purpose="location"> | ||
5887 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5888 | <context context-type="linenumber">1</context> | ||
5889 | </context-group> | ||
5890 | </trans-unit><trans-unit id="ba9cbb4ff311464308a3627e4f1c3345d9fe6d7d" datatype="html"> | ||
5891 | <source>»</source><target state="new">»</target> | ||
5892 | <context-group purpose="location"> | ||
5893 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5894 | <context context-type="linenumber">1</context> | ||
5895 | </context-group> | ||
5896 | </trans-unit><trans-unit id="49f27a460bc97e7e00be5b37098bfa79884fc7d9" datatype="html"> | ||
5897 | <source>»»</source><target state="new">»»</target> | ||
5898 | <context-group purpose="location"> | ||
5899 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5900 | <context context-type="linenumber">1</context> | ||
5901 | </context-group> | ||
5902 | </trans-unit><trans-unit id="f2f852318759c6396b5d3d17031d53817d7b38cc" datatype="html"> | ||
5903 | <source>First</source><target state="new">First</target> | ||
5904 | <context-group purpose="location"> | ||
5905 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5906 | <context context-type="linenumber">1</context> | ||
5907 | </context-group> | ||
5908 | </trans-unit><trans-unit id="5c729788ba138508aca1bec050b610f7bf81db3e" datatype="html"> | ||
5909 | <source>Last</source><target state="new">Last</target> | ||
5910 | <context-group purpose="location"> | ||
5911 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5912 | <context context-type="linenumber">1</context> | ||
5913 | </context-group> | ||
5914 | </trans-unit><trans-unit id="f8e9a947b9db4252c0e9905765338712f2fd032f" datatype="html"> | ||
5915 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5916 | <context-group purpose="location"> | ||
5917 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5918 | <context context-type="linenumber">1</context> | ||
5919 | </context-group> | ||
5920 | </trans-unit><trans-unit id="ce676ab1d6d98f85c836381cf100a4a91ef95a1f" datatype="html"> | ||
5921 | <source>HH</source><target state="new">HH</target> | ||
5922 | <context-group purpose="location"> | ||
5923 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5924 | <context context-type="linenumber">1</context> | ||
5925 | </context-group> | ||
5926 | </trans-unit><trans-unit id="3bbce5fef7e1151da052a4e529453edb340e3912" datatype="html"> | ||
5927 | <source>Hours</source><target state="new">Hours</target> | ||
5928 | <context-group purpose="location"> | ||
5929 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5930 | <context context-type="linenumber">1</context> | ||
5931 | </context-group> | ||
5932 | </trans-unit><trans-unit id="72c8edf6a50068a05bde70991e36b1e881f4ca54" datatype="html"> | ||
5933 | <source>MM</source><target state="new">MM</target> | ||
5934 | <context-group purpose="location"> | ||
5935 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5936 | <context context-type="linenumber">1</context> | ||
5937 | </context-group> | ||
5938 | </trans-unit><trans-unit id="41e62daa962947c0d23ded0981975d1bddf0bf38" datatype="html"> | ||
5939 | <source>Minutes</source><target state="new">Minutes</target> | ||
5940 | <context-group purpose="location"> | ||
5941 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5942 | <context context-type="linenumber">1</context> | ||
5943 | </context-group> | ||
5944 | </trans-unit><trans-unit id="cb74bc1d625a6c1742f0d7d47306cf495780c218" datatype="html"> | ||
5945 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
5946 | <context-group purpose="location"> | ||
5947 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5948 | <context context-type="linenumber">1</context> | ||
5949 | </context-group> | ||
5950 | </trans-unit><trans-unit id="147c7a19429da7d999e247d22e33fee370b1691b" datatype="html"> | ||
5951 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
5952 | <context-group purpose="location"> | ||
5953 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5954 | <context context-type="linenumber">1</context> | ||
5955 | </context-group> | ||
5956 | </trans-unit><trans-unit id="f5a4a3bc05e053f6732475d0e74875ec01c3a348" datatype="html"> | ||
5957 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
5958 | <context-group purpose="location"> | ||
5959 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5960 | <context context-type="linenumber">1</context> | ||
5961 | </context-group> | ||
5962 | </trans-unit><trans-unit id="c1a6899e529c096da5b660385d4e77fe1f7ad271" datatype="html"> | ||
5963 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
5964 | <context-group purpose="location"> | ||
5965 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5966 | <context context-type="linenumber">1</context> | ||
5967 | </context-group> | ||
5968 | </trans-unit><trans-unit id="ebe38d36a40a2383c5fefa9b4608ffbda08bd4a3" datatype="html"> | ||
5969 | <source>SS</source><target state="new">SS</target> | ||
5970 | <context-group purpose="location"> | ||
5971 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5972 | <context context-type="linenumber">1</context> | ||
5973 | </context-group> | ||
5974 | </trans-unit><trans-unit id="4f2ed9e71a7c981db3e50ae2fedb28aff2ec4e6c" datatype="html"> | ||
5975 | <source>Seconds</source><target state="new">Seconds</target> | ||
5976 | <context-group purpose="location"> | ||
5977 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5978 | <context context-type="linenumber">1</context> | ||
5979 | </context-group> | ||
5980 | </trans-unit><trans-unit id="912322ecee7d659d04dcf494a70e22e49d334b26" datatype="html"> | ||
5981 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
5982 | <context-group purpose="location"> | ||
5983 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5984 | <context context-type="linenumber">1</context> | ||
5985 | </context-group> | ||
5986 | </trans-unit><trans-unit id="5db47ac104294243a70eb9124fbea9d0004ddf69" datatype="html"> | ||
5987 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
5988 | <context-group purpose="location"> | ||
5989 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5990 | <context context-type="linenumber">1</context> | ||
5991 | </context-group> | ||
5992 | </trans-unit><trans-unit id="8d6e691e10306c1b34c6b26805151aaea320ef7f" datatype="html"> | ||
5993 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5994 | <context-group purpose="location"> | ||
5995 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5996 | <context context-type="linenumber">1</context> | ||
5997 | </context-group> | ||
5998 | </trans-unit><trans-unit id="69a1f176a93998876952adac57c3bc3863b6105e" datatype="html"> | ||
5999 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
6000 | <context-group purpose="location"> | ||
6001 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
6002 | <context context-type="linenumber">1</context> | ||
6003 | </context-group> | ||
6004 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
6005 | <source>Get help</source><target state="new">Get help</target> | 5849 | <source>Get help</source><target state="new">Get help</target> |
6006 | <context-group purpose="location"> | 5850 | <context-group purpose="location"> |
6007 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 5851 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> |
@@ -9551,7 +9395,193 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9551 | <source>Only users of this instance can see this video</source> | 9395 | <source>Only users of this instance can see this video</source> |
9552 | <target state="new">Only users of this instance can see this video</target> | 9396 | <target state="new">Only users of this instance can see this video</target> |
9553 | 9397 | ||
9554 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit> | 9398 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit><trans-unit id="ngb.alert.close" datatype="html"> |
9399 | <source>Close</source><target state="new">Close</target> | ||
9400 | <context-group purpose="location"> | ||
9401 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/alert/alert.ts</context> | ||
9402 | <context context-type="linenumber">74</context> | ||
9403 | </context-group> | ||
9404 | </trans-unit><trans-unit id="ngb.carousel.previous" datatype="html"> | ||
9405 | <source>Previous</source><target state="new">Previous</target> | ||
9406 | <context-group purpose="location"> | ||
9407 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9408 | <context context-type="linenumber">349</context> | ||
9409 | </context-group> | ||
9410 | </trans-unit><trans-unit id="ngb.carousel.next" datatype="html"> | ||
9411 | <source>Next</source><target state="new">Next</target> | ||
9412 | <context-group purpose="location"> | ||
9413 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9414 | <context context-type="linenumber">349</context> | ||
9415 | </context-group> | ||
9416 | </trans-unit><trans-unit id="ngb.datepicker.previous-month" datatype="html"> | ||
9417 | <source>Previous month</source><target state="new">Previous month</target> | ||
9418 | <context-group purpose="location"> | ||
9419 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation.ts</context> | ||
9420 | <context context-type="linenumber">69</context> | ||
9421 | </context-group> | ||
9422 | </trans-unit><trans-unit id="ngb.datepicker.next-month" datatype="html"> | ||
9423 | <source>Next month</source><target state="new">Next month</target> | ||
9424 | <context-group purpose="location"> | ||
9425 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-month.ts</context> | ||
9426 | <context context-type="linenumber">72</context> | ||
9427 | </context-group> | ||
9428 | </trans-unit><trans-unit id="ngb.datepicker.select-month" datatype="html"> | ||
9429 | <source>Select month</source><target state="new">Select month</target> | ||
9430 | <context-group purpose="location"> | ||
9431 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9432 | <context context-type="linenumber">74</context> | ||
9433 | </context-group> | ||
9434 | </trans-unit><trans-unit id="ngb.datepicker.select-year" datatype="html"> | ||
9435 | <source>Select year</source><target state="new">Select year</target> | ||
9436 | <context-group purpose="location"> | ||
9437 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9438 | <context context-type="linenumber">74</context> | ||
9439 | </context-group> | ||
9440 | </trans-unit><trans-unit id="ngb.pagination.first" datatype="html"> | ||
9441 | <source>««</source><target state="new">««</target> | ||
9442 | <context-group purpose="location"> | ||
9443 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9444 | <context context-type="linenumber">404</context> | ||
9445 | </context-group> | ||
9446 | </trans-unit><trans-unit id="ngb.pagination.previous" datatype="html"> | ||
9447 | <source>«</source><target state="new">«</target> | ||
9448 | <context-group purpose="location"> | ||
9449 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9450 | <context context-type="linenumber">404</context> | ||
9451 | </context-group> | ||
9452 | </trans-unit><trans-unit id="ngb.pagination.next" datatype="html"> | ||
9453 | <source>»</source><target state="new">»</target> | ||
9454 | <context-group purpose="location"> | ||
9455 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9456 | <context context-type="linenumber">404</context> | ||
9457 | </context-group> | ||
9458 | </trans-unit><trans-unit id="ngb.pagination.last" datatype="html"> | ||
9459 | <source>»»</source><target state="new">»»</target> | ||
9460 | <context-group purpose="location"> | ||
9461 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9462 | <context context-type="linenumber">404</context> | ||
9463 | </context-group> | ||
9464 | </trans-unit><trans-unit id="ngb.pagination.first-aria" datatype="html"> | ||
9465 | <source>First</source><target state="new">First</target> | ||
9466 | <context-group purpose="location"> | ||
9467 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9468 | <context context-type="linenumber">404</context> | ||
9469 | </context-group> | ||
9470 | </trans-unit><trans-unit id="ngb.pagination.previous-aria" datatype="html"> | ||
9471 | <source>Previous</source><target state="new">Previous</target> | ||
9472 | <context-group purpose="location"> | ||
9473 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9474 | <context context-type="linenumber">404</context> | ||
9475 | </context-group> | ||
9476 | </trans-unit><trans-unit id="ngb.pagination.next-aria" datatype="html"> | ||
9477 | <source>Next</source><target state="new">Next</target> | ||
9478 | <context-group purpose="location"> | ||
9479 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9480 | <context context-type="linenumber">404</context> | ||
9481 | </context-group> | ||
9482 | </trans-unit><trans-unit id="ngb.pagination.last-aria" datatype="html"> | ||
9483 | <source>Last</source><target state="new">Last</target> | ||
9484 | <context-group purpose="location"> | ||
9485 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9486 | <context context-type="linenumber">404</context> | ||
9487 | </context-group> | ||
9488 | </trans-unit><trans-unit id="ngb.progressbar.value" datatype="html"> | ||
9489 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9490 | <context-group purpose="location"> | ||
9491 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/progressbar/progressbar.ts</context> | ||
9492 | <context context-type="linenumber">101</context> | ||
9493 | </context-group> | ||
9494 | </trans-unit><trans-unit id="ngb.timepicker.HH" datatype="html"> | ||
9495 | <source>HH</source><target state="new">HH</target> | ||
9496 | <context-group purpose="location"> | ||
9497 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9498 | <context context-type="linenumber">296</context> | ||
9499 | </context-group> | ||
9500 | </trans-unit><trans-unit id="ngb.timepicker.hours" datatype="html"> | ||
9501 | <source>Hours</source><target state="new">Hours</target> | ||
9502 | <context-group purpose="location"> | ||
9503 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9504 | <context context-type="linenumber">296</context> | ||
9505 | </context-group> | ||
9506 | </trans-unit><trans-unit id="ngb.timepicker.MM" datatype="html"> | ||
9507 | <source>MM</source><target state="new">MM</target> | ||
9508 | <context-group purpose="location"> | ||
9509 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9510 | <context context-type="linenumber">296</context> | ||
9511 | </context-group> | ||
9512 | </trans-unit><trans-unit id="ngb.timepicker.minutes" datatype="html"> | ||
9513 | <source>Minutes</source><target state="new">Minutes</target> | ||
9514 | <context-group purpose="location"> | ||
9515 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9516 | <context context-type="linenumber">296</context> | ||
9517 | </context-group> | ||
9518 | </trans-unit><trans-unit id="ngb.timepicker.increment-hours" datatype="html"> | ||
9519 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
9520 | <context-group purpose="location"> | ||
9521 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9522 | <context context-type="linenumber">296</context> | ||
9523 | </context-group> | ||
9524 | </trans-unit><trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> | ||
9525 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
9526 | <context-group purpose="location"> | ||
9527 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9528 | <context context-type="linenumber">296</context> | ||
9529 | </context-group> | ||
9530 | </trans-unit><trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> | ||
9531 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
9532 | <context-group purpose="location"> | ||
9533 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9534 | <context context-type="linenumber">296</context> | ||
9535 | </context-group> | ||
9536 | </trans-unit><trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> | ||
9537 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
9538 | <context-group purpose="location"> | ||
9539 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9540 | <context context-type="linenumber">296</context> | ||
9541 | </context-group> | ||
9542 | </trans-unit><trans-unit id="ngb.timepicker.SS" datatype="html"> | ||
9543 | <source>SS</source><target state="new">SS</target> | ||
9544 | <context-group purpose="location"> | ||
9545 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9546 | <context context-type="linenumber">296</context> | ||
9547 | </context-group> | ||
9548 | </trans-unit><trans-unit id="ngb.timepicker.seconds" datatype="html"> | ||
9549 | <source>Seconds</source><target state="new">Seconds</target> | ||
9550 | <context-group purpose="location"> | ||
9551 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9552 | <context context-type="linenumber">296</context> | ||
9553 | </context-group> | ||
9554 | </trans-unit><trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> | ||
9555 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
9556 | <context-group purpose="location"> | ||
9557 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9558 | <context context-type="linenumber">296</context> | ||
9559 | </context-group> | ||
9560 | </trans-unit><trans-unit id="ngb.timepicker.decrement-seconds" datatype="html"> | ||
9561 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
9562 | <context-group purpose="location"> | ||
9563 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9564 | <context context-type="linenumber">296</context> | ||
9565 | </context-group> | ||
9566 | </trans-unit><trans-unit id="ngb.timepicker.PM" datatype="html"> | ||
9567 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9568 | <context-group purpose="location"> | ||
9569 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9570 | <context context-type="linenumber">296</context> | ||
9571 | </context-group> | ||
9572 | </trans-unit><trans-unit id="ngb.timepicker.AM" datatype="html"> | ||
9573 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9574 | <context-group purpose="location"> | ||
9575 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9576 | <context context-type="linenumber">296</context> | ||
9577 | </context-group> | ||
9578 | </trans-unit><trans-unit id="ngb.toast.close-aria" datatype="html"> | ||
9579 | <source>Close</source><target state="new">Close</target> | ||
9580 | <context-group purpose="location"> | ||
9581 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/toast/toast.ts</context> | ||
9582 | <context context-type="linenumber">137</context> | ||
9583 | </context-group> | ||
9584 | </trans-unit> | ||
9555 | <trans-unit id="5210096066382592800" datatype="html"> | 9585 | <trans-unit id="5210096066382592800" datatype="html"> |
9556 | <source>Video to import updated.</source> | 9586 | <source>Video to import updated.</source> |
9557 | <target state="new">Video to import updated.</target> | 9587 | <target state="new">Video to import updated.</target> |
diff --git a/client/src/locale/angular.nl-NL.xlf b/client/src/locale/angular.nl-NL.xlf index f1c6d9177..3984743ed 100644 --- a/client/src/locale/angular.nl-NL.xlf +++ b/client/src/locale/angular.nl-NL.xlf | |||
@@ -1291,13 +1291,7 @@ Geen resultaten gevonden</target> | |||
1291 | <source>Close</source> | 1291 | <source>Close</source> |
1292 | <target>Sluiten</target> | 1292 | <target>Sluiten</target> |
1293 | 1293 | ||
1294 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="680d5c75b7fd8d37961083608b9fcdc4167b4c43" datatype="html"> | 1294 | <context-group purpose="location"><context context-type="sourcefile">../app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1295 | <source>Previous</source><target state="new">Previous</target> | ||
1296 | <context-group purpose="location"> | ||
1297 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
1298 | <context context-type="linenumber">1</context> | ||
1299 | </context-group> | ||
1300 | </trans-unit> | ||
1301 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> | 1295 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> |
1302 | <source> | 1296 | <source> |
1303 | Configure | 1297 | Configure |
@@ -5743,157 +5737,7 @@ Account aanmaken</target> | |||
5743 | <source>Next</source> | 5737 | <source>Next</source> |
5744 | <target>Volgende</target> | 5738 | <target>Volgende</target> |
5745 | 5739 | ||
5746 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="c3b08b07b5ab98e7cdcf18df39355690ab7d3884" datatype="html"> | 5740 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit><trans-unit id="9082008222523034483" datatype="html"> |
5747 | <source>Previous month</source><target state="new">Previous month</target> | ||
5748 | <context-group purpose="location"> | ||
5749 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5750 | <context context-type="linenumber">1</context> | ||
5751 | </context-group> | ||
5752 | </trans-unit><trans-unit id="4bd046985cfe13040d5ef0cd881edce0968a111a" datatype="html"> | ||
5753 | <source>Next month</source><target state="new">Next month</target> | ||
5754 | <context-group purpose="location"> | ||
5755 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5756 | <context context-type="linenumber">1</context> | ||
5757 | </context-group> | ||
5758 | </trans-unit><trans-unit id="1dbc84807f35518112f62e5775d1daebd3d8462b" datatype="html"> | ||
5759 | <source>Select month</source><target state="new">Select month</target> | ||
5760 | <context-group purpose="location"> | ||
5761 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5762 | <context context-type="linenumber">1</context> | ||
5763 | </context-group> | ||
5764 | </trans-unit><trans-unit id="8ceb09d002bf0c5d1cac171dfbffe1805d2b3962" datatype="html"> | ||
5765 | <source>Select year</source><target state="new">Select year</target> | ||
5766 | <context-group purpose="location"> | ||
5767 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5768 | <context context-type="linenumber">1</context> | ||
5769 | </context-group> | ||
5770 | </trans-unit><trans-unit id="656506dfd46380956a655f919f1498d018f75ca0" datatype="html"> | ||
5771 | <source>««</source><target state="new">««</target> | ||
5772 | <context-group purpose="location"> | ||
5773 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5774 | <context context-type="linenumber">1</context> | ||
5775 | </context-group> | ||
5776 | </trans-unit><trans-unit id="6e52b6ee77a4848d899dd21b591c6fd499e3aef3" datatype="html"> | ||
5777 | <source>«</source><target state="new">«</target> | ||
5778 | <context-group purpose="location"> | ||
5779 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5780 | <context context-type="linenumber">1</context> | ||
5781 | </context-group> | ||
5782 | </trans-unit><trans-unit id="ba9cbb4ff311464308a3627e4f1c3345d9fe6d7d" datatype="html"> | ||
5783 | <source>»</source><target state="new">»</target> | ||
5784 | <context-group purpose="location"> | ||
5785 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5786 | <context context-type="linenumber">1</context> | ||
5787 | </context-group> | ||
5788 | </trans-unit><trans-unit id="49f27a460bc97e7e00be5b37098bfa79884fc7d9" datatype="html"> | ||
5789 | <source>»»</source><target state="new">»»</target> | ||
5790 | <context-group purpose="location"> | ||
5791 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5792 | <context context-type="linenumber">1</context> | ||
5793 | </context-group> | ||
5794 | </trans-unit><trans-unit id="f2f852318759c6396b5d3d17031d53817d7b38cc" datatype="html"> | ||
5795 | <source>First</source><target state="new">First</target> | ||
5796 | <context-group purpose="location"> | ||
5797 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5798 | <context context-type="linenumber">1</context> | ||
5799 | </context-group> | ||
5800 | </trans-unit><trans-unit id="5c729788ba138508aca1bec050b610f7bf81db3e" datatype="html"> | ||
5801 | <source>Last</source><target state="new">Last</target> | ||
5802 | <context-group purpose="location"> | ||
5803 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5804 | <context context-type="linenumber">1</context> | ||
5805 | </context-group> | ||
5806 | </trans-unit><trans-unit id="f8e9a947b9db4252c0e9905765338712f2fd032f" datatype="html"> | ||
5807 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5808 | <context-group purpose="location"> | ||
5809 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5810 | <context context-type="linenumber">1</context> | ||
5811 | </context-group> | ||
5812 | </trans-unit><trans-unit id="ce676ab1d6d98f85c836381cf100a4a91ef95a1f" datatype="html"> | ||
5813 | <source>HH</source><target state="new">HH</target> | ||
5814 | <context-group purpose="location"> | ||
5815 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5816 | <context context-type="linenumber">1</context> | ||
5817 | </context-group> | ||
5818 | </trans-unit><trans-unit id="3bbce5fef7e1151da052a4e529453edb340e3912" datatype="html"> | ||
5819 | <source>Hours</source><target state="new">Hours</target> | ||
5820 | <context-group purpose="location"> | ||
5821 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5822 | <context context-type="linenumber">1</context> | ||
5823 | </context-group> | ||
5824 | </trans-unit><trans-unit id="72c8edf6a50068a05bde70991e36b1e881f4ca54" datatype="html"> | ||
5825 | <source>MM</source><target state="new">MM</target> | ||
5826 | <context-group purpose="location"> | ||
5827 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5828 | <context context-type="linenumber">1</context> | ||
5829 | </context-group> | ||
5830 | </trans-unit><trans-unit id="41e62daa962947c0d23ded0981975d1bddf0bf38" datatype="html"> | ||
5831 | <source>Minutes</source><target state="new">Minutes</target> | ||
5832 | <context-group purpose="location"> | ||
5833 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5834 | <context context-type="linenumber">1</context> | ||
5835 | </context-group> | ||
5836 | </trans-unit><trans-unit id="cb74bc1d625a6c1742f0d7d47306cf495780c218" datatype="html"> | ||
5837 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
5838 | <context-group purpose="location"> | ||
5839 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5840 | <context context-type="linenumber">1</context> | ||
5841 | </context-group> | ||
5842 | </trans-unit><trans-unit id="147c7a19429da7d999e247d22e33fee370b1691b" datatype="html"> | ||
5843 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
5844 | <context-group purpose="location"> | ||
5845 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5846 | <context context-type="linenumber">1</context> | ||
5847 | </context-group> | ||
5848 | </trans-unit><trans-unit id="f5a4a3bc05e053f6732475d0e74875ec01c3a348" datatype="html"> | ||
5849 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
5850 | <context-group purpose="location"> | ||
5851 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5852 | <context context-type="linenumber">1</context> | ||
5853 | </context-group> | ||
5854 | </trans-unit><trans-unit id="c1a6899e529c096da5b660385d4e77fe1f7ad271" datatype="html"> | ||
5855 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
5856 | <context-group purpose="location"> | ||
5857 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5858 | <context context-type="linenumber">1</context> | ||
5859 | </context-group> | ||
5860 | </trans-unit><trans-unit id="ebe38d36a40a2383c5fefa9b4608ffbda08bd4a3" datatype="html"> | ||
5861 | <source>SS</source><target state="new">SS</target> | ||
5862 | <context-group purpose="location"> | ||
5863 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5864 | <context context-type="linenumber">1</context> | ||
5865 | </context-group> | ||
5866 | </trans-unit><trans-unit id="4f2ed9e71a7c981db3e50ae2fedb28aff2ec4e6c" datatype="html"> | ||
5867 | <source>Seconds</source><target state="new">Seconds</target> | ||
5868 | <context-group purpose="location"> | ||
5869 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5870 | <context context-type="linenumber">1</context> | ||
5871 | </context-group> | ||
5872 | </trans-unit><trans-unit id="912322ecee7d659d04dcf494a70e22e49d334b26" datatype="html"> | ||
5873 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
5874 | <context-group purpose="location"> | ||
5875 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5876 | <context context-type="linenumber">1</context> | ||
5877 | </context-group> | ||
5878 | </trans-unit><trans-unit id="5db47ac104294243a70eb9124fbea9d0004ddf69" datatype="html"> | ||
5879 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
5880 | <context-group purpose="location"> | ||
5881 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5882 | <context context-type="linenumber">1</context> | ||
5883 | </context-group> | ||
5884 | </trans-unit><trans-unit id="8d6e691e10306c1b34c6b26805151aaea320ef7f" datatype="html"> | ||
5885 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5886 | <context-group purpose="location"> | ||
5887 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5888 | <context context-type="linenumber">1</context> | ||
5889 | </context-group> | ||
5890 | </trans-unit><trans-unit id="69a1f176a93998876952adac57c3bc3863b6105e" datatype="html"> | ||
5891 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5892 | <context-group purpose="location"> | ||
5893 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5894 | <context context-type="linenumber">1</context> | ||
5895 | </context-group> | ||
5896 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
5897 | <source>Get help</source><target state="new">Get help</target> | 5741 | <source>Get help</source><target state="new">Get help</target> |
5898 | <context-group purpose="location"> | 5742 | <context-group purpose="location"> |
5899 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 5743 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> |
@@ -9436,7 +9280,193 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9436 | <source>Only users of this instance can see this video</source> | 9280 | <source>Only users of this instance can see this video</source> |
9437 | <target state="new">Only users of this instance can see this video</target> | 9281 | <target state="new">Only users of this instance can see this video</target> |
9438 | 9282 | ||
9439 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit> | 9283 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit><trans-unit id="ngb.alert.close" datatype="html"> |
9284 | <source>Close</source><target state="new">Close</target> | ||
9285 | <context-group purpose="location"> | ||
9286 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/alert/alert.ts</context> | ||
9287 | <context context-type="linenumber">74</context> | ||
9288 | </context-group> | ||
9289 | </trans-unit><trans-unit id="ngb.carousel.previous" datatype="html"> | ||
9290 | <source>Previous</source><target state="new">Previous</target> | ||
9291 | <context-group purpose="location"> | ||
9292 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9293 | <context context-type="linenumber">349</context> | ||
9294 | </context-group> | ||
9295 | </trans-unit><trans-unit id="ngb.carousel.next" datatype="html"> | ||
9296 | <source>Next</source><target state="new">Next</target> | ||
9297 | <context-group purpose="location"> | ||
9298 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9299 | <context context-type="linenumber">349</context> | ||
9300 | </context-group> | ||
9301 | </trans-unit><trans-unit id="ngb.datepicker.previous-month" datatype="html"> | ||
9302 | <source>Previous month</source><target state="new">Previous month</target> | ||
9303 | <context-group purpose="location"> | ||
9304 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation.ts</context> | ||
9305 | <context context-type="linenumber">69</context> | ||
9306 | </context-group> | ||
9307 | </trans-unit><trans-unit id="ngb.datepicker.next-month" datatype="html"> | ||
9308 | <source>Next month</source><target state="new">Next month</target> | ||
9309 | <context-group purpose="location"> | ||
9310 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-month.ts</context> | ||
9311 | <context context-type="linenumber">72</context> | ||
9312 | </context-group> | ||
9313 | </trans-unit><trans-unit id="ngb.datepicker.select-month" datatype="html"> | ||
9314 | <source>Select month</source><target state="new">Select month</target> | ||
9315 | <context-group purpose="location"> | ||
9316 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9317 | <context context-type="linenumber">74</context> | ||
9318 | </context-group> | ||
9319 | </trans-unit><trans-unit id="ngb.datepicker.select-year" datatype="html"> | ||
9320 | <source>Select year</source><target state="new">Select year</target> | ||
9321 | <context-group purpose="location"> | ||
9322 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9323 | <context context-type="linenumber">74</context> | ||
9324 | </context-group> | ||
9325 | </trans-unit><trans-unit id="ngb.pagination.first" datatype="html"> | ||
9326 | <source>««</source><target state="new">««</target> | ||
9327 | <context-group purpose="location"> | ||
9328 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9329 | <context context-type="linenumber">404</context> | ||
9330 | </context-group> | ||
9331 | </trans-unit><trans-unit id="ngb.pagination.previous" datatype="html"> | ||
9332 | <source>«</source><target state="new">«</target> | ||
9333 | <context-group purpose="location"> | ||
9334 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9335 | <context context-type="linenumber">404</context> | ||
9336 | </context-group> | ||
9337 | </trans-unit><trans-unit id="ngb.pagination.next" datatype="html"> | ||
9338 | <source>»</source><target state="new">»</target> | ||
9339 | <context-group purpose="location"> | ||
9340 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9341 | <context context-type="linenumber">404</context> | ||
9342 | </context-group> | ||
9343 | </trans-unit><trans-unit id="ngb.pagination.last" datatype="html"> | ||
9344 | <source>»»</source><target state="new">»»</target> | ||
9345 | <context-group purpose="location"> | ||
9346 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9347 | <context context-type="linenumber">404</context> | ||
9348 | </context-group> | ||
9349 | </trans-unit><trans-unit id="ngb.pagination.first-aria" datatype="html"> | ||
9350 | <source>First</source><target state="new">First</target> | ||
9351 | <context-group purpose="location"> | ||
9352 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9353 | <context context-type="linenumber">404</context> | ||
9354 | </context-group> | ||
9355 | </trans-unit><trans-unit id="ngb.pagination.previous-aria" datatype="html"> | ||
9356 | <source>Previous</source><target state="new">Previous</target> | ||
9357 | <context-group purpose="location"> | ||
9358 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9359 | <context context-type="linenumber">404</context> | ||
9360 | </context-group> | ||
9361 | </trans-unit><trans-unit id="ngb.pagination.next-aria" datatype="html"> | ||
9362 | <source>Next</source><target state="new">Next</target> | ||
9363 | <context-group purpose="location"> | ||
9364 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9365 | <context context-type="linenumber">404</context> | ||
9366 | </context-group> | ||
9367 | </trans-unit><trans-unit id="ngb.pagination.last-aria" datatype="html"> | ||
9368 | <source>Last</source><target state="new">Last</target> | ||
9369 | <context-group purpose="location"> | ||
9370 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9371 | <context context-type="linenumber">404</context> | ||
9372 | </context-group> | ||
9373 | </trans-unit><trans-unit id="ngb.progressbar.value" datatype="html"> | ||
9374 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9375 | <context-group purpose="location"> | ||
9376 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/progressbar/progressbar.ts</context> | ||
9377 | <context context-type="linenumber">101</context> | ||
9378 | </context-group> | ||
9379 | </trans-unit><trans-unit id="ngb.timepicker.HH" datatype="html"> | ||
9380 | <source>HH</source><target state="new">HH</target> | ||
9381 | <context-group purpose="location"> | ||
9382 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9383 | <context context-type="linenumber">296</context> | ||
9384 | </context-group> | ||
9385 | </trans-unit><trans-unit id="ngb.timepicker.hours" datatype="html"> | ||
9386 | <source>Hours</source><target state="new">Hours</target> | ||
9387 | <context-group purpose="location"> | ||
9388 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9389 | <context context-type="linenumber">296</context> | ||
9390 | </context-group> | ||
9391 | </trans-unit><trans-unit id="ngb.timepicker.MM" datatype="html"> | ||
9392 | <source>MM</source><target state="new">MM</target> | ||
9393 | <context-group purpose="location"> | ||
9394 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9395 | <context context-type="linenumber">296</context> | ||
9396 | </context-group> | ||
9397 | </trans-unit><trans-unit id="ngb.timepicker.minutes" datatype="html"> | ||
9398 | <source>Minutes</source><target state="new">Minutes</target> | ||
9399 | <context-group purpose="location"> | ||
9400 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9401 | <context context-type="linenumber">296</context> | ||
9402 | </context-group> | ||
9403 | </trans-unit><trans-unit id="ngb.timepicker.increment-hours" datatype="html"> | ||
9404 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
9405 | <context-group purpose="location"> | ||
9406 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9407 | <context context-type="linenumber">296</context> | ||
9408 | </context-group> | ||
9409 | </trans-unit><trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> | ||
9410 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
9411 | <context-group purpose="location"> | ||
9412 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9413 | <context context-type="linenumber">296</context> | ||
9414 | </context-group> | ||
9415 | </trans-unit><trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> | ||
9416 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
9417 | <context-group purpose="location"> | ||
9418 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9419 | <context context-type="linenumber">296</context> | ||
9420 | </context-group> | ||
9421 | </trans-unit><trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> | ||
9422 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
9423 | <context-group purpose="location"> | ||
9424 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9425 | <context context-type="linenumber">296</context> | ||
9426 | </context-group> | ||
9427 | </trans-unit><trans-unit id="ngb.timepicker.SS" datatype="html"> | ||
9428 | <source>SS</source><target state="new">SS</target> | ||
9429 | <context-group purpose="location"> | ||
9430 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9431 | <context context-type="linenumber">296</context> | ||
9432 | </context-group> | ||
9433 | </trans-unit><trans-unit id="ngb.timepicker.seconds" datatype="html"> | ||
9434 | <source>Seconds</source><target state="new">Seconds</target> | ||
9435 | <context-group purpose="location"> | ||
9436 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9437 | <context context-type="linenumber">296</context> | ||
9438 | </context-group> | ||
9439 | </trans-unit><trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> | ||
9440 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
9441 | <context-group purpose="location"> | ||
9442 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9443 | <context context-type="linenumber">296</context> | ||
9444 | </context-group> | ||
9445 | </trans-unit><trans-unit id="ngb.timepicker.decrement-seconds" datatype="html"> | ||
9446 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
9447 | <context-group purpose="location"> | ||
9448 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9449 | <context context-type="linenumber">296</context> | ||
9450 | </context-group> | ||
9451 | </trans-unit><trans-unit id="ngb.timepicker.PM" datatype="html"> | ||
9452 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9453 | <context-group purpose="location"> | ||
9454 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9455 | <context context-type="linenumber">296</context> | ||
9456 | </context-group> | ||
9457 | </trans-unit><trans-unit id="ngb.timepicker.AM" datatype="html"> | ||
9458 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9459 | <context-group purpose="location"> | ||
9460 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9461 | <context context-type="linenumber">296</context> | ||
9462 | </context-group> | ||
9463 | </trans-unit><trans-unit id="ngb.toast.close-aria" datatype="html"> | ||
9464 | <source>Close</source><target state="new">Close</target> | ||
9465 | <context-group purpose="location"> | ||
9466 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/toast/toast.ts</context> | ||
9467 | <context context-type="linenumber">137</context> | ||
9468 | </context-group> | ||
9469 | </trans-unit> | ||
9440 | <trans-unit id="5210096066382592800"> | 9470 | <trans-unit id="5210096066382592800"> |
9441 | <source>Video to import updated.</source> | 9471 | <source>Video to import updated.</source> |
9442 | <target>Video naar import bijgewerkt.</target> | 9472 | <target>Video naar import bijgewerkt.</target> |
diff --git a/client/src/locale/angular.oc.xlf b/client/src/locale/angular.oc.xlf index a395e5d88..fbbcc5927 100644 --- a/client/src/locale/angular.oc.xlf +++ b/client/src/locale/angular.oc.xlf | |||
@@ -1267,13 +1267,7 @@ The link will expire within 1 hour.</target> | |||
1267 | <source>Close</source> | 1267 | <source>Close</source> |
1268 | <target>Tampar</target> | 1268 | <target>Tampar</target> |
1269 | 1269 | ||
1270 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="680d5c75b7fd8d37961083608b9fcdc4167b4c43" datatype="html"> | 1270 | <context-group purpose="location"><context context-type="sourcefile">../app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1271 | <source>Previous</source><target state="new">Previous</target> | ||
1272 | <context-group purpose="location"> | ||
1273 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
1274 | <context context-type="linenumber">1</context> | ||
1275 | </context-group> | ||
1276 | </trans-unit> | ||
1277 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> | 1271 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> |
1278 | <source>Configure</source> | 1272 | <source>Configure</source> |
1279 | <target state="new"> | 1273 | <target state="new"> |
@@ -5686,157 +5680,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5686 | <source>Next</source> | 5680 | <source>Next</source> |
5687 | <target>Seguent</target> | 5681 | <target>Seguent</target> |
5688 | 5682 | ||
5689 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="c3b08b07b5ab98e7cdcf18df39355690ab7d3884" datatype="html"> | 5683 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit><trans-unit id="9082008222523034483" datatype="html"> |
5690 | <source>Previous month</source><target state="new">Previous month</target> | ||
5691 | <context-group purpose="location"> | ||
5692 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5693 | <context context-type="linenumber">1</context> | ||
5694 | </context-group> | ||
5695 | </trans-unit><trans-unit id="4bd046985cfe13040d5ef0cd881edce0968a111a" datatype="html"> | ||
5696 | <source>Next month</source><target state="new">Next month</target> | ||
5697 | <context-group purpose="location"> | ||
5698 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5699 | <context context-type="linenumber">1</context> | ||
5700 | </context-group> | ||
5701 | </trans-unit><trans-unit id="1dbc84807f35518112f62e5775d1daebd3d8462b" datatype="html"> | ||
5702 | <source>Select month</source><target state="new">Select month</target> | ||
5703 | <context-group purpose="location"> | ||
5704 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5705 | <context context-type="linenumber">1</context> | ||
5706 | </context-group> | ||
5707 | </trans-unit><trans-unit id="8ceb09d002bf0c5d1cac171dfbffe1805d2b3962" datatype="html"> | ||
5708 | <source>Select year</source><target state="new">Select year</target> | ||
5709 | <context-group purpose="location"> | ||
5710 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5711 | <context context-type="linenumber">1</context> | ||
5712 | </context-group> | ||
5713 | </trans-unit><trans-unit id="656506dfd46380956a655f919f1498d018f75ca0" datatype="html"> | ||
5714 | <source>««</source><target state="new">««</target> | ||
5715 | <context-group purpose="location"> | ||
5716 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5717 | <context context-type="linenumber">1</context> | ||
5718 | </context-group> | ||
5719 | </trans-unit><trans-unit id="6e52b6ee77a4848d899dd21b591c6fd499e3aef3" datatype="html"> | ||
5720 | <source>«</source><target state="new">«</target> | ||
5721 | <context-group purpose="location"> | ||
5722 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5723 | <context context-type="linenumber">1</context> | ||
5724 | </context-group> | ||
5725 | </trans-unit><trans-unit id="ba9cbb4ff311464308a3627e4f1c3345d9fe6d7d" datatype="html"> | ||
5726 | <source>»</source><target state="new">»</target> | ||
5727 | <context-group purpose="location"> | ||
5728 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5729 | <context context-type="linenumber">1</context> | ||
5730 | </context-group> | ||
5731 | </trans-unit><trans-unit id="49f27a460bc97e7e00be5b37098bfa79884fc7d9" datatype="html"> | ||
5732 | <source>»»</source><target state="new">»»</target> | ||
5733 | <context-group purpose="location"> | ||
5734 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5735 | <context context-type="linenumber">1</context> | ||
5736 | </context-group> | ||
5737 | </trans-unit><trans-unit id="f2f852318759c6396b5d3d17031d53817d7b38cc" datatype="html"> | ||
5738 | <source>First</source><target state="new">First</target> | ||
5739 | <context-group purpose="location"> | ||
5740 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5741 | <context context-type="linenumber">1</context> | ||
5742 | </context-group> | ||
5743 | </trans-unit><trans-unit id="5c729788ba138508aca1bec050b610f7bf81db3e" datatype="html"> | ||
5744 | <source>Last</source><target state="new">Last</target> | ||
5745 | <context-group purpose="location"> | ||
5746 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5747 | <context context-type="linenumber">1</context> | ||
5748 | </context-group> | ||
5749 | </trans-unit><trans-unit id="f8e9a947b9db4252c0e9905765338712f2fd032f" datatype="html"> | ||
5750 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5751 | <context-group purpose="location"> | ||
5752 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5753 | <context context-type="linenumber">1</context> | ||
5754 | </context-group> | ||
5755 | </trans-unit><trans-unit id="ce676ab1d6d98f85c836381cf100a4a91ef95a1f" datatype="html"> | ||
5756 | <source>HH</source><target state="new">HH</target> | ||
5757 | <context-group purpose="location"> | ||
5758 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5759 | <context context-type="linenumber">1</context> | ||
5760 | </context-group> | ||
5761 | </trans-unit><trans-unit id="3bbce5fef7e1151da052a4e529453edb340e3912" datatype="html"> | ||
5762 | <source>Hours</source><target state="new">Hours</target> | ||
5763 | <context-group purpose="location"> | ||
5764 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5765 | <context context-type="linenumber">1</context> | ||
5766 | </context-group> | ||
5767 | </trans-unit><trans-unit id="72c8edf6a50068a05bde70991e36b1e881f4ca54" datatype="html"> | ||
5768 | <source>MM</source><target state="new">MM</target> | ||
5769 | <context-group purpose="location"> | ||
5770 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5771 | <context context-type="linenumber">1</context> | ||
5772 | </context-group> | ||
5773 | </trans-unit><trans-unit id="41e62daa962947c0d23ded0981975d1bddf0bf38" datatype="html"> | ||
5774 | <source>Minutes</source><target state="new">Minutes</target> | ||
5775 | <context-group purpose="location"> | ||
5776 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5777 | <context context-type="linenumber">1</context> | ||
5778 | </context-group> | ||
5779 | </trans-unit><trans-unit id="cb74bc1d625a6c1742f0d7d47306cf495780c218" datatype="html"> | ||
5780 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
5781 | <context-group purpose="location"> | ||
5782 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5783 | <context context-type="linenumber">1</context> | ||
5784 | </context-group> | ||
5785 | </trans-unit><trans-unit id="147c7a19429da7d999e247d22e33fee370b1691b" datatype="html"> | ||
5786 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
5787 | <context-group purpose="location"> | ||
5788 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5789 | <context context-type="linenumber">1</context> | ||
5790 | </context-group> | ||
5791 | </trans-unit><trans-unit id="f5a4a3bc05e053f6732475d0e74875ec01c3a348" datatype="html"> | ||
5792 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
5793 | <context-group purpose="location"> | ||
5794 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5795 | <context context-type="linenumber">1</context> | ||
5796 | </context-group> | ||
5797 | </trans-unit><trans-unit id="c1a6899e529c096da5b660385d4e77fe1f7ad271" datatype="html"> | ||
5798 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
5799 | <context-group purpose="location"> | ||
5800 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5801 | <context context-type="linenumber">1</context> | ||
5802 | </context-group> | ||
5803 | </trans-unit><trans-unit id="ebe38d36a40a2383c5fefa9b4608ffbda08bd4a3" datatype="html"> | ||
5804 | <source>SS</source><target state="new">SS</target> | ||
5805 | <context-group purpose="location"> | ||
5806 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5807 | <context context-type="linenumber">1</context> | ||
5808 | </context-group> | ||
5809 | </trans-unit><trans-unit id="4f2ed9e71a7c981db3e50ae2fedb28aff2ec4e6c" datatype="html"> | ||
5810 | <source>Seconds</source><target state="new">Seconds</target> | ||
5811 | <context-group purpose="location"> | ||
5812 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5813 | <context context-type="linenumber">1</context> | ||
5814 | </context-group> | ||
5815 | </trans-unit><trans-unit id="912322ecee7d659d04dcf494a70e22e49d334b26" datatype="html"> | ||
5816 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
5817 | <context-group purpose="location"> | ||
5818 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5819 | <context context-type="linenumber">1</context> | ||
5820 | </context-group> | ||
5821 | </trans-unit><trans-unit id="5db47ac104294243a70eb9124fbea9d0004ddf69" datatype="html"> | ||
5822 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
5823 | <context-group purpose="location"> | ||
5824 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5825 | <context context-type="linenumber">1</context> | ||
5826 | </context-group> | ||
5827 | </trans-unit><trans-unit id="8d6e691e10306c1b34c6b26805151aaea320ef7f" datatype="html"> | ||
5828 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5829 | <context-group purpose="location"> | ||
5830 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5831 | <context context-type="linenumber">1</context> | ||
5832 | </context-group> | ||
5833 | </trans-unit><trans-unit id="69a1f176a93998876952adac57c3bc3863b6105e" datatype="html"> | ||
5834 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5835 | <context-group purpose="location"> | ||
5836 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5837 | <context context-type="linenumber">1</context> | ||
5838 | </context-group> | ||
5839 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
5840 | <source>Get help</source><target state="new">Get help</target> | 5684 | <source>Get help</source><target state="new">Get help</target> |
5841 | <context-group purpose="location"> | 5685 | <context-group purpose="location"> |
5842 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 5686 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> |
@@ -9373,7 +9217,193 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9373 | <source>Only users of this instance can see this video</source> | 9217 | <source>Only users of this instance can see this video</source> |
9374 | <target state="translated">Pas que los utilizaires d’aquesta instància pòdon veire aquesta vidèo</target> | 9218 | <target state="translated">Pas que los utilizaires d’aquesta instància pòdon veire aquesta vidèo</target> |
9375 | 9219 | ||
9376 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit> | 9220 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit><trans-unit id="ngb.alert.close" datatype="html"> |
9221 | <source>Close</source><target state="new">Close</target> | ||
9222 | <context-group purpose="location"> | ||
9223 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/alert/alert.ts</context> | ||
9224 | <context context-type="linenumber">74</context> | ||
9225 | </context-group> | ||
9226 | </trans-unit><trans-unit id="ngb.carousel.previous" datatype="html"> | ||
9227 | <source>Previous</source><target state="new">Previous</target> | ||
9228 | <context-group purpose="location"> | ||
9229 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9230 | <context context-type="linenumber">349</context> | ||
9231 | </context-group> | ||
9232 | </trans-unit><trans-unit id="ngb.carousel.next" datatype="html"> | ||
9233 | <source>Next</source><target state="new">Next</target> | ||
9234 | <context-group purpose="location"> | ||
9235 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9236 | <context context-type="linenumber">349</context> | ||
9237 | </context-group> | ||
9238 | </trans-unit><trans-unit id="ngb.datepicker.previous-month" datatype="html"> | ||
9239 | <source>Previous month</source><target state="new">Previous month</target> | ||
9240 | <context-group purpose="location"> | ||
9241 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation.ts</context> | ||
9242 | <context context-type="linenumber">69</context> | ||
9243 | </context-group> | ||
9244 | </trans-unit><trans-unit id="ngb.datepicker.next-month" datatype="html"> | ||
9245 | <source>Next month</source><target state="new">Next month</target> | ||
9246 | <context-group purpose="location"> | ||
9247 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-month.ts</context> | ||
9248 | <context context-type="linenumber">72</context> | ||
9249 | </context-group> | ||
9250 | </trans-unit><trans-unit id="ngb.datepicker.select-month" datatype="html"> | ||
9251 | <source>Select month</source><target state="new">Select month</target> | ||
9252 | <context-group purpose="location"> | ||
9253 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9254 | <context context-type="linenumber">74</context> | ||
9255 | </context-group> | ||
9256 | </trans-unit><trans-unit id="ngb.datepicker.select-year" datatype="html"> | ||
9257 | <source>Select year</source><target state="new">Select year</target> | ||
9258 | <context-group purpose="location"> | ||
9259 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9260 | <context context-type="linenumber">74</context> | ||
9261 | </context-group> | ||
9262 | </trans-unit><trans-unit id="ngb.pagination.first" datatype="html"> | ||
9263 | <source>««</source><target state="new">««</target> | ||
9264 | <context-group purpose="location"> | ||
9265 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9266 | <context context-type="linenumber">404</context> | ||
9267 | </context-group> | ||
9268 | </trans-unit><trans-unit id="ngb.pagination.previous" datatype="html"> | ||
9269 | <source>«</source><target state="new">«</target> | ||
9270 | <context-group purpose="location"> | ||
9271 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9272 | <context context-type="linenumber">404</context> | ||
9273 | </context-group> | ||
9274 | </trans-unit><trans-unit id="ngb.pagination.next" datatype="html"> | ||
9275 | <source>»</source><target state="new">»</target> | ||
9276 | <context-group purpose="location"> | ||
9277 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9278 | <context context-type="linenumber">404</context> | ||
9279 | </context-group> | ||
9280 | </trans-unit><trans-unit id="ngb.pagination.last" datatype="html"> | ||
9281 | <source>»»</source><target state="new">»»</target> | ||
9282 | <context-group purpose="location"> | ||
9283 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9284 | <context context-type="linenumber">404</context> | ||
9285 | </context-group> | ||
9286 | </trans-unit><trans-unit id="ngb.pagination.first-aria" datatype="html"> | ||
9287 | <source>First</source><target state="new">First</target> | ||
9288 | <context-group purpose="location"> | ||
9289 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9290 | <context context-type="linenumber">404</context> | ||
9291 | </context-group> | ||
9292 | </trans-unit><trans-unit id="ngb.pagination.previous-aria" datatype="html"> | ||
9293 | <source>Previous</source><target state="new">Previous</target> | ||
9294 | <context-group purpose="location"> | ||
9295 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9296 | <context context-type="linenumber">404</context> | ||
9297 | </context-group> | ||
9298 | </trans-unit><trans-unit id="ngb.pagination.next-aria" datatype="html"> | ||
9299 | <source>Next</source><target state="new">Next</target> | ||
9300 | <context-group purpose="location"> | ||
9301 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9302 | <context context-type="linenumber">404</context> | ||
9303 | </context-group> | ||
9304 | </trans-unit><trans-unit id="ngb.pagination.last-aria" datatype="html"> | ||
9305 | <source>Last</source><target state="new">Last</target> | ||
9306 | <context-group purpose="location"> | ||
9307 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9308 | <context context-type="linenumber">404</context> | ||
9309 | </context-group> | ||
9310 | </trans-unit><trans-unit id="ngb.progressbar.value" datatype="html"> | ||
9311 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9312 | <context-group purpose="location"> | ||
9313 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/progressbar/progressbar.ts</context> | ||
9314 | <context context-type="linenumber">101</context> | ||
9315 | </context-group> | ||
9316 | </trans-unit><trans-unit id="ngb.timepicker.HH" datatype="html"> | ||
9317 | <source>HH</source><target state="new">HH</target> | ||
9318 | <context-group purpose="location"> | ||
9319 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9320 | <context context-type="linenumber">296</context> | ||
9321 | </context-group> | ||
9322 | </trans-unit><trans-unit id="ngb.timepicker.hours" datatype="html"> | ||
9323 | <source>Hours</source><target state="new">Hours</target> | ||
9324 | <context-group purpose="location"> | ||
9325 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9326 | <context context-type="linenumber">296</context> | ||
9327 | </context-group> | ||
9328 | </trans-unit><trans-unit id="ngb.timepicker.MM" datatype="html"> | ||
9329 | <source>MM</source><target state="new">MM</target> | ||
9330 | <context-group purpose="location"> | ||
9331 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9332 | <context context-type="linenumber">296</context> | ||
9333 | </context-group> | ||
9334 | </trans-unit><trans-unit id="ngb.timepicker.minutes" datatype="html"> | ||
9335 | <source>Minutes</source><target state="new">Minutes</target> | ||
9336 | <context-group purpose="location"> | ||
9337 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9338 | <context context-type="linenumber">296</context> | ||
9339 | </context-group> | ||
9340 | </trans-unit><trans-unit id="ngb.timepicker.increment-hours" datatype="html"> | ||
9341 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
9342 | <context-group purpose="location"> | ||
9343 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9344 | <context context-type="linenumber">296</context> | ||
9345 | </context-group> | ||
9346 | </trans-unit><trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> | ||
9347 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
9348 | <context-group purpose="location"> | ||
9349 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9350 | <context context-type="linenumber">296</context> | ||
9351 | </context-group> | ||
9352 | </trans-unit><trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> | ||
9353 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
9354 | <context-group purpose="location"> | ||
9355 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9356 | <context context-type="linenumber">296</context> | ||
9357 | </context-group> | ||
9358 | </trans-unit><trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> | ||
9359 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
9360 | <context-group purpose="location"> | ||
9361 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9362 | <context context-type="linenumber">296</context> | ||
9363 | </context-group> | ||
9364 | </trans-unit><trans-unit id="ngb.timepicker.SS" datatype="html"> | ||
9365 | <source>SS</source><target state="new">SS</target> | ||
9366 | <context-group purpose="location"> | ||
9367 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9368 | <context context-type="linenumber">296</context> | ||
9369 | </context-group> | ||
9370 | </trans-unit><trans-unit id="ngb.timepicker.seconds" datatype="html"> | ||
9371 | <source>Seconds</source><target state="new">Seconds</target> | ||
9372 | <context-group purpose="location"> | ||
9373 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9374 | <context context-type="linenumber">296</context> | ||
9375 | </context-group> | ||
9376 | </trans-unit><trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> | ||
9377 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
9378 | <context-group purpose="location"> | ||
9379 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9380 | <context context-type="linenumber">296</context> | ||
9381 | </context-group> | ||
9382 | </trans-unit><trans-unit id="ngb.timepicker.decrement-seconds" datatype="html"> | ||
9383 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
9384 | <context-group purpose="location"> | ||
9385 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9386 | <context context-type="linenumber">296</context> | ||
9387 | </context-group> | ||
9388 | </trans-unit><trans-unit id="ngb.timepicker.PM" datatype="html"> | ||
9389 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9390 | <context-group purpose="location"> | ||
9391 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9392 | <context context-type="linenumber">296</context> | ||
9393 | </context-group> | ||
9394 | </trans-unit><trans-unit id="ngb.timepicker.AM" datatype="html"> | ||
9395 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9396 | <context-group purpose="location"> | ||
9397 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9398 | <context context-type="linenumber">296</context> | ||
9399 | </context-group> | ||
9400 | </trans-unit><trans-unit id="ngb.toast.close-aria" datatype="html"> | ||
9401 | <source>Close</source><target state="new">Close</target> | ||
9402 | <context-group purpose="location"> | ||
9403 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/toast/toast.ts</context> | ||
9404 | <context context-type="linenumber">137</context> | ||
9405 | </context-group> | ||
9406 | </trans-unit> | ||
9377 | <trans-unit id="5210096066382592800"> | 9407 | <trans-unit id="5210096066382592800"> |
9378 | <source>Video to import updated.</source> | 9408 | <source>Video to import updated.</source> |
9379 | <target>Vidèo d’importar actualizada.</target> | 9409 | <target>Vidèo d’importar actualizada.</target> |
diff --git a/client/src/locale/angular.pl-PL.xlf b/client/src/locale/angular.pl-PL.xlf index b064d83a3..2af2bd24d 100644 --- a/client/src/locale/angular.pl-PL.xlf +++ b/client/src/locale/angular.pl-PL.xlf | |||
@@ -1260,13 +1260,7 @@ The link will expire within 1 hour.</target> | |||
1260 | <source>Close</source> | 1260 | <source>Close</source> |
1261 | <target>Zamknij</target> | 1261 | <target>Zamknij</target> |
1262 | 1262 | ||
1263 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="680d5c75b7fd8d37961083608b9fcdc4167b4c43" datatype="html"> | 1263 | <context-group purpose="location"><context context-type="sourcefile">../app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1264 | <source>Previous</source><target state="new">Previous</target> | ||
1265 | <context-group purpose="location"> | ||
1266 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
1267 | <context context-type="linenumber">1</context> | ||
1268 | </context-group> | ||
1269 | </trans-unit> | ||
1270 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> | 1264 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> |
1271 | <source> | 1265 | <source> |
1272 | Configure | 1266 | Configure |
@@ -5555,157 +5549,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5555 | <source>Next</source> | 5549 | <source>Next</source> |
5556 | <target state="translated">Następny</target> | 5550 | <target state="translated">Następny</target> |
5557 | 5551 | ||
5558 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="c3b08b07b5ab98e7cdcf18df39355690ab7d3884" datatype="html"> | 5552 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit><trans-unit id="9082008222523034483" datatype="html"> |
5559 | <source>Previous month</source><target state="new">Previous month</target> | ||
5560 | <context-group purpose="location"> | ||
5561 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5562 | <context context-type="linenumber">1</context> | ||
5563 | </context-group> | ||
5564 | </trans-unit><trans-unit id="4bd046985cfe13040d5ef0cd881edce0968a111a" datatype="html"> | ||
5565 | <source>Next month</source><target state="new">Next month</target> | ||
5566 | <context-group purpose="location"> | ||
5567 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5568 | <context context-type="linenumber">1</context> | ||
5569 | </context-group> | ||
5570 | </trans-unit><trans-unit id="1dbc84807f35518112f62e5775d1daebd3d8462b" datatype="html"> | ||
5571 | <source>Select month</source><target state="new">Select month</target> | ||
5572 | <context-group purpose="location"> | ||
5573 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5574 | <context context-type="linenumber">1</context> | ||
5575 | </context-group> | ||
5576 | </trans-unit><trans-unit id="8ceb09d002bf0c5d1cac171dfbffe1805d2b3962" datatype="html"> | ||
5577 | <source>Select year</source><target state="new">Select year</target> | ||
5578 | <context-group purpose="location"> | ||
5579 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5580 | <context context-type="linenumber">1</context> | ||
5581 | </context-group> | ||
5582 | </trans-unit><trans-unit id="656506dfd46380956a655f919f1498d018f75ca0" datatype="html"> | ||
5583 | <source>««</source><target state="new">««</target> | ||
5584 | <context-group purpose="location"> | ||
5585 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5586 | <context context-type="linenumber">1</context> | ||
5587 | </context-group> | ||
5588 | </trans-unit><trans-unit id="6e52b6ee77a4848d899dd21b591c6fd499e3aef3" datatype="html"> | ||
5589 | <source>«</source><target state="new">«</target> | ||
5590 | <context-group purpose="location"> | ||
5591 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5592 | <context context-type="linenumber">1</context> | ||
5593 | </context-group> | ||
5594 | </trans-unit><trans-unit id="ba9cbb4ff311464308a3627e4f1c3345d9fe6d7d" datatype="html"> | ||
5595 | <source>»</source><target state="new">»</target> | ||
5596 | <context-group purpose="location"> | ||
5597 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5598 | <context context-type="linenumber">1</context> | ||
5599 | </context-group> | ||
5600 | </trans-unit><trans-unit id="49f27a460bc97e7e00be5b37098bfa79884fc7d9" datatype="html"> | ||
5601 | <source>»»</source><target state="new">»»</target> | ||
5602 | <context-group purpose="location"> | ||
5603 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5604 | <context context-type="linenumber">1</context> | ||
5605 | </context-group> | ||
5606 | </trans-unit><trans-unit id="f2f852318759c6396b5d3d17031d53817d7b38cc" datatype="html"> | ||
5607 | <source>First</source><target state="new">First</target> | ||
5608 | <context-group purpose="location"> | ||
5609 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5610 | <context context-type="linenumber">1</context> | ||
5611 | </context-group> | ||
5612 | </trans-unit><trans-unit id="5c729788ba138508aca1bec050b610f7bf81db3e" datatype="html"> | ||
5613 | <source>Last</source><target state="new">Last</target> | ||
5614 | <context-group purpose="location"> | ||
5615 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5616 | <context context-type="linenumber">1</context> | ||
5617 | </context-group> | ||
5618 | </trans-unit><trans-unit id="f8e9a947b9db4252c0e9905765338712f2fd032f" datatype="html"> | ||
5619 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5620 | <context-group purpose="location"> | ||
5621 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5622 | <context context-type="linenumber">1</context> | ||
5623 | </context-group> | ||
5624 | </trans-unit><trans-unit id="ce676ab1d6d98f85c836381cf100a4a91ef95a1f" datatype="html"> | ||
5625 | <source>HH</source><target state="new">HH</target> | ||
5626 | <context-group purpose="location"> | ||
5627 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5628 | <context context-type="linenumber">1</context> | ||
5629 | </context-group> | ||
5630 | </trans-unit><trans-unit id="3bbce5fef7e1151da052a4e529453edb340e3912" datatype="html"> | ||
5631 | <source>Hours</source><target state="new">Hours</target> | ||
5632 | <context-group purpose="location"> | ||
5633 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5634 | <context context-type="linenumber">1</context> | ||
5635 | </context-group> | ||
5636 | </trans-unit><trans-unit id="72c8edf6a50068a05bde70991e36b1e881f4ca54" datatype="html"> | ||
5637 | <source>MM</source><target state="new">MM</target> | ||
5638 | <context-group purpose="location"> | ||
5639 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5640 | <context context-type="linenumber">1</context> | ||
5641 | </context-group> | ||
5642 | </trans-unit><trans-unit id="41e62daa962947c0d23ded0981975d1bddf0bf38" datatype="html"> | ||
5643 | <source>Minutes</source><target state="new">Minutes</target> | ||
5644 | <context-group purpose="location"> | ||
5645 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5646 | <context context-type="linenumber">1</context> | ||
5647 | </context-group> | ||
5648 | </trans-unit><trans-unit id="cb74bc1d625a6c1742f0d7d47306cf495780c218" datatype="html"> | ||
5649 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
5650 | <context-group purpose="location"> | ||
5651 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5652 | <context context-type="linenumber">1</context> | ||
5653 | </context-group> | ||
5654 | </trans-unit><trans-unit id="147c7a19429da7d999e247d22e33fee370b1691b" datatype="html"> | ||
5655 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
5656 | <context-group purpose="location"> | ||
5657 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5658 | <context context-type="linenumber">1</context> | ||
5659 | </context-group> | ||
5660 | </trans-unit><trans-unit id="f5a4a3bc05e053f6732475d0e74875ec01c3a348" datatype="html"> | ||
5661 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
5662 | <context-group purpose="location"> | ||
5663 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5664 | <context context-type="linenumber">1</context> | ||
5665 | </context-group> | ||
5666 | </trans-unit><trans-unit id="c1a6899e529c096da5b660385d4e77fe1f7ad271" datatype="html"> | ||
5667 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
5668 | <context-group purpose="location"> | ||
5669 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5670 | <context context-type="linenumber">1</context> | ||
5671 | </context-group> | ||
5672 | </trans-unit><trans-unit id="ebe38d36a40a2383c5fefa9b4608ffbda08bd4a3" datatype="html"> | ||
5673 | <source>SS</source><target state="new">SS</target> | ||
5674 | <context-group purpose="location"> | ||
5675 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5676 | <context context-type="linenumber">1</context> | ||
5677 | </context-group> | ||
5678 | </trans-unit><trans-unit id="4f2ed9e71a7c981db3e50ae2fedb28aff2ec4e6c" datatype="html"> | ||
5679 | <source>Seconds</source><target state="new">Seconds</target> | ||
5680 | <context-group purpose="location"> | ||
5681 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5682 | <context context-type="linenumber">1</context> | ||
5683 | </context-group> | ||
5684 | </trans-unit><trans-unit id="912322ecee7d659d04dcf494a70e22e49d334b26" datatype="html"> | ||
5685 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
5686 | <context-group purpose="location"> | ||
5687 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5688 | <context context-type="linenumber">1</context> | ||
5689 | </context-group> | ||
5690 | </trans-unit><trans-unit id="5db47ac104294243a70eb9124fbea9d0004ddf69" datatype="html"> | ||
5691 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
5692 | <context-group purpose="location"> | ||
5693 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5694 | <context context-type="linenumber">1</context> | ||
5695 | </context-group> | ||
5696 | </trans-unit><trans-unit id="8d6e691e10306c1b34c6b26805151aaea320ef7f" datatype="html"> | ||
5697 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5698 | <context-group purpose="location"> | ||
5699 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5700 | <context context-type="linenumber">1</context> | ||
5701 | </context-group> | ||
5702 | </trans-unit><trans-unit id="69a1f176a93998876952adac57c3bc3863b6105e" datatype="html"> | ||
5703 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5704 | <context-group purpose="location"> | ||
5705 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5706 | <context context-type="linenumber">1</context> | ||
5707 | </context-group> | ||
5708 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
5709 | <source>Get help</source><target state="new">Get help</target> | 5553 | <source>Get help</source><target state="new">Get help</target> |
5710 | <context-group purpose="location"> | 5554 | <context-group purpose="location"> |
5711 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 5555 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> |
@@ -9229,7 +9073,193 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9229 | <source>Only users of this instance can see this video</source> | 9073 | <source>Only users of this instance can see this video</source> |
9230 | <target state="translated">Tylko użytkownicy tej instancji mogą zobaczyć ten film</target> | 9074 | <target state="translated">Tylko użytkownicy tej instancji mogą zobaczyć ten film</target> |
9231 | 9075 | ||
9232 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit> | 9076 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit><trans-unit id="ngb.alert.close" datatype="html"> |
9077 | <source>Close</source><target state="new">Close</target> | ||
9078 | <context-group purpose="location"> | ||
9079 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/alert/alert.ts</context> | ||
9080 | <context context-type="linenumber">74</context> | ||
9081 | </context-group> | ||
9082 | </trans-unit><trans-unit id="ngb.carousel.previous" datatype="html"> | ||
9083 | <source>Previous</source><target state="new">Previous</target> | ||
9084 | <context-group purpose="location"> | ||
9085 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9086 | <context context-type="linenumber">349</context> | ||
9087 | </context-group> | ||
9088 | </trans-unit><trans-unit id="ngb.carousel.next" datatype="html"> | ||
9089 | <source>Next</source><target state="new">Next</target> | ||
9090 | <context-group purpose="location"> | ||
9091 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9092 | <context context-type="linenumber">349</context> | ||
9093 | </context-group> | ||
9094 | </trans-unit><trans-unit id="ngb.datepicker.previous-month" datatype="html"> | ||
9095 | <source>Previous month</source><target state="new">Previous month</target> | ||
9096 | <context-group purpose="location"> | ||
9097 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation.ts</context> | ||
9098 | <context context-type="linenumber">69</context> | ||
9099 | </context-group> | ||
9100 | </trans-unit><trans-unit id="ngb.datepicker.next-month" datatype="html"> | ||
9101 | <source>Next month</source><target state="new">Next month</target> | ||
9102 | <context-group purpose="location"> | ||
9103 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-month.ts</context> | ||
9104 | <context context-type="linenumber">72</context> | ||
9105 | </context-group> | ||
9106 | </trans-unit><trans-unit id="ngb.datepicker.select-month" datatype="html"> | ||
9107 | <source>Select month</source><target state="new">Select month</target> | ||
9108 | <context-group purpose="location"> | ||
9109 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9110 | <context context-type="linenumber">74</context> | ||
9111 | </context-group> | ||
9112 | </trans-unit><trans-unit id="ngb.datepicker.select-year" datatype="html"> | ||
9113 | <source>Select year</source><target state="new">Select year</target> | ||
9114 | <context-group purpose="location"> | ||
9115 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9116 | <context context-type="linenumber">74</context> | ||
9117 | </context-group> | ||
9118 | </trans-unit><trans-unit id="ngb.pagination.first" datatype="html"> | ||
9119 | <source>««</source><target state="new">««</target> | ||
9120 | <context-group purpose="location"> | ||
9121 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9122 | <context context-type="linenumber">404</context> | ||
9123 | </context-group> | ||
9124 | </trans-unit><trans-unit id="ngb.pagination.previous" datatype="html"> | ||
9125 | <source>«</source><target state="new">«</target> | ||
9126 | <context-group purpose="location"> | ||
9127 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9128 | <context context-type="linenumber">404</context> | ||
9129 | </context-group> | ||
9130 | </trans-unit><trans-unit id="ngb.pagination.next" datatype="html"> | ||
9131 | <source>»</source><target state="new">»</target> | ||
9132 | <context-group purpose="location"> | ||
9133 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9134 | <context context-type="linenumber">404</context> | ||
9135 | </context-group> | ||
9136 | </trans-unit><trans-unit id="ngb.pagination.last" datatype="html"> | ||
9137 | <source>»»</source><target state="new">»»</target> | ||
9138 | <context-group purpose="location"> | ||
9139 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9140 | <context context-type="linenumber">404</context> | ||
9141 | </context-group> | ||
9142 | </trans-unit><trans-unit id="ngb.pagination.first-aria" datatype="html"> | ||
9143 | <source>First</source><target state="new">First</target> | ||
9144 | <context-group purpose="location"> | ||
9145 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9146 | <context context-type="linenumber">404</context> | ||
9147 | </context-group> | ||
9148 | </trans-unit><trans-unit id="ngb.pagination.previous-aria" datatype="html"> | ||
9149 | <source>Previous</source><target state="new">Previous</target> | ||
9150 | <context-group purpose="location"> | ||
9151 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9152 | <context context-type="linenumber">404</context> | ||
9153 | </context-group> | ||
9154 | </trans-unit><trans-unit id="ngb.pagination.next-aria" datatype="html"> | ||
9155 | <source>Next</source><target state="new">Next</target> | ||
9156 | <context-group purpose="location"> | ||
9157 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9158 | <context context-type="linenumber">404</context> | ||
9159 | </context-group> | ||
9160 | </trans-unit><trans-unit id="ngb.pagination.last-aria" datatype="html"> | ||
9161 | <source>Last</source><target state="new">Last</target> | ||
9162 | <context-group purpose="location"> | ||
9163 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9164 | <context context-type="linenumber">404</context> | ||
9165 | </context-group> | ||
9166 | </trans-unit><trans-unit id="ngb.progressbar.value" datatype="html"> | ||
9167 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9168 | <context-group purpose="location"> | ||
9169 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/progressbar/progressbar.ts</context> | ||
9170 | <context context-type="linenumber">101</context> | ||
9171 | </context-group> | ||
9172 | </trans-unit><trans-unit id="ngb.timepicker.HH" datatype="html"> | ||
9173 | <source>HH</source><target state="new">HH</target> | ||
9174 | <context-group purpose="location"> | ||
9175 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9176 | <context context-type="linenumber">296</context> | ||
9177 | </context-group> | ||
9178 | </trans-unit><trans-unit id="ngb.timepicker.hours" datatype="html"> | ||
9179 | <source>Hours</source><target state="new">Hours</target> | ||
9180 | <context-group purpose="location"> | ||
9181 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9182 | <context context-type="linenumber">296</context> | ||
9183 | </context-group> | ||
9184 | </trans-unit><trans-unit id="ngb.timepicker.MM" datatype="html"> | ||
9185 | <source>MM</source><target state="new">MM</target> | ||
9186 | <context-group purpose="location"> | ||
9187 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9188 | <context context-type="linenumber">296</context> | ||
9189 | </context-group> | ||
9190 | </trans-unit><trans-unit id="ngb.timepicker.minutes" datatype="html"> | ||
9191 | <source>Minutes</source><target state="new">Minutes</target> | ||
9192 | <context-group purpose="location"> | ||
9193 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9194 | <context context-type="linenumber">296</context> | ||
9195 | </context-group> | ||
9196 | </trans-unit><trans-unit id="ngb.timepicker.increment-hours" datatype="html"> | ||
9197 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
9198 | <context-group purpose="location"> | ||
9199 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9200 | <context context-type="linenumber">296</context> | ||
9201 | </context-group> | ||
9202 | </trans-unit><trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> | ||
9203 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
9204 | <context-group purpose="location"> | ||
9205 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9206 | <context context-type="linenumber">296</context> | ||
9207 | </context-group> | ||
9208 | </trans-unit><trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> | ||
9209 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
9210 | <context-group purpose="location"> | ||
9211 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9212 | <context context-type="linenumber">296</context> | ||
9213 | </context-group> | ||
9214 | </trans-unit><trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> | ||
9215 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
9216 | <context-group purpose="location"> | ||
9217 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9218 | <context context-type="linenumber">296</context> | ||
9219 | </context-group> | ||
9220 | </trans-unit><trans-unit id="ngb.timepicker.SS" datatype="html"> | ||
9221 | <source>SS</source><target state="new">SS</target> | ||
9222 | <context-group purpose="location"> | ||
9223 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9224 | <context context-type="linenumber">296</context> | ||
9225 | </context-group> | ||
9226 | </trans-unit><trans-unit id="ngb.timepicker.seconds" datatype="html"> | ||
9227 | <source>Seconds</source><target state="new">Seconds</target> | ||
9228 | <context-group purpose="location"> | ||
9229 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9230 | <context context-type="linenumber">296</context> | ||
9231 | </context-group> | ||
9232 | </trans-unit><trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> | ||
9233 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
9234 | <context-group purpose="location"> | ||
9235 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9236 | <context context-type="linenumber">296</context> | ||
9237 | </context-group> | ||
9238 | </trans-unit><trans-unit id="ngb.timepicker.decrement-seconds" datatype="html"> | ||
9239 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
9240 | <context-group purpose="location"> | ||
9241 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9242 | <context context-type="linenumber">296</context> | ||
9243 | </context-group> | ||
9244 | </trans-unit><trans-unit id="ngb.timepicker.PM" datatype="html"> | ||
9245 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9246 | <context-group purpose="location"> | ||
9247 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9248 | <context context-type="linenumber">296</context> | ||
9249 | </context-group> | ||
9250 | </trans-unit><trans-unit id="ngb.timepicker.AM" datatype="html"> | ||
9251 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9252 | <context-group purpose="location"> | ||
9253 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9254 | <context context-type="linenumber">296</context> | ||
9255 | </context-group> | ||
9256 | </trans-unit><trans-unit id="ngb.toast.close-aria" datatype="html"> | ||
9257 | <source>Close</source><target state="new">Close</target> | ||
9258 | <context-group purpose="location"> | ||
9259 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/toast/toast.ts</context> | ||
9260 | <context context-type="linenumber">137</context> | ||
9261 | </context-group> | ||
9262 | </trans-unit> | ||
9233 | <trans-unit id="5210096066382592800" datatype="html"> | 9263 | <trans-unit id="5210096066382592800" datatype="html"> |
9234 | <source>Video to import updated.</source> | 9264 | <source>Video to import updated.</source> |
9235 | <target state="translated">Film do zaimportowania zaktualizowany.</target> | 9265 | <target state="translated">Film do zaimportowania zaktualizowany.</target> |
diff --git a/client/src/locale/angular.pt-BR.xlf b/client/src/locale/angular.pt-BR.xlf index 2dfc7eac0..75ecf64cd 100644 --- a/client/src/locale/angular.pt-BR.xlf +++ b/client/src/locale/angular.pt-BR.xlf | |||
@@ -1104,16 +1104,9 @@ The link will expire within 1 hour.</target> | |||
1104 | <trans-unit id="f4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8"> | 1104 | <trans-unit id="f4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8"> |
1105 | <source>Close</source> | 1105 | <source>Close</source> |
1106 | <target>Fechar</target> | 1106 | <target>Fechar</target> |
1107 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group> | 1107 | |
1108 | </trans-unit> | 1108 | <context-group purpose="location"><context context-type="sourcefile">../app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1109 | <trans-unit id="680d5c75b7fd8d37961083608b9fcdc4167b4c43" datatype="html"> | 1109 | |
1110 | <source>Previous</source> | ||
1111 | <target state="new">Previous</target> | ||
1112 | <context-group purpose="location"> | ||
1113 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
1114 | <context context-type="linenumber">1</context> | ||
1115 | </context-group> | ||
1116 | </trans-unit> | ||
1117 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> | 1110 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> |
1118 | <source>Configure</source> | 1111 | <source>Configure</source> |
1119 | <target state="new"> | 1112 | <target state="new"> |
@@ -5223,208 +5216,33 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5223 | <trans-unit id="f732c304c7433e5a83ffcd862c3dce709a0f4982" datatype="html"> | 5216 | <trans-unit id="f732c304c7433e5a83ffcd862c3dce709a0f4982" datatype="html"> |
5224 | <source>Next</source> | 5217 | <source>Next</source> |
5225 | <target state="translated">próximo</target> | 5218 | <target state="translated">próximo</target> |
5226 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group> | 5219 | |
5227 | </trans-unit> | 5220 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit> |
5228 | <trans-unit id="c3b08b07b5ab98e7cdcf18df39355690ab7d3884" datatype="html"> | 5221 | |
5229 | <source>Previous month</source> | 5222 | |
5230 | <target state="new">Previous month</target> | 5223 | |
5231 | <context-group purpose="location"> | 5224 | |
5232 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 5225 | |
5233 | <context context-type="linenumber">1</context> | 5226 | |
5234 | </context-group> | 5227 | |
5235 | </trans-unit> | 5228 | |
5236 | <trans-unit id="4bd046985cfe13040d5ef0cd881edce0968a111a" datatype="html"> | 5229 | |
5237 | <source>Next month</source> | 5230 | |
5238 | <target state="new">Next month</target> | 5231 | |
5239 | <context-group purpose="location"> | 5232 | |
5240 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 5233 | |
5241 | <context context-type="linenumber">1</context> | 5234 | |
5242 | </context-group> | 5235 | |
5243 | </trans-unit> | 5236 | |
5244 | <trans-unit id="1dbc84807f35518112f62e5775d1daebd3d8462b" datatype="html"> | 5237 | |
5245 | <source>Select month</source> | 5238 | |
5246 | <target state="new">Select month</target> | 5239 | |
5247 | <context-group purpose="location"> | 5240 | |
5248 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 5241 | |
5249 | <context context-type="linenumber">1</context> | 5242 | |
5250 | </context-group> | 5243 | |
5251 | </trans-unit> | 5244 | |
5252 | <trans-unit id="8ceb09d002bf0c5d1cac171dfbffe1805d2b3962" datatype="html"> | 5245 | <trans-unit id="9082008222523034483" datatype="html"> |
5253 | <source>Select year</source> | ||
5254 | <target state="new">Select year</target> | ||
5255 | <context-group purpose="location"> | ||
5256 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5257 | <context context-type="linenumber">1</context> | ||
5258 | </context-group> | ||
5259 | </trans-unit> | ||
5260 | <trans-unit id="656506dfd46380956a655f919f1498d018f75ca0" datatype="html"> | ||
5261 | <source>««</source> | ||
5262 | <target state="new">««</target> | ||
5263 | <context-group purpose="location"> | ||
5264 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5265 | <context context-type="linenumber">1</context> | ||
5266 | </context-group> | ||
5267 | </trans-unit> | ||
5268 | <trans-unit id="6e52b6ee77a4848d899dd21b591c6fd499e3aef3" datatype="html"> | ||
5269 | <source>«</source> | ||
5270 | <target state="new">«</target> | ||
5271 | <context-group purpose="location"> | ||
5272 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5273 | <context context-type="linenumber">1</context> | ||
5274 | </context-group> | ||
5275 | </trans-unit> | ||
5276 | <trans-unit id="ba9cbb4ff311464308a3627e4f1c3345d9fe6d7d" datatype="html"> | ||
5277 | <source>»</source> | ||
5278 | <target state="new">»</target> | ||
5279 | <context-group purpose="location"> | ||
5280 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5281 | <context context-type="linenumber">1</context> | ||
5282 | </context-group> | ||
5283 | </trans-unit> | ||
5284 | <trans-unit id="49f27a460bc97e7e00be5b37098bfa79884fc7d9" datatype="html"> | ||
5285 | <source>»»</source> | ||
5286 | <target state="new">»»</target> | ||
5287 | <context-group purpose="location"> | ||
5288 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5289 | <context context-type="linenumber">1</context> | ||
5290 | </context-group> | ||
5291 | </trans-unit> | ||
5292 | <trans-unit id="f2f852318759c6396b5d3d17031d53817d7b38cc" datatype="html"> | ||
5293 | <source>First</source> | ||
5294 | <target state="new">First</target> | ||
5295 | <context-group purpose="location"> | ||
5296 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5297 | <context context-type="linenumber">1</context> | ||
5298 | </context-group> | ||
5299 | </trans-unit> | ||
5300 | <trans-unit id="5c729788ba138508aca1bec050b610f7bf81db3e" datatype="html"> | ||
5301 | <source>Last</source> | ||
5302 | <target state="new">Last</target> | ||
5303 | <context-group purpose="location"> | ||
5304 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5305 | <context context-type="linenumber">1</context> | ||
5306 | </context-group> | ||
5307 | </trans-unit> | ||
5308 | <trans-unit id="f8e9a947b9db4252c0e9905765338712f2fd032f" datatype="html"> | ||
5309 | <source><x id="INTERPOLATION"/></source> | ||
5310 | <target state="new"><x id="INTERPOLATION"/></target> | ||
5311 | <context-group purpose="location"> | ||
5312 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5313 | <context context-type="linenumber">1</context> | ||
5314 | </context-group> | ||
5315 | </trans-unit> | ||
5316 | <trans-unit id="ce676ab1d6d98f85c836381cf100a4a91ef95a1f" datatype="html"> | ||
5317 | <source>HH</source> | ||
5318 | <target state="new">HH</target> | ||
5319 | <context-group purpose="location"> | ||
5320 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5321 | <context context-type="linenumber">1</context> | ||
5322 | </context-group> | ||
5323 | </trans-unit> | ||
5324 | <trans-unit id="3bbce5fef7e1151da052a4e529453edb340e3912" datatype="html"> | ||
5325 | <source>Hours</source> | ||
5326 | <target state="new">Hours</target> | ||
5327 | <context-group purpose="location"> | ||
5328 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5329 | <context context-type="linenumber">1</context> | ||
5330 | </context-group> | ||
5331 | </trans-unit> | ||
5332 | <trans-unit id="72c8edf6a50068a05bde70991e36b1e881f4ca54" datatype="html"> | ||
5333 | <source>MM</source> | ||
5334 | <target state="new">MM</target> | ||
5335 | <context-group purpose="location"> | ||
5336 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5337 | <context context-type="linenumber">1</context> | ||
5338 | </context-group> | ||
5339 | </trans-unit> | ||
5340 | <trans-unit id="41e62daa962947c0d23ded0981975d1bddf0bf38" datatype="html"> | ||
5341 | <source>Minutes</source> | ||
5342 | <target state="new">Minutes</target> | ||
5343 | <context-group purpose="location"> | ||
5344 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5345 | <context context-type="linenumber">1</context> | ||
5346 | </context-group> | ||
5347 | </trans-unit> | ||
5348 | <trans-unit id="cb74bc1d625a6c1742f0d7d47306cf495780c218" datatype="html"> | ||
5349 | <source>Increment hours</source> | ||
5350 | <target state="new">Increment hours</target> | ||
5351 | <context-group purpose="location"> | ||
5352 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5353 | <context context-type="linenumber">1</context> | ||
5354 | </context-group> | ||
5355 | </trans-unit> | ||
5356 | <trans-unit id="147c7a19429da7d999e247d22e33fee370b1691b" datatype="html"> | ||
5357 | <source>Decrement hours</source> | ||
5358 | <target state="new">Decrement hours</target> | ||
5359 | <context-group purpose="location"> | ||
5360 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5361 | <context context-type="linenumber">1</context> | ||
5362 | </context-group> | ||
5363 | </trans-unit> | ||
5364 | <trans-unit id="f5a4a3bc05e053f6732475d0e74875ec01c3a348" datatype="html"> | ||
5365 | <source>Increment minutes</source> | ||
5366 | <target state="new">Increment minutes</target> | ||
5367 | <context-group purpose="location"> | ||
5368 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5369 | <context context-type="linenumber">1</context> | ||
5370 | </context-group> | ||
5371 | </trans-unit> | ||
5372 | <trans-unit id="c1a6899e529c096da5b660385d4e77fe1f7ad271" datatype="html"> | ||
5373 | <source>Decrement minutes</source> | ||
5374 | <target state="new">Decrement minutes</target> | ||
5375 | <context-group purpose="location"> | ||
5376 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5377 | <context context-type="linenumber">1</context> | ||
5378 | </context-group> | ||
5379 | </trans-unit> | ||
5380 | <trans-unit id="ebe38d36a40a2383c5fefa9b4608ffbda08bd4a3" datatype="html"> | ||
5381 | <source>SS</source> | ||
5382 | <target state="new">SS</target> | ||
5383 | <context-group purpose="location"> | ||
5384 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5385 | <context context-type="linenumber">1</context> | ||
5386 | </context-group> | ||
5387 | </trans-unit> | ||
5388 | <trans-unit id="4f2ed9e71a7c981db3e50ae2fedb28aff2ec4e6c" datatype="html"> | ||
5389 | <source>Seconds</source> | ||
5390 | <target state="new">Seconds</target> | ||
5391 | <context-group purpose="location"> | ||
5392 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5393 | <context context-type="linenumber">1</context> | ||
5394 | </context-group> | ||
5395 | </trans-unit> | ||
5396 | <trans-unit id="912322ecee7d659d04dcf494a70e22e49d334b26" datatype="html"> | ||
5397 | <source>Increment seconds</source> | ||
5398 | <target state="new">Increment seconds</target> | ||
5399 | <context-group purpose="location"> | ||
5400 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5401 | <context context-type="linenumber">1</context> | ||
5402 | </context-group> | ||
5403 | </trans-unit> | ||
5404 | <trans-unit id="5db47ac104294243a70eb9124fbea9d0004ddf69" datatype="html"> | ||
5405 | <source>Decrement seconds</source> | ||
5406 | <target state="new">Decrement seconds</target> | ||
5407 | <context-group purpose="location"> | ||
5408 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5409 | <context context-type="linenumber">1</context> | ||
5410 | </context-group> | ||
5411 | </trans-unit> | ||
5412 | <trans-unit id="8d6e691e10306c1b34c6b26805151aaea320ef7f" datatype="html"> | ||
5413 | <source><x id="INTERPOLATION"/></source> | ||
5414 | <target state="new"><x id="INTERPOLATION"/></target> | ||
5415 | <context-group purpose="location"> | ||
5416 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5417 | <context context-type="linenumber">1</context> | ||
5418 | </context-group> | ||
5419 | </trans-unit> | ||
5420 | <trans-unit id="69a1f176a93998876952adac57c3bc3863b6105e" datatype="html"> | ||
5421 | <source><x id="INTERPOLATION"/></source> | ||
5422 | <target state="new"><x id="INTERPOLATION"/></target> | ||
5423 | <context-group purpose="location"> | ||
5424 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5425 | <context context-type="linenumber">1</context> | ||
5426 | </context-group> | ||
5427 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
5428 | <source>Get help</source><target state="new">Get help</target> | 5246 | <source>Get help</source><target state="new">Get help</target> |
5429 | <context-group purpose="location"> | 5247 | <context-group purpose="location"> |
5430 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 5248 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> |
@@ -8832,7 +8650,193 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8832 | <source>Only users of this instance can see this video</source> | 8650 | <source>Only users of this instance can see this video</source> |
8833 | <target state="translated">Apenas utilizadores desta instância podem ver este vídeo</target> | 8651 | <target state="translated">Apenas utilizadores desta instância podem ver este vídeo</target> |
8834 | 8652 | ||
8835 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit> | 8653 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit><trans-unit id="ngb.alert.close" datatype="html"> |
8654 | <source>Close</source><target state="new">Close</target> | ||
8655 | <context-group purpose="location"> | ||
8656 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/alert/alert.ts</context> | ||
8657 | <context context-type="linenumber">74</context> | ||
8658 | </context-group> | ||
8659 | </trans-unit><trans-unit id="ngb.carousel.previous" datatype="html"> | ||
8660 | <source>Previous</source><target state="new">Previous</target> | ||
8661 | <context-group purpose="location"> | ||
8662 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
8663 | <context context-type="linenumber">349</context> | ||
8664 | </context-group> | ||
8665 | </trans-unit><trans-unit id="ngb.carousel.next" datatype="html"> | ||
8666 | <source>Next</source><target state="new">Next</target> | ||
8667 | <context-group purpose="location"> | ||
8668 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
8669 | <context context-type="linenumber">349</context> | ||
8670 | </context-group> | ||
8671 | </trans-unit><trans-unit id="ngb.datepicker.previous-month" datatype="html"> | ||
8672 | <source>Previous month</source><target state="new">Previous month</target> | ||
8673 | <context-group purpose="location"> | ||
8674 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation.ts</context> | ||
8675 | <context context-type="linenumber">69</context> | ||
8676 | </context-group> | ||
8677 | </trans-unit><trans-unit id="ngb.datepicker.next-month" datatype="html"> | ||
8678 | <source>Next month</source><target state="new">Next month</target> | ||
8679 | <context-group purpose="location"> | ||
8680 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-month.ts</context> | ||
8681 | <context context-type="linenumber">72</context> | ||
8682 | </context-group> | ||
8683 | </trans-unit><trans-unit id="ngb.datepicker.select-month" datatype="html"> | ||
8684 | <source>Select month</source><target state="new">Select month</target> | ||
8685 | <context-group purpose="location"> | ||
8686 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
8687 | <context context-type="linenumber">74</context> | ||
8688 | </context-group> | ||
8689 | </trans-unit><trans-unit id="ngb.datepicker.select-year" datatype="html"> | ||
8690 | <source>Select year</source><target state="new">Select year</target> | ||
8691 | <context-group purpose="location"> | ||
8692 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
8693 | <context context-type="linenumber">74</context> | ||
8694 | </context-group> | ||
8695 | </trans-unit><trans-unit id="ngb.pagination.first" datatype="html"> | ||
8696 | <source>««</source><target state="new">««</target> | ||
8697 | <context-group purpose="location"> | ||
8698 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8699 | <context context-type="linenumber">404</context> | ||
8700 | </context-group> | ||
8701 | </trans-unit><trans-unit id="ngb.pagination.previous" datatype="html"> | ||
8702 | <source>«</source><target state="new">«</target> | ||
8703 | <context-group purpose="location"> | ||
8704 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8705 | <context context-type="linenumber">404</context> | ||
8706 | </context-group> | ||
8707 | </trans-unit><trans-unit id="ngb.pagination.next" datatype="html"> | ||
8708 | <source>»</source><target state="new">»</target> | ||
8709 | <context-group purpose="location"> | ||
8710 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8711 | <context context-type="linenumber">404</context> | ||
8712 | </context-group> | ||
8713 | </trans-unit><trans-unit id="ngb.pagination.last" datatype="html"> | ||
8714 | <source>»»</source><target state="new">»»</target> | ||
8715 | <context-group purpose="location"> | ||
8716 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8717 | <context context-type="linenumber">404</context> | ||
8718 | </context-group> | ||
8719 | </trans-unit><trans-unit id="ngb.pagination.first-aria" datatype="html"> | ||
8720 | <source>First</source><target state="new">First</target> | ||
8721 | <context-group purpose="location"> | ||
8722 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8723 | <context context-type="linenumber">404</context> | ||
8724 | </context-group> | ||
8725 | </trans-unit><trans-unit id="ngb.pagination.previous-aria" datatype="html"> | ||
8726 | <source>Previous</source><target state="new">Previous</target> | ||
8727 | <context-group purpose="location"> | ||
8728 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8729 | <context context-type="linenumber">404</context> | ||
8730 | </context-group> | ||
8731 | </trans-unit><trans-unit id="ngb.pagination.next-aria" datatype="html"> | ||
8732 | <source>Next</source><target state="new">Next</target> | ||
8733 | <context-group purpose="location"> | ||
8734 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8735 | <context context-type="linenumber">404</context> | ||
8736 | </context-group> | ||
8737 | </trans-unit><trans-unit id="ngb.pagination.last-aria" datatype="html"> | ||
8738 | <source>Last</source><target state="new">Last</target> | ||
8739 | <context-group purpose="location"> | ||
8740 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8741 | <context context-type="linenumber">404</context> | ||
8742 | </context-group> | ||
8743 | </trans-unit><trans-unit id="ngb.progressbar.value" datatype="html"> | ||
8744 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
8745 | <context-group purpose="location"> | ||
8746 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/progressbar/progressbar.ts</context> | ||
8747 | <context context-type="linenumber">101</context> | ||
8748 | </context-group> | ||
8749 | </trans-unit><trans-unit id="ngb.timepicker.HH" datatype="html"> | ||
8750 | <source>HH</source><target state="new">HH</target> | ||
8751 | <context-group purpose="location"> | ||
8752 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8753 | <context context-type="linenumber">296</context> | ||
8754 | </context-group> | ||
8755 | </trans-unit><trans-unit id="ngb.timepicker.hours" datatype="html"> | ||
8756 | <source>Hours</source><target state="new">Hours</target> | ||
8757 | <context-group purpose="location"> | ||
8758 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8759 | <context context-type="linenumber">296</context> | ||
8760 | </context-group> | ||
8761 | </trans-unit><trans-unit id="ngb.timepicker.MM" datatype="html"> | ||
8762 | <source>MM</source><target state="new">MM</target> | ||
8763 | <context-group purpose="location"> | ||
8764 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8765 | <context context-type="linenumber">296</context> | ||
8766 | </context-group> | ||
8767 | </trans-unit><trans-unit id="ngb.timepicker.minutes" datatype="html"> | ||
8768 | <source>Minutes</source><target state="new">Minutes</target> | ||
8769 | <context-group purpose="location"> | ||
8770 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8771 | <context context-type="linenumber">296</context> | ||
8772 | </context-group> | ||
8773 | </trans-unit><trans-unit id="ngb.timepicker.increment-hours" datatype="html"> | ||
8774 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
8775 | <context-group purpose="location"> | ||
8776 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8777 | <context context-type="linenumber">296</context> | ||
8778 | </context-group> | ||
8779 | </trans-unit><trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> | ||
8780 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
8781 | <context-group purpose="location"> | ||
8782 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8783 | <context context-type="linenumber">296</context> | ||
8784 | </context-group> | ||
8785 | </trans-unit><trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> | ||
8786 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
8787 | <context-group purpose="location"> | ||
8788 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8789 | <context context-type="linenumber">296</context> | ||
8790 | </context-group> | ||
8791 | </trans-unit><trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> | ||
8792 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
8793 | <context-group purpose="location"> | ||
8794 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8795 | <context context-type="linenumber">296</context> | ||
8796 | </context-group> | ||
8797 | </trans-unit><trans-unit id="ngb.timepicker.SS" datatype="html"> | ||
8798 | <source>SS</source><target state="new">SS</target> | ||
8799 | <context-group purpose="location"> | ||
8800 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8801 | <context context-type="linenumber">296</context> | ||
8802 | </context-group> | ||
8803 | </trans-unit><trans-unit id="ngb.timepicker.seconds" datatype="html"> | ||
8804 | <source>Seconds</source><target state="new">Seconds</target> | ||
8805 | <context-group purpose="location"> | ||
8806 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8807 | <context context-type="linenumber">296</context> | ||
8808 | </context-group> | ||
8809 | </trans-unit><trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> | ||
8810 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
8811 | <context-group purpose="location"> | ||
8812 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8813 | <context context-type="linenumber">296</context> | ||
8814 | </context-group> | ||
8815 | </trans-unit><trans-unit id="ngb.timepicker.decrement-seconds" datatype="html"> | ||
8816 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
8817 | <context-group purpose="location"> | ||
8818 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8819 | <context context-type="linenumber">296</context> | ||
8820 | </context-group> | ||
8821 | </trans-unit><trans-unit id="ngb.timepicker.PM" datatype="html"> | ||
8822 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
8823 | <context-group purpose="location"> | ||
8824 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8825 | <context context-type="linenumber">296</context> | ||
8826 | </context-group> | ||
8827 | </trans-unit><trans-unit id="ngb.timepicker.AM" datatype="html"> | ||
8828 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
8829 | <context-group purpose="location"> | ||
8830 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8831 | <context context-type="linenumber">296</context> | ||
8832 | </context-group> | ||
8833 | </trans-unit><trans-unit id="ngb.toast.close-aria" datatype="html"> | ||
8834 | <source>Close</source><target state="new">Close</target> | ||
8835 | <context-group purpose="location"> | ||
8836 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/toast/toast.ts</context> | ||
8837 | <context context-type="linenumber">137</context> | ||
8838 | </context-group> | ||
8839 | </trans-unit> | ||
8836 | <trans-unit id="5210096066382592800"> | 8840 | <trans-unit id="5210096066382592800"> |
8837 | <source>Video to import updated.</source> | 8841 | <source>Video to import updated.</source> |
8838 | <target>Vídeo para importar atualizado.</target> | 8842 | <target>Vídeo para importar atualizado.</target> |
diff --git a/client/src/locale/angular.pt-PT.xlf b/client/src/locale/angular.pt-PT.xlf index 6db169d7a..77e776b1f 100644 --- a/client/src/locale/angular.pt-PT.xlf +++ b/client/src/locale/angular.pt-PT.xlf | |||
@@ -1274,13 +1274,7 @@ The link will expire within 1 hour.</target> | |||
1274 | <source>Close</source> | 1274 | <source>Close</source> |
1275 | <target>Fechar</target> | 1275 | <target>Fechar</target> |
1276 | 1276 | ||
1277 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="680d5c75b7fd8d37961083608b9fcdc4167b4c43" datatype="html"> | 1277 | <context-group purpose="location"><context context-type="sourcefile">../app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1278 | <source>Previous</source><target state="new">Previous</target> | ||
1279 | <context-group purpose="location"> | ||
1280 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
1281 | <context context-type="linenumber">1</context> | ||
1282 | </context-group> | ||
1283 | </trans-unit> | ||
1284 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> | 1278 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> |
1285 | <source> | 1279 | <source> |
1286 | Configure | 1280 | Configure |
@@ -5709,157 +5703,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5709 | <source>Next</source> | 5703 | <source>Next</source> |
5710 | <target state="new">Next</target> | 5704 | <target state="new">Next</target> |
5711 | 5705 | ||
5712 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="c3b08b07b5ab98e7cdcf18df39355690ab7d3884" datatype="html"> | 5706 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit><trans-unit id="9082008222523034483" datatype="html"> |
5713 | <source>Previous month</source><target state="new">Previous month</target> | ||
5714 | <context-group purpose="location"> | ||
5715 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5716 | <context context-type="linenumber">1</context> | ||
5717 | </context-group> | ||
5718 | </trans-unit><trans-unit id="4bd046985cfe13040d5ef0cd881edce0968a111a" datatype="html"> | ||
5719 | <source>Next month</source><target state="new">Next month</target> | ||
5720 | <context-group purpose="location"> | ||
5721 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5722 | <context context-type="linenumber">1</context> | ||
5723 | </context-group> | ||
5724 | </trans-unit><trans-unit id="1dbc84807f35518112f62e5775d1daebd3d8462b" datatype="html"> | ||
5725 | <source>Select month</source><target state="new">Select month</target> | ||
5726 | <context-group purpose="location"> | ||
5727 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5728 | <context context-type="linenumber">1</context> | ||
5729 | </context-group> | ||
5730 | </trans-unit><trans-unit id="8ceb09d002bf0c5d1cac171dfbffe1805d2b3962" datatype="html"> | ||
5731 | <source>Select year</source><target state="new">Select year</target> | ||
5732 | <context-group purpose="location"> | ||
5733 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5734 | <context context-type="linenumber">1</context> | ||
5735 | </context-group> | ||
5736 | </trans-unit><trans-unit id="656506dfd46380956a655f919f1498d018f75ca0" datatype="html"> | ||
5737 | <source>««</source><target state="new">««</target> | ||
5738 | <context-group purpose="location"> | ||
5739 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5740 | <context context-type="linenumber">1</context> | ||
5741 | </context-group> | ||
5742 | </trans-unit><trans-unit id="6e52b6ee77a4848d899dd21b591c6fd499e3aef3" datatype="html"> | ||
5743 | <source>«</source><target state="new">«</target> | ||
5744 | <context-group purpose="location"> | ||
5745 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5746 | <context context-type="linenumber">1</context> | ||
5747 | </context-group> | ||
5748 | </trans-unit><trans-unit id="ba9cbb4ff311464308a3627e4f1c3345d9fe6d7d" datatype="html"> | ||
5749 | <source>»</source><target state="new">»</target> | ||
5750 | <context-group purpose="location"> | ||
5751 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5752 | <context context-type="linenumber">1</context> | ||
5753 | </context-group> | ||
5754 | </trans-unit><trans-unit id="49f27a460bc97e7e00be5b37098bfa79884fc7d9" datatype="html"> | ||
5755 | <source>»»</source><target state="new">»»</target> | ||
5756 | <context-group purpose="location"> | ||
5757 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5758 | <context context-type="linenumber">1</context> | ||
5759 | </context-group> | ||
5760 | </trans-unit><trans-unit id="f2f852318759c6396b5d3d17031d53817d7b38cc" datatype="html"> | ||
5761 | <source>First</source><target state="new">First</target> | ||
5762 | <context-group purpose="location"> | ||
5763 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5764 | <context context-type="linenumber">1</context> | ||
5765 | </context-group> | ||
5766 | </trans-unit><trans-unit id="5c729788ba138508aca1bec050b610f7bf81db3e" datatype="html"> | ||
5767 | <source>Last</source><target state="new">Last</target> | ||
5768 | <context-group purpose="location"> | ||
5769 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5770 | <context context-type="linenumber">1</context> | ||
5771 | </context-group> | ||
5772 | </trans-unit><trans-unit id="f8e9a947b9db4252c0e9905765338712f2fd032f" datatype="html"> | ||
5773 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5774 | <context-group purpose="location"> | ||
5775 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5776 | <context context-type="linenumber">1</context> | ||
5777 | </context-group> | ||
5778 | </trans-unit><trans-unit id="ce676ab1d6d98f85c836381cf100a4a91ef95a1f" datatype="html"> | ||
5779 | <source>HH</source><target state="new">HH</target> | ||
5780 | <context-group purpose="location"> | ||
5781 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5782 | <context context-type="linenumber">1</context> | ||
5783 | </context-group> | ||
5784 | </trans-unit><trans-unit id="3bbce5fef7e1151da052a4e529453edb340e3912" datatype="html"> | ||
5785 | <source>Hours</source><target state="new">Hours</target> | ||
5786 | <context-group purpose="location"> | ||
5787 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5788 | <context context-type="linenumber">1</context> | ||
5789 | </context-group> | ||
5790 | </trans-unit><trans-unit id="72c8edf6a50068a05bde70991e36b1e881f4ca54" datatype="html"> | ||
5791 | <source>MM</source><target state="new">MM</target> | ||
5792 | <context-group purpose="location"> | ||
5793 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5794 | <context context-type="linenumber">1</context> | ||
5795 | </context-group> | ||
5796 | </trans-unit><trans-unit id="41e62daa962947c0d23ded0981975d1bddf0bf38" datatype="html"> | ||
5797 | <source>Minutes</source><target state="new">Minutes</target> | ||
5798 | <context-group purpose="location"> | ||
5799 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5800 | <context context-type="linenumber">1</context> | ||
5801 | </context-group> | ||
5802 | </trans-unit><trans-unit id="cb74bc1d625a6c1742f0d7d47306cf495780c218" datatype="html"> | ||
5803 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
5804 | <context-group purpose="location"> | ||
5805 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5806 | <context context-type="linenumber">1</context> | ||
5807 | </context-group> | ||
5808 | </trans-unit><trans-unit id="147c7a19429da7d999e247d22e33fee370b1691b" datatype="html"> | ||
5809 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
5810 | <context-group purpose="location"> | ||
5811 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5812 | <context context-type="linenumber">1</context> | ||
5813 | </context-group> | ||
5814 | </trans-unit><trans-unit id="f5a4a3bc05e053f6732475d0e74875ec01c3a348" datatype="html"> | ||
5815 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
5816 | <context-group purpose="location"> | ||
5817 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5818 | <context context-type="linenumber">1</context> | ||
5819 | </context-group> | ||
5820 | </trans-unit><trans-unit id="c1a6899e529c096da5b660385d4e77fe1f7ad271" datatype="html"> | ||
5821 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
5822 | <context-group purpose="location"> | ||
5823 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5824 | <context context-type="linenumber">1</context> | ||
5825 | </context-group> | ||
5826 | </trans-unit><trans-unit id="ebe38d36a40a2383c5fefa9b4608ffbda08bd4a3" datatype="html"> | ||
5827 | <source>SS</source><target state="new">SS</target> | ||
5828 | <context-group purpose="location"> | ||
5829 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5830 | <context context-type="linenumber">1</context> | ||
5831 | </context-group> | ||
5832 | </trans-unit><trans-unit id="4f2ed9e71a7c981db3e50ae2fedb28aff2ec4e6c" datatype="html"> | ||
5833 | <source>Seconds</source><target state="new">Seconds</target> | ||
5834 | <context-group purpose="location"> | ||
5835 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5836 | <context context-type="linenumber">1</context> | ||
5837 | </context-group> | ||
5838 | </trans-unit><trans-unit id="912322ecee7d659d04dcf494a70e22e49d334b26" datatype="html"> | ||
5839 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
5840 | <context-group purpose="location"> | ||
5841 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5842 | <context context-type="linenumber">1</context> | ||
5843 | </context-group> | ||
5844 | </trans-unit><trans-unit id="5db47ac104294243a70eb9124fbea9d0004ddf69" datatype="html"> | ||
5845 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
5846 | <context-group purpose="location"> | ||
5847 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5848 | <context context-type="linenumber">1</context> | ||
5849 | </context-group> | ||
5850 | </trans-unit><trans-unit id="8d6e691e10306c1b34c6b26805151aaea320ef7f" datatype="html"> | ||
5851 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5852 | <context-group purpose="location"> | ||
5853 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5854 | <context context-type="linenumber">1</context> | ||
5855 | </context-group> | ||
5856 | </trans-unit><trans-unit id="69a1f176a93998876952adac57c3bc3863b6105e" datatype="html"> | ||
5857 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5858 | <context-group purpose="location"> | ||
5859 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5860 | <context context-type="linenumber">1</context> | ||
5861 | </context-group> | ||
5862 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
5863 | <source>Get help</source><target state="new">Get help</target> | 5707 | <source>Get help</source><target state="new">Get help</target> |
5864 | <context-group purpose="location"> | 5708 | <context-group purpose="location"> |
5865 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 5709 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> |
@@ -9402,7 +9246,193 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9402 | <source>Only users of this instance can see this video</source> | 9246 | <source>Only users of this instance can see this video</source> |
9403 | <target state="new">Only users of this instance can see this video</target> | 9247 | <target state="new">Only users of this instance can see this video</target> |
9404 | 9248 | ||
9405 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit> | 9249 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit><trans-unit id="ngb.alert.close" datatype="html"> |
9250 | <source>Close</source><target state="new">Close</target> | ||
9251 | <context-group purpose="location"> | ||
9252 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/alert/alert.ts</context> | ||
9253 | <context context-type="linenumber">74</context> | ||
9254 | </context-group> | ||
9255 | </trans-unit><trans-unit id="ngb.carousel.previous" datatype="html"> | ||
9256 | <source>Previous</source><target state="new">Previous</target> | ||
9257 | <context-group purpose="location"> | ||
9258 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9259 | <context context-type="linenumber">349</context> | ||
9260 | </context-group> | ||
9261 | </trans-unit><trans-unit id="ngb.carousel.next" datatype="html"> | ||
9262 | <source>Next</source><target state="new">Next</target> | ||
9263 | <context-group purpose="location"> | ||
9264 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9265 | <context context-type="linenumber">349</context> | ||
9266 | </context-group> | ||
9267 | </trans-unit><trans-unit id="ngb.datepicker.previous-month" datatype="html"> | ||
9268 | <source>Previous month</source><target state="new">Previous month</target> | ||
9269 | <context-group purpose="location"> | ||
9270 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation.ts</context> | ||
9271 | <context context-type="linenumber">69</context> | ||
9272 | </context-group> | ||
9273 | </trans-unit><trans-unit id="ngb.datepicker.next-month" datatype="html"> | ||
9274 | <source>Next month</source><target state="new">Next month</target> | ||
9275 | <context-group purpose="location"> | ||
9276 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-month.ts</context> | ||
9277 | <context context-type="linenumber">72</context> | ||
9278 | </context-group> | ||
9279 | </trans-unit><trans-unit id="ngb.datepicker.select-month" datatype="html"> | ||
9280 | <source>Select month</source><target state="new">Select month</target> | ||
9281 | <context-group purpose="location"> | ||
9282 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9283 | <context context-type="linenumber">74</context> | ||
9284 | </context-group> | ||
9285 | </trans-unit><trans-unit id="ngb.datepicker.select-year" datatype="html"> | ||
9286 | <source>Select year</source><target state="new">Select year</target> | ||
9287 | <context-group purpose="location"> | ||
9288 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9289 | <context context-type="linenumber">74</context> | ||
9290 | </context-group> | ||
9291 | </trans-unit><trans-unit id="ngb.pagination.first" datatype="html"> | ||
9292 | <source>««</source><target state="new">««</target> | ||
9293 | <context-group purpose="location"> | ||
9294 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9295 | <context context-type="linenumber">404</context> | ||
9296 | </context-group> | ||
9297 | </trans-unit><trans-unit id="ngb.pagination.previous" datatype="html"> | ||
9298 | <source>«</source><target state="new">«</target> | ||
9299 | <context-group purpose="location"> | ||
9300 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9301 | <context context-type="linenumber">404</context> | ||
9302 | </context-group> | ||
9303 | </trans-unit><trans-unit id="ngb.pagination.next" datatype="html"> | ||
9304 | <source>»</source><target state="new">»</target> | ||
9305 | <context-group purpose="location"> | ||
9306 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9307 | <context context-type="linenumber">404</context> | ||
9308 | </context-group> | ||
9309 | </trans-unit><trans-unit id="ngb.pagination.last" datatype="html"> | ||
9310 | <source>»»</source><target state="new">»»</target> | ||
9311 | <context-group purpose="location"> | ||
9312 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9313 | <context context-type="linenumber">404</context> | ||
9314 | </context-group> | ||
9315 | </trans-unit><trans-unit id="ngb.pagination.first-aria" datatype="html"> | ||
9316 | <source>First</source><target state="new">First</target> | ||
9317 | <context-group purpose="location"> | ||
9318 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9319 | <context context-type="linenumber">404</context> | ||
9320 | </context-group> | ||
9321 | </trans-unit><trans-unit id="ngb.pagination.previous-aria" datatype="html"> | ||
9322 | <source>Previous</source><target state="new">Previous</target> | ||
9323 | <context-group purpose="location"> | ||
9324 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9325 | <context context-type="linenumber">404</context> | ||
9326 | </context-group> | ||
9327 | </trans-unit><trans-unit id="ngb.pagination.next-aria" datatype="html"> | ||
9328 | <source>Next</source><target state="new">Next</target> | ||
9329 | <context-group purpose="location"> | ||
9330 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9331 | <context context-type="linenumber">404</context> | ||
9332 | </context-group> | ||
9333 | </trans-unit><trans-unit id="ngb.pagination.last-aria" datatype="html"> | ||
9334 | <source>Last</source><target state="new">Last</target> | ||
9335 | <context-group purpose="location"> | ||
9336 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9337 | <context context-type="linenumber">404</context> | ||
9338 | </context-group> | ||
9339 | </trans-unit><trans-unit id="ngb.progressbar.value" datatype="html"> | ||
9340 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9341 | <context-group purpose="location"> | ||
9342 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/progressbar/progressbar.ts</context> | ||
9343 | <context context-type="linenumber">101</context> | ||
9344 | </context-group> | ||
9345 | </trans-unit><trans-unit id="ngb.timepicker.HH" datatype="html"> | ||
9346 | <source>HH</source><target state="new">HH</target> | ||
9347 | <context-group purpose="location"> | ||
9348 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9349 | <context context-type="linenumber">296</context> | ||
9350 | </context-group> | ||
9351 | </trans-unit><trans-unit id="ngb.timepicker.hours" datatype="html"> | ||
9352 | <source>Hours</source><target state="new">Hours</target> | ||
9353 | <context-group purpose="location"> | ||
9354 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9355 | <context context-type="linenumber">296</context> | ||
9356 | </context-group> | ||
9357 | </trans-unit><trans-unit id="ngb.timepicker.MM" datatype="html"> | ||
9358 | <source>MM</source><target state="new">MM</target> | ||
9359 | <context-group purpose="location"> | ||
9360 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9361 | <context context-type="linenumber">296</context> | ||
9362 | </context-group> | ||
9363 | </trans-unit><trans-unit id="ngb.timepicker.minutes" datatype="html"> | ||
9364 | <source>Minutes</source><target state="new">Minutes</target> | ||
9365 | <context-group purpose="location"> | ||
9366 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9367 | <context context-type="linenumber">296</context> | ||
9368 | </context-group> | ||
9369 | </trans-unit><trans-unit id="ngb.timepicker.increment-hours" datatype="html"> | ||
9370 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
9371 | <context-group purpose="location"> | ||
9372 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9373 | <context context-type="linenumber">296</context> | ||
9374 | </context-group> | ||
9375 | </trans-unit><trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> | ||
9376 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
9377 | <context-group purpose="location"> | ||
9378 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9379 | <context context-type="linenumber">296</context> | ||
9380 | </context-group> | ||
9381 | </trans-unit><trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> | ||
9382 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
9383 | <context-group purpose="location"> | ||
9384 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9385 | <context context-type="linenumber">296</context> | ||
9386 | </context-group> | ||
9387 | </trans-unit><trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> | ||
9388 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
9389 | <context-group purpose="location"> | ||
9390 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9391 | <context context-type="linenumber">296</context> | ||
9392 | </context-group> | ||
9393 | </trans-unit><trans-unit id="ngb.timepicker.SS" datatype="html"> | ||
9394 | <source>SS</source><target state="new">SS</target> | ||
9395 | <context-group purpose="location"> | ||
9396 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9397 | <context context-type="linenumber">296</context> | ||
9398 | </context-group> | ||
9399 | </trans-unit><trans-unit id="ngb.timepicker.seconds" datatype="html"> | ||
9400 | <source>Seconds</source><target state="new">Seconds</target> | ||
9401 | <context-group purpose="location"> | ||
9402 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9403 | <context context-type="linenumber">296</context> | ||
9404 | </context-group> | ||
9405 | </trans-unit><trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> | ||
9406 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
9407 | <context-group purpose="location"> | ||
9408 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9409 | <context context-type="linenumber">296</context> | ||
9410 | </context-group> | ||
9411 | </trans-unit><trans-unit id="ngb.timepicker.decrement-seconds" datatype="html"> | ||
9412 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
9413 | <context-group purpose="location"> | ||
9414 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9415 | <context context-type="linenumber">296</context> | ||
9416 | </context-group> | ||
9417 | </trans-unit><trans-unit id="ngb.timepicker.PM" datatype="html"> | ||
9418 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9419 | <context-group purpose="location"> | ||
9420 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9421 | <context context-type="linenumber">296</context> | ||
9422 | </context-group> | ||
9423 | </trans-unit><trans-unit id="ngb.timepicker.AM" datatype="html"> | ||
9424 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9425 | <context-group purpose="location"> | ||
9426 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9427 | <context context-type="linenumber">296</context> | ||
9428 | </context-group> | ||
9429 | </trans-unit><trans-unit id="ngb.toast.close-aria" datatype="html"> | ||
9430 | <source>Close</source><target state="new">Close</target> | ||
9431 | <context-group purpose="location"> | ||
9432 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/toast/toast.ts</context> | ||
9433 | <context context-type="linenumber">137</context> | ||
9434 | </context-group> | ||
9435 | </trans-unit> | ||
9406 | <trans-unit id="5210096066382592800"> | 9436 | <trans-unit id="5210096066382592800"> |
9407 | <source>Video to import updated.</source> | 9437 | <source>Video to import updated.</source> |
9408 | <target>Vídeo para importar atualizado.</target> | 9438 | <target>Vídeo para importar atualizado.</target> |
diff --git a/client/src/locale/angular.ru-RU.xlf b/client/src/locale/angular.ru-RU.xlf index 83bc45e30..ec860f719 100644 --- a/client/src/locale/angular.ru-RU.xlf +++ b/client/src/locale/angular.ru-RU.xlf | |||
@@ -1271,13 +1271,7 @@ The link will expire within 1 hour.</target> | |||
1271 | <source>Close</source> | 1271 | <source>Close</source> |
1272 | <target>Закрыть</target> | 1272 | <target>Закрыть</target> |
1273 | 1273 | ||
1274 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="680d5c75b7fd8d37961083608b9fcdc4167b4c43" datatype="html"> | 1274 | <context-group purpose="location"><context context-type="sourcefile">../app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1275 | <source>Previous</source><target state="new">Previous</target> | ||
1276 | <context-group purpose="location"> | ||
1277 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
1278 | <context context-type="linenumber">1</context> | ||
1279 | </context-group> | ||
1280 | </trans-unit> | ||
1281 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> | 1275 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> |
1282 | <source>Configure</source> | 1276 | <source>Configure</source> |
1283 | <target state="new"> | 1277 | <target state="new"> |
@@ -5635,157 +5629,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5635 | <source>Next</source> | 5629 | <source>Next</source> |
5636 | <target state="translated">Следующий</target> | 5630 | <target state="translated">Следующий</target> |
5637 | 5631 | ||
5638 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="c3b08b07b5ab98e7cdcf18df39355690ab7d3884" datatype="html"> | 5632 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit><trans-unit id="9082008222523034483" datatype="html"> |
5639 | <source>Previous month</source><target state="new">Previous month</target> | ||
5640 | <context-group purpose="location"> | ||
5641 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5642 | <context context-type="linenumber">1</context> | ||
5643 | </context-group> | ||
5644 | </trans-unit><trans-unit id="4bd046985cfe13040d5ef0cd881edce0968a111a" datatype="html"> | ||
5645 | <source>Next month</source><target state="new">Next month</target> | ||
5646 | <context-group purpose="location"> | ||
5647 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5648 | <context context-type="linenumber">1</context> | ||
5649 | </context-group> | ||
5650 | </trans-unit><trans-unit id="1dbc84807f35518112f62e5775d1daebd3d8462b" datatype="html"> | ||
5651 | <source>Select month</source><target state="new">Select month</target> | ||
5652 | <context-group purpose="location"> | ||
5653 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5654 | <context context-type="linenumber">1</context> | ||
5655 | </context-group> | ||
5656 | </trans-unit><trans-unit id="8ceb09d002bf0c5d1cac171dfbffe1805d2b3962" datatype="html"> | ||
5657 | <source>Select year</source><target state="new">Select year</target> | ||
5658 | <context-group purpose="location"> | ||
5659 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5660 | <context context-type="linenumber">1</context> | ||
5661 | </context-group> | ||
5662 | </trans-unit><trans-unit id="656506dfd46380956a655f919f1498d018f75ca0" datatype="html"> | ||
5663 | <source>««</source><target state="new">««</target> | ||
5664 | <context-group purpose="location"> | ||
5665 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5666 | <context context-type="linenumber">1</context> | ||
5667 | </context-group> | ||
5668 | </trans-unit><trans-unit id="6e52b6ee77a4848d899dd21b591c6fd499e3aef3" datatype="html"> | ||
5669 | <source>«</source><target state="new">«</target> | ||
5670 | <context-group purpose="location"> | ||
5671 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5672 | <context context-type="linenumber">1</context> | ||
5673 | </context-group> | ||
5674 | </trans-unit><trans-unit id="ba9cbb4ff311464308a3627e4f1c3345d9fe6d7d" datatype="html"> | ||
5675 | <source>»</source><target state="new">»</target> | ||
5676 | <context-group purpose="location"> | ||
5677 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5678 | <context context-type="linenumber">1</context> | ||
5679 | </context-group> | ||
5680 | </trans-unit><trans-unit id="49f27a460bc97e7e00be5b37098bfa79884fc7d9" datatype="html"> | ||
5681 | <source>»»</source><target state="new">»»</target> | ||
5682 | <context-group purpose="location"> | ||
5683 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5684 | <context context-type="linenumber">1</context> | ||
5685 | </context-group> | ||
5686 | </trans-unit><trans-unit id="f2f852318759c6396b5d3d17031d53817d7b38cc" datatype="html"> | ||
5687 | <source>First</source><target state="new">First</target> | ||
5688 | <context-group purpose="location"> | ||
5689 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5690 | <context context-type="linenumber">1</context> | ||
5691 | </context-group> | ||
5692 | </trans-unit><trans-unit id="5c729788ba138508aca1bec050b610f7bf81db3e" datatype="html"> | ||
5693 | <source>Last</source><target state="new">Last</target> | ||
5694 | <context-group purpose="location"> | ||
5695 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5696 | <context context-type="linenumber">1</context> | ||
5697 | </context-group> | ||
5698 | </trans-unit><trans-unit id="f8e9a947b9db4252c0e9905765338712f2fd032f" datatype="html"> | ||
5699 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5700 | <context-group purpose="location"> | ||
5701 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5702 | <context context-type="linenumber">1</context> | ||
5703 | </context-group> | ||
5704 | </trans-unit><trans-unit id="ce676ab1d6d98f85c836381cf100a4a91ef95a1f" datatype="html"> | ||
5705 | <source>HH</source><target state="new">HH</target> | ||
5706 | <context-group purpose="location"> | ||
5707 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5708 | <context context-type="linenumber">1</context> | ||
5709 | </context-group> | ||
5710 | </trans-unit><trans-unit id="3bbce5fef7e1151da052a4e529453edb340e3912" datatype="html"> | ||
5711 | <source>Hours</source><target state="new">Hours</target> | ||
5712 | <context-group purpose="location"> | ||
5713 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5714 | <context context-type="linenumber">1</context> | ||
5715 | </context-group> | ||
5716 | </trans-unit><trans-unit id="72c8edf6a50068a05bde70991e36b1e881f4ca54" datatype="html"> | ||
5717 | <source>MM</source><target state="new">MM</target> | ||
5718 | <context-group purpose="location"> | ||
5719 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5720 | <context context-type="linenumber">1</context> | ||
5721 | </context-group> | ||
5722 | </trans-unit><trans-unit id="41e62daa962947c0d23ded0981975d1bddf0bf38" datatype="html"> | ||
5723 | <source>Minutes</source><target state="new">Minutes</target> | ||
5724 | <context-group purpose="location"> | ||
5725 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5726 | <context context-type="linenumber">1</context> | ||
5727 | </context-group> | ||
5728 | </trans-unit><trans-unit id="cb74bc1d625a6c1742f0d7d47306cf495780c218" datatype="html"> | ||
5729 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
5730 | <context-group purpose="location"> | ||
5731 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5732 | <context context-type="linenumber">1</context> | ||
5733 | </context-group> | ||
5734 | </trans-unit><trans-unit id="147c7a19429da7d999e247d22e33fee370b1691b" datatype="html"> | ||
5735 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
5736 | <context-group purpose="location"> | ||
5737 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5738 | <context context-type="linenumber">1</context> | ||
5739 | </context-group> | ||
5740 | </trans-unit><trans-unit id="f5a4a3bc05e053f6732475d0e74875ec01c3a348" datatype="html"> | ||
5741 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
5742 | <context-group purpose="location"> | ||
5743 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5744 | <context context-type="linenumber">1</context> | ||
5745 | </context-group> | ||
5746 | </trans-unit><trans-unit id="c1a6899e529c096da5b660385d4e77fe1f7ad271" datatype="html"> | ||
5747 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
5748 | <context-group purpose="location"> | ||
5749 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5750 | <context context-type="linenumber">1</context> | ||
5751 | </context-group> | ||
5752 | </trans-unit><trans-unit id="ebe38d36a40a2383c5fefa9b4608ffbda08bd4a3" datatype="html"> | ||
5753 | <source>SS</source><target state="new">SS</target> | ||
5754 | <context-group purpose="location"> | ||
5755 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5756 | <context context-type="linenumber">1</context> | ||
5757 | </context-group> | ||
5758 | </trans-unit><trans-unit id="4f2ed9e71a7c981db3e50ae2fedb28aff2ec4e6c" datatype="html"> | ||
5759 | <source>Seconds</source><target state="new">Seconds</target> | ||
5760 | <context-group purpose="location"> | ||
5761 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5762 | <context context-type="linenumber">1</context> | ||
5763 | </context-group> | ||
5764 | </trans-unit><trans-unit id="912322ecee7d659d04dcf494a70e22e49d334b26" datatype="html"> | ||
5765 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
5766 | <context-group purpose="location"> | ||
5767 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5768 | <context context-type="linenumber">1</context> | ||
5769 | </context-group> | ||
5770 | </trans-unit><trans-unit id="5db47ac104294243a70eb9124fbea9d0004ddf69" datatype="html"> | ||
5771 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
5772 | <context-group purpose="location"> | ||
5773 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5774 | <context context-type="linenumber">1</context> | ||
5775 | </context-group> | ||
5776 | </trans-unit><trans-unit id="8d6e691e10306c1b34c6b26805151aaea320ef7f" datatype="html"> | ||
5777 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5778 | <context-group purpose="location"> | ||
5779 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5780 | <context context-type="linenumber">1</context> | ||
5781 | </context-group> | ||
5782 | </trans-unit><trans-unit id="69a1f176a93998876952adac57c3bc3863b6105e" datatype="html"> | ||
5783 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5784 | <context-group purpose="location"> | ||
5785 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5786 | <context context-type="linenumber">1</context> | ||
5787 | </context-group> | ||
5788 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
5789 | <source>Get help</source><target state="new">Get help</target> | 5633 | <source>Get help</source><target state="new">Get help</target> |
5790 | <context-group purpose="location"> | 5634 | <context-group purpose="location"> |
5791 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 5635 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> |
@@ -9311,7 +9155,193 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9311 | <source>Only users of this instance can see this video</source> | 9155 | <source>Only users of this instance can see this video</source> |
9312 | <target state="new">Only users of this instance can see this video</target> | 9156 | <target state="new">Only users of this instance can see this video</target> |
9313 | 9157 | ||
9314 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit> | 9158 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit><trans-unit id="ngb.alert.close" datatype="html"> |
9159 | <source>Close</source><target state="new">Close</target> | ||
9160 | <context-group purpose="location"> | ||
9161 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/alert/alert.ts</context> | ||
9162 | <context context-type="linenumber">74</context> | ||
9163 | </context-group> | ||
9164 | </trans-unit><trans-unit id="ngb.carousel.previous" datatype="html"> | ||
9165 | <source>Previous</source><target state="new">Previous</target> | ||
9166 | <context-group purpose="location"> | ||
9167 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9168 | <context context-type="linenumber">349</context> | ||
9169 | </context-group> | ||
9170 | </trans-unit><trans-unit id="ngb.carousel.next" datatype="html"> | ||
9171 | <source>Next</source><target state="new">Next</target> | ||
9172 | <context-group purpose="location"> | ||
9173 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9174 | <context context-type="linenumber">349</context> | ||
9175 | </context-group> | ||
9176 | </trans-unit><trans-unit id="ngb.datepicker.previous-month" datatype="html"> | ||
9177 | <source>Previous month</source><target state="new">Previous month</target> | ||
9178 | <context-group purpose="location"> | ||
9179 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation.ts</context> | ||
9180 | <context context-type="linenumber">69</context> | ||
9181 | </context-group> | ||
9182 | </trans-unit><trans-unit id="ngb.datepicker.next-month" datatype="html"> | ||
9183 | <source>Next month</source><target state="new">Next month</target> | ||
9184 | <context-group purpose="location"> | ||
9185 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-month.ts</context> | ||
9186 | <context context-type="linenumber">72</context> | ||
9187 | </context-group> | ||
9188 | </trans-unit><trans-unit id="ngb.datepicker.select-month" datatype="html"> | ||
9189 | <source>Select month</source><target state="new">Select month</target> | ||
9190 | <context-group purpose="location"> | ||
9191 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9192 | <context context-type="linenumber">74</context> | ||
9193 | </context-group> | ||
9194 | </trans-unit><trans-unit id="ngb.datepicker.select-year" datatype="html"> | ||
9195 | <source>Select year</source><target state="new">Select year</target> | ||
9196 | <context-group purpose="location"> | ||
9197 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9198 | <context context-type="linenumber">74</context> | ||
9199 | </context-group> | ||
9200 | </trans-unit><trans-unit id="ngb.pagination.first" datatype="html"> | ||
9201 | <source>««</source><target state="new">««</target> | ||
9202 | <context-group purpose="location"> | ||
9203 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9204 | <context context-type="linenumber">404</context> | ||
9205 | </context-group> | ||
9206 | </trans-unit><trans-unit id="ngb.pagination.previous" datatype="html"> | ||
9207 | <source>«</source><target state="new">«</target> | ||
9208 | <context-group purpose="location"> | ||
9209 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9210 | <context context-type="linenumber">404</context> | ||
9211 | </context-group> | ||
9212 | </trans-unit><trans-unit id="ngb.pagination.next" datatype="html"> | ||
9213 | <source>»</source><target state="new">»</target> | ||
9214 | <context-group purpose="location"> | ||
9215 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9216 | <context context-type="linenumber">404</context> | ||
9217 | </context-group> | ||
9218 | </trans-unit><trans-unit id="ngb.pagination.last" datatype="html"> | ||
9219 | <source>»»</source><target state="new">»»</target> | ||
9220 | <context-group purpose="location"> | ||
9221 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9222 | <context context-type="linenumber">404</context> | ||
9223 | </context-group> | ||
9224 | </trans-unit><trans-unit id="ngb.pagination.first-aria" datatype="html"> | ||
9225 | <source>First</source><target state="new">First</target> | ||
9226 | <context-group purpose="location"> | ||
9227 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9228 | <context context-type="linenumber">404</context> | ||
9229 | </context-group> | ||
9230 | </trans-unit><trans-unit id="ngb.pagination.previous-aria" datatype="html"> | ||
9231 | <source>Previous</source><target state="new">Previous</target> | ||
9232 | <context-group purpose="location"> | ||
9233 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9234 | <context context-type="linenumber">404</context> | ||
9235 | </context-group> | ||
9236 | </trans-unit><trans-unit id="ngb.pagination.next-aria" datatype="html"> | ||
9237 | <source>Next</source><target state="new">Next</target> | ||
9238 | <context-group purpose="location"> | ||
9239 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9240 | <context context-type="linenumber">404</context> | ||
9241 | </context-group> | ||
9242 | </trans-unit><trans-unit id="ngb.pagination.last-aria" datatype="html"> | ||
9243 | <source>Last</source><target state="new">Last</target> | ||
9244 | <context-group purpose="location"> | ||
9245 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9246 | <context context-type="linenumber">404</context> | ||
9247 | </context-group> | ||
9248 | </trans-unit><trans-unit id="ngb.progressbar.value" datatype="html"> | ||
9249 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9250 | <context-group purpose="location"> | ||
9251 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/progressbar/progressbar.ts</context> | ||
9252 | <context context-type="linenumber">101</context> | ||
9253 | </context-group> | ||
9254 | </trans-unit><trans-unit id="ngb.timepicker.HH" datatype="html"> | ||
9255 | <source>HH</source><target state="new">HH</target> | ||
9256 | <context-group purpose="location"> | ||
9257 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9258 | <context context-type="linenumber">296</context> | ||
9259 | </context-group> | ||
9260 | </trans-unit><trans-unit id="ngb.timepicker.hours" datatype="html"> | ||
9261 | <source>Hours</source><target state="new">Hours</target> | ||
9262 | <context-group purpose="location"> | ||
9263 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9264 | <context context-type="linenumber">296</context> | ||
9265 | </context-group> | ||
9266 | </trans-unit><trans-unit id="ngb.timepicker.MM" datatype="html"> | ||
9267 | <source>MM</source><target state="new">MM</target> | ||
9268 | <context-group purpose="location"> | ||
9269 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9270 | <context context-type="linenumber">296</context> | ||
9271 | </context-group> | ||
9272 | </trans-unit><trans-unit id="ngb.timepicker.minutes" datatype="html"> | ||
9273 | <source>Minutes</source><target state="new">Minutes</target> | ||
9274 | <context-group purpose="location"> | ||
9275 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9276 | <context context-type="linenumber">296</context> | ||
9277 | </context-group> | ||
9278 | </trans-unit><trans-unit id="ngb.timepicker.increment-hours" datatype="html"> | ||
9279 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
9280 | <context-group purpose="location"> | ||
9281 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9282 | <context context-type="linenumber">296</context> | ||
9283 | </context-group> | ||
9284 | </trans-unit><trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> | ||
9285 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
9286 | <context-group purpose="location"> | ||
9287 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9288 | <context context-type="linenumber">296</context> | ||
9289 | </context-group> | ||
9290 | </trans-unit><trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> | ||
9291 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
9292 | <context-group purpose="location"> | ||
9293 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9294 | <context context-type="linenumber">296</context> | ||
9295 | </context-group> | ||
9296 | </trans-unit><trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> | ||
9297 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
9298 | <context-group purpose="location"> | ||
9299 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9300 | <context context-type="linenumber">296</context> | ||
9301 | </context-group> | ||
9302 | </trans-unit><trans-unit id="ngb.timepicker.SS" datatype="html"> | ||
9303 | <source>SS</source><target state="new">SS</target> | ||
9304 | <context-group purpose="location"> | ||
9305 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9306 | <context context-type="linenumber">296</context> | ||
9307 | </context-group> | ||
9308 | </trans-unit><trans-unit id="ngb.timepicker.seconds" datatype="html"> | ||
9309 | <source>Seconds</source><target state="new">Seconds</target> | ||
9310 | <context-group purpose="location"> | ||
9311 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9312 | <context context-type="linenumber">296</context> | ||
9313 | </context-group> | ||
9314 | </trans-unit><trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> | ||
9315 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
9316 | <context-group purpose="location"> | ||
9317 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9318 | <context context-type="linenumber">296</context> | ||
9319 | </context-group> | ||
9320 | </trans-unit><trans-unit id="ngb.timepicker.decrement-seconds" datatype="html"> | ||
9321 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
9322 | <context-group purpose="location"> | ||
9323 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9324 | <context context-type="linenumber">296</context> | ||
9325 | </context-group> | ||
9326 | </trans-unit><trans-unit id="ngb.timepicker.PM" datatype="html"> | ||
9327 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9328 | <context-group purpose="location"> | ||
9329 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9330 | <context context-type="linenumber">296</context> | ||
9331 | </context-group> | ||
9332 | </trans-unit><trans-unit id="ngb.timepicker.AM" datatype="html"> | ||
9333 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9334 | <context-group purpose="location"> | ||
9335 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9336 | <context context-type="linenumber">296</context> | ||
9337 | </context-group> | ||
9338 | </trans-unit><trans-unit id="ngb.toast.close-aria" datatype="html"> | ||
9339 | <source>Close</source><target state="new">Close</target> | ||
9340 | <context-group purpose="location"> | ||
9341 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/toast/toast.ts</context> | ||
9342 | <context context-type="linenumber">137</context> | ||
9343 | </context-group> | ||
9344 | </trans-unit> | ||
9315 | <trans-unit id="5210096066382592800"> | 9345 | <trans-unit id="5210096066382592800"> |
9316 | <source>Video to import updated.</source> | 9346 | <source>Video to import updated.</source> |
9317 | <target>Видео для импорта обновлено.</target> | 9347 | <target>Видео для импорта обновлено.</target> |
diff --git a/client/src/locale/angular.sk-SK.xlf b/client/src/locale/angular.sk-SK.xlf index 4ff0ef348..77fe022c2 100644 --- a/client/src/locale/angular.sk-SK.xlf +++ b/client/src/locale/angular.sk-SK.xlf | |||
@@ -1331,13 +1331,7 @@ The link will expire within 1 hour.</target> | |||
1331 | <source>Close</source> | 1331 | <source>Close</source> |
1332 | <target state="new">Close</target> | 1332 | <target state="new">Close</target> |
1333 | 1333 | ||
1334 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="680d5c75b7fd8d37961083608b9fcdc4167b4c43" datatype="html"> | 1334 | <context-group purpose="location"><context context-type="sourcefile">../app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1335 | <source>Previous</source><target state="new">Previous</target> | ||
1336 | <context-group purpose="location"> | ||
1337 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
1338 | <context context-type="linenumber">1</context> | ||
1339 | </context-group> | ||
1340 | </trans-unit> | ||
1341 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> | 1335 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> |
1342 | <source> | 1336 | <source> |
1343 | Configure | 1337 | Configure |
@@ -5851,157 +5845,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5851 | <source>Next</source> | 5845 | <source>Next</source> |
5852 | <target state="new">Next</target> | 5846 | <target state="new">Next</target> |
5853 | 5847 | ||
5854 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="c3b08b07b5ab98e7cdcf18df39355690ab7d3884" datatype="html"> | 5848 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit><trans-unit id="9082008222523034483" datatype="html"> |
5855 | <source>Previous month</source><target state="new">Previous month</target> | ||
5856 | <context-group purpose="location"> | ||
5857 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5858 | <context context-type="linenumber">1</context> | ||
5859 | </context-group> | ||
5860 | </trans-unit><trans-unit id="4bd046985cfe13040d5ef0cd881edce0968a111a" datatype="html"> | ||
5861 | <source>Next month</source><target state="new">Next month</target> | ||
5862 | <context-group purpose="location"> | ||
5863 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5864 | <context context-type="linenumber">1</context> | ||
5865 | </context-group> | ||
5866 | </trans-unit><trans-unit id="1dbc84807f35518112f62e5775d1daebd3d8462b" datatype="html"> | ||
5867 | <source>Select month</source><target state="new">Select month</target> | ||
5868 | <context-group purpose="location"> | ||
5869 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5870 | <context context-type="linenumber">1</context> | ||
5871 | </context-group> | ||
5872 | </trans-unit><trans-unit id="8ceb09d002bf0c5d1cac171dfbffe1805d2b3962" datatype="html"> | ||
5873 | <source>Select year</source><target state="new">Select year</target> | ||
5874 | <context-group purpose="location"> | ||
5875 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5876 | <context context-type="linenumber">1</context> | ||
5877 | </context-group> | ||
5878 | </trans-unit><trans-unit id="656506dfd46380956a655f919f1498d018f75ca0" datatype="html"> | ||
5879 | <source>««</source><target state="new">««</target> | ||
5880 | <context-group purpose="location"> | ||
5881 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5882 | <context context-type="linenumber">1</context> | ||
5883 | </context-group> | ||
5884 | </trans-unit><trans-unit id="6e52b6ee77a4848d899dd21b591c6fd499e3aef3" datatype="html"> | ||
5885 | <source>«</source><target state="new">«</target> | ||
5886 | <context-group purpose="location"> | ||
5887 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5888 | <context context-type="linenumber">1</context> | ||
5889 | </context-group> | ||
5890 | </trans-unit><trans-unit id="ba9cbb4ff311464308a3627e4f1c3345d9fe6d7d" datatype="html"> | ||
5891 | <source>»</source><target state="new">»</target> | ||
5892 | <context-group purpose="location"> | ||
5893 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5894 | <context context-type="linenumber">1</context> | ||
5895 | </context-group> | ||
5896 | </trans-unit><trans-unit id="49f27a460bc97e7e00be5b37098bfa79884fc7d9" datatype="html"> | ||
5897 | <source>»»</source><target state="new">»»</target> | ||
5898 | <context-group purpose="location"> | ||
5899 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5900 | <context context-type="linenumber">1</context> | ||
5901 | </context-group> | ||
5902 | </trans-unit><trans-unit id="f2f852318759c6396b5d3d17031d53817d7b38cc" datatype="html"> | ||
5903 | <source>First</source><target state="new">First</target> | ||
5904 | <context-group purpose="location"> | ||
5905 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5906 | <context context-type="linenumber">1</context> | ||
5907 | </context-group> | ||
5908 | </trans-unit><trans-unit id="5c729788ba138508aca1bec050b610f7bf81db3e" datatype="html"> | ||
5909 | <source>Last</source><target state="new">Last</target> | ||
5910 | <context-group purpose="location"> | ||
5911 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5912 | <context context-type="linenumber">1</context> | ||
5913 | </context-group> | ||
5914 | </trans-unit><trans-unit id="f8e9a947b9db4252c0e9905765338712f2fd032f" datatype="html"> | ||
5915 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5916 | <context-group purpose="location"> | ||
5917 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5918 | <context context-type="linenumber">1</context> | ||
5919 | </context-group> | ||
5920 | </trans-unit><trans-unit id="ce676ab1d6d98f85c836381cf100a4a91ef95a1f" datatype="html"> | ||
5921 | <source>HH</source><target state="new">HH</target> | ||
5922 | <context-group purpose="location"> | ||
5923 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5924 | <context context-type="linenumber">1</context> | ||
5925 | </context-group> | ||
5926 | </trans-unit><trans-unit id="3bbce5fef7e1151da052a4e529453edb340e3912" datatype="html"> | ||
5927 | <source>Hours</source><target state="new">Hours</target> | ||
5928 | <context-group purpose="location"> | ||
5929 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5930 | <context context-type="linenumber">1</context> | ||
5931 | </context-group> | ||
5932 | </trans-unit><trans-unit id="72c8edf6a50068a05bde70991e36b1e881f4ca54" datatype="html"> | ||
5933 | <source>MM</source><target state="new">MM</target> | ||
5934 | <context-group purpose="location"> | ||
5935 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5936 | <context context-type="linenumber">1</context> | ||
5937 | </context-group> | ||
5938 | </trans-unit><trans-unit id="41e62daa962947c0d23ded0981975d1bddf0bf38" datatype="html"> | ||
5939 | <source>Minutes</source><target state="new">Minutes</target> | ||
5940 | <context-group purpose="location"> | ||
5941 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5942 | <context context-type="linenumber">1</context> | ||
5943 | </context-group> | ||
5944 | </trans-unit><trans-unit id="cb74bc1d625a6c1742f0d7d47306cf495780c218" datatype="html"> | ||
5945 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
5946 | <context-group purpose="location"> | ||
5947 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5948 | <context context-type="linenumber">1</context> | ||
5949 | </context-group> | ||
5950 | </trans-unit><trans-unit id="147c7a19429da7d999e247d22e33fee370b1691b" datatype="html"> | ||
5951 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
5952 | <context-group purpose="location"> | ||
5953 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5954 | <context context-type="linenumber">1</context> | ||
5955 | </context-group> | ||
5956 | </trans-unit><trans-unit id="f5a4a3bc05e053f6732475d0e74875ec01c3a348" datatype="html"> | ||
5957 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
5958 | <context-group purpose="location"> | ||
5959 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5960 | <context context-type="linenumber">1</context> | ||
5961 | </context-group> | ||
5962 | </trans-unit><trans-unit id="c1a6899e529c096da5b660385d4e77fe1f7ad271" datatype="html"> | ||
5963 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
5964 | <context-group purpose="location"> | ||
5965 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5966 | <context context-type="linenumber">1</context> | ||
5967 | </context-group> | ||
5968 | </trans-unit><trans-unit id="ebe38d36a40a2383c5fefa9b4608ffbda08bd4a3" datatype="html"> | ||
5969 | <source>SS</source><target state="new">SS</target> | ||
5970 | <context-group purpose="location"> | ||
5971 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5972 | <context context-type="linenumber">1</context> | ||
5973 | </context-group> | ||
5974 | </trans-unit><trans-unit id="4f2ed9e71a7c981db3e50ae2fedb28aff2ec4e6c" datatype="html"> | ||
5975 | <source>Seconds</source><target state="new">Seconds</target> | ||
5976 | <context-group purpose="location"> | ||
5977 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5978 | <context context-type="linenumber">1</context> | ||
5979 | </context-group> | ||
5980 | </trans-unit><trans-unit id="912322ecee7d659d04dcf494a70e22e49d334b26" datatype="html"> | ||
5981 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
5982 | <context-group purpose="location"> | ||
5983 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5984 | <context context-type="linenumber">1</context> | ||
5985 | </context-group> | ||
5986 | </trans-unit><trans-unit id="5db47ac104294243a70eb9124fbea9d0004ddf69" datatype="html"> | ||
5987 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
5988 | <context-group purpose="location"> | ||
5989 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5990 | <context context-type="linenumber">1</context> | ||
5991 | </context-group> | ||
5992 | </trans-unit><trans-unit id="8d6e691e10306c1b34c6b26805151aaea320ef7f" datatype="html"> | ||
5993 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5994 | <context-group purpose="location"> | ||
5995 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5996 | <context context-type="linenumber">1</context> | ||
5997 | </context-group> | ||
5998 | </trans-unit><trans-unit id="69a1f176a93998876952adac57c3bc3863b6105e" datatype="html"> | ||
5999 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
6000 | <context-group purpose="location"> | ||
6001 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
6002 | <context context-type="linenumber">1</context> | ||
6003 | </context-group> | ||
6004 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
6005 | <source>Get help</source><target state="new">Get help</target> | 5849 | <source>Get help</source><target state="new">Get help</target> |
6006 | <context-group purpose="location"> | 5850 | <context-group purpose="location"> |
6007 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 5851 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> |
@@ -9551,7 +9395,193 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9551 | <source>Only users of this instance can see this video</source> | 9395 | <source>Only users of this instance can see this video</source> |
9552 | <target state="new">Only users of this instance can see this video</target> | 9396 | <target state="new">Only users of this instance can see this video</target> |
9553 | 9397 | ||
9554 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit> | 9398 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit><trans-unit id="ngb.alert.close" datatype="html"> |
9399 | <source>Close</source><target state="new">Close</target> | ||
9400 | <context-group purpose="location"> | ||
9401 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/alert/alert.ts</context> | ||
9402 | <context context-type="linenumber">74</context> | ||
9403 | </context-group> | ||
9404 | </trans-unit><trans-unit id="ngb.carousel.previous" datatype="html"> | ||
9405 | <source>Previous</source><target state="new">Previous</target> | ||
9406 | <context-group purpose="location"> | ||
9407 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9408 | <context context-type="linenumber">349</context> | ||
9409 | </context-group> | ||
9410 | </trans-unit><trans-unit id="ngb.carousel.next" datatype="html"> | ||
9411 | <source>Next</source><target state="new">Next</target> | ||
9412 | <context-group purpose="location"> | ||
9413 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9414 | <context context-type="linenumber">349</context> | ||
9415 | </context-group> | ||
9416 | </trans-unit><trans-unit id="ngb.datepicker.previous-month" datatype="html"> | ||
9417 | <source>Previous month</source><target state="new">Previous month</target> | ||
9418 | <context-group purpose="location"> | ||
9419 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation.ts</context> | ||
9420 | <context context-type="linenumber">69</context> | ||
9421 | </context-group> | ||
9422 | </trans-unit><trans-unit id="ngb.datepicker.next-month" datatype="html"> | ||
9423 | <source>Next month</source><target state="new">Next month</target> | ||
9424 | <context-group purpose="location"> | ||
9425 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-month.ts</context> | ||
9426 | <context context-type="linenumber">72</context> | ||
9427 | </context-group> | ||
9428 | </trans-unit><trans-unit id="ngb.datepicker.select-month" datatype="html"> | ||
9429 | <source>Select month</source><target state="new">Select month</target> | ||
9430 | <context-group purpose="location"> | ||
9431 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9432 | <context context-type="linenumber">74</context> | ||
9433 | </context-group> | ||
9434 | </trans-unit><trans-unit id="ngb.datepicker.select-year" datatype="html"> | ||
9435 | <source>Select year</source><target state="new">Select year</target> | ||
9436 | <context-group purpose="location"> | ||
9437 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9438 | <context context-type="linenumber">74</context> | ||
9439 | </context-group> | ||
9440 | </trans-unit><trans-unit id="ngb.pagination.first" datatype="html"> | ||
9441 | <source>««</source><target state="new">««</target> | ||
9442 | <context-group purpose="location"> | ||
9443 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9444 | <context context-type="linenumber">404</context> | ||
9445 | </context-group> | ||
9446 | </trans-unit><trans-unit id="ngb.pagination.previous" datatype="html"> | ||
9447 | <source>«</source><target state="new">«</target> | ||
9448 | <context-group purpose="location"> | ||
9449 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9450 | <context context-type="linenumber">404</context> | ||
9451 | </context-group> | ||
9452 | </trans-unit><trans-unit id="ngb.pagination.next" datatype="html"> | ||
9453 | <source>»</source><target state="new">»</target> | ||
9454 | <context-group purpose="location"> | ||
9455 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9456 | <context context-type="linenumber">404</context> | ||
9457 | </context-group> | ||
9458 | </trans-unit><trans-unit id="ngb.pagination.last" datatype="html"> | ||
9459 | <source>»»</source><target state="new">»»</target> | ||
9460 | <context-group purpose="location"> | ||
9461 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9462 | <context context-type="linenumber">404</context> | ||
9463 | </context-group> | ||
9464 | </trans-unit><trans-unit id="ngb.pagination.first-aria" datatype="html"> | ||
9465 | <source>First</source><target state="new">First</target> | ||
9466 | <context-group purpose="location"> | ||
9467 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9468 | <context context-type="linenumber">404</context> | ||
9469 | </context-group> | ||
9470 | </trans-unit><trans-unit id="ngb.pagination.previous-aria" datatype="html"> | ||
9471 | <source>Previous</source><target state="new">Previous</target> | ||
9472 | <context-group purpose="location"> | ||
9473 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9474 | <context context-type="linenumber">404</context> | ||
9475 | </context-group> | ||
9476 | </trans-unit><trans-unit id="ngb.pagination.next-aria" datatype="html"> | ||
9477 | <source>Next</source><target state="new">Next</target> | ||
9478 | <context-group purpose="location"> | ||
9479 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9480 | <context context-type="linenumber">404</context> | ||
9481 | </context-group> | ||
9482 | </trans-unit><trans-unit id="ngb.pagination.last-aria" datatype="html"> | ||
9483 | <source>Last</source><target state="new">Last</target> | ||
9484 | <context-group purpose="location"> | ||
9485 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9486 | <context context-type="linenumber">404</context> | ||
9487 | </context-group> | ||
9488 | </trans-unit><trans-unit id="ngb.progressbar.value" datatype="html"> | ||
9489 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9490 | <context-group purpose="location"> | ||
9491 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/progressbar/progressbar.ts</context> | ||
9492 | <context context-type="linenumber">101</context> | ||
9493 | </context-group> | ||
9494 | </trans-unit><trans-unit id="ngb.timepicker.HH" datatype="html"> | ||
9495 | <source>HH</source><target state="new">HH</target> | ||
9496 | <context-group purpose="location"> | ||
9497 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9498 | <context context-type="linenumber">296</context> | ||
9499 | </context-group> | ||
9500 | </trans-unit><trans-unit id="ngb.timepicker.hours" datatype="html"> | ||
9501 | <source>Hours</source><target state="new">Hours</target> | ||
9502 | <context-group purpose="location"> | ||
9503 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9504 | <context context-type="linenumber">296</context> | ||
9505 | </context-group> | ||
9506 | </trans-unit><trans-unit id="ngb.timepicker.MM" datatype="html"> | ||
9507 | <source>MM</source><target state="new">MM</target> | ||
9508 | <context-group purpose="location"> | ||
9509 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9510 | <context context-type="linenumber">296</context> | ||
9511 | </context-group> | ||
9512 | </trans-unit><trans-unit id="ngb.timepicker.minutes" datatype="html"> | ||
9513 | <source>Minutes</source><target state="new">Minutes</target> | ||
9514 | <context-group purpose="location"> | ||
9515 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9516 | <context context-type="linenumber">296</context> | ||
9517 | </context-group> | ||
9518 | </trans-unit><trans-unit id="ngb.timepicker.increment-hours" datatype="html"> | ||
9519 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
9520 | <context-group purpose="location"> | ||
9521 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9522 | <context context-type="linenumber">296</context> | ||
9523 | </context-group> | ||
9524 | </trans-unit><trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> | ||
9525 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
9526 | <context-group purpose="location"> | ||
9527 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9528 | <context context-type="linenumber">296</context> | ||
9529 | </context-group> | ||
9530 | </trans-unit><trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> | ||
9531 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
9532 | <context-group purpose="location"> | ||
9533 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9534 | <context context-type="linenumber">296</context> | ||
9535 | </context-group> | ||
9536 | </trans-unit><trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> | ||
9537 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
9538 | <context-group purpose="location"> | ||
9539 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9540 | <context context-type="linenumber">296</context> | ||
9541 | </context-group> | ||
9542 | </trans-unit><trans-unit id="ngb.timepicker.SS" datatype="html"> | ||
9543 | <source>SS</source><target state="new">SS</target> | ||
9544 | <context-group purpose="location"> | ||
9545 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9546 | <context context-type="linenumber">296</context> | ||
9547 | </context-group> | ||
9548 | </trans-unit><trans-unit id="ngb.timepicker.seconds" datatype="html"> | ||
9549 | <source>Seconds</source><target state="new">Seconds</target> | ||
9550 | <context-group purpose="location"> | ||
9551 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9552 | <context context-type="linenumber">296</context> | ||
9553 | </context-group> | ||
9554 | </trans-unit><trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> | ||
9555 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
9556 | <context-group purpose="location"> | ||
9557 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9558 | <context context-type="linenumber">296</context> | ||
9559 | </context-group> | ||
9560 | </trans-unit><trans-unit id="ngb.timepicker.decrement-seconds" datatype="html"> | ||
9561 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
9562 | <context-group purpose="location"> | ||
9563 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9564 | <context context-type="linenumber">296</context> | ||
9565 | </context-group> | ||
9566 | </trans-unit><trans-unit id="ngb.timepicker.PM" datatype="html"> | ||
9567 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9568 | <context-group purpose="location"> | ||
9569 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9570 | <context context-type="linenumber">296</context> | ||
9571 | </context-group> | ||
9572 | </trans-unit><trans-unit id="ngb.timepicker.AM" datatype="html"> | ||
9573 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9574 | <context-group purpose="location"> | ||
9575 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9576 | <context context-type="linenumber">296</context> | ||
9577 | </context-group> | ||
9578 | </trans-unit><trans-unit id="ngb.toast.close-aria" datatype="html"> | ||
9579 | <source>Close</source><target state="new">Close</target> | ||
9580 | <context-group purpose="location"> | ||
9581 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/toast/toast.ts</context> | ||
9582 | <context context-type="linenumber">137</context> | ||
9583 | </context-group> | ||
9584 | </trans-unit> | ||
9555 | <trans-unit id="5210096066382592800" datatype="html"> | 9585 | <trans-unit id="5210096066382592800" datatype="html"> |
9556 | <source>Video to import updated.</source> | 9586 | <source>Video to import updated.</source> |
9557 | <target state="new">Video to import updated.</target> | 9587 | <target state="new">Video to import updated.</target> |
diff --git a/client/src/locale/angular.sl-SI.xlf b/client/src/locale/angular.sl-SI.xlf index fca21a79c..5dcfb0ead 100644 --- a/client/src/locale/angular.sl-SI.xlf +++ b/client/src/locale/angular.sl-SI.xlf | |||
@@ -1331,13 +1331,7 @@ The link will expire within 1 hour.</target> | |||
1331 | <source>Close</source> | 1331 | <source>Close</source> |
1332 | <target state="new">Close</target> | 1332 | <target state="new">Close</target> |
1333 | 1333 | ||
1334 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="680d5c75b7fd8d37961083608b9fcdc4167b4c43" datatype="html"> | 1334 | <context-group purpose="location"><context context-type="sourcefile">../app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1335 | <source>Previous</source><target state="new">Previous</target> | ||
1336 | <context-group purpose="location"> | ||
1337 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
1338 | <context context-type="linenumber">1</context> | ||
1339 | </context-group> | ||
1340 | </trans-unit> | ||
1341 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> | 1335 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> |
1342 | <source> | 1336 | <source> |
1343 | Configure | 1337 | Configure |
@@ -5851,157 +5845,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5851 | <source>Next</source> | 5845 | <source>Next</source> |
5852 | <target state="new">Next</target> | 5846 | <target state="new">Next</target> |
5853 | 5847 | ||
5854 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="c3b08b07b5ab98e7cdcf18df39355690ab7d3884" datatype="html"> | 5848 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit><trans-unit id="9082008222523034483" datatype="html"> |
5855 | <source>Previous month</source><target state="new">Previous month</target> | ||
5856 | <context-group purpose="location"> | ||
5857 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5858 | <context context-type="linenumber">1</context> | ||
5859 | </context-group> | ||
5860 | </trans-unit><trans-unit id="4bd046985cfe13040d5ef0cd881edce0968a111a" datatype="html"> | ||
5861 | <source>Next month</source><target state="new">Next month</target> | ||
5862 | <context-group purpose="location"> | ||
5863 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5864 | <context context-type="linenumber">1</context> | ||
5865 | </context-group> | ||
5866 | </trans-unit><trans-unit id="1dbc84807f35518112f62e5775d1daebd3d8462b" datatype="html"> | ||
5867 | <source>Select month</source><target state="new">Select month</target> | ||
5868 | <context-group purpose="location"> | ||
5869 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5870 | <context context-type="linenumber">1</context> | ||
5871 | </context-group> | ||
5872 | </trans-unit><trans-unit id="8ceb09d002bf0c5d1cac171dfbffe1805d2b3962" datatype="html"> | ||
5873 | <source>Select year</source><target state="new">Select year</target> | ||
5874 | <context-group purpose="location"> | ||
5875 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5876 | <context context-type="linenumber">1</context> | ||
5877 | </context-group> | ||
5878 | </trans-unit><trans-unit id="656506dfd46380956a655f919f1498d018f75ca0" datatype="html"> | ||
5879 | <source>««</source><target state="new">««</target> | ||
5880 | <context-group purpose="location"> | ||
5881 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5882 | <context context-type="linenumber">1</context> | ||
5883 | </context-group> | ||
5884 | </trans-unit><trans-unit id="6e52b6ee77a4848d899dd21b591c6fd499e3aef3" datatype="html"> | ||
5885 | <source>«</source><target state="new">«</target> | ||
5886 | <context-group purpose="location"> | ||
5887 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5888 | <context context-type="linenumber">1</context> | ||
5889 | </context-group> | ||
5890 | </trans-unit><trans-unit id="ba9cbb4ff311464308a3627e4f1c3345d9fe6d7d" datatype="html"> | ||
5891 | <source>»</source><target state="new">»</target> | ||
5892 | <context-group purpose="location"> | ||
5893 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5894 | <context context-type="linenumber">1</context> | ||
5895 | </context-group> | ||
5896 | </trans-unit><trans-unit id="49f27a460bc97e7e00be5b37098bfa79884fc7d9" datatype="html"> | ||
5897 | <source>»»</source><target state="new">»»</target> | ||
5898 | <context-group purpose="location"> | ||
5899 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5900 | <context context-type="linenumber">1</context> | ||
5901 | </context-group> | ||
5902 | </trans-unit><trans-unit id="f2f852318759c6396b5d3d17031d53817d7b38cc" datatype="html"> | ||
5903 | <source>First</source><target state="new">First</target> | ||
5904 | <context-group purpose="location"> | ||
5905 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5906 | <context context-type="linenumber">1</context> | ||
5907 | </context-group> | ||
5908 | </trans-unit><trans-unit id="5c729788ba138508aca1bec050b610f7bf81db3e" datatype="html"> | ||
5909 | <source>Last</source><target state="new">Last</target> | ||
5910 | <context-group purpose="location"> | ||
5911 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5912 | <context context-type="linenumber">1</context> | ||
5913 | </context-group> | ||
5914 | </trans-unit><trans-unit id="f8e9a947b9db4252c0e9905765338712f2fd032f" datatype="html"> | ||
5915 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5916 | <context-group purpose="location"> | ||
5917 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5918 | <context context-type="linenumber">1</context> | ||
5919 | </context-group> | ||
5920 | </trans-unit><trans-unit id="ce676ab1d6d98f85c836381cf100a4a91ef95a1f" datatype="html"> | ||
5921 | <source>HH</source><target state="new">HH</target> | ||
5922 | <context-group purpose="location"> | ||
5923 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5924 | <context context-type="linenumber">1</context> | ||
5925 | </context-group> | ||
5926 | </trans-unit><trans-unit id="3bbce5fef7e1151da052a4e529453edb340e3912" datatype="html"> | ||
5927 | <source>Hours</source><target state="new">Hours</target> | ||
5928 | <context-group purpose="location"> | ||
5929 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5930 | <context context-type="linenumber">1</context> | ||
5931 | </context-group> | ||
5932 | </trans-unit><trans-unit id="72c8edf6a50068a05bde70991e36b1e881f4ca54" datatype="html"> | ||
5933 | <source>MM</source><target state="new">MM</target> | ||
5934 | <context-group purpose="location"> | ||
5935 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5936 | <context context-type="linenumber">1</context> | ||
5937 | </context-group> | ||
5938 | </trans-unit><trans-unit id="41e62daa962947c0d23ded0981975d1bddf0bf38" datatype="html"> | ||
5939 | <source>Minutes</source><target state="new">Minutes</target> | ||
5940 | <context-group purpose="location"> | ||
5941 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5942 | <context context-type="linenumber">1</context> | ||
5943 | </context-group> | ||
5944 | </trans-unit><trans-unit id="cb74bc1d625a6c1742f0d7d47306cf495780c218" datatype="html"> | ||
5945 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
5946 | <context-group purpose="location"> | ||
5947 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5948 | <context context-type="linenumber">1</context> | ||
5949 | </context-group> | ||
5950 | </trans-unit><trans-unit id="147c7a19429da7d999e247d22e33fee370b1691b" datatype="html"> | ||
5951 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
5952 | <context-group purpose="location"> | ||
5953 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5954 | <context context-type="linenumber">1</context> | ||
5955 | </context-group> | ||
5956 | </trans-unit><trans-unit id="f5a4a3bc05e053f6732475d0e74875ec01c3a348" datatype="html"> | ||
5957 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
5958 | <context-group purpose="location"> | ||
5959 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5960 | <context context-type="linenumber">1</context> | ||
5961 | </context-group> | ||
5962 | </trans-unit><trans-unit id="c1a6899e529c096da5b660385d4e77fe1f7ad271" datatype="html"> | ||
5963 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
5964 | <context-group purpose="location"> | ||
5965 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5966 | <context context-type="linenumber">1</context> | ||
5967 | </context-group> | ||
5968 | </trans-unit><trans-unit id="ebe38d36a40a2383c5fefa9b4608ffbda08bd4a3" datatype="html"> | ||
5969 | <source>SS</source><target state="new">SS</target> | ||
5970 | <context-group purpose="location"> | ||
5971 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5972 | <context context-type="linenumber">1</context> | ||
5973 | </context-group> | ||
5974 | </trans-unit><trans-unit id="4f2ed9e71a7c981db3e50ae2fedb28aff2ec4e6c" datatype="html"> | ||
5975 | <source>Seconds</source><target state="new">Seconds</target> | ||
5976 | <context-group purpose="location"> | ||
5977 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5978 | <context context-type="linenumber">1</context> | ||
5979 | </context-group> | ||
5980 | </trans-unit><trans-unit id="912322ecee7d659d04dcf494a70e22e49d334b26" datatype="html"> | ||
5981 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
5982 | <context-group purpose="location"> | ||
5983 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5984 | <context context-type="linenumber">1</context> | ||
5985 | </context-group> | ||
5986 | </trans-unit><trans-unit id="5db47ac104294243a70eb9124fbea9d0004ddf69" datatype="html"> | ||
5987 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
5988 | <context-group purpose="location"> | ||
5989 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5990 | <context context-type="linenumber">1</context> | ||
5991 | </context-group> | ||
5992 | </trans-unit><trans-unit id="8d6e691e10306c1b34c6b26805151aaea320ef7f" datatype="html"> | ||
5993 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5994 | <context-group purpose="location"> | ||
5995 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5996 | <context context-type="linenumber">1</context> | ||
5997 | </context-group> | ||
5998 | </trans-unit><trans-unit id="69a1f176a93998876952adac57c3bc3863b6105e" datatype="html"> | ||
5999 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
6000 | <context-group purpose="location"> | ||
6001 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
6002 | <context context-type="linenumber">1</context> | ||
6003 | </context-group> | ||
6004 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
6005 | <source>Get help</source><target state="new">Get help</target> | 5849 | <source>Get help</source><target state="new">Get help</target> |
6006 | <context-group purpose="location"> | 5850 | <context-group purpose="location"> |
6007 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 5851 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> |
@@ -9551,7 +9395,193 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9551 | <source>Only users of this instance can see this video</source> | 9395 | <source>Only users of this instance can see this video</source> |
9552 | <target state="new">Only users of this instance can see this video</target> | 9396 | <target state="new">Only users of this instance can see this video</target> |
9553 | 9397 | ||
9554 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit> | 9398 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit><trans-unit id="ngb.alert.close" datatype="html"> |
9399 | <source>Close</source><target state="new">Close</target> | ||
9400 | <context-group purpose="location"> | ||
9401 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/alert/alert.ts</context> | ||
9402 | <context context-type="linenumber">74</context> | ||
9403 | </context-group> | ||
9404 | </trans-unit><trans-unit id="ngb.carousel.previous" datatype="html"> | ||
9405 | <source>Previous</source><target state="new">Previous</target> | ||
9406 | <context-group purpose="location"> | ||
9407 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9408 | <context context-type="linenumber">349</context> | ||
9409 | </context-group> | ||
9410 | </trans-unit><trans-unit id="ngb.carousel.next" datatype="html"> | ||
9411 | <source>Next</source><target state="new">Next</target> | ||
9412 | <context-group purpose="location"> | ||
9413 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9414 | <context context-type="linenumber">349</context> | ||
9415 | </context-group> | ||
9416 | </trans-unit><trans-unit id="ngb.datepicker.previous-month" datatype="html"> | ||
9417 | <source>Previous month</source><target state="new">Previous month</target> | ||
9418 | <context-group purpose="location"> | ||
9419 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation.ts</context> | ||
9420 | <context context-type="linenumber">69</context> | ||
9421 | </context-group> | ||
9422 | </trans-unit><trans-unit id="ngb.datepicker.next-month" datatype="html"> | ||
9423 | <source>Next month</source><target state="new">Next month</target> | ||
9424 | <context-group purpose="location"> | ||
9425 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-month.ts</context> | ||
9426 | <context context-type="linenumber">72</context> | ||
9427 | </context-group> | ||
9428 | </trans-unit><trans-unit id="ngb.datepicker.select-month" datatype="html"> | ||
9429 | <source>Select month</source><target state="new">Select month</target> | ||
9430 | <context-group purpose="location"> | ||
9431 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9432 | <context context-type="linenumber">74</context> | ||
9433 | </context-group> | ||
9434 | </trans-unit><trans-unit id="ngb.datepicker.select-year" datatype="html"> | ||
9435 | <source>Select year</source><target state="new">Select year</target> | ||
9436 | <context-group purpose="location"> | ||
9437 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9438 | <context context-type="linenumber">74</context> | ||
9439 | </context-group> | ||
9440 | </trans-unit><trans-unit id="ngb.pagination.first" datatype="html"> | ||
9441 | <source>««</source><target state="new">««</target> | ||
9442 | <context-group purpose="location"> | ||
9443 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9444 | <context context-type="linenumber">404</context> | ||
9445 | </context-group> | ||
9446 | </trans-unit><trans-unit id="ngb.pagination.previous" datatype="html"> | ||
9447 | <source>«</source><target state="new">«</target> | ||
9448 | <context-group purpose="location"> | ||
9449 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9450 | <context context-type="linenumber">404</context> | ||
9451 | </context-group> | ||
9452 | </trans-unit><trans-unit id="ngb.pagination.next" datatype="html"> | ||
9453 | <source>»</source><target state="new">»</target> | ||
9454 | <context-group purpose="location"> | ||
9455 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9456 | <context context-type="linenumber">404</context> | ||
9457 | </context-group> | ||
9458 | </trans-unit><trans-unit id="ngb.pagination.last" datatype="html"> | ||
9459 | <source>»»</source><target state="new">»»</target> | ||
9460 | <context-group purpose="location"> | ||
9461 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9462 | <context context-type="linenumber">404</context> | ||
9463 | </context-group> | ||
9464 | </trans-unit><trans-unit id="ngb.pagination.first-aria" datatype="html"> | ||
9465 | <source>First</source><target state="new">First</target> | ||
9466 | <context-group purpose="location"> | ||
9467 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9468 | <context context-type="linenumber">404</context> | ||
9469 | </context-group> | ||
9470 | </trans-unit><trans-unit id="ngb.pagination.previous-aria" datatype="html"> | ||
9471 | <source>Previous</source><target state="new">Previous</target> | ||
9472 | <context-group purpose="location"> | ||
9473 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9474 | <context context-type="linenumber">404</context> | ||
9475 | </context-group> | ||
9476 | </trans-unit><trans-unit id="ngb.pagination.next-aria" datatype="html"> | ||
9477 | <source>Next</source><target state="new">Next</target> | ||
9478 | <context-group purpose="location"> | ||
9479 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9480 | <context context-type="linenumber">404</context> | ||
9481 | </context-group> | ||
9482 | </trans-unit><trans-unit id="ngb.pagination.last-aria" datatype="html"> | ||
9483 | <source>Last</source><target state="new">Last</target> | ||
9484 | <context-group purpose="location"> | ||
9485 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9486 | <context context-type="linenumber">404</context> | ||
9487 | </context-group> | ||
9488 | </trans-unit><trans-unit id="ngb.progressbar.value" datatype="html"> | ||
9489 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9490 | <context-group purpose="location"> | ||
9491 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/progressbar/progressbar.ts</context> | ||
9492 | <context context-type="linenumber">101</context> | ||
9493 | </context-group> | ||
9494 | </trans-unit><trans-unit id="ngb.timepicker.HH" datatype="html"> | ||
9495 | <source>HH</source><target state="new">HH</target> | ||
9496 | <context-group purpose="location"> | ||
9497 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9498 | <context context-type="linenumber">296</context> | ||
9499 | </context-group> | ||
9500 | </trans-unit><trans-unit id="ngb.timepicker.hours" datatype="html"> | ||
9501 | <source>Hours</source><target state="new">Hours</target> | ||
9502 | <context-group purpose="location"> | ||
9503 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9504 | <context context-type="linenumber">296</context> | ||
9505 | </context-group> | ||
9506 | </trans-unit><trans-unit id="ngb.timepicker.MM" datatype="html"> | ||
9507 | <source>MM</source><target state="new">MM</target> | ||
9508 | <context-group purpose="location"> | ||
9509 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9510 | <context context-type="linenumber">296</context> | ||
9511 | </context-group> | ||
9512 | </trans-unit><trans-unit id="ngb.timepicker.minutes" datatype="html"> | ||
9513 | <source>Minutes</source><target state="new">Minutes</target> | ||
9514 | <context-group purpose="location"> | ||
9515 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9516 | <context context-type="linenumber">296</context> | ||
9517 | </context-group> | ||
9518 | </trans-unit><trans-unit id="ngb.timepicker.increment-hours" datatype="html"> | ||
9519 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
9520 | <context-group purpose="location"> | ||
9521 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9522 | <context context-type="linenumber">296</context> | ||
9523 | </context-group> | ||
9524 | </trans-unit><trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> | ||
9525 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
9526 | <context-group purpose="location"> | ||
9527 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9528 | <context context-type="linenumber">296</context> | ||
9529 | </context-group> | ||
9530 | </trans-unit><trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> | ||
9531 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
9532 | <context-group purpose="location"> | ||
9533 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9534 | <context context-type="linenumber">296</context> | ||
9535 | </context-group> | ||
9536 | </trans-unit><trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> | ||
9537 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
9538 | <context-group purpose="location"> | ||
9539 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9540 | <context context-type="linenumber">296</context> | ||
9541 | </context-group> | ||
9542 | </trans-unit><trans-unit id="ngb.timepicker.SS" datatype="html"> | ||
9543 | <source>SS</source><target state="new">SS</target> | ||
9544 | <context-group purpose="location"> | ||
9545 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9546 | <context context-type="linenumber">296</context> | ||
9547 | </context-group> | ||
9548 | </trans-unit><trans-unit id="ngb.timepicker.seconds" datatype="html"> | ||
9549 | <source>Seconds</source><target state="new">Seconds</target> | ||
9550 | <context-group purpose="location"> | ||
9551 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9552 | <context context-type="linenumber">296</context> | ||
9553 | </context-group> | ||
9554 | </trans-unit><trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> | ||
9555 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
9556 | <context-group purpose="location"> | ||
9557 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9558 | <context context-type="linenumber">296</context> | ||
9559 | </context-group> | ||
9560 | </trans-unit><trans-unit id="ngb.timepicker.decrement-seconds" datatype="html"> | ||
9561 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
9562 | <context-group purpose="location"> | ||
9563 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9564 | <context context-type="linenumber">296</context> | ||
9565 | </context-group> | ||
9566 | </trans-unit><trans-unit id="ngb.timepicker.PM" datatype="html"> | ||
9567 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9568 | <context-group purpose="location"> | ||
9569 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9570 | <context context-type="linenumber">296</context> | ||
9571 | </context-group> | ||
9572 | </trans-unit><trans-unit id="ngb.timepicker.AM" datatype="html"> | ||
9573 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9574 | <context-group purpose="location"> | ||
9575 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9576 | <context context-type="linenumber">296</context> | ||
9577 | </context-group> | ||
9578 | </trans-unit><trans-unit id="ngb.toast.close-aria" datatype="html"> | ||
9579 | <source>Close</source><target state="new">Close</target> | ||
9580 | <context-group purpose="location"> | ||
9581 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/toast/toast.ts</context> | ||
9582 | <context context-type="linenumber">137</context> | ||
9583 | </context-group> | ||
9584 | </trans-unit> | ||
9555 | <trans-unit id="5210096066382592800" datatype="html"> | 9585 | <trans-unit id="5210096066382592800" datatype="html"> |
9556 | <source>Video to import updated.</source> | 9586 | <source>Video to import updated.</source> |
9557 | <target state="new">Video to import updated.</target> | 9587 | <target state="new">Video to import updated.</target> |
diff --git a/client/src/locale/angular.ta.xlf b/client/src/locale/angular.ta.xlf index c0a539251..e0eab184c 100644 --- a/client/src/locale/angular.ta.xlf +++ b/client/src/locale/angular.ta.xlf | |||
@@ -1331,13 +1331,7 @@ The link will expire within 1 hour.</target> | |||
1331 | <source>Close</source> | 1331 | <source>Close</source> |
1332 | <target state="new">Close</target> | 1332 | <target state="new">Close</target> |
1333 | 1333 | ||
1334 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="680d5c75b7fd8d37961083608b9fcdc4167b4c43" datatype="html"> | 1334 | <context-group purpose="location"><context context-type="sourcefile">../app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1335 | <source>Previous</source><target state="new">Previous</target> | ||
1336 | <context-group purpose="location"> | ||
1337 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
1338 | <context context-type="linenumber">1</context> | ||
1339 | </context-group> | ||
1340 | </trans-unit> | ||
1341 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> | 1335 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> |
1342 | <source> | 1336 | <source> |
1343 | Configure | 1337 | Configure |
@@ -5851,157 +5845,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5851 | <source>Next</source> | 5845 | <source>Next</source> |
5852 | <target state="new">Next</target> | 5846 | <target state="new">Next</target> |
5853 | 5847 | ||
5854 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="c3b08b07b5ab98e7cdcf18df39355690ab7d3884" datatype="html"> | 5848 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit><trans-unit id="9082008222523034483" datatype="html"> |
5855 | <source>Previous month</source><target state="new">Previous month</target> | ||
5856 | <context-group purpose="location"> | ||
5857 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5858 | <context context-type="linenumber">1</context> | ||
5859 | </context-group> | ||
5860 | </trans-unit><trans-unit id="4bd046985cfe13040d5ef0cd881edce0968a111a" datatype="html"> | ||
5861 | <source>Next month</source><target state="new">Next month</target> | ||
5862 | <context-group purpose="location"> | ||
5863 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5864 | <context context-type="linenumber">1</context> | ||
5865 | </context-group> | ||
5866 | </trans-unit><trans-unit id="1dbc84807f35518112f62e5775d1daebd3d8462b" datatype="html"> | ||
5867 | <source>Select month</source><target state="new">Select month</target> | ||
5868 | <context-group purpose="location"> | ||
5869 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5870 | <context context-type="linenumber">1</context> | ||
5871 | </context-group> | ||
5872 | </trans-unit><trans-unit id="8ceb09d002bf0c5d1cac171dfbffe1805d2b3962" datatype="html"> | ||
5873 | <source>Select year</source><target state="new">Select year</target> | ||
5874 | <context-group purpose="location"> | ||
5875 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5876 | <context context-type="linenumber">1</context> | ||
5877 | </context-group> | ||
5878 | </trans-unit><trans-unit id="656506dfd46380956a655f919f1498d018f75ca0" datatype="html"> | ||
5879 | <source>««</source><target state="new">««</target> | ||
5880 | <context-group purpose="location"> | ||
5881 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5882 | <context context-type="linenumber">1</context> | ||
5883 | </context-group> | ||
5884 | </trans-unit><trans-unit id="6e52b6ee77a4848d899dd21b591c6fd499e3aef3" datatype="html"> | ||
5885 | <source>«</source><target state="new">«</target> | ||
5886 | <context-group purpose="location"> | ||
5887 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5888 | <context context-type="linenumber">1</context> | ||
5889 | </context-group> | ||
5890 | </trans-unit><trans-unit id="ba9cbb4ff311464308a3627e4f1c3345d9fe6d7d" datatype="html"> | ||
5891 | <source>»</source><target state="new">»</target> | ||
5892 | <context-group purpose="location"> | ||
5893 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5894 | <context context-type="linenumber">1</context> | ||
5895 | </context-group> | ||
5896 | </trans-unit><trans-unit id="49f27a460bc97e7e00be5b37098bfa79884fc7d9" datatype="html"> | ||
5897 | <source>»»</source><target state="new">»»</target> | ||
5898 | <context-group purpose="location"> | ||
5899 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5900 | <context context-type="linenumber">1</context> | ||
5901 | </context-group> | ||
5902 | </trans-unit><trans-unit id="f2f852318759c6396b5d3d17031d53817d7b38cc" datatype="html"> | ||
5903 | <source>First</source><target state="new">First</target> | ||
5904 | <context-group purpose="location"> | ||
5905 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5906 | <context context-type="linenumber">1</context> | ||
5907 | </context-group> | ||
5908 | </trans-unit><trans-unit id="5c729788ba138508aca1bec050b610f7bf81db3e" datatype="html"> | ||
5909 | <source>Last</source><target state="new">Last</target> | ||
5910 | <context-group purpose="location"> | ||
5911 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5912 | <context context-type="linenumber">1</context> | ||
5913 | </context-group> | ||
5914 | </trans-unit><trans-unit id="f8e9a947b9db4252c0e9905765338712f2fd032f" datatype="html"> | ||
5915 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5916 | <context-group purpose="location"> | ||
5917 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5918 | <context context-type="linenumber">1</context> | ||
5919 | </context-group> | ||
5920 | </trans-unit><trans-unit id="ce676ab1d6d98f85c836381cf100a4a91ef95a1f" datatype="html"> | ||
5921 | <source>HH</source><target state="new">HH</target> | ||
5922 | <context-group purpose="location"> | ||
5923 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5924 | <context context-type="linenumber">1</context> | ||
5925 | </context-group> | ||
5926 | </trans-unit><trans-unit id="3bbce5fef7e1151da052a4e529453edb340e3912" datatype="html"> | ||
5927 | <source>Hours</source><target state="new">Hours</target> | ||
5928 | <context-group purpose="location"> | ||
5929 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5930 | <context context-type="linenumber">1</context> | ||
5931 | </context-group> | ||
5932 | </trans-unit><trans-unit id="72c8edf6a50068a05bde70991e36b1e881f4ca54" datatype="html"> | ||
5933 | <source>MM</source><target state="new">MM</target> | ||
5934 | <context-group purpose="location"> | ||
5935 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5936 | <context context-type="linenumber">1</context> | ||
5937 | </context-group> | ||
5938 | </trans-unit><trans-unit id="41e62daa962947c0d23ded0981975d1bddf0bf38" datatype="html"> | ||
5939 | <source>Minutes</source><target state="new">Minutes</target> | ||
5940 | <context-group purpose="location"> | ||
5941 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5942 | <context context-type="linenumber">1</context> | ||
5943 | </context-group> | ||
5944 | </trans-unit><trans-unit id="cb74bc1d625a6c1742f0d7d47306cf495780c218" datatype="html"> | ||
5945 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
5946 | <context-group purpose="location"> | ||
5947 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5948 | <context context-type="linenumber">1</context> | ||
5949 | </context-group> | ||
5950 | </trans-unit><trans-unit id="147c7a19429da7d999e247d22e33fee370b1691b" datatype="html"> | ||
5951 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
5952 | <context-group purpose="location"> | ||
5953 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5954 | <context context-type="linenumber">1</context> | ||
5955 | </context-group> | ||
5956 | </trans-unit><trans-unit id="f5a4a3bc05e053f6732475d0e74875ec01c3a348" datatype="html"> | ||
5957 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
5958 | <context-group purpose="location"> | ||
5959 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5960 | <context context-type="linenumber">1</context> | ||
5961 | </context-group> | ||
5962 | </trans-unit><trans-unit id="c1a6899e529c096da5b660385d4e77fe1f7ad271" datatype="html"> | ||
5963 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
5964 | <context-group purpose="location"> | ||
5965 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5966 | <context context-type="linenumber">1</context> | ||
5967 | </context-group> | ||
5968 | </trans-unit><trans-unit id="ebe38d36a40a2383c5fefa9b4608ffbda08bd4a3" datatype="html"> | ||
5969 | <source>SS</source><target state="new">SS</target> | ||
5970 | <context-group purpose="location"> | ||
5971 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5972 | <context context-type="linenumber">1</context> | ||
5973 | </context-group> | ||
5974 | </trans-unit><trans-unit id="4f2ed9e71a7c981db3e50ae2fedb28aff2ec4e6c" datatype="html"> | ||
5975 | <source>Seconds</source><target state="new">Seconds</target> | ||
5976 | <context-group purpose="location"> | ||
5977 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5978 | <context context-type="linenumber">1</context> | ||
5979 | </context-group> | ||
5980 | </trans-unit><trans-unit id="912322ecee7d659d04dcf494a70e22e49d334b26" datatype="html"> | ||
5981 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
5982 | <context-group purpose="location"> | ||
5983 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5984 | <context context-type="linenumber">1</context> | ||
5985 | </context-group> | ||
5986 | </trans-unit><trans-unit id="5db47ac104294243a70eb9124fbea9d0004ddf69" datatype="html"> | ||
5987 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
5988 | <context-group purpose="location"> | ||
5989 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5990 | <context context-type="linenumber">1</context> | ||
5991 | </context-group> | ||
5992 | </trans-unit><trans-unit id="8d6e691e10306c1b34c6b26805151aaea320ef7f" datatype="html"> | ||
5993 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5994 | <context-group purpose="location"> | ||
5995 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5996 | <context context-type="linenumber">1</context> | ||
5997 | </context-group> | ||
5998 | </trans-unit><trans-unit id="69a1f176a93998876952adac57c3bc3863b6105e" datatype="html"> | ||
5999 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
6000 | <context-group purpose="location"> | ||
6001 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
6002 | <context context-type="linenumber">1</context> | ||
6003 | </context-group> | ||
6004 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
6005 | <source>Get help</source><target state="new">Get help</target> | 5849 | <source>Get help</source><target state="new">Get help</target> |
6006 | <context-group purpose="location"> | 5850 | <context-group purpose="location"> |
6007 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 5851 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> |
@@ -9551,7 +9395,193 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9551 | <source>Only users of this instance can see this video</source> | 9395 | <source>Only users of this instance can see this video</source> |
9552 | <target state="new">Only users of this instance can see this video</target> | 9396 | <target state="new">Only users of this instance can see this video</target> |
9553 | 9397 | ||
9554 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit> | 9398 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit><trans-unit id="ngb.alert.close" datatype="html"> |
9399 | <source>Close</source><target state="new">Close</target> | ||
9400 | <context-group purpose="location"> | ||
9401 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/alert/alert.ts</context> | ||
9402 | <context context-type="linenumber">74</context> | ||
9403 | </context-group> | ||
9404 | </trans-unit><trans-unit id="ngb.carousel.previous" datatype="html"> | ||
9405 | <source>Previous</source><target state="new">Previous</target> | ||
9406 | <context-group purpose="location"> | ||
9407 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9408 | <context context-type="linenumber">349</context> | ||
9409 | </context-group> | ||
9410 | </trans-unit><trans-unit id="ngb.carousel.next" datatype="html"> | ||
9411 | <source>Next</source><target state="new">Next</target> | ||
9412 | <context-group purpose="location"> | ||
9413 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9414 | <context context-type="linenumber">349</context> | ||
9415 | </context-group> | ||
9416 | </trans-unit><trans-unit id="ngb.datepicker.previous-month" datatype="html"> | ||
9417 | <source>Previous month</source><target state="new">Previous month</target> | ||
9418 | <context-group purpose="location"> | ||
9419 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation.ts</context> | ||
9420 | <context context-type="linenumber">69</context> | ||
9421 | </context-group> | ||
9422 | </trans-unit><trans-unit id="ngb.datepicker.next-month" datatype="html"> | ||
9423 | <source>Next month</source><target state="new">Next month</target> | ||
9424 | <context-group purpose="location"> | ||
9425 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-month.ts</context> | ||
9426 | <context context-type="linenumber">72</context> | ||
9427 | </context-group> | ||
9428 | </trans-unit><trans-unit id="ngb.datepicker.select-month" datatype="html"> | ||
9429 | <source>Select month</source><target state="new">Select month</target> | ||
9430 | <context-group purpose="location"> | ||
9431 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9432 | <context context-type="linenumber">74</context> | ||
9433 | </context-group> | ||
9434 | </trans-unit><trans-unit id="ngb.datepicker.select-year" datatype="html"> | ||
9435 | <source>Select year</source><target state="new">Select year</target> | ||
9436 | <context-group purpose="location"> | ||
9437 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9438 | <context context-type="linenumber">74</context> | ||
9439 | </context-group> | ||
9440 | </trans-unit><trans-unit id="ngb.pagination.first" datatype="html"> | ||
9441 | <source>««</source><target state="new">««</target> | ||
9442 | <context-group purpose="location"> | ||
9443 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9444 | <context context-type="linenumber">404</context> | ||
9445 | </context-group> | ||
9446 | </trans-unit><trans-unit id="ngb.pagination.previous" datatype="html"> | ||
9447 | <source>«</source><target state="new">«</target> | ||
9448 | <context-group purpose="location"> | ||
9449 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9450 | <context context-type="linenumber">404</context> | ||
9451 | </context-group> | ||
9452 | </trans-unit><trans-unit id="ngb.pagination.next" datatype="html"> | ||
9453 | <source>»</source><target state="new">»</target> | ||
9454 | <context-group purpose="location"> | ||
9455 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9456 | <context context-type="linenumber">404</context> | ||
9457 | </context-group> | ||
9458 | </trans-unit><trans-unit id="ngb.pagination.last" datatype="html"> | ||
9459 | <source>»»</source><target state="new">»»</target> | ||
9460 | <context-group purpose="location"> | ||
9461 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9462 | <context context-type="linenumber">404</context> | ||
9463 | </context-group> | ||
9464 | </trans-unit><trans-unit id="ngb.pagination.first-aria" datatype="html"> | ||
9465 | <source>First</source><target state="new">First</target> | ||
9466 | <context-group purpose="location"> | ||
9467 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9468 | <context context-type="linenumber">404</context> | ||
9469 | </context-group> | ||
9470 | </trans-unit><trans-unit id="ngb.pagination.previous-aria" datatype="html"> | ||
9471 | <source>Previous</source><target state="new">Previous</target> | ||
9472 | <context-group purpose="location"> | ||
9473 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9474 | <context context-type="linenumber">404</context> | ||
9475 | </context-group> | ||
9476 | </trans-unit><trans-unit id="ngb.pagination.next-aria" datatype="html"> | ||
9477 | <source>Next</source><target state="new">Next</target> | ||
9478 | <context-group purpose="location"> | ||
9479 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9480 | <context context-type="linenumber">404</context> | ||
9481 | </context-group> | ||
9482 | </trans-unit><trans-unit id="ngb.pagination.last-aria" datatype="html"> | ||
9483 | <source>Last</source><target state="new">Last</target> | ||
9484 | <context-group purpose="location"> | ||
9485 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9486 | <context context-type="linenumber">404</context> | ||
9487 | </context-group> | ||
9488 | </trans-unit><trans-unit id="ngb.progressbar.value" datatype="html"> | ||
9489 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9490 | <context-group purpose="location"> | ||
9491 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/progressbar/progressbar.ts</context> | ||
9492 | <context context-type="linenumber">101</context> | ||
9493 | </context-group> | ||
9494 | </trans-unit><trans-unit id="ngb.timepicker.HH" datatype="html"> | ||
9495 | <source>HH</source><target state="new">HH</target> | ||
9496 | <context-group purpose="location"> | ||
9497 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9498 | <context context-type="linenumber">296</context> | ||
9499 | </context-group> | ||
9500 | </trans-unit><trans-unit id="ngb.timepicker.hours" datatype="html"> | ||
9501 | <source>Hours</source><target state="new">Hours</target> | ||
9502 | <context-group purpose="location"> | ||
9503 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9504 | <context context-type="linenumber">296</context> | ||
9505 | </context-group> | ||
9506 | </trans-unit><trans-unit id="ngb.timepicker.MM" datatype="html"> | ||
9507 | <source>MM</source><target state="new">MM</target> | ||
9508 | <context-group purpose="location"> | ||
9509 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9510 | <context context-type="linenumber">296</context> | ||
9511 | </context-group> | ||
9512 | </trans-unit><trans-unit id="ngb.timepicker.minutes" datatype="html"> | ||
9513 | <source>Minutes</source><target state="new">Minutes</target> | ||
9514 | <context-group purpose="location"> | ||
9515 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9516 | <context context-type="linenumber">296</context> | ||
9517 | </context-group> | ||
9518 | </trans-unit><trans-unit id="ngb.timepicker.increment-hours" datatype="html"> | ||
9519 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
9520 | <context-group purpose="location"> | ||
9521 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9522 | <context context-type="linenumber">296</context> | ||
9523 | </context-group> | ||
9524 | </trans-unit><trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> | ||
9525 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
9526 | <context-group purpose="location"> | ||
9527 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9528 | <context context-type="linenumber">296</context> | ||
9529 | </context-group> | ||
9530 | </trans-unit><trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> | ||
9531 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
9532 | <context-group purpose="location"> | ||
9533 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9534 | <context context-type="linenumber">296</context> | ||
9535 | </context-group> | ||
9536 | </trans-unit><trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> | ||
9537 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
9538 | <context-group purpose="location"> | ||
9539 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9540 | <context context-type="linenumber">296</context> | ||
9541 | </context-group> | ||
9542 | </trans-unit><trans-unit id="ngb.timepicker.SS" datatype="html"> | ||
9543 | <source>SS</source><target state="new">SS</target> | ||
9544 | <context-group purpose="location"> | ||
9545 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9546 | <context context-type="linenumber">296</context> | ||
9547 | </context-group> | ||
9548 | </trans-unit><trans-unit id="ngb.timepicker.seconds" datatype="html"> | ||
9549 | <source>Seconds</source><target state="new">Seconds</target> | ||
9550 | <context-group purpose="location"> | ||
9551 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9552 | <context context-type="linenumber">296</context> | ||
9553 | </context-group> | ||
9554 | </trans-unit><trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> | ||
9555 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
9556 | <context-group purpose="location"> | ||
9557 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9558 | <context context-type="linenumber">296</context> | ||
9559 | </context-group> | ||
9560 | </trans-unit><trans-unit id="ngb.timepicker.decrement-seconds" datatype="html"> | ||
9561 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
9562 | <context-group purpose="location"> | ||
9563 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9564 | <context context-type="linenumber">296</context> | ||
9565 | </context-group> | ||
9566 | </trans-unit><trans-unit id="ngb.timepicker.PM" datatype="html"> | ||
9567 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9568 | <context-group purpose="location"> | ||
9569 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9570 | <context context-type="linenumber">296</context> | ||
9571 | </context-group> | ||
9572 | </trans-unit><trans-unit id="ngb.timepicker.AM" datatype="html"> | ||
9573 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9574 | <context-group purpose="location"> | ||
9575 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9576 | <context context-type="linenumber">296</context> | ||
9577 | </context-group> | ||
9578 | </trans-unit><trans-unit id="ngb.toast.close-aria" datatype="html"> | ||
9579 | <source>Close</source><target state="new">Close</target> | ||
9580 | <context-group purpose="location"> | ||
9581 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/toast/toast.ts</context> | ||
9582 | <context context-type="linenumber">137</context> | ||
9583 | </context-group> | ||
9584 | </trans-unit> | ||
9555 | <trans-unit id="5210096066382592800" datatype="html"> | 9585 | <trans-unit id="5210096066382592800" datatype="html"> |
9556 | <source>Video to import updated.</source> | 9586 | <source>Video to import updated.</source> |
9557 | <target state="new">Video to import updated.</target> | 9587 | <target state="new">Video to import updated.</target> |
diff --git a/client/src/locale/angular.th-TH.xlf b/client/src/locale/angular.th-TH.xlf index 86d0b315a..d43d9573d 100644 --- a/client/src/locale/angular.th-TH.xlf +++ b/client/src/locale/angular.th-TH.xlf | |||
@@ -1267,13 +1267,7 @@ The link will expire within 1 hour.</target> | |||
1267 | <source>Close</source> | 1267 | <source>Close</source> |
1268 | <target state="translated">ปิด</target> | 1268 | <target state="translated">ปิด</target> |
1269 | 1269 | ||
1270 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="680d5c75b7fd8d37961083608b9fcdc4167b4c43" datatype="html"> | 1270 | <context-group purpose="location"><context context-type="sourcefile">../app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1271 | <source>Previous</source><target state="new">Previous</target> | ||
1272 | <context-group purpose="location"> | ||
1273 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
1274 | <context context-type="linenumber">1</context> | ||
1275 | </context-group> | ||
1276 | </trans-unit> | ||
1277 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> | 1271 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> |
1278 | <source>Configure</source> | 1272 | <source>Configure</source> |
1279 | <target state="new"> | 1273 | <target state="new"> |
@@ -5630,157 +5624,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5630 | <source>Next</source> | 5624 | <source>Next</source> |
5631 | <target state="translated">ถัดไป</target> | 5625 | <target state="translated">ถัดไป</target> |
5632 | 5626 | ||
5633 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="c3b08b07b5ab98e7cdcf18df39355690ab7d3884" datatype="html"> | 5627 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit><trans-unit id="9082008222523034483" datatype="html"> |
5634 | <source>Previous month</source><target state="new">Previous month</target> | ||
5635 | <context-group purpose="location"> | ||
5636 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5637 | <context context-type="linenumber">1</context> | ||
5638 | </context-group> | ||
5639 | </trans-unit><trans-unit id="4bd046985cfe13040d5ef0cd881edce0968a111a" datatype="html"> | ||
5640 | <source>Next month</source><target state="new">Next month</target> | ||
5641 | <context-group purpose="location"> | ||
5642 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5643 | <context context-type="linenumber">1</context> | ||
5644 | </context-group> | ||
5645 | </trans-unit><trans-unit id="1dbc84807f35518112f62e5775d1daebd3d8462b" datatype="html"> | ||
5646 | <source>Select month</source><target state="new">Select month</target> | ||
5647 | <context-group purpose="location"> | ||
5648 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5649 | <context context-type="linenumber">1</context> | ||
5650 | </context-group> | ||
5651 | </trans-unit><trans-unit id="8ceb09d002bf0c5d1cac171dfbffe1805d2b3962" datatype="html"> | ||
5652 | <source>Select year</source><target state="new">Select year</target> | ||
5653 | <context-group purpose="location"> | ||
5654 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5655 | <context context-type="linenumber">1</context> | ||
5656 | </context-group> | ||
5657 | </trans-unit><trans-unit id="656506dfd46380956a655f919f1498d018f75ca0" datatype="html"> | ||
5658 | <source>««</source><target state="new">««</target> | ||
5659 | <context-group purpose="location"> | ||
5660 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5661 | <context context-type="linenumber">1</context> | ||
5662 | </context-group> | ||
5663 | </trans-unit><trans-unit id="6e52b6ee77a4848d899dd21b591c6fd499e3aef3" datatype="html"> | ||
5664 | <source>«</source><target state="new">«</target> | ||
5665 | <context-group purpose="location"> | ||
5666 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5667 | <context context-type="linenumber">1</context> | ||
5668 | </context-group> | ||
5669 | </trans-unit><trans-unit id="ba9cbb4ff311464308a3627e4f1c3345d9fe6d7d" datatype="html"> | ||
5670 | <source>»</source><target state="new">»</target> | ||
5671 | <context-group purpose="location"> | ||
5672 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5673 | <context context-type="linenumber">1</context> | ||
5674 | </context-group> | ||
5675 | </trans-unit><trans-unit id="49f27a460bc97e7e00be5b37098bfa79884fc7d9" datatype="html"> | ||
5676 | <source>»»</source><target state="new">»»</target> | ||
5677 | <context-group purpose="location"> | ||
5678 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5679 | <context context-type="linenumber">1</context> | ||
5680 | </context-group> | ||
5681 | </trans-unit><trans-unit id="f2f852318759c6396b5d3d17031d53817d7b38cc" datatype="html"> | ||
5682 | <source>First</source><target state="new">First</target> | ||
5683 | <context-group purpose="location"> | ||
5684 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5685 | <context context-type="linenumber">1</context> | ||
5686 | </context-group> | ||
5687 | </trans-unit><trans-unit id="5c729788ba138508aca1bec050b610f7bf81db3e" datatype="html"> | ||
5688 | <source>Last</source><target state="new">Last</target> | ||
5689 | <context-group purpose="location"> | ||
5690 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5691 | <context context-type="linenumber">1</context> | ||
5692 | </context-group> | ||
5693 | </trans-unit><trans-unit id="f8e9a947b9db4252c0e9905765338712f2fd032f" datatype="html"> | ||
5694 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5695 | <context-group purpose="location"> | ||
5696 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5697 | <context context-type="linenumber">1</context> | ||
5698 | </context-group> | ||
5699 | </trans-unit><trans-unit id="ce676ab1d6d98f85c836381cf100a4a91ef95a1f" datatype="html"> | ||
5700 | <source>HH</source><target state="new">HH</target> | ||
5701 | <context-group purpose="location"> | ||
5702 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5703 | <context context-type="linenumber">1</context> | ||
5704 | </context-group> | ||
5705 | </trans-unit><trans-unit id="3bbce5fef7e1151da052a4e529453edb340e3912" datatype="html"> | ||
5706 | <source>Hours</source><target state="new">Hours</target> | ||
5707 | <context-group purpose="location"> | ||
5708 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5709 | <context context-type="linenumber">1</context> | ||
5710 | </context-group> | ||
5711 | </trans-unit><trans-unit id="72c8edf6a50068a05bde70991e36b1e881f4ca54" datatype="html"> | ||
5712 | <source>MM</source><target state="new">MM</target> | ||
5713 | <context-group purpose="location"> | ||
5714 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5715 | <context context-type="linenumber">1</context> | ||
5716 | </context-group> | ||
5717 | </trans-unit><trans-unit id="41e62daa962947c0d23ded0981975d1bddf0bf38" datatype="html"> | ||
5718 | <source>Minutes</source><target state="new">Minutes</target> | ||
5719 | <context-group purpose="location"> | ||
5720 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5721 | <context context-type="linenumber">1</context> | ||
5722 | </context-group> | ||
5723 | </trans-unit><trans-unit id="cb74bc1d625a6c1742f0d7d47306cf495780c218" datatype="html"> | ||
5724 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
5725 | <context-group purpose="location"> | ||
5726 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5727 | <context context-type="linenumber">1</context> | ||
5728 | </context-group> | ||
5729 | </trans-unit><trans-unit id="147c7a19429da7d999e247d22e33fee370b1691b" datatype="html"> | ||
5730 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
5731 | <context-group purpose="location"> | ||
5732 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5733 | <context context-type="linenumber">1</context> | ||
5734 | </context-group> | ||
5735 | </trans-unit><trans-unit id="f5a4a3bc05e053f6732475d0e74875ec01c3a348" datatype="html"> | ||
5736 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
5737 | <context-group purpose="location"> | ||
5738 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5739 | <context context-type="linenumber">1</context> | ||
5740 | </context-group> | ||
5741 | </trans-unit><trans-unit id="c1a6899e529c096da5b660385d4e77fe1f7ad271" datatype="html"> | ||
5742 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
5743 | <context-group purpose="location"> | ||
5744 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5745 | <context context-type="linenumber">1</context> | ||
5746 | </context-group> | ||
5747 | </trans-unit><trans-unit id="ebe38d36a40a2383c5fefa9b4608ffbda08bd4a3" datatype="html"> | ||
5748 | <source>SS</source><target state="new">SS</target> | ||
5749 | <context-group purpose="location"> | ||
5750 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5751 | <context context-type="linenumber">1</context> | ||
5752 | </context-group> | ||
5753 | </trans-unit><trans-unit id="4f2ed9e71a7c981db3e50ae2fedb28aff2ec4e6c" datatype="html"> | ||
5754 | <source>Seconds</source><target state="new">Seconds</target> | ||
5755 | <context-group purpose="location"> | ||
5756 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5757 | <context context-type="linenumber">1</context> | ||
5758 | </context-group> | ||
5759 | </trans-unit><trans-unit id="912322ecee7d659d04dcf494a70e22e49d334b26" datatype="html"> | ||
5760 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
5761 | <context-group purpose="location"> | ||
5762 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5763 | <context context-type="linenumber">1</context> | ||
5764 | </context-group> | ||
5765 | </trans-unit><trans-unit id="5db47ac104294243a70eb9124fbea9d0004ddf69" datatype="html"> | ||
5766 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
5767 | <context-group purpose="location"> | ||
5768 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5769 | <context context-type="linenumber">1</context> | ||
5770 | </context-group> | ||
5771 | </trans-unit><trans-unit id="8d6e691e10306c1b34c6b26805151aaea320ef7f" datatype="html"> | ||
5772 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5773 | <context-group purpose="location"> | ||
5774 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5775 | <context context-type="linenumber">1</context> | ||
5776 | </context-group> | ||
5777 | </trans-unit><trans-unit id="69a1f176a93998876952adac57c3bc3863b6105e" datatype="html"> | ||
5778 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5779 | <context-group purpose="location"> | ||
5780 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5781 | <context context-type="linenumber">1</context> | ||
5782 | </context-group> | ||
5783 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
5784 | <source>Get help</source><target state="new">Get help</target> | 5628 | <source>Get help</source><target state="new">Get help</target> |
5785 | <context-group purpose="location"> | 5629 | <context-group purpose="location"> |
5786 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 5630 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> |
@@ -9308,7 +9152,193 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9308 | <source>Only users of this instance can see this video</source> | 9152 | <source>Only users of this instance can see this video</source> |
9309 | <target state="new">Only users of this instance can see this video</target> | 9153 | <target state="new">Only users of this instance can see this video</target> |
9310 | 9154 | ||
9311 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit> | 9155 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit><trans-unit id="ngb.alert.close" datatype="html"> |
9156 | <source>Close</source><target state="new">Close</target> | ||
9157 | <context-group purpose="location"> | ||
9158 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/alert/alert.ts</context> | ||
9159 | <context context-type="linenumber">74</context> | ||
9160 | </context-group> | ||
9161 | </trans-unit><trans-unit id="ngb.carousel.previous" datatype="html"> | ||
9162 | <source>Previous</source><target state="new">Previous</target> | ||
9163 | <context-group purpose="location"> | ||
9164 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9165 | <context context-type="linenumber">349</context> | ||
9166 | </context-group> | ||
9167 | </trans-unit><trans-unit id="ngb.carousel.next" datatype="html"> | ||
9168 | <source>Next</source><target state="new">Next</target> | ||
9169 | <context-group purpose="location"> | ||
9170 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9171 | <context context-type="linenumber">349</context> | ||
9172 | </context-group> | ||
9173 | </trans-unit><trans-unit id="ngb.datepicker.previous-month" datatype="html"> | ||
9174 | <source>Previous month</source><target state="new">Previous month</target> | ||
9175 | <context-group purpose="location"> | ||
9176 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation.ts</context> | ||
9177 | <context context-type="linenumber">69</context> | ||
9178 | </context-group> | ||
9179 | </trans-unit><trans-unit id="ngb.datepicker.next-month" datatype="html"> | ||
9180 | <source>Next month</source><target state="new">Next month</target> | ||
9181 | <context-group purpose="location"> | ||
9182 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-month.ts</context> | ||
9183 | <context context-type="linenumber">72</context> | ||
9184 | </context-group> | ||
9185 | </trans-unit><trans-unit id="ngb.datepicker.select-month" datatype="html"> | ||
9186 | <source>Select month</source><target state="new">Select month</target> | ||
9187 | <context-group purpose="location"> | ||
9188 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9189 | <context context-type="linenumber">74</context> | ||
9190 | </context-group> | ||
9191 | </trans-unit><trans-unit id="ngb.datepicker.select-year" datatype="html"> | ||
9192 | <source>Select year</source><target state="new">Select year</target> | ||
9193 | <context-group purpose="location"> | ||
9194 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9195 | <context context-type="linenumber">74</context> | ||
9196 | </context-group> | ||
9197 | </trans-unit><trans-unit id="ngb.pagination.first" datatype="html"> | ||
9198 | <source>««</source><target state="new">««</target> | ||
9199 | <context-group purpose="location"> | ||
9200 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9201 | <context context-type="linenumber">404</context> | ||
9202 | </context-group> | ||
9203 | </trans-unit><trans-unit id="ngb.pagination.previous" datatype="html"> | ||
9204 | <source>«</source><target state="new">«</target> | ||
9205 | <context-group purpose="location"> | ||
9206 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9207 | <context context-type="linenumber">404</context> | ||
9208 | </context-group> | ||
9209 | </trans-unit><trans-unit id="ngb.pagination.next" datatype="html"> | ||
9210 | <source>»</source><target state="new">»</target> | ||
9211 | <context-group purpose="location"> | ||
9212 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9213 | <context context-type="linenumber">404</context> | ||
9214 | </context-group> | ||
9215 | </trans-unit><trans-unit id="ngb.pagination.last" datatype="html"> | ||
9216 | <source>»»</source><target state="new">»»</target> | ||
9217 | <context-group purpose="location"> | ||
9218 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9219 | <context context-type="linenumber">404</context> | ||
9220 | </context-group> | ||
9221 | </trans-unit><trans-unit id="ngb.pagination.first-aria" datatype="html"> | ||
9222 | <source>First</source><target state="new">First</target> | ||
9223 | <context-group purpose="location"> | ||
9224 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9225 | <context context-type="linenumber">404</context> | ||
9226 | </context-group> | ||
9227 | </trans-unit><trans-unit id="ngb.pagination.previous-aria" datatype="html"> | ||
9228 | <source>Previous</source><target state="new">Previous</target> | ||
9229 | <context-group purpose="location"> | ||
9230 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9231 | <context context-type="linenumber">404</context> | ||
9232 | </context-group> | ||
9233 | </trans-unit><trans-unit id="ngb.pagination.next-aria" datatype="html"> | ||
9234 | <source>Next</source><target state="new">Next</target> | ||
9235 | <context-group purpose="location"> | ||
9236 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9237 | <context context-type="linenumber">404</context> | ||
9238 | </context-group> | ||
9239 | </trans-unit><trans-unit id="ngb.pagination.last-aria" datatype="html"> | ||
9240 | <source>Last</source><target state="new">Last</target> | ||
9241 | <context-group purpose="location"> | ||
9242 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9243 | <context context-type="linenumber">404</context> | ||
9244 | </context-group> | ||
9245 | </trans-unit><trans-unit id="ngb.progressbar.value" datatype="html"> | ||
9246 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9247 | <context-group purpose="location"> | ||
9248 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/progressbar/progressbar.ts</context> | ||
9249 | <context context-type="linenumber">101</context> | ||
9250 | </context-group> | ||
9251 | </trans-unit><trans-unit id="ngb.timepicker.HH" datatype="html"> | ||
9252 | <source>HH</source><target state="new">HH</target> | ||
9253 | <context-group purpose="location"> | ||
9254 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9255 | <context context-type="linenumber">296</context> | ||
9256 | </context-group> | ||
9257 | </trans-unit><trans-unit id="ngb.timepicker.hours" datatype="html"> | ||
9258 | <source>Hours</source><target state="new">Hours</target> | ||
9259 | <context-group purpose="location"> | ||
9260 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9261 | <context context-type="linenumber">296</context> | ||
9262 | </context-group> | ||
9263 | </trans-unit><trans-unit id="ngb.timepicker.MM" datatype="html"> | ||
9264 | <source>MM</source><target state="new">MM</target> | ||
9265 | <context-group purpose="location"> | ||
9266 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9267 | <context context-type="linenumber">296</context> | ||
9268 | </context-group> | ||
9269 | </trans-unit><trans-unit id="ngb.timepicker.minutes" datatype="html"> | ||
9270 | <source>Minutes</source><target state="new">Minutes</target> | ||
9271 | <context-group purpose="location"> | ||
9272 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9273 | <context context-type="linenumber">296</context> | ||
9274 | </context-group> | ||
9275 | </trans-unit><trans-unit id="ngb.timepicker.increment-hours" datatype="html"> | ||
9276 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
9277 | <context-group purpose="location"> | ||
9278 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9279 | <context context-type="linenumber">296</context> | ||
9280 | </context-group> | ||
9281 | </trans-unit><trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> | ||
9282 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
9283 | <context-group purpose="location"> | ||
9284 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9285 | <context context-type="linenumber">296</context> | ||
9286 | </context-group> | ||
9287 | </trans-unit><trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> | ||
9288 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
9289 | <context-group purpose="location"> | ||
9290 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9291 | <context context-type="linenumber">296</context> | ||
9292 | </context-group> | ||
9293 | </trans-unit><trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> | ||
9294 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
9295 | <context-group purpose="location"> | ||
9296 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9297 | <context context-type="linenumber">296</context> | ||
9298 | </context-group> | ||
9299 | </trans-unit><trans-unit id="ngb.timepicker.SS" datatype="html"> | ||
9300 | <source>SS</source><target state="new">SS</target> | ||
9301 | <context-group purpose="location"> | ||
9302 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9303 | <context context-type="linenumber">296</context> | ||
9304 | </context-group> | ||
9305 | </trans-unit><trans-unit id="ngb.timepicker.seconds" datatype="html"> | ||
9306 | <source>Seconds</source><target state="new">Seconds</target> | ||
9307 | <context-group purpose="location"> | ||
9308 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9309 | <context context-type="linenumber">296</context> | ||
9310 | </context-group> | ||
9311 | </trans-unit><trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> | ||
9312 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
9313 | <context-group purpose="location"> | ||
9314 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9315 | <context context-type="linenumber">296</context> | ||
9316 | </context-group> | ||
9317 | </trans-unit><trans-unit id="ngb.timepicker.decrement-seconds" datatype="html"> | ||
9318 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
9319 | <context-group purpose="location"> | ||
9320 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9321 | <context context-type="linenumber">296</context> | ||
9322 | </context-group> | ||
9323 | </trans-unit><trans-unit id="ngb.timepicker.PM" datatype="html"> | ||
9324 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9325 | <context-group purpose="location"> | ||
9326 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9327 | <context context-type="linenumber">296</context> | ||
9328 | </context-group> | ||
9329 | </trans-unit><trans-unit id="ngb.timepicker.AM" datatype="html"> | ||
9330 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9331 | <context-group purpose="location"> | ||
9332 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9333 | <context context-type="linenumber">296</context> | ||
9334 | </context-group> | ||
9335 | </trans-unit><trans-unit id="ngb.toast.close-aria" datatype="html"> | ||
9336 | <source>Close</source><target state="new">Close</target> | ||
9337 | <context-group purpose="location"> | ||
9338 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/toast/toast.ts</context> | ||
9339 | <context context-type="linenumber">137</context> | ||
9340 | </context-group> | ||
9341 | </trans-unit> | ||
9312 | <trans-unit id="5210096066382592800" datatype="html"> | 9342 | <trans-unit id="5210096066382592800" datatype="html"> |
9313 | <source>Video to import updated.</source> | 9343 | <source>Video to import updated.</source> |
9314 | <target state="new">Video to import updated.</target> | 9344 | <target state="new">Video to import updated.</target> |
diff --git a/client/src/locale/angular.tr-TR.xlf b/client/src/locale/angular.tr-TR.xlf index 0710c572a..dcb22082f 100644 --- a/client/src/locale/angular.tr-TR.xlf +++ b/client/src/locale/angular.tr-TR.xlf | |||
@@ -1074,16 +1074,9 @@ The link will expire within 1 hour.</target> | |||
1074 | <trans-unit id="f4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8" datatype="html"> | 1074 | <trans-unit id="f4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8" datatype="html"> |
1075 | <source>Close</source> | 1075 | <source>Close</source> |
1076 | <target state="new">Close</target> | 1076 | <target state="new">Close</target> |
1077 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group> | 1077 | |
1078 | </trans-unit> | 1078 | <context-group purpose="location"><context context-type="sourcefile">../app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1079 | <trans-unit id="680d5c75b7fd8d37961083608b9fcdc4167b4c43" datatype="html"> | 1079 | |
1080 | <source>Previous</source> | ||
1081 | <target state="new">Previous</target> | ||
1082 | <context-group purpose="location"> | ||
1083 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
1084 | <context context-type="linenumber">1</context> | ||
1085 | </context-group> | ||
1086 | </trans-unit> | ||
1087 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> | 1080 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> |
1088 | <source>Configure</source> | 1081 | <source>Configure</source> |
1089 | <target state="new"> | 1082 | <target state="new"> |
@@ -5240,208 +5233,33 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5240 | <trans-unit id="f732c304c7433e5a83ffcd862c3dce709a0f4982" datatype="html"> | 5233 | <trans-unit id="f732c304c7433e5a83ffcd862c3dce709a0f4982" datatype="html"> |
5241 | <source>Next</source> | 5234 | <source>Next</source> |
5242 | <target state="new">Next</target> | 5235 | <target state="new">Next</target> |
5243 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group> | 5236 | |
5244 | </trans-unit> | 5237 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit> |
5245 | <trans-unit id="c3b08b07b5ab98e7cdcf18df39355690ab7d3884" datatype="html"> | 5238 | |
5246 | <source>Previous month</source> | 5239 | |
5247 | <target state="new">Previous month</target> | 5240 | |
5248 | <context-group purpose="location"> | 5241 | |
5249 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 5242 | |
5250 | <context context-type="linenumber">1</context> | 5243 | |
5251 | </context-group> | 5244 | |
5252 | </trans-unit> | 5245 | |
5253 | <trans-unit id="4bd046985cfe13040d5ef0cd881edce0968a111a" datatype="html"> | 5246 | |
5254 | <source>Next month</source> | 5247 | |
5255 | <target state="new">Next month</target> | 5248 | |
5256 | <context-group purpose="location"> | 5249 | |
5257 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 5250 | |
5258 | <context context-type="linenumber">1</context> | 5251 | |
5259 | </context-group> | 5252 | |
5260 | </trans-unit> | 5253 | |
5261 | <trans-unit id="1dbc84807f35518112f62e5775d1daebd3d8462b" datatype="html"> | 5254 | |
5262 | <source>Select month</source> | 5255 | |
5263 | <target state="new">Select month</target> | 5256 | |
5264 | <context-group purpose="location"> | 5257 | |
5265 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 5258 | |
5266 | <context context-type="linenumber">1</context> | 5259 | |
5267 | </context-group> | 5260 | |
5268 | </trans-unit> | 5261 | |
5269 | <trans-unit id="8ceb09d002bf0c5d1cac171dfbffe1805d2b3962" datatype="html"> | 5262 | <trans-unit id="9082008222523034483" datatype="html"> |
5270 | <source>Select year</source> | ||
5271 | <target state="new">Select year</target> | ||
5272 | <context-group purpose="location"> | ||
5273 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5274 | <context context-type="linenumber">1</context> | ||
5275 | </context-group> | ||
5276 | </trans-unit> | ||
5277 | <trans-unit id="656506dfd46380956a655f919f1498d018f75ca0" datatype="html"> | ||
5278 | <source>««</source> | ||
5279 | <target state="new">««</target> | ||
5280 | <context-group purpose="location"> | ||
5281 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5282 | <context context-type="linenumber">1</context> | ||
5283 | </context-group> | ||
5284 | </trans-unit> | ||
5285 | <trans-unit id="6e52b6ee77a4848d899dd21b591c6fd499e3aef3" datatype="html"> | ||
5286 | <source>«</source> | ||
5287 | <target state="new">«</target> | ||
5288 | <context-group purpose="location"> | ||
5289 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5290 | <context context-type="linenumber">1</context> | ||
5291 | </context-group> | ||
5292 | </trans-unit> | ||
5293 | <trans-unit id="ba9cbb4ff311464308a3627e4f1c3345d9fe6d7d" datatype="html"> | ||
5294 | <source>»</source> | ||
5295 | <target state="new">»</target> | ||
5296 | <context-group purpose="location"> | ||
5297 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5298 | <context context-type="linenumber">1</context> | ||
5299 | </context-group> | ||
5300 | </trans-unit> | ||
5301 | <trans-unit id="49f27a460bc97e7e00be5b37098bfa79884fc7d9" datatype="html"> | ||
5302 | <source>»»</source> | ||
5303 | <target state="new">»»</target> | ||
5304 | <context-group purpose="location"> | ||
5305 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5306 | <context context-type="linenumber">1</context> | ||
5307 | </context-group> | ||
5308 | </trans-unit> | ||
5309 | <trans-unit id="f2f852318759c6396b5d3d17031d53817d7b38cc" datatype="html"> | ||
5310 | <source>First</source> | ||
5311 | <target state="new">First</target> | ||
5312 | <context-group purpose="location"> | ||
5313 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5314 | <context context-type="linenumber">1</context> | ||
5315 | </context-group> | ||
5316 | </trans-unit> | ||
5317 | <trans-unit id="5c729788ba138508aca1bec050b610f7bf81db3e" datatype="html"> | ||
5318 | <source>Last</source> | ||
5319 | <target state="new">Last</target> | ||
5320 | <context-group purpose="location"> | ||
5321 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5322 | <context context-type="linenumber">1</context> | ||
5323 | </context-group> | ||
5324 | </trans-unit> | ||
5325 | <trans-unit id="f8e9a947b9db4252c0e9905765338712f2fd032f" datatype="html"> | ||
5326 | <source><x id="INTERPOLATION"/></source> | ||
5327 | <target state="new"><x id="INTERPOLATION"/></target> | ||
5328 | <context-group purpose="location"> | ||
5329 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5330 | <context context-type="linenumber">1</context> | ||
5331 | </context-group> | ||
5332 | </trans-unit> | ||
5333 | <trans-unit id="ce676ab1d6d98f85c836381cf100a4a91ef95a1f" datatype="html"> | ||
5334 | <source>HH</source> | ||
5335 | <target state="new">HH</target> | ||
5336 | <context-group purpose="location"> | ||
5337 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5338 | <context context-type="linenumber">1</context> | ||
5339 | </context-group> | ||
5340 | </trans-unit> | ||
5341 | <trans-unit id="3bbce5fef7e1151da052a4e529453edb340e3912" datatype="html"> | ||
5342 | <source>Hours</source> | ||
5343 | <target state="new">Hours</target> | ||
5344 | <context-group purpose="location"> | ||
5345 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5346 | <context context-type="linenumber">1</context> | ||
5347 | </context-group> | ||
5348 | </trans-unit> | ||
5349 | <trans-unit id="72c8edf6a50068a05bde70991e36b1e881f4ca54" datatype="html"> | ||
5350 | <source>MM</source> | ||
5351 | <target state="new">MM</target> | ||
5352 | <context-group purpose="location"> | ||
5353 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5354 | <context context-type="linenumber">1</context> | ||
5355 | </context-group> | ||
5356 | </trans-unit> | ||
5357 | <trans-unit id="41e62daa962947c0d23ded0981975d1bddf0bf38" datatype="html"> | ||
5358 | <source>Minutes</source> | ||
5359 | <target state="new">Minutes</target> | ||
5360 | <context-group purpose="location"> | ||
5361 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5362 | <context context-type="linenumber">1</context> | ||
5363 | </context-group> | ||
5364 | </trans-unit> | ||
5365 | <trans-unit id="cb74bc1d625a6c1742f0d7d47306cf495780c218" datatype="html"> | ||
5366 | <source>Increment hours</source> | ||
5367 | <target state="new">Increment hours</target> | ||
5368 | <context-group purpose="location"> | ||
5369 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5370 | <context context-type="linenumber">1</context> | ||
5371 | </context-group> | ||
5372 | </trans-unit> | ||
5373 | <trans-unit id="147c7a19429da7d999e247d22e33fee370b1691b" datatype="html"> | ||
5374 | <source>Decrement hours</source> | ||
5375 | <target state="new">Decrement hours</target> | ||
5376 | <context-group purpose="location"> | ||
5377 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5378 | <context context-type="linenumber">1</context> | ||
5379 | </context-group> | ||
5380 | </trans-unit> | ||
5381 | <trans-unit id="f5a4a3bc05e053f6732475d0e74875ec01c3a348" datatype="html"> | ||
5382 | <source>Increment minutes</source> | ||
5383 | <target state="new">Increment minutes</target> | ||
5384 | <context-group purpose="location"> | ||
5385 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5386 | <context context-type="linenumber">1</context> | ||
5387 | </context-group> | ||
5388 | </trans-unit> | ||
5389 | <trans-unit id="c1a6899e529c096da5b660385d4e77fe1f7ad271" datatype="html"> | ||
5390 | <source>Decrement minutes</source> | ||
5391 | <target state="new">Decrement minutes</target> | ||
5392 | <context-group purpose="location"> | ||
5393 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5394 | <context context-type="linenumber">1</context> | ||
5395 | </context-group> | ||
5396 | </trans-unit> | ||
5397 | <trans-unit id="ebe38d36a40a2383c5fefa9b4608ffbda08bd4a3" datatype="html"> | ||
5398 | <source>SS</source> | ||
5399 | <target state="new">SS</target> | ||
5400 | <context-group purpose="location"> | ||
5401 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5402 | <context context-type="linenumber">1</context> | ||
5403 | </context-group> | ||
5404 | </trans-unit> | ||
5405 | <trans-unit id="4f2ed9e71a7c981db3e50ae2fedb28aff2ec4e6c" datatype="html"> | ||
5406 | <source>Seconds</source> | ||
5407 | <target state="new">Seconds</target> | ||
5408 | <context-group purpose="location"> | ||
5409 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5410 | <context context-type="linenumber">1</context> | ||
5411 | </context-group> | ||
5412 | </trans-unit> | ||
5413 | <trans-unit id="912322ecee7d659d04dcf494a70e22e49d334b26" datatype="html"> | ||
5414 | <source>Increment seconds</source> | ||
5415 | <target state="new">Increment seconds</target> | ||
5416 | <context-group purpose="location"> | ||
5417 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5418 | <context context-type="linenumber">1</context> | ||
5419 | </context-group> | ||
5420 | </trans-unit> | ||
5421 | <trans-unit id="5db47ac104294243a70eb9124fbea9d0004ddf69" datatype="html"> | ||
5422 | <source>Decrement seconds</source> | ||
5423 | <target state="new">Decrement seconds</target> | ||
5424 | <context-group purpose="location"> | ||
5425 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5426 | <context context-type="linenumber">1</context> | ||
5427 | </context-group> | ||
5428 | </trans-unit> | ||
5429 | <trans-unit id="8d6e691e10306c1b34c6b26805151aaea320ef7f" datatype="html"> | ||
5430 | <source><x id="INTERPOLATION"/></source> | ||
5431 | <target state="new"><x id="INTERPOLATION"/></target> | ||
5432 | <context-group purpose="location"> | ||
5433 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5434 | <context context-type="linenumber">1</context> | ||
5435 | </context-group> | ||
5436 | </trans-unit> | ||
5437 | <trans-unit id="69a1f176a93998876952adac57c3bc3863b6105e" datatype="html"> | ||
5438 | <source><x id="INTERPOLATION"/></source> | ||
5439 | <target state="new"><x id="INTERPOLATION"/></target> | ||
5440 | <context-group purpose="location"> | ||
5441 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5442 | <context context-type="linenumber">1</context> | ||
5443 | </context-group> | ||
5444 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
5445 | <source>Get help</source><target state="new">Get help</target> | 5263 | <source>Get help</source><target state="new">Get help</target> |
5446 | <context-group purpose="location"> | 5264 | <context-group purpose="location"> |
5447 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 5265 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> |
@@ -8862,7 +8680,193 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8862 | <source>Only users of this instance can see this video</source> | 8680 | <source>Only users of this instance can see this video</source> |
8863 | <target state="new">Only users of this instance can see this video</target> | 8681 | <target state="new">Only users of this instance can see this video</target> |
8864 | 8682 | ||
8865 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit> | 8683 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit><trans-unit id="ngb.alert.close" datatype="html"> |
8684 | <source>Close</source><target state="new">Close</target> | ||
8685 | <context-group purpose="location"> | ||
8686 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/alert/alert.ts</context> | ||
8687 | <context context-type="linenumber">74</context> | ||
8688 | </context-group> | ||
8689 | </trans-unit><trans-unit id="ngb.carousel.previous" datatype="html"> | ||
8690 | <source>Previous</source><target state="new">Previous</target> | ||
8691 | <context-group purpose="location"> | ||
8692 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
8693 | <context context-type="linenumber">349</context> | ||
8694 | </context-group> | ||
8695 | </trans-unit><trans-unit id="ngb.carousel.next" datatype="html"> | ||
8696 | <source>Next</source><target state="new">Next</target> | ||
8697 | <context-group purpose="location"> | ||
8698 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
8699 | <context context-type="linenumber">349</context> | ||
8700 | </context-group> | ||
8701 | </trans-unit><trans-unit id="ngb.datepicker.previous-month" datatype="html"> | ||
8702 | <source>Previous month</source><target state="new">Previous month</target> | ||
8703 | <context-group purpose="location"> | ||
8704 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation.ts</context> | ||
8705 | <context context-type="linenumber">69</context> | ||
8706 | </context-group> | ||
8707 | </trans-unit><trans-unit id="ngb.datepicker.next-month" datatype="html"> | ||
8708 | <source>Next month</source><target state="new">Next month</target> | ||
8709 | <context-group purpose="location"> | ||
8710 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-month.ts</context> | ||
8711 | <context context-type="linenumber">72</context> | ||
8712 | </context-group> | ||
8713 | </trans-unit><trans-unit id="ngb.datepicker.select-month" datatype="html"> | ||
8714 | <source>Select month</source><target state="new">Select month</target> | ||
8715 | <context-group purpose="location"> | ||
8716 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
8717 | <context context-type="linenumber">74</context> | ||
8718 | </context-group> | ||
8719 | </trans-unit><trans-unit id="ngb.datepicker.select-year" datatype="html"> | ||
8720 | <source>Select year</source><target state="new">Select year</target> | ||
8721 | <context-group purpose="location"> | ||
8722 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
8723 | <context context-type="linenumber">74</context> | ||
8724 | </context-group> | ||
8725 | </trans-unit><trans-unit id="ngb.pagination.first" datatype="html"> | ||
8726 | <source>««</source><target state="new">««</target> | ||
8727 | <context-group purpose="location"> | ||
8728 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8729 | <context context-type="linenumber">404</context> | ||
8730 | </context-group> | ||
8731 | </trans-unit><trans-unit id="ngb.pagination.previous" datatype="html"> | ||
8732 | <source>«</source><target state="new">«</target> | ||
8733 | <context-group purpose="location"> | ||
8734 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8735 | <context context-type="linenumber">404</context> | ||
8736 | </context-group> | ||
8737 | </trans-unit><trans-unit id="ngb.pagination.next" datatype="html"> | ||
8738 | <source>»</source><target state="new">»</target> | ||
8739 | <context-group purpose="location"> | ||
8740 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8741 | <context context-type="linenumber">404</context> | ||
8742 | </context-group> | ||
8743 | </trans-unit><trans-unit id="ngb.pagination.last" datatype="html"> | ||
8744 | <source>»»</source><target state="new">»»</target> | ||
8745 | <context-group purpose="location"> | ||
8746 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8747 | <context context-type="linenumber">404</context> | ||
8748 | </context-group> | ||
8749 | </trans-unit><trans-unit id="ngb.pagination.first-aria" datatype="html"> | ||
8750 | <source>First</source><target state="new">First</target> | ||
8751 | <context-group purpose="location"> | ||
8752 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8753 | <context context-type="linenumber">404</context> | ||
8754 | </context-group> | ||
8755 | </trans-unit><trans-unit id="ngb.pagination.previous-aria" datatype="html"> | ||
8756 | <source>Previous</source><target state="new">Previous</target> | ||
8757 | <context-group purpose="location"> | ||
8758 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8759 | <context context-type="linenumber">404</context> | ||
8760 | </context-group> | ||
8761 | </trans-unit><trans-unit id="ngb.pagination.next-aria" datatype="html"> | ||
8762 | <source>Next</source><target state="new">Next</target> | ||
8763 | <context-group purpose="location"> | ||
8764 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8765 | <context context-type="linenumber">404</context> | ||
8766 | </context-group> | ||
8767 | </trans-unit><trans-unit id="ngb.pagination.last-aria" datatype="html"> | ||
8768 | <source>Last</source><target state="new">Last</target> | ||
8769 | <context-group purpose="location"> | ||
8770 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8771 | <context context-type="linenumber">404</context> | ||
8772 | </context-group> | ||
8773 | </trans-unit><trans-unit id="ngb.progressbar.value" datatype="html"> | ||
8774 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
8775 | <context-group purpose="location"> | ||
8776 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/progressbar/progressbar.ts</context> | ||
8777 | <context context-type="linenumber">101</context> | ||
8778 | </context-group> | ||
8779 | </trans-unit><trans-unit id="ngb.timepicker.HH" datatype="html"> | ||
8780 | <source>HH</source><target state="new">HH</target> | ||
8781 | <context-group purpose="location"> | ||
8782 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8783 | <context context-type="linenumber">296</context> | ||
8784 | </context-group> | ||
8785 | </trans-unit><trans-unit id="ngb.timepicker.hours" datatype="html"> | ||
8786 | <source>Hours</source><target state="new">Hours</target> | ||
8787 | <context-group purpose="location"> | ||
8788 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8789 | <context context-type="linenumber">296</context> | ||
8790 | </context-group> | ||
8791 | </trans-unit><trans-unit id="ngb.timepicker.MM" datatype="html"> | ||
8792 | <source>MM</source><target state="new">MM</target> | ||
8793 | <context-group purpose="location"> | ||
8794 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8795 | <context context-type="linenumber">296</context> | ||
8796 | </context-group> | ||
8797 | </trans-unit><trans-unit id="ngb.timepicker.minutes" datatype="html"> | ||
8798 | <source>Minutes</source><target state="new">Minutes</target> | ||
8799 | <context-group purpose="location"> | ||
8800 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8801 | <context context-type="linenumber">296</context> | ||
8802 | </context-group> | ||
8803 | </trans-unit><trans-unit id="ngb.timepicker.increment-hours" datatype="html"> | ||
8804 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
8805 | <context-group purpose="location"> | ||
8806 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8807 | <context context-type="linenumber">296</context> | ||
8808 | </context-group> | ||
8809 | </trans-unit><trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> | ||
8810 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
8811 | <context-group purpose="location"> | ||
8812 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8813 | <context context-type="linenumber">296</context> | ||
8814 | </context-group> | ||
8815 | </trans-unit><trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> | ||
8816 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
8817 | <context-group purpose="location"> | ||
8818 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8819 | <context context-type="linenumber">296</context> | ||
8820 | </context-group> | ||
8821 | </trans-unit><trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> | ||
8822 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
8823 | <context-group purpose="location"> | ||
8824 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8825 | <context context-type="linenumber">296</context> | ||
8826 | </context-group> | ||
8827 | </trans-unit><trans-unit id="ngb.timepicker.SS" datatype="html"> | ||
8828 | <source>SS</source><target state="new">SS</target> | ||
8829 | <context-group purpose="location"> | ||
8830 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8831 | <context context-type="linenumber">296</context> | ||
8832 | </context-group> | ||
8833 | </trans-unit><trans-unit id="ngb.timepicker.seconds" datatype="html"> | ||
8834 | <source>Seconds</source><target state="new">Seconds</target> | ||
8835 | <context-group purpose="location"> | ||
8836 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8837 | <context context-type="linenumber">296</context> | ||
8838 | </context-group> | ||
8839 | </trans-unit><trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> | ||
8840 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
8841 | <context-group purpose="location"> | ||
8842 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8843 | <context context-type="linenumber">296</context> | ||
8844 | </context-group> | ||
8845 | </trans-unit><trans-unit id="ngb.timepicker.decrement-seconds" datatype="html"> | ||
8846 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
8847 | <context-group purpose="location"> | ||
8848 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8849 | <context context-type="linenumber">296</context> | ||
8850 | </context-group> | ||
8851 | </trans-unit><trans-unit id="ngb.timepicker.PM" datatype="html"> | ||
8852 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
8853 | <context-group purpose="location"> | ||
8854 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8855 | <context context-type="linenumber">296</context> | ||
8856 | </context-group> | ||
8857 | </trans-unit><trans-unit id="ngb.timepicker.AM" datatype="html"> | ||
8858 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
8859 | <context-group purpose="location"> | ||
8860 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8861 | <context context-type="linenumber">296</context> | ||
8862 | </context-group> | ||
8863 | </trans-unit><trans-unit id="ngb.toast.close-aria" datatype="html"> | ||
8864 | <source>Close</source><target state="new">Close</target> | ||
8865 | <context-group purpose="location"> | ||
8866 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/toast/toast.ts</context> | ||
8867 | <context context-type="linenumber">137</context> | ||
8868 | </context-group> | ||
8869 | </trans-unit> | ||
8866 | <trans-unit id="5210096066382592800" datatype="html"> | 8870 | <trans-unit id="5210096066382592800" datatype="html"> |
8867 | <source>Video to import updated.</source> | 8871 | <source>Video to import updated.</source> |
8868 | <target state="new">Video to import updated.</target> | 8872 | <target state="new">Video to import updated.</target> |
diff --git a/client/src/locale/angular.uk-UA.xlf b/client/src/locale/angular.uk-UA.xlf index 673649082..c7bdd955e 100644 --- a/client/src/locale/angular.uk-UA.xlf +++ b/client/src/locale/angular.uk-UA.xlf | |||
@@ -1237,13 +1237,7 @@ The link will expire within 1 hour.</target> | |||
1237 | <source>Close</source> | 1237 | <source>Close</source> |
1238 | <target state="new">Close</target> | 1238 | <target state="new">Close</target> |
1239 | 1239 | ||
1240 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="680d5c75b7fd8d37961083608b9fcdc4167b4c43" datatype="html"> | 1240 | <context-group purpose="location"><context context-type="sourcefile">../app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1241 | <source>Previous</source><target state="new">Previous</target> | ||
1242 | <context-group purpose="location"> | ||
1243 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
1244 | <context context-type="linenumber">1</context> | ||
1245 | </context-group> | ||
1246 | </trans-unit> | ||
1247 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> | 1241 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> |
1248 | <source>Configure</source> | 1242 | <source>Configure</source> |
1249 | <target state="new"> | 1243 | <target state="new"> |
@@ -5687,157 +5681,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5687 | <source>Next</source> | 5681 | <source>Next</source> |
5688 | <target state="new">Next</target> | 5682 | <target state="new">Next</target> |
5689 | 5683 | ||
5690 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="c3b08b07b5ab98e7cdcf18df39355690ab7d3884" datatype="html"> | 5684 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit><trans-unit id="9082008222523034483" datatype="html"> |
5691 | <source>Previous month</source><target state="new">Previous month</target> | ||
5692 | <context-group purpose="location"> | ||
5693 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5694 | <context context-type="linenumber">1</context> | ||
5695 | </context-group> | ||
5696 | </trans-unit><trans-unit id="4bd046985cfe13040d5ef0cd881edce0968a111a" datatype="html"> | ||
5697 | <source>Next month</source><target state="new">Next month</target> | ||
5698 | <context-group purpose="location"> | ||
5699 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5700 | <context context-type="linenumber">1</context> | ||
5701 | </context-group> | ||
5702 | </trans-unit><trans-unit id="1dbc84807f35518112f62e5775d1daebd3d8462b" datatype="html"> | ||
5703 | <source>Select month</source><target state="new">Select month</target> | ||
5704 | <context-group purpose="location"> | ||
5705 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5706 | <context context-type="linenumber">1</context> | ||
5707 | </context-group> | ||
5708 | </trans-unit><trans-unit id="8ceb09d002bf0c5d1cac171dfbffe1805d2b3962" datatype="html"> | ||
5709 | <source>Select year</source><target state="new">Select year</target> | ||
5710 | <context-group purpose="location"> | ||
5711 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5712 | <context context-type="linenumber">1</context> | ||
5713 | </context-group> | ||
5714 | </trans-unit><trans-unit id="656506dfd46380956a655f919f1498d018f75ca0" datatype="html"> | ||
5715 | <source>««</source><target state="new">««</target> | ||
5716 | <context-group purpose="location"> | ||
5717 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5718 | <context context-type="linenumber">1</context> | ||
5719 | </context-group> | ||
5720 | </trans-unit><trans-unit id="6e52b6ee77a4848d899dd21b591c6fd499e3aef3" datatype="html"> | ||
5721 | <source>«</source><target state="new">«</target> | ||
5722 | <context-group purpose="location"> | ||
5723 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5724 | <context context-type="linenumber">1</context> | ||
5725 | </context-group> | ||
5726 | </trans-unit><trans-unit id="ba9cbb4ff311464308a3627e4f1c3345d9fe6d7d" datatype="html"> | ||
5727 | <source>»</source><target state="new">»</target> | ||
5728 | <context-group purpose="location"> | ||
5729 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5730 | <context context-type="linenumber">1</context> | ||
5731 | </context-group> | ||
5732 | </trans-unit><trans-unit id="49f27a460bc97e7e00be5b37098bfa79884fc7d9" datatype="html"> | ||
5733 | <source>»»</source><target state="new">»»</target> | ||
5734 | <context-group purpose="location"> | ||
5735 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5736 | <context context-type="linenumber">1</context> | ||
5737 | </context-group> | ||
5738 | </trans-unit><trans-unit id="f2f852318759c6396b5d3d17031d53817d7b38cc" datatype="html"> | ||
5739 | <source>First</source><target state="new">First</target> | ||
5740 | <context-group purpose="location"> | ||
5741 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5742 | <context context-type="linenumber">1</context> | ||
5743 | </context-group> | ||
5744 | </trans-unit><trans-unit id="5c729788ba138508aca1bec050b610f7bf81db3e" datatype="html"> | ||
5745 | <source>Last</source><target state="new">Last</target> | ||
5746 | <context-group purpose="location"> | ||
5747 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5748 | <context context-type="linenumber">1</context> | ||
5749 | </context-group> | ||
5750 | </trans-unit><trans-unit id="f8e9a947b9db4252c0e9905765338712f2fd032f" datatype="html"> | ||
5751 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5752 | <context-group purpose="location"> | ||
5753 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5754 | <context context-type="linenumber">1</context> | ||
5755 | </context-group> | ||
5756 | </trans-unit><trans-unit id="ce676ab1d6d98f85c836381cf100a4a91ef95a1f" datatype="html"> | ||
5757 | <source>HH</source><target state="new">HH</target> | ||
5758 | <context-group purpose="location"> | ||
5759 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5760 | <context context-type="linenumber">1</context> | ||
5761 | </context-group> | ||
5762 | </trans-unit><trans-unit id="3bbce5fef7e1151da052a4e529453edb340e3912" datatype="html"> | ||
5763 | <source>Hours</source><target state="new">Hours</target> | ||
5764 | <context-group purpose="location"> | ||
5765 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5766 | <context context-type="linenumber">1</context> | ||
5767 | </context-group> | ||
5768 | </trans-unit><trans-unit id="72c8edf6a50068a05bde70991e36b1e881f4ca54" datatype="html"> | ||
5769 | <source>MM</source><target state="new">MM</target> | ||
5770 | <context-group purpose="location"> | ||
5771 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5772 | <context context-type="linenumber">1</context> | ||
5773 | </context-group> | ||
5774 | </trans-unit><trans-unit id="41e62daa962947c0d23ded0981975d1bddf0bf38" datatype="html"> | ||
5775 | <source>Minutes</source><target state="new">Minutes</target> | ||
5776 | <context-group purpose="location"> | ||
5777 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5778 | <context context-type="linenumber">1</context> | ||
5779 | </context-group> | ||
5780 | </trans-unit><trans-unit id="cb74bc1d625a6c1742f0d7d47306cf495780c218" datatype="html"> | ||
5781 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
5782 | <context-group purpose="location"> | ||
5783 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5784 | <context context-type="linenumber">1</context> | ||
5785 | </context-group> | ||
5786 | </trans-unit><trans-unit id="147c7a19429da7d999e247d22e33fee370b1691b" datatype="html"> | ||
5787 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
5788 | <context-group purpose="location"> | ||
5789 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5790 | <context context-type="linenumber">1</context> | ||
5791 | </context-group> | ||
5792 | </trans-unit><trans-unit id="f5a4a3bc05e053f6732475d0e74875ec01c3a348" datatype="html"> | ||
5793 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
5794 | <context-group purpose="location"> | ||
5795 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5796 | <context context-type="linenumber">1</context> | ||
5797 | </context-group> | ||
5798 | </trans-unit><trans-unit id="c1a6899e529c096da5b660385d4e77fe1f7ad271" datatype="html"> | ||
5799 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
5800 | <context-group purpose="location"> | ||
5801 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5802 | <context context-type="linenumber">1</context> | ||
5803 | </context-group> | ||
5804 | </trans-unit><trans-unit id="ebe38d36a40a2383c5fefa9b4608ffbda08bd4a3" datatype="html"> | ||
5805 | <source>SS</source><target state="new">SS</target> | ||
5806 | <context-group purpose="location"> | ||
5807 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5808 | <context context-type="linenumber">1</context> | ||
5809 | </context-group> | ||
5810 | </trans-unit><trans-unit id="4f2ed9e71a7c981db3e50ae2fedb28aff2ec4e6c" datatype="html"> | ||
5811 | <source>Seconds</source><target state="new">Seconds</target> | ||
5812 | <context-group purpose="location"> | ||
5813 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5814 | <context context-type="linenumber">1</context> | ||
5815 | </context-group> | ||
5816 | </trans-unit><trans-unit id="912322ecee7d659d04dcf494a70e22e49d334b26" datatype="html"> | ||
5817 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
5818 | <context-group purpose="location"> | ||
5819 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5820 | <context context-type="linenumber">1</context> | ||
5821 | </context-group> | ||
5822 | </trans-unit><trans-unit id="5db47ac104294243a70eb9124fbea9d0004ddf69" datatype="html"> | ||
5823 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
5824 | <context-group purpose="location"> | ||
5825 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5826 | <context context-type="linenumber">1</context> | ||
5827 | </context-group> | ||
5828 | </trans-unit><trans-unit id="8d6e691e10306c1b34c6b26805151aaea320ef7f" datatype="html"> | ||
5829 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5830 | <context-group purpose="location"> | ||
5831 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5832 | <context context-type="linenumber">1</context> | ||
5833 | </context-group> | ||
5834 | </trans-unit><trans-unit id="69a1f176a93998876952adac57c3bc3863b6105e" datatype="html"> | ||
5835 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5836 | <context-group purpose="location"> | ||
5837 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5838 | <context context-type="linenumber">1</context> | ||
5839 | </context-group> | ||
5840 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
5841 | <source>Get help</source><target state="new">Get help</target> | 5685 | <source>Get help</source><target state="new">Get help</target> |
5842 | <context-group purpose="location"> | 5686 | <context-group purpose="location"> |
5843 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 5687 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> |
@@ -9380,7 +9224,193 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9380 | <source>Only users of this instance can see this video</source> | 9224 | <source>Only users of this instance can see this video</source> |
9381 | <target state="new">Only users of this instance can see this video</target> | 9225 | <target state="new">Only users of this instance can see this video</target> |
9382 | 9226 | ||
9383 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit> | 9227 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit><trans-unit id="ngb.alert.close" datatype="html"> |
9228 | <source>Close</source><target state="new">Close</target> | ||
9229 | <context-group purpose="location"> | ||
9230 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/alert/alert.ts</context> | ||
9231 | <context context-type="linenumber">74</context> | ||
9232 | </context-group> | ||
9233 | </trans-unit><trans-unit id="ngb.carousel.previous" datatype="html"> | ||
9234 | <source>Previous</source><target state="new">Previous</target> | ||
9235 | <context-group purpose="location"> | ||
9236 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9237 | <context context-type="linenumber">349</context> | ||
9238 | </context-group> | ||
9239 | </trans-unit><trans-unit id="ngb.carousel.next" datatype="html"> | ||
9240 | <source>Next</source><target state="new">Next</target> | ||
9241 | <context-group purpose="location"> | ||
9242 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9243 | <context context-type="linenumber">349</context> | ||
9244 | </context-group> | ||
9245 | </trans-unit><trans-unit id="ngb.datepicker.previous-month" datatype="html"> | ||
9246 | <source>Previous month</source><target state="new">Previous month</target> | ||
9247 | <context-group purpose="location"> | ||
9248 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation.ts</context> | ||
9249 | <context context-type="linenumber">69</context> | ||
9250 | </context-group> | ||
9251 | </trans-unit><trans-unit id="ngb.datepicker.next-month" datatype="html"> | ||
9252 | <source>Next month</source><target state="new">Next month</target> | ||
9253 | <context-group purpose="location"> | ||
9254 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-month.ts</context> | ||
9255 | <context context-type="linenumber">72</context> | ||
9256 | </context-group> | ||
9257 | </trans-unit><trans-unit id="ngb.datepicker.select-month" datatype="html"> | ||
9258 | <source>Select month</source><target state="new">Select month</target> | ||
9259 | <context-group purpose="location"> | ||
9260 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9261 | <context context-type="linenumber">74</context> | ||
9262 | </context-group> | ||
9263 | </trans-unit><trans-unit id="ngb.datepicker.select-year" datatype="html"> | ||
9264 | <source>Select year</source><target state="new">Select year</target> | ||
9265 | <context-group purpose="location"> | ||
9266 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9267 | <context context-type="linenumber">74</context> | ||
9268 | </context-group> | ||
9269 | </trans-unit><trans-unit id="ngb.pagination.first" datatype="html"> | ||
9270 | <source>««</source><target state="new">««</target> | ||
9271 | <context-group purpose="location"> | ||
9272 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9273 | <context context-type="linenumber">404</context> | ||
9274 | </context-group> | ||
9275 | </trans-unit><trans-unit id="ngb.pagination.previous" datatype="html"> | ||
9276 | <source>«</source><target state="new">«</target> | ||
9277 | <context-group purpose="location"> | ||
9278 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9279 | <context context-type="linenumber">404</context> | ||
9280 | </context-group> | ||
9281 | </trans-unit><trans-unit id="ngb.pagination.next" datatype="html"> | ||
9282 | <source>»</source><target state="new">»</target> | ||
9283 | <context-group purpose="location"> | ||
9284 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9285 | <context context-type="linenumber">404</context> | ||
9286 | </context-group> | ||
9287 | </trans-unit><trans-unit id="ngb.pagination.last" datatype="html"> | ||
9288 | <source>»»</source><target state="new">»»</target> | ||
9289 | <context-group purpose="location"> | ||
9290 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9291 | <context context-type="linenumber">404</context> | ||
9292 | </context-group> | ||
9293 | </trans-unit><trans-unit id="ngb.pagination.first-aria" datatype="html"> | ||
9294 | <source>First</source><target state="new">First</target> | ||
9295 | <context-group purpose="location"> | ||
9296 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9297 | <context context-type="linenumber">404</context> | ||
9298 | </context-group> | ||
9299 | </trans-unit><trans-unit id="ngb.pagination.previous-aria" datatype="html"> | ||
9300 | <source>Previous</source><target state="new">Previous</target> | ||
9301 | <context-group purpose="location"> | ||
9302 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9303 | <context context-type="linenumber">404</context> | ||
9304 | </context-group> | ||
9305 | </trans-unit><trans-unit id="ngb.pagination.next-aria" datatype="html"> | ||
9306 | <source>Next</source><target state="new">Next</target> | ||
9307 | <context-group purpose="location"> | ||
9308 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9309 | <context context-type="linenumber">404</context> | ||
9310 | </context-group> | ||
9311 | </trans-unit><trans-unit id="ngb.pagination.last-aria" datatype="html"> | ||
9312 | <source>Last</source><target state="new">Last</target> | ||
9313 | <context-group purpose="location"> | ||
9314 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9315 | <context context-type="linenumber">404</context> | ||
9316 | </context-group> | ||
9317 | </trans-unit><trans-unit id="ngb.progressbar.value" datatype="html"> | ||
9318 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9319 | <context-group purpose="location"> | ||
9320 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/progressbar/progressbar.ts</context> | ||
9321 | <context context-type="linenumber">101</context> | ||
9322 | </context-group> | ||
9323 | </trans-unit><trans-unit id="ngb.timepicker.HH" datatype="html"> | ||
9324 | <source>HH</source><target state="new">HH</target> | ||
9325 | <context-group purpose="location"> | ||
9326 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9327 | <context context-type="linenumber">296</context> | ||
9328 | </context-group> | ||
9329 | </trans-unit><trans-unit id="ngb.timepicker.hours" datatype="html"> | ||
9330 | <source>Hours</source><target state="new">Hours</target> | ||
9331 | <context-group purpose="location"> | ||
9332 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9333 | <context context-type="linenumber">296</context> | ||
9334 | </context-group> | ||
9335 | </trans-unit><trans-unit id="ngb.timepicker.MM" datatype="html"> | ||
9336 | <source>MM</source><target state="new">MM</target> | ||
9337 | <context-group purpose="location"> | ||
9338 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9339 | <context context-type="linenumber">296</context> | ||
9340 | </context-group> | ||
9341 | </trans-unit><trans-unit id="ngb.timepicker.minutes" datatype="html"> | ||
9342 | <source>Minutes</source><target state="new">Minutes</target> | ||
9343 | <context-group purpose="location"> | ||
9344 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9345 | <context context-type="linenumber">296</context> | ||
9346 | </context-group> | ||
9347 | </trans-unit><trans-unit id="ngb.timepicker.increment-hours" datatype="html"> | ||
9348 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
9349 | <context-group purpose="location"> | ||
9350 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9351 | <context context-type="linenumber">296</context> | ||
9352 | </context-group> | ||
9353 | </trans-unit><trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> | ||
9354 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
9355 | <context-group purpose="location"> | ||
9356 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9357 | <context context-type="linenumber">296</context> | ||
9358 | </context-group> | ||
9359 | </trans-unit><trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> | ||
9360 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
9361 | <context-group purpose="location"> | ||
9362 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9363 | <context context-type="linenumber">296</context> | ||
9364 | </context-group> | ||
9365 | </trans-unit><trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> | ||
9366 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
9367 | <context-group purpose="location"> | ||
9368 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9369 | <context context-type="linenumber">296</context> | ||
9370 | </context-group> | ||
9371 | </trans-unit><trans-unit id="ngb.timepicker.SS" datatype="html"> | ||
9372 | <source>SS</source><target state="new">SS</target> | ||
9373 | <context-group purpose="location"> | ||
9374 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9375 | <context context-type="linenumber">296</context> | ||
9376 | </context-group> | ||
9377 | </trans-unit><trans-unit id="ngb.timepicker.seconds" datatype="html"> | ||
9378 | <source>Seconds</source><target state="new">Seconds</target> | ||
9379 | <context-group purpose="location"> | ||
9380 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9381 | <context context-type="linenumber">296</context> | ||
9382 | </context-group> | ||
9383 | </trans-unit><trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> | ||
9384 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
9385 | <context-group purpose="location"> | ||
9386 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9387 | <context context-type="linenumber">296</context> | ||
9388 | </context-group> | ||
9389 | </trans-unit><trans-unit id="ngb.timepicker.decrement-seconds" datatype="html"> | ||
9390 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
9391 | <context-group purpose="location"> | ||
9392 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9393 | <context context-type="linenumber">296</context> | ||
9394 | </context-group> | ||
9395 | </trans-unit><trans-unit id="ngb.timepicker.PM" datatype="html"> | ||
9396 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9397 | <context-group purpose="location"> | ||
9398 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9399 | <context context-type="linenumber">296</context> | ||
9400 | </context-group> | ||
9401 | </trans-unit><trans-unit id="ngb.timepicker.AM" datatype="html"> | ||
9402 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9403 | <context-group purpose="location"> | ||
9404 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9405 | <context context-type="linenumber">296</context> | ||
9406 | </context-group> | ||
9407 | </trans-unit><trans-unit id="ngb.toast.close-aria" datatype="html"> | ||
9408 | <source>Close</source><target state="new">Close</target> | ||
9409 | <context-group purpose="location"> | ||
9410 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/toast/toast.ts</context> | ||
9411 | <context context-type="linenumber">137</context> | ||
9412 | </context-group> | ||
9413 | </trans-unit> | ||
9384 | <trans-unit id="5210096066382592800" datatype="html"> | 9414 | <trans-unit id="5210096066382592800" datatype="html"> |
9385 | <source>Video to import updated.</source> | 9415 | <source>Video to import updated.</source> |
9386 | <target state="new">Video to import updated.</target> | 9416 | <target state="new">Video to import updated.</target> |
diff --git a/client/src/locale/angular.vi-VN.xlf b/client/src/locale/angular.vi-VN.xlf index 485b27269..299152fca 100644 --- a/client/src/locale/angular.vi-VN.xlf +++ b/client/src/locale/angular.vi-VN.xlf | |||
@@ -1331,13 +1331,7 @@ The link will expire within 1 hour.</target> | |||
1331 | <source>Close</source> | 1331 | <source>Close</source> |
1332 | <target>Đóng</target> | 1332 | <target>Đóng</target> |
1333 | 1333 | ||
1334 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="680d5c75b7fd8d37961083608b9fcdc4167b4c43" datatype="html"> | 1334 | <context-group purpose="location"><context context-type="sourcefile">../app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1335 | <source>Previous</source><target state="new">Previous</target> | ||
1336 | <context-group purpose="location"> | ||
1337 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
1338 | <context context-type="linenumber">1</context> | ||
1339 | </context-group> | ||
1340 | </trans-unit> | ||
1341 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> | 1335 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> |
1342 | <source> | 1336 | <source> |
1343 | Configure | 1337 | Configure |
@@ -5851,157 +5845,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5851 | <source>Next</source> | 5845 | <source>Next</source> |
5852 | <target state="new">Next</target> | 5846 | <target state="new">Next</target> |
5853 | 5847 | ||
5854 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group></trans-unit><trans-unit id="c3b08b07b5ab98e7cdcf18df39355690ab7d3884" datatype="html"> | 5848 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit><trans-unit id="9082008222523034483" datatype="html"> |
5855 | <source>Previous month</source><target state="new">Previous month</target> | ||
5856 | <context-group purpose="location"> | ||
5857 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5858 | <context context-type="linenumber">1</context> | ||
5859 | </context-group> | ||
5860 | </trans-unit><trans-unit id="4bd046985cfe13040d5ef0cd881edce0968a111a" datatype="html"> | ||
5861 | <source>Next month</source><target state="new">Next month</target> | ||
5862 | <context-group purpose="location"> | ||
5863 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5864 | <context context-type="linenumber">1</context> | ||
5865 | </context-group> | ||
5866 | </trans-unit><trans-unit id="1dbc84807f35518112f62e5775d1daebd3d8462b" datatype="html"> | ||
5867 | <source>Select month</source><target state="new">Select month</target> | ||
5868 | <context-group purpose="location"> | ||
5869 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5870 | <context context-type="linenumber">1</context> | ||
5871 | </context-group> | ||
5872 | </trans-unit><trans-unit id="8ceb09d002bf0c5d1cac171dfbffe1805d2b3962" datatype="html"> | ||
5873 | <source>Select year</source><target state="new">Select year</target> | ||
5874 | <context-group purpose="location"> | ||
5875 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5876 | <context context-type="linenumber">1</context> | ||
5877 | </context-group> | ||
5878 | </trans-unit><trans-unit id="656506dfd46380956a655f919f1498d018f75ca0" datatype="html"> | ||
5879 | <source>««</source><target state="new">««</target> | ||
5880 | <context-group purpose="location"> | ||
5881 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5882 | <context context-type="linenumber">1</context> | ||
5883 | </context-group> | ||
5884 | </trans-unit><trans-unit id="6e52b6ee77a4848d899dd21b591c6fd499e3aef3" datatype="html"> | ||
5885 | <source>«</source><target state="new">«</target> | ||
5886 | <context-group purpose="location"> | ||
5887 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5888 | <context context-type="linenumber">1</context> | ||
5889 | </context-group> | ||
5890 | </trans-unit><trans-unit id="ba9cbb4ff311464308a3627e4f1c3345d9fe6d7d" datatype="html"> | ||
5891 | <source>»</source><target state="new">»</target> | ||
5892 | <context-group purpose="location"> | ||
5893 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5894 | <context context-type="linenumber">1</context> | ||
5895 | </context-group> | ||
5896 | </trans-unit><trans-unit id="49f27a460bc97e7e00be5b37098bfa79884fc7d9" datatype="html"> | ||
5897 | <source>»»</source><target state="new">»»</target> | ||
5898 | <context-group purpose="location"> | ||
5899 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5900 | <context context-type="linenumber">1</context> | ||
5901 | </context-group> | ||
5902 | </trans-unit><trans-unit id="f2f852318759c6396b5d3d17031d53817d7b38cc" datatype="html"> | ||
5903 | <source>First</source><target state="new">First</target> | ||
5904 | <context-group purpose="location"> | ||
5905 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5906 | <context context-type="linenumber">1</context> | ||
5907 | </context-group> | ||
5908 | </trans-unit><trans-unit id="5c729788ba138508aca1bec050b610f7bf81db3e" datatype="html"> | ||
5909 | <source>Last</source><target state="new">Last</target> | ||
5910 | <context-group purpose="location"> | ||
5911 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5912 | <context context-type="linenumber">1</context> | ||
5913 | </context-group> | ||
5914 | </trans-unit><trans-unit id="f8e9a947b9db4252c0e9905765338712f2fd032f" datatype="html"> | ||
5915 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5916 | <context-group purpose="location"> | ||
5917 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5918 | <context context-type="linenumber">1</context> | ||
5919 | </context-group> | ||
5920 | </trans-unit><trans-unit id="ce676ab1d6d98f85c836381cf100a4a91ef95a1f" datatype="html"> | ||
5921 | <source>HH</source><target state="new">HH</target> | ||
5922 | <context-group purpose="location"> | ||
5923 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5924 | <context context-type="linenumber">1</context> | ||
5925 | </context-group> | ||
5926 | </trans-unit><trans-unit id="3bbce5fef7e1151da052a4e529453edb340e3912" datatype="html"> | ||
5927 | <source>Hours</source><target state="new">Hours</target> | ||
5928 | <context-group purpose="location"> | ||
5929 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5930 | <context context-type="linenumber">1</context> | ||
5931 | </context-group> | ||
5932 | </trans-unit><trans-unit id="72c8edf6a50068a05bde70991e36b1e881f4ca54" datatype="html"> | ||
5933 | <source>MM</source><target state="new">MM</target> | ||
5934 | <context-group purpose="location"> | ||
5935 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5936 | <context context-type="linenumber">1</context> | ||
5937 | </context-group> | ||
5938 | </trans-unit><trans-unit id="41e62daa962947c0d23ded0981975d1bddf0bf38" datatype="html"> | ||
5939 | <source>Minutes</source><target state="new">Minutes</target> | ||
5940 | <context-group purpose="location"> | ||
5941 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5942 | <context context-type="linenumber">1</context> | ||
5943 | </context-group> | ||
5944 | </trans-unit><trans-unit id="cb74bc1d625a6c1742f0d7d47306cf495780c218" datatype="html"> | ||
5945 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
5946 | <context-group purpose="location"> | ||
5947 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5948 | <context context-type="linenumber">1</context> | ||
5949 | </context-group> | ||
5950 | </trans-unit><trans-unit id="147c7a19429da7d999e247d22e33fee370b1691b" datatype="html"> | ||
5951 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
5952 | <context-group purpose="location"> | ||
5953 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5954 | <context context-type="linenumber">1</context> | ||
5955 | </context-group> | ||
5956 | </trans-unit><trans-unit id="f5a4a3bc05e053f6732475d0e74875ec01c3a348" datatype="html"> | ||
5957 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
5958 | <context-group purpose="location"> | ||
5959 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5960 | <context context-type="linenumber">1</context> | ||
5961 | </context-group> | ||
5962 | </trans-unit><trans-unit id="c1a6899e529c096da5b660385d4e77fe1f7ad271" datatype="html"> | ||
5963 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
5964 | <context-group purpose="location"> | ||
5965 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5966 | <context context-type="linenumber">1</context> | ||
5967 | </context-group> | ||
5968 | </trans-unit><trans-unit id="ebe38d36a40a2383c5fefa9b4608ffbda08bd4a3" datatype="html"> | ||
5969 | <source>SS</source><target state="new">SS</target> | ||
5970 | <context-group purpose="location"> | ||
5971 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5972 | <context context-type="linenumber">1</context> | ||
5973 | </context-group> | ||
5974 | </trans-unit><trans-unit id="4f2ed9e71a7c981db3e50ae2fedb28aff2ec4e6c" datatype="html"> | ||
5975 | <source>Seconds</source><target state="new">Seconds</target> | ||
5976 | <context-group purpose="location"> | ||
5977 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5978 | <context context-type="linenumber">1</context> | ||
5979 | </context-group> | ||
5980 | </trans-unit><trans-unit id="912322ecee7d659d04dcf494a70e22e49d334b26" datatype="html"> | ||
5981 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
5982 | <context-group purpose="location"> | ||
5983 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5984 | <context context-type="linenumber">1</context> | ||
5985 | </context-group> | ||
5986 | </trans-unit><trans-unit id="5db47ac104294243a70eb9124fbea9d0004ddf69" datatype="html"> | ||
5987 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
5988 | <context-group purpose="location"> | ||
5989 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5990 | <context context-type="linenumber">1</context> | ||
5991 | </context-group> | ||
5992 | </trans-unit><trans-unit id="8d6e691e10306c1b34c6b26805151aaea320ef7f" datatype="html"> | ||
5993 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
5994 | <context-group purpose="location"> | ||
5995 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5996 | <context context-type="linenumber">1</context> | ||
5997 | </context-group> | ||
5998 | </trans-unit><trans-unit id="69a1f176a93998876952adac57c3bc3863b6105e" datatype="html"> | ||
5999 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
6000 | <context-group purpose="location"> | ||
6001 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
6002 | <context context-type="linenumber">1</context> | ||
6003 | </context-group> | ||
6004 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
6005 | <source>Get help</source><target state="new">Get help</target> | 5849 | <source>Get help</source><target state="new">Get help</target> |
6006 | <context-group purpose="location"> | 5850 | <context-group purpose="location"> |
6007 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 5851 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> |
@@ -9551,7 +9395,193 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9551 | <source>Only users of this instance can see this video</source> | 9395 | <source>Only users of this instance can see this video</source> |
9552 | <target state="new">Only users of this instance can see this video</target> | 9396 | <target state="new">Only users of this instance can see this video</target> |
9553 | 9397 | ||
9554 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit> | 9398 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit><trans-unit id="ngb.alert.close" datatype="html"> |
9399 | <source>Close</source><target state="new">Close</target> | ||
9400 | <context-group purpose="location"> | ||
9401 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/alert/alert.ts</context> | ||
9402 | <context context-type="linenumber">74</context> | ||
9403 | </context-group> | ||
9404 | </trans-unit><trans-unit id="ngb.carousel.previous" datatype="html"> | ||
9405 | <source>Previous</source><target state="new">Previous</target> | ||
9406 | <context-group purpose="location"> | ||
9407 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9408 | <context context-type="linenumber">349</context> | ||
9409 | </context-group> | ||
9410 | </trans-unit><trans-unit id="ngb.carousel.next" datatype="html"> | ||
9411 | <source>Next</source><target state="new">Next</target> | ||
9412 | <context-group purpose="location"> | ||
9413 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
9414 | <context context-type="linenumber">349</context> | ||
9415 | </context-group> | ||
9416 | </trans-unit><trans-unit id="ngb.datepicker.previous-month" datatype="html"> | ||
9417 | <source>Previous month</source><target state="new">Previous month</target> | ||
9418 | <context-group purpose="location"> | ||
9419 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation.ts</context> | ||
9420 | <context context-type="linenumber">69</context> | ||
9421 | </context-group> | ||
9422 | </trans-unit><trans-unit id="ngb.datepicker.next-month" datatype="html"> | ||
9423 | <source>Next month</source><target state="new">Next month</target> | ||
9424 | <context-group purpose="location"> | ||
9425 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-month.ts</context> | ||
9426 | <context context-type="linenumber">72</context> | ||
9427 | </context-group> | ||
9428 | </trans-unit><trans-unit id="ngb.datepicker.select-month" datatype="html"> | ||
9429 | <source>Select month</source><target state="new">Select month</target> | ||
9430 | <context-group purpose="location"> | ||
9431 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9432 | <context context-type="linenumber">74</context> | ||
9433 | </context-group> | ||
9434 | </trans-unit><trans-unit id="ngb.datepicker.select-year" datatype="html"> | ||
9435 | <source>Select year</source><target state="new">Select year</target> | ||
9436 | <context-group purpose="location"> | ||
9437 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
9438 | <context context-type="linenumber">74</context> | ||
9439 | </context-group> | ||
9440 | </trans-unit><trans-unit id="ngb.pagination.first" datatype="html"> | ||
9441 | <source>««</source><target state="new">««</target> | ||
9442 | <context-group purpose="location"> | ||
9443 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9444 | <context context-type="linenumber">404</context> | ||
9445 | </context-group> | ||
9446 | </trans-unit><trans-unit id="ngb.pagination.previous" datatype="html"> | ||
9447 | <source>«</source><target state="new">«</target> | ||
9448 | <context-group purpose="location"> | ||
9449 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9450 | <context context-type="linenumber">404</context> | ||
9451 | </context-group> | ||
9452 | </trans-unit><trans-unit id="ngb.pagination.next" datatype="html"> | ||
9453 | <source>»</source><target state="new">»</target> | ||
9454 | <context-group purpose="location"> | ||
9455 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9456 | <context context-type="linenumber">404</context> | ||
9457 | </context-group> | ||
9458 | </trans-unit><trans-unit id="ngb.pagination.last" datatype="html"> | ||
9459 | <source>»»</source><target state="new">»»</target> | ||
9460 | <context-group purpose="location"> | ||
9461 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9462 | <context context-type="linenumber">404</context> | ||
9463 | </context-group> | ||
9464 | </trans-unit><trans-unit id="ngb.pagination.first-aria" datatype="html"> | ||
9465 | <source>First</source><target state="new">First</target> | ||
9466 | <context-group purpose="location"> | ||
9467 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9468 | <context context-type="linenumber">404</context> | ||
9469 | </context-group> | ||
9470 | </trans-unit><trans-unit id="ngb.pagination.previous-aria" datatype="html"> | ||
9471 | <source>Previous</source><target state="new">Previous</target> | ||
9472 | <context-group purpose="location"> | ||
9473 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9474 | <context context-type="linenumber">404</context> | ||
9475 | </context-group> | ||
9476 | </trans-unit><trans-unit id="ngb.pagination.next-aria" datatype="html"> | ||
9477 | <source>Next</source><target state="new">Next</target> | ||
9478 | <context-group purpose="location"> | ||
9479 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9480 | <context context-type="linenumber">404</context> | ||
9481 | </context-group> | ||
9482 | </trans-unit><trans-unit id="ngb.pagination.last-aria" datatype="html"> | ||
9483 | <source>Last</source><target state="new">Last</target> | ||
9484 | <context-group purpose="location"> | ||
9485 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
9486 | <context context-type="linenumber">404</context> | ||
9487 | </context-group> | ||
9488 | </trans-unit><trans-unit id="ngb.progressbar.value" datatype="html"> | ||
9489 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9490 | <context-group purpose="location"> | ||
9491 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/progressbar/progressbar.ts</context> | ||
9492 | <context context-type="linenumber">101</context> | ||
9493 | </context-group> | ||
9494 | </trans-unit><trans-unit id="ngb.timepicker.HH" datatype="html"> | ||
9495 | <source>HH</source><target state="new">HH</target> | ||
9496 | <context-group purpose="location"> | ||
9497 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9498 | <context context-type="linenumber">296</context> | ||
9499 | </context-group> | ||
9500 | </trans-unit><trans-unit id="ngb.timepicker.hours" datatype="html"> | ||
9501 | <source>Hours</source><target state="new">Hours</target> | ||
9502 | <context-group purpose="location"> | ||
9503 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9504 | <context context-type="linenumber">296</context> | ||
9505 | </context-group> | ||
9506 | </trans-unit><trans-unit id="ngb.timepicker.MM" datatype="html"> | ||
9507 | <source>MM</source><target state="new">MM</target> | ||
9508 | <context-group purpose="location"> | ||
9509 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9510 | <context context-type="linenumber">296</context> | ||
9511 | </context-group> | ||
9512 | </trans-unit><trans-unit id="ngb.timepicker.minutes" datatype="html"> | ||
9513 | <source>Minutes</source><target state="new">Minutes</target> | ||
9514 | <context-group purpose="location"> | ||
9515 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9516 | <context context-type="linenumber">296</context> | ||
9517 | </context-group> | ||
9518 | </trans-unit><trans-unit id="ngb.timepicker.increment-hours" datatype="html"> | ||
9519 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
9520 | <context-group purpose="location"> | ||
9521 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9522 | <context context-type="linenumber">296</context> | ||
9523 | </context-group> | ||
9524 | </trans-unit><trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> | ||
9525 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
9526 | <context-group purpose="location"> | ||
9527 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9528 | <context context-type="linenumber">296</context> | ||
9529 | </context-group> | ||
9530 | </trans-unit><trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> | ||
9531 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
9532 | <context-group purpose="location"> | ||
9533 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9534 | <context context-type="linenumber">296</context> | ||
9535 | </context-group> | ||
9536 | </trans-unit><trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> | ||
9537 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
9538 | <context-group purpose="location"> | ||
9539 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9540 | <context context-type="linenumber">296</context> | ||
9541 | </context-group> | ||
9542 | </trans-unit><trans-unit id="ngb.timepicker.SS" datatype="html"> | ||
9543 | <source>SS</source><target state="new">SS</target> | ||
9544 | <context-group purpose="location"> | ||
9545 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9546 | <context context-type="linenumber">296</context> | ||
9547 | </context-group> | ||
9548 | </trans-unit><trans-unit id="ngb.timepicker.seconds" datatype="html"> | ||
9549 | <source>Seconds</source><target state="new">Seconds</target> | ||
9550 | <context-group purpose="location"> | ||
9551 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9552 | <context context-type="linenumber">296</context> | ||
9553 | </context-group> | ||
9554 | </trans-unit><trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> | ||
9555 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
9556 | <context-group purpose="location"> | ||
9557 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9558 | <context context-type="linenumber">296</context> | ||
9559 | </context-group> | ||
9560 | </trans-unit><trans-unit id="ngb.timepicker.decrement-seconds" datatype="html"> | ||
9561 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
9562 | <context-group purpose="location"> | ||
9563 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9564 | <context context-type="linenumber">296</context> | ||
9565 | </context-group> | ||
9566 | </trans-unit><trans-unit id="ngb.timepicker.PM" datatype="html"> | ||
9567 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9568 | <context-group purpose="location"> | ||
9569 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9570 | <context context-type="linenumber">296</context> | ||
9571 | </context-group> | ||
9572 | </trans-unit><trans-unit id="ngb.timepicker.AM" datatype="html"> | ||
9573 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9574 | <context-group purpose="location"> | ||
9575 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9576 | <context context-type="linenumber">296</context> | ||
9577 | </context-group> | ||
9578 | </trans-unit><trans-unit id="ngb.toast.close-aria" datatype="html"> | ||
9579 | <source>Close</source><target state="new">Close</target> | ||
9580 | <context-group purpose="location"> | ||
9581 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/toast/toast.ts</context> | ||
9582 | <context context-type="linenumber">137</context> | ||
9583 | </context-group> | ||
9584 | </trans-unit> | ||
9555 | <trans-unit id="5210096066382592800" datatype="html"> | 9585 | <trans-unit id="5210096066382592800" datatype="html"> |
9556 | <source>Video to import updated.</source> | 9586 | <source>Video to import updated.</source> |
9557 | <target state="new">Video to import updated.</target> | 9587 | <target state="new">Video to import updated.</target> |
diff --git a/client/src/locale/angular.xlf b/client/src/locale/angular.xlf index ed7300319..d15378b9e 100644 --- a/client/src/locale/angular.xlf +++ b/client/src/locale/angular.xlf | |||
@@ -506,6 +506,20 @@ | |||
506 | <context context-type="linenumber">163,165</context> | 506 | <context context-type="linenumber">163,165</context> |
507 | </context-group> | 507 | </context-group> |
508 | </trans-unit> | 508 | </trans-unit> |
509 | <trans-unit id="6979021199788941693" datatype="html"> | ||
510 | <source>Your message has been sent.</source> | ||
511 | <context-group purpose="location"> | ||
512 | <context context-type="sourcefile">../app/+about/about-instance/contact-admin-modal.component.ts</context> | ||
513 | <context context-type="linenumber">76</context> | ||
514 | </context-group> | ||
515 | </trans-unit> | ||
516 | <trans-unit id="2072135752262464360" datatype="html"> | ||
517 | <source>You already sent this form recently</source> | ||
518 | <context-group purpose="location"> | ||
519 | <context context-type="sourcefile">../app/+about/about-instance/contact-admin-modal.component.ts</context> | ||
520 | <context context-type="linenumber">82</context> | ||
521 | </context-group> | ||
522 | </trans-unit> | ||
509 | <trans-unit id="5fea66be16da46ed7a0775e9a62b7b5e94b77473" datatype="html"> | 523 | <trans-unit id="5fea66be16da46ed7a0775e9a62b7b5e94b77473" datatype="html"> |
510 | <source>Contact <x id="INTERPOLATION"/> administrator</source> | 524 | <source>Contact <x id="INTERPOLATION"/> administrator</source> |
511 | <context-group purpose="location"> | 525 | <context-group purpose="location"> |
@@ -555,62 +569,6 @@ | |||
555 | <context context-type="linenumber">53</context> | 569 | <context context-type="linenumber">53</context> |
556 | </context-group> | 570 | </context-group> |
557 | </trans-unit> | 571 | </trans-unit> |
558 | <trans-unit id="6979021199788941693" datatype="html"> | ||
559 | <source>Your message has been sent.</source> | ||
560 | <context-group purpose="location"> | ||
561 | <context context-type="sourcefile">../app/+about/about-instance/contact-admin-modal.component.ts</context> | ||
562 | <context context-type="linenumber">76</context> | ||
563 | </context-group> | ||
564 | </trans-unit> | ||
565 | <trans-unit id="2072135752262464360" datatype="html"> | ||
566 | <source>You already sent this form recently</source> | ||
567 | <context-group purpose="location"> | ||
568 | <context context-type="sourcefile">../app/+about/about-instance/contact-admin-modal.component.ts</context> | ||
569 | <context context-type="linenumber">82</context> | ||
570 | </context-group> | ||
571 | </trans-unit> | ||
572 | <trans-unit id="bd2edf99dd6562385ccec19a7ab2d1898e626605" datatype="html"> | ||
573 | <source>Banned</source> | ||
574 | <context-group purpose="location"> | ||
575 | <context context-type="sourcefile">../app/+accounts/accounts.component.html</context> | ||
576 | <context context-type="linenumber">18</context> | ||
577 | </context-group> | ||
578 | </trans-unit> | ||
579 | <trans-unit id="62a557fcfdbd25a31d1a0332294f94a466fee809" datatype="html"> | ||
580 | <source>Muted</source> | ||
581 | <context-group purpose="location"> | ||
582 | <context context-type="sourcefile">../app/+accounts/accounts.component.html</context> | ||
583 | <context context-type="linenumber">19</context> | ||
584 | </context-group> | ||
585 | </trans-unit> | ||
586 | <trans-unit id="44bd08a7ec1e407356620967d65d8fe2d8639d0a" datatype="html"> | ||
587 | <source>Instance muted</source> | ||
588 | <context-group purpose="location"> | ||
589 | <context context-type="sourcefile">../app/+accounts/accounts.component.html</context> | ||
590 | <context context-type="linenumber">20</context> | ||
591 | </context-group> | ||
592 | </trans-unit> | ||
593 | <trans-unit id="48bbf6dbdb22e0ef4bd257eae2ab356f2ea66c89" datatype="html"> | ||
594 | <source>Muted by your instance</source> | ||
595 | <context-group purpose="location"> | ||
596 | <context context-type="sourcefile">../app/+accounts/accounts.component.html</context> | ||
597 | <context context-type="linenumber">21</context> | ||
598 | </context-group> | ||
599 | </trans-unit> | ||
600 | <trans-unit id="1a6443bb7ed01046dd83cf78806f795f1204ffa1" datatype="html"> | ||
601 | <source>Instance muted by your instance</source> | ||
602 | <context-group purpose="location"> | ||
603 | <context context-type="sourcefile">../app/+accounts/accounts.component.html</context> | ||
604 | <context context-type="linenumber">22</context> | ||
605 | </context-group> | ||
606 | </trans-unit> | ||
607 | <trans-unit id="1b9099f59dd3baaeeaac2c29fe653dc1b0436157" datatype="html"> | ||
608 | <source>Manage account</source> | ||
609 | <context-group purpose="location"> | ||
610 | <context context-type="sourcefile">../app/+accounts/accounts.component.html</context> | ||
611 | <context context-type="linenumber">36</context> | ||
612 | </context-group> | ||
613 | </trans-unit> | ||
614 | <trans-unit id="424703522835656806" datatype="html"> | 572 | <trans-unit id="424703522835656806" datatype="html"> |
615 | <source>VIDEO CHANNELS</source> | 573 | <source>VIDEO CHANNELS</source> |
616 | <context-group purpose="location"> | 574 | <context-group purpose="location"> |
@@ -667,6 +625,48 @@ | |||
667 | <context context-type="linenumber">115</context> | 625 | <context context-type="linenumber">115</context> |
668 | </context-group> | 626 | </context-group> |
669 | </trans-unit> | 627 | </trans-unit> |
628 | <trans-unit id="bd2edf99dd6562385ccec19a7ab2d1898e626605" datatype="html"> | ||
629 | <source>Banned</source> | ||
630 | <context-group purpose="location"> | ||
631 | <context context-type="sourcefile">../app/+accounts/accounts.component.html</context> | ||
632 | <context context-type="linenumber">18</context> | ||
633 | </context-group> | ||
634 | </trans-unit> | ||
635 | <trans-unit id="62a557fcfdbd25a31d1a0332294f94a466fee809" datatype="html"> | ||
636 | <source>Muted</source> | ||
637 | <context-group purpose="location"> | ||
638 | <context context-type="sourcefile">../app/+accounts/accounts.component.html</context> | ||
639 | <context context-type="linenumber">19</context> | ||
640 | </context-group> | ||
641 | </trans-unit> | ||
642 | <trans-unit id="44bd08a7ec1e407356620967d65d8fe2d8639d0a" datatype="html"> | ||
643 | <source>Instance muted</source> | ||
644 | <context-group purpose="location"> | ||
645 | <context context-type="sourcefile">../app/+accounts/accounts.component.html</context> | ||
646 | <context context-type="linenumber">20</context> | ||
647 | </context-group> | ||
648 | </trans-unit> | ||
649 | <trans-unit id="48bbf6dbdb22e0ef4bd257eae2ab356f2ea66c89" datatype="html"> | ||
650 | <source>Muted by your instance</source> | ||
651 | <context-group purpose="location"> | ||
652 | <context context-type="sourcefile">../app/+accounts/accounts.component.html</context> | ||
653 | <context context-type="linenumber">21</context> | ||
654 | </context-group> | ||
655 | </trans-unit> | ||
656 | <trans-unit id="1a6443bb7ed01046dd83cf78806f795f1204ffa1" datatype="html"> | ||
657 | <source>Instance muted by your instance</source> | ||
658 | <context-group purpose="location"> | ||
659 | <context context-type="sourcefile">../app/+accounts/accounts.component.html</context> | ||
660 | <context context-type="linenumber">22</context> | ||
661 | </context-group> | ||
662 | </trans-unit> | ||
663 | <trans-unit id="1b9099f59dd3baaeeaac2c29fe653dc1b0436157" datatype="html"> | ||
664 | <source>Manage account</source> | ||
665 | <context-group purpose="location"> | ||
666 | <context context-type="sourcefile">../app/+accounts/accounts.component.html</context> | ||
667 | <context context-type="linenumber">36</context> | ||
668 | </context-group> | ||
669 | </trans-unit> | ||
670 | <trans-unit id="6f5a458f827503ac7b8697688ecf3e0490818ee8" datatype="html"> | 670 | <trans-unit id="6f5a458f827503ac7b8697688ecf3e0490818ee8" datatype="html"> |
671 | <source>Video channels</source> | 671 | <source>Video channels</source> |
672 | <context-group purpose="location"> | 672 | <context-group purpose="location"> |
@@ -709,6 +709,13 @@ | |||
709 | <context context-type="linenumber">29,30</context> | 709 | <context context-type="linenumber">29,30</context> |
710 | </context-group> | 710 | </context-group> |
711 | </trans-unit> | 711 | </trans-unit> |
712 | <trans-unit id="3755500631176893489" datatype="html"> | ||
713 | <source>Published <x id="PH"/> videos</source> | ||
714 | <context-group purpose="location"> | ||
715 | <context context-type="sourcefile">../app/+accounts/account-videos/account-videos.component.ts</context> | ||
716 | <context context-type="linenumber">67</context> | ||
717 | </context-group> | ||
718 | </trans-unit> | ||
712 | <trans-unit id="41ed53a3f1d4dfc57011d0aba13b8b074e8b41b6" datatype="html"> | 719 | <trans-unit id="41ed53a3f1d4dfc57011d0aba13b8b074e8b41b6" datatype="html"> |
713 | <source>Display unlisted and private videos</source> | 720 | <source>Display unlisted and private videos</source> |
714 | <context-group purpose="location"> | 721 | <context-group purpose="location"> |
@@ -723,11 +730,11 @@ | |||
723 | <context context-type="linenumber">32</context> | 730 | <context context-type="linenumber">32</context> |
724 | </context-group> | 731 | </context-group> |
725 | </trans-unit> | 732 | </trans-unit> |
726 | <trans-unit id="3755500631176893489" datatype="html"> | 733 | <trans-unit id="3830487495946043372" datatype="html"> |
727 | <source>Published <x id="PH"/> videos</source> | 734 | <source>No description</source> |
728 | <context-group purpose="location"> | 735 | <context-group purpose="location"> |
729 | <context context-type="sourcefile">../app/+accounts/account-videos/account-videos.component.ts</context> | 736 | <context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context> |
730 | <context context-type="linenumber">67</context> | 737 | <context context-type="linenumber">38</context> |
731 | </context-group> | 738 | </context-group> |
732 | </trans-unit> | 739 | </trans-unit> |
733 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a" datatype="html"> | 740 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a" datatype="html"> |
@@ -758,13 +765,6 @@ | |||
758 | <context context-type="linenumber">12</context> | 765 | <context context-type="linenumber">12</context> |
759 | </context-group> | 766 | </context-group> |
760 | </trans-unit> | 767 | </trans-unit> |
761 | <trans-unit id="3830487495946043372" datatype="html"> | ||
762 | <source>No description</source> | ||
763 | <context-group purpose="location"> | ||
764 | <context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context> | ||
765 | <context context-type="linenumber">38</context> | ||
766 | </context-group> | ||
767 | </trans-unit> | ||
768 | <trans-unit id="819067926858619041" datatype="html"> | 768 | <trans-unit id="819067926858619041" datatype="html"> |
769 | <source>Account videos</source> | 769 | <source>Account videos</source> |
770 | <context-group purpose="location"> | 770 | <context-group purpose="location"> |
@@ -793,6 +793,27 @@ | |||
793 | <context context-type="linenumber">3</context> | 793 | <context context-type="linenumber">3</context> |
794 | </context-group> | 794 | </context-group> |
795 | </trans-unit> | 795 | </trans-unit> |
796 | <trans-unit id="780323526182667308" datatype="html"> | ||
797 | <source>User <x id="PH"/> updated.</source> | ||
798 | <context-group purpose="location"> | ||
799 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context> | ||
800 | <context context-type="linenumber">85</context> | ||
801 | </context-group> | ||
802 | </trans-unit> | ||
803 | <trans-unit id="1349763489797682899" datatype="html"> | ||
804 | <source>Update user</source> | ||
805 | <context-group purpose="location"> | ||
806 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context> | ||
807 | <context context-type="linenumber">102</context> | ||
808 | </context-group> | ||
809 | </trans-unit> | ||
810 | <trans-unit id="8819563010322372715" datatype="html"> | ||
811 | <source>An email asking for password reset has been sent to <x id="PH"/>.</source> | ||
812 | <context-group purpose="location"> | ||
813 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context> | ||
814 | <context context-type="linenumber">108</context> | ||
815 | </context-group> | ||
816 | </trans-unit> | ||
796 | <trans-unit id="4d13a9cd5ed3dcee0eab22cb25198d43886942be" datatype="html"> | 817 | <trans-unit id="4d13a9cd5ed3dcee0eab22cb25198d43886942be" datatype="html"> |
797 | <source>Users</source> | 818 | <source>Users</source> |
798 | <context-group purpose="location"> | 819 | <context-group purpose="location"> |
@@ -982,27 +1003,6 @@ | |||
982 | <context context-type="linenumber">209</context> | 1003 | <context context-type="linenumber">209</context> |
983 | </context-group> | 1004 | </context-group> |
984 | </trans-unit> | 1005 | </trans-unit> |
985 | <trans-unit id="780323526182667308" datatype="html"> | ||
986 | <source>User <x id="PH"/> updated.</source> | ||
987 | <context-group purpose="location"> | ||
988 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context> | ||
989 | <context context-type="linenumber">85</context> | ||
990 | </context-group> | ||
991 | </trans-unit> | ||
992 | <trans-unit id="1349763489797682899" datatype="html"> | ||
993 | <source>Update user</source> | ||
994 | <context-group purpose="location"> | ||
995 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context> | ||
996 | <context context-type="linenumber">102</context> | ||
997 | </context-group> | ||
998 | </trans-unit> | ||
999 | <trans-unit id="8819563010322372715" datatype="html"> | ||
1000 | <source>An email asking for password reset has been sent to <x id="PH"/>.</source> | ||
1001 | <context-group purpose="location"> | ||
1002 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context> | ||
1003 | <context context-type="linenumber">108</context> | ||
1004 | </context-group> | ||
1005 | </trans-unit> | ||
1006 | <trans-unit id="7483807629538115183" datatype="html"> | 1006 | <trans-unit id="7483807629538115183" datatype="html"> |
1007 | <source>Users list</source> | 1007 | <source>Users list</source> |
1008 | <context-group purpose="location"> | 1008 | <context-group purpose="location"> |
@@ -1115,20 +1115,6 @@ | |||
1115 | <context context-type="linenumber">96</context> | 1115 | <context context-type="linenumber">96</context> |
1116 | </context-group> | 1116 | </context-group> |
1117 | </trans-unit> | 1117 | </trans-unit> |
1118 | <trans-unit id="2aba1e87039819aca3b70faa9aa848c12bf139ca" datatype="html"> | ||
1119 | <source>Show</source> | ||
1120 | <context-group purpose="location"> | ||
1121 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.html</context> | ||
1122 | <context context-type="linenumber">10</context> | ||
1123 | </context-group> | ||
1124 | </trans-unit> | ||
1125 | <trans-unit id="1eede69e18c5ac9c0b0295b72cabb7e64e029e74" datatype="html"> | ||
1126 | <source>Hide</source> | ||
1127 | <context-group purpose="location"> | ||
1128 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.html</context> | ||
1129 | <context context-type="linenumber">11</context> | ||
1130 | </context-group> | ||
1131 | </trans-unit> | ||
1132 | <trans-unit id="5974506725502681113" datatype="html"> | 1118 | <trans-unit id="5974506725502681113" datatype="html"> |
1133 | <source>Password changed for user <x id="PH"/>.</source> | 1119 | <source>Password changed for user <x id="PH"/>.</source> |
1134 | <context-group purpose="location"> | 1120 | <context-group purpose="location"> |
@@ -1143,6 +1129,20 @@ | |||
1143 | <context context-type="linenumber">52</context> | 1129 | <context context-type="linenumber">52</context> |
1144 | </context-group> | 1130 | </context-group> |
1145 | </trans-unit> | 1131 | </trans-unit> |
1132 | <trans-unit id="2aba1e87039819aca3b70faa9aa848c12bf139ca" datatype="html"> | ||
1133 | <source>Show</source> | ||
1134 | <context-group purpose="location"> | ||
1135 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.html</context> | ||
1136 | <context context-type="linenumber">10</context> | ||
1137 | </context-group> | ||
1138 | </trans-unit> | ||
1139 | <trans-unit id="1eede69e18c5ac9c0b0295b72cabb7e64e029e74" datatype="html"> | ||
1140 | <source>Hide</source> | ||
1141 | <context-group purpose="location"> | ||
1142 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.html</context> | ||
1143 | <context context-type="linenumber">11</context> | ||
1144 | </context-group> | ||
1145 | </trans-unit> | ||
1146 | <trans-unit id="177544274549739411" datatype="html"> | 1146 | <trans-unit id="177544274549739411" datatype="html"> |
1147 | <source>Following list</source> | 1147 | <source>Following list</source> |
1148 | <context-group purpose="location"> | 1148 | <context-group purpose="location"> |
@@ -1157,27 +1157,6 @@ | |||
1157 | <context context-type="linenumber">37</context> | 1157 | <context context-type="linenumber">37</context> |
1158 | </context-group> | 1158 | </context-group> |
1159 | </trans-unit> | 1159 | </trans-unit> |
1160 | <trans-unit id="c8d1785038d461ec66b5799db21864182b35900a" datatype="html"> | ||
1161 | <source>Refresh</source> | ||
1162 | <context-group purpose="location"> | ||
1163 | <context context-type="sourcefile">../app/+admin/system/logs/logs.component.html</context> | ||
1164 | <context context-type="linenumber">20</context> | ||
1165 | </context-group> | ||
1166 | </trans-unit> | ||
1167 | <trans-unit id="94516fa213706c67ce5a5b5765681d7fb032033a" datatype="html"> | ||
1168 | <source>Loading...</source> | ||
1169 | <context-group purpose="location"> | ||
1170 | <context context-type="sourcefile">../app/+admin/system/logs/logs.component.html</context> | ||
1171 | <context context-type="linenumber">24</context> | ||
1172 | </context-group> | ||
1173 | </trans-unit> | ||
1174 | <trans-unit id="e4ce2d897f4bdce126c9012769654301a587110a" datatype="html"> | ||
1175 | <source>By <x id="INTERPOLATION"/> -></source> | ||
1176 | <context-group purpose="location"> | ||
1177 | <context context-type="sourcefile">../app/+admin/system/logs/logs.component.html</context> | ||
1178 | <context context-type="linenumber">32</context> | ||
1179 | </context-group> | ||
1180 | </trans-unit> | ||
1181 | <trans-unit id="7591870443991978948" datatype="html"> | 1160 | <trans-unit id="7591870443991978948" datatype="html"> |
1182 | <source>Last week</source> | 1161 | <source>Last week</source> |
1183 | <context-group purpose="location"> | 1162 | <context-group purpose="location"> |
@@ -1241,11 +1220,25 @@ | |||
1241 | <context context-type="linenumber">125</context> | 1220 | <context context-type="linenumber">125</context> |
1242 | </context-group> | 1221 | </context-group> |
1243 | </trans-unit> | 1222 | </trans-unit> |
1244 | <trans-unit id="ba504ef7da4384f035fc148de2d121322aaa7407" datatype="html"> | 1223 | <trans-unit id="c8d1785038d461ec66b5799db21864182b35900a" datatype="html"> |
1245 | <source> This <x id="INTERPOLATION"/> does not have settings. </source> | 1224 | <source>Refresh</source> |
1246 | <context-group purpose="location"> | 1225 | <context-group purpose="location"> |
1247 | <context context-type="sourcefile">../app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context> | 1226 | <context context-type="sourcefile">../app/+admin/system/logs/logs.component.html</context> |
1248 | <context context-type="linenumber">17,18</context> | 1227 | <context context-type="linenumber">20</context> |
1228 | </context-group> | ||
1229 | </trans-unit> | ||
1230 | <trans-unit id="94516fa213706c67ce5a5b5765681d7fb032033a" datatype="html"> | ||
1231 | <source>Loading...</source> | ||
1232 | <context-group purpose="location"> | ||
1233 | <context context-type="sourcefile">../app/+admin/system/logs/logs.component.html</context> | ||
1234 | <context context-type="linenumber">24</context> | ||
1235 | </context-group> | ||
1236 | </trans-unit> | ||
1237 | <trans-unit id="e4ce2d897f4bdce126c9012769654301a587110a" datatype="html"> | ||
1238 | <source>By <x id="INTERPOLATION"/> -></source> | ||
1239 | <context-group purpose="location"> | ||
1240 | <context context-type="sourcefile">../app/+admin/system/logs/logs.component.html</context> | ||
1241 | <context context-type="linenumber">32</context> | ||
1249 | </context-group> | 1242 | </context-group> |
1250 | </trans-unit> | 1243 | </trans-unit> |
1251 | <trans-unit id="1875025899004073421" datatype="html"> | 1244 | <trans-unit id="1875025899004073421" datatype="html"> |
@@ -1255,6 +1248,13 @@ | |||
1255 | <context context-type="linenumber">52</context> | 1248 | <context context-type="linenumber">52</context> |
1256 | </context-group> | 1249 | </context-group> |
1257 | </trans-unit> | 1250 | </trans-unit> |
1251 | <trans-unit id="ba504ef7da4384f035fc148de2d121322aaa7407" datatype="html"> | ||
1252 | <source> This <x id="INTERPOLATION"/> does not have settings. </source> | ||
1253 | <context-group purpose="location"> | ||
1254 | <context context-type="sourcefile">../app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html</context> | ||
1255 | <context context-type="linenumber">17,18</context> | ||
1256 | </context-group> | ||
1257 | </trans-unit> | ||
1258 | <trans-unit id="2593763089859685916" datatype="html"> | 1258 | <trans-unit id="2593763089859685916" datatype="html"> |
1259 | <source>enabled</source> | 1259 | <source>enabled</source> |
1260 | <context-group purpose="location"> | 1260 | <context-group purpose="location"> |
@@ -1381,6 +1381,55 @@ | |||
1381 | <context context-type="linenumber">48</context> | 1381 | <context context-type="linenumber">48</context> |
1382 | </context-group> | 1382 | </context-group> |
1383 | </trans-unit> | 1383 | </trans-unit> |
1384 | <trans-unit id="2520968456492632777" datatype="html"> | ||
1385 | <source><x id="PH"/> accepted in instance followers</source> | ||
1386 | <context-group purpose="location"> | ||
1387 | <context context-type="sourcefile">../app/+admin/follows/followers-list/followers-list.component.ts</context> | ||
1388 | <context context-type="linenumber">41</context> | ||
1389 | </context-group> | ||
1390 | </trans-unit> | ||
1391 | <trans-unit id="450530533730658004" datatype="html"> | ||
1392 | <source>Do you really want to reject this follower?</source> | ||
1393 | <context-group purpose="location"> | ||
1394 | <context context-type="sourcefile">../app/+admin/follows/followers-list/followers-list.component.ts</context> | ||
1395 | <context context-type="linenumber">52</context> | ||
1396 | </context-group> | ||
1397 | </trans-unit> | ||
1398 | <trans-unit id="7378878529334768232" datatype="html"> | ||
1399 | <source>Reject</source> | ||
1400 | <context-group purpose="location"> | ||
1401 | <context context-type="sourcefile">../app/+admin/follows/followers-list/followers-list.component.ts</context> | ||
1402 | <context context-type="linenumber">53</context> | ||
1403 | </context-group> | ||
1404 | </trans-unit> | ||
1405 | <trans-unit id="2040902819815401278" datatype="html"> | ||
1406 | <source><x id="PH"/> rejected from instance followers</source> | ||
1407 | <context-group purpose="location"> | ||
1408 | <context context-type="sourcefile">../app/+admin/follows/followers-list/followers-list.component.ts</context> | ||
1409 | <context context-type="linenumber">60</context> | ||
1410 | </context-group> | ||
1411 | </trans-unit> | ||
1412 | <trans-unit id="3620117223790525725" datatype="html"> | ||
1413 | <source>Do you really want to delete this follower?</source> | ||
1414 | <context-group purpose="location"> | ||
1415 | <context context-type="sourcefile">../app/+admin/follows/followers-list/followers-list.component.ts</context> | ||
1416 | <context context-type="linenumber">73</context> | ||
1417 | </context-group> | ||
1418 | </trans-unit> | ||
1419 | <trans-unit id="7022070615528435141" datatype="html"> | ||
1420 | <source>Delete</source> | ||
1421 | <context-group purpose="location"> | ||
1422 | <context context-type="sourcefile">../app/+admin/follows/followers-list/followers-list.component.ts</context> | ||
1423 | <context context-type="linenumber">74</context> | ||
1424 | </context-group> | ||
1425 | </trans-unit> | ||
1426 | <trans-unit id="2452034338905853167" datatype="html"> | ||
1427 | <source><x id="PH"/> removed from instance followers</source> | ||
1428 | <context-group purpose="location"> | ||
1429 | <context context-type="sourcefile">../app/+admin/follows/followers-list/followers-list.component.ts</context> | ||
1430 | <context context-type="linenumber">81</context> | ||
1431 | </context-group> | ||
1432 | </trans-unit> | ||
1384 | <trans-unit id="5bd2577f482e8ac75e9fd9970c58b7f4b2995e56" datatype="html"> | 1433 | <trans-unit id="5bd2577f482e8ac75e9fd9970c58b7f4b2995e56" datatype="html"> |
1385 | <source>Instances following you</source> | 1434 | <source>Instances following you</source> |
1386 | <context-group purpose="location"> | 1435 | <context-group purpose="location"> |
@@ -1472,53 +1521,32 @@ | |||
1472 | <context context-type="linenumber">69</context> | 1521 | <context context-type="linenumber">69</context> |
1473 | </context-group> | 1522 | </context-group> |
1474 | </trans-unit> | 1523 | </trans-unit> |
1475 | <trans-unit id="2520968456492632777" datatype="html"> | 1524 | <trans-unit id="2355066641781598196" datatype="html"> |
1476 | <source><x id="PH"/> accepted in instance followers</source> | 1525 | <source>Follow request(s) sent!</source> |
1477 | <context-group purpose="location"> | ||
1478 | <context context-type="sourcefile">../app/+admin/follows/followers-list/followers-list.component.ts</context> | ||
1479 | <context context-type="linenumber">41</context> | ||
1480 | </context-group> | ||
1481 | </trans-unit> | ||
1482 | <trans-unit id="450530533730658004" datatype="html"> | ||
1483 | <source>Do you really want to reject this follower?</source> | ||
1484 | <context-group purpose="location"> | ||
1485 | <context context-type="sourcefile">../app/+admin/follows/followers-list/followers-list.component.ts</context> | ||
1486 | <context context-type="linenumber">52</context> | ||
1487 | </context-group> | ||
1488 | </trans-unit> | ||
1489 | <trans-unit id="7378878529334768232" datatype="html"> | ||
1490 | <source>Reject</source> | ||
1491 | <context-group purpose="location"> | ||
1492 | <context context-type="sourcefile">../app/+admin/follows/followers-list/followers-list.component.ts</context> | ||
1493 | <context context-type="linenumber">53</context> | ||
1494 | </context-group> | ||
1495 | </trans-unit> | ||
1496 | <trans-unit id="2040902819815401278" datatype="html"> | ||
1497 | <source><x id="PH"/> rejected from instance followers</source> | ||
1498 | <context-group purpose="location"> | 1526 | <context-group purpose="location"> |
1499 | <context context-type="sourcefile">../app/+admin/follows/followers-list/followers-list.component.ts</context> | 1527 | <context context-type="sourcefile">../app/+admin/follows/following-list/following-list.component.ts</context> |
1500 | <context context-type="linenumber">60</context> | 1528 | <context context-type="linenumber">48</context> |
1501 | </context-group> | 1529 | </context-group> |
1502 | </trans-unit> | 1530 | </trans-unit> |
1503 | <trans-unit id="3620117223790525725" datatype="html"> | 1531 | <trans-unit id="4245720728052819482" datatype="html"> |
1504 | <source>Do you really want to delete this follower?</source> | 1532 | <source>Do you really want to unfollow <x id="PH"/>?</source> |
1505 | <context-group purpose="location"> | 1533 | <context-group purpose="location"> |
1506 | <context context-type="sourcefile">../app/+admin/follows/followers-list/followers-list.component.ts</context> | 1534 | <context context-type="sourcefile">../app/+admin/follows/following-list/following-list.component.ts</context> |
1507 | <context context-type="linenumber">73</context> | 1535 | <context context-type="linenumber">58</context> |
1508 | </context-group> | 1536 | </context-group> |
1509 | </trans-unit> | 1537 | </trans-unit> |
1510 | <trans-unit id="7022070615528435141" datatype="html"> | 1538 | <trans-unit id="9160510009013134726" datatype="html"> |
1511 | <source>Delete</source> | 1539 | <source>Unfollow</source> |
1512 | <context-group purpose="location"> | 1540 | <context-group purpose="location"> |
1513 | <context context-type="sourcefile">../app/+admin/follows/followers-list/followers-list.component.ts</context> | 1541 | <context context-type="sourcefile">../app/+admin/follows/following-list/following-list.component.ts</context> |
1514 | <context context-type="linenumber">74</context> | 1542 | <context context-type="linenumber">59</context> |
1515 | </context-group> | 1543 | </context-group> |
1516 | </trans-unit> | 1544 | </trans-unit> |
1517 | <trans-unit id="2452034338905853167" datatype="html"> | 1545 | <trans-unit id="3935234189109112926" datatype="html"> |
1518 | <source><x id="PH"/> removed from instance followers</source> | 1546 | <source>You are not following <x id="PH"/> anymore.</source> |
1519 | <context-group purpose="location"> | 1547 | <context-group purpose="location"> |
1520 | <context context-type="sourcefile">../app/+admin/follows/followers-list/followers-list.component.ts</context> | 1548 | <context context-type="sourcefile">../app/+admin/follows/following-list/following-list.component.ts</context> |
1521 | <context context-type="linenumber">81</context> | 1549 | <context context-type="linenumber">65</context> |
1522 | </context-group> | 1550 | </context-group> |
1523 | </trans-unit> | 1551 | </trans-unit> |
1524 | <trans-unit id="db28493f1be1ed4d0edfea612181d27c9c530270" datatype="html"> | 1552 | <trans-unit id="db28493f1be1ed4d0edfea612181d27c9c530270" datatype="html"> |
@@ -1584,46 +1612,53 @@ | |||
1584 | <context context-type="linenumber">82,83</context> | 1612 | <context context-type="linenumber">82,83</context> |
1585 | </context-group> | 1613 | </context-group> |
1586 | </trans-unit> | 1614 | </trans-unit> |
1587 | <trans-unit id="2355066641781598196" datatype="html"> | 1615 | <trans-unit id="86288c2ac6b43ed195f0bc8bce825a3ab8151b71" datatype="html"> |
1588 | <source>Follow request(s) sent!</source> | 1616 | <source>Installed</source> |
1589 | <context-group purpose="location"> | 1617 | <context-group purpose="location"> |
1590 | <context context-type="sourcefile">../app/+admin/follows/following-list/following-list.component.ts</context> | 1618 | <context context-type="sourcefile">../app/+admin/plugins/plugins.component.html</context> |
1591 | <context context-type="linenumber">48</context> | 1619 | <context context-type="linenumber">3</context> |
1592 | </context-group> | 1620 | </context-group> |
1593 | </trans-unit> | 1621 | </trans-unit> |
1594 | <trans-unit id="4245720728052819482" datatype="html"> | 1622 | <trans-unit id="7e892ba15f2c6c17e83510e273b3e10fc32ea016" datatype="html"> |
1595 | <source>Do you really want to unfollow <x id="PH"/>?</source> | 1623 | <source>Search</source> |
1596 | <context-group purpose="location"> | 1624 | <context-group purpose="location"> |
1597 | <context context-type="sourcefile">../app/+admin/follows/following-list/following-list.component.ts</context> | 1625 | <context context-type="sourcefile">../app/+admin/plugins/plugins.component.html</context> |
1598 | <context context-type="linenumber">58</context> | 1626 | <context context-type="linenumber">5</context> |
1599 | </context-group> | 1627 | </context-group> |
1600 | </trans-unit> | 1628 | </trans-unit> |
1601 | <trans-unit id="9160510009013134726" datatype="html"> | 1629 | <trans-unit id="81585474102700882" datatype="html"> |
1602 | <source>Unfollow</source> | 1630 | <source>Used</source> |
1603 | <context-group purpose="location"> | 1631 | <context-group purpose="location"> |
1604 | <context context-type="sourcefile">../app/+admin/follows/following-list/following-list.component.ts</context> | 1632 | <context context-type="sourcefile">../app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context> |
1605 | <context context-type="linenumber">59</context> | 1633 | <context context-type="linenumber">101</context> |
1606 | </context-group> | 1634 | </context-group> |
1607 | </trans-unit> | 1635 | </trans-unit> |
1608 | <trans-unit id="3935234189109112926" datatype="html"> | 1636 | <trans-unit id="3955868613858648955" datatype="html"> |
1609 | <source>You are not following <x id="PH"/> anymore.</source> | 1637 | <source>Available</source> |
1610 | <context-group purpose="location"> | 1638 | <context-group purpose="location"> |
1611 | <context context-type="sourcefile">../app/+admin/follows/following-list/following-list.component.ts</context> | 1639 | <context context-type="sourcefile">../app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context> |
1612 | <context context-type="linenumber">65</context> | 1640 | <context context-type="linenumber">101</context> |
1613 | </context-group> | 1641 | </context-group> |
1614 | </trans-unit> | 1642 | </trans-unit> |
1615 | <trans-unit id="86288c2ac6b43ed195f0bc8bce825a3ab8151b71" datatype="html"> | 1643 | <trans-unit id="5875705095657098468" datatype="html"> |
1616 | <source>Installed</source> | 1644 | <source>Do you really want to remove this video redundancy?</source> |
1617 | <context-group purpose="location"> | 1645 | <context-group purpose="location"> |
1618 | <context context-type="sourcefile">../app/+admin/plugins/plugins.component.html</context> | 1646 | <context context-type="sourcefile">../app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context> |
1619 | <context context-type="linenumber">3</context> | 1647 | <context context-type="linenumber">140</context> |
1620 | </context-group> | 1648 | </context-group> |
1621 | </trans-unit> | 1649 | </trans-unit> |
1622 | <trans-unit id="7e892ba15f2c6c17e83510e273b3e10fc32ea016" datatype="html"> | 1650 | <trans-unit id="9098272570113000349" datatype="html"> |
1623 | <source>Search</source> | 1651 | <source>Remove redundancy</source> |
1624 | <context-group purpose="location"> | 1652 | <context-group purpose="location"> |
1625 | <context context-type="sourcefile">../app/+admin/plugins/plugins.component.html</context> | 1653 | <context context-type="sourcefile">../app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context> |
1626 | <context context-type="linenumber">5</context> | 1654 | <context context-type="linenumber">141</context> |
1655 | </context-group> | ||
1656 | </trans-unit> | ||
1657 | <trans-unit id="6537102123107780785" datatype="html"> | ||
1658 | <source>Video redundancies removed!</source> | ||
1659 | <context-group purpose="location"> | ||
1660 | <context context-type="sourcefile">../app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context> | ||
1661 | <context context-type="linenumber">147</context> | ||
1627 | </context-group> | 1662 | </context-group> |
1628 | </trans-unit> | 1663 | </trans-unit> |
1629 | <trans-unit id="1fc09996a8d49e3d1cc3abedb3edf3fa4c427a5f" datatype="html"> | 1664 | <trans-unit id="1fc09996a8d49e3d1cc3abedb3edf3fa4c427a5f" datatype="html"> |
@@ -1717,62 +1752,6 @@ | |||
1717 | <context context-type="linenumber">96,97</context> | 1752 | <context context-type="linenumber">96,97</context> |
1718 | </context-group> | 1753 | </context-group> |
1719 | </trans-unit> | 1754 | </trans-unit> |
1720 | <trans-unit id="81585474102700882" datatype="html"> | ||
1721 | <source>Used</source> | ||
1722 | <context-group purpose="location"> | ||
1723 | <context context-type="sourcefile">../app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context> | ||
1724 | <context context-type="linenumber">101</context> | ||
1725 | </context-group> | ||
1726 | </trans-unit> | ||
1727 | <trans-unit id="3955868613858648955" datatype="html"> | ||
1728 | <source>Available</source> | ||
1729 | <context-group purpose="location"> | ||
1730 | <context context-type="sourcefile">../app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context> | ||
1731 | <context context-type="linenumber">101</context> | ||
1732 | </context-group> | ||
1733 | </trans-unit> | ||
1734 | <trans-unit id="5875705095657098468" datatype="html"> | ||
1735 | <source>Do you really want to remove this video redundancy?</source> | ||
1736 | <context-group purpose="location"> | ||
1737 | <context context-type="sourcefile">../app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context> | ||
1738 | <context context-type="linenumber">140</context> | ||
1739 | </context-group> | ||
1740 | </trans-unit> | ||
1741 | <trans-unit id="9098272570113000349" datatype="html"> | ||
1742 | <source>Remove redundancy</source> | ||
1743 | <context-group purpose="location"> | ||
1744 | <context context-type="sourcefile">../app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context> | ||
1745 | <context context-type="linenumber">141</context> | ||
1746 | </context-group> | ||
1747 | </trans-unit> | ||
1748 | <trans-unit id="6537102123107780785" datatype="html"> | ||
1749 | <source>Video redundancies removed!</source> | ||
1750 | <context-group purpose="location"> | ||
1751 | <context context-type="sourcefile">../app/+admin/follows/video-redundancies-list/video-redundancies-list.component.ts</context> | ||
1752 | <context context-type="linenumber">147</context> | ||
1753 | </context-group> | ||
1754 | </trans-unit> | ||
1755 | <trans-unit id="5a329cfc387d2231434afc2842ff649392da8921" datatype="html"> | ||
1756 | <source>Plugin homepage (new window)</source> | ||
1757 | <context-group purpose="location"> | ||
1758 | <context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html</context> | ||
1759 | <context context-type="linenumber">17</context> | ||
1760 | </context-group> | ||
1761 | </trans-unit> | ||
1762 | <trans-unit id="1dfba504a0d0bf41da961d89d402dedecde5e30d" datatype="html"> | ||
1763 | <source>Uninstall</source> | ||
1764 | <context-group purpose="location"> | ||
1765 | <context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html</context> | ||
1766 | <context context-type="linenumber">32</context> | ||
1767 | </context-group> | ||
1768 | </trans-unit> | ||
1769 | <trans-unit id="121cc5391cd2a5115bc2b3160379ee5b36cd7716" datatype="html"> | ||
1770 | <source>Settings</source> | ||
1771 | <context-group purpose="location"> | ||
1772 | <context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html</context> | ||
1773 | <context context-type="linenumber">26</context> | ||
1774 | </context-group> | ||
1775 | </trans-unit> | ||
1776 | <trans-unit id="212615365039028546" datatype="html"> | 1755 | <trans-unit id="212615365039028546" datatype="html"> |
1777 | <source>You don't have plugins installed yet.</source> | 1756 | <source>You don't have plugins installed yet.</source> |
1778 | <context-group purpose="location"> | 1757 | <context-group purpose="location"> |
@@ -1822,6 +1801,27 @@ | |||
1822 | <context context-type="linenumber">139</context> | 1801 | <context context-type="linenumber">139</context> |
1823 | </context-group> | 1802 | </context-group> |
1824 | </trans-unit> | 1803 | </trans-unit> |
1804 | <trans-unit id="5a329cfc387d2231434afc2842ff649392da8921" datatype="html"> | ||
1805 | <source>Plugin homepage (new window)</source> | ||
1806 | <context-group purpose="location"> | ||
1807 | <context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html</context> | ||
1808 | <context context-type="linenumber">17</context> | ||
1809 | </context-group> | ||
1810 | </trans-unit> | ||
1811 | <trans-unit id="1dfba504a0d0bf41da961d89d402dedecde5e30d" datatype="html"> | ||
1812 | <source>Uninstall</source> | ||
1813 | <context-group purpose="location"> | ||
1814 | <context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html</context> | ||
1815 | <context context-type="linenumber">32</context> | ||
1816 | </context-group> | ||
1817 | </trans-unit> | ||
1818 | <trans-unit id="121cc5391cd2a5115bc2b3160379ee5b36cd7716" datatype="html"> | ||
1819 | <source>Settings</source> | ||
1820 | <context-group purpose="location"> | ||
1821 | <context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.html</context> | ||
1822 | <context context-type="linenumber">26</context> | ||
1823 | </context-group> | ||
1824 | </trans-unit> | ||
1825 | <trans-unit id="3229595422546554334" datatype="html"> | 1825 | <trans-unit id="3229595422546554334" datatype="html"> |
1826 | <source>Jobs</source> | 1826 | <source>Jobs</source> |
1827 | <context-group purpose="location"> | 1827 | <context-group purpose="location"> |
@@ -1941,6 +1941,90 @@ | |||
1941 | <context context-type="linenumber">41</context> | 1941 | <context context-type="linenumber">41</context> |
1942 | </context-group> | 1942 | </context-group> |
1943 | </trans-unit> | 1943 | </trans-unit> |
1944 | <trans-unit id="3767259920053407667" datatype="html"> | ||
1945 | <source>Videos will be deleted, comments will be tombstoned.</source> | ||
1946 | <context-group purpose="location"> | ||
1947 | <context context-type="sourcefile">../app/+admin/users/user-list/user-list.component.ts</context> | ||
1948 | <context context-type="linenumber">84</context> | ||
1949 | </context-group> | ||
1950 | </trans-unit> | ||
1951 | <trans-unit id="4209525355702493436" datatype="html"> | ||
1952 | <source>Ban</source> | ||
1953 | <context-group purpose="location"> | ||
1954 | <context context-type="sourcefile">../app/+admin/users/user-list/user-list.component.ts</context> | ||
1955 | <context context-type="linenumber">89</context> | ||
1956 | </context-group> | ||
1957 | </trans-unit> | ||
1958 | <trans-unit id="3855396975723886053" datatype="html"> | ||
1959 | <source>User won't be able to login anymore, but videos and comments will be kept as is.</source> | ||
1960 | <context-group purpose="location"> | ||
1961 | <context context-type="sourcefile">../app/+admin/users/user-list/user-list.component.ts</context> | ||
1962 | <context context-type="linenumber">90</context> | ||
1963 | </context-group> | ||
1964 | </trans-unit> | ||
1965 | <trans-unit id="4451482225013335720" datatype="html"> | ||
1966 | <source>Unban</source> | ||
1967 | <context-group purpose="location"> | ||
1968 | <context context-type="sourcefile">../app/+admin/users/user-list/user-list.component.ts</context> | ||
1969 | <context context-type="linenumber">95</context> | ||
1970 | </context-group> | ||
1971 | </trans-unit> | ||
1972 | <trans-unit id="7210277223053877333" datatype="html"> | ||
1973 | <source>Set Email as Verified</source> | ||
1974 | <context-group purpose="location"> | ||
1975 | <context context-type="sourcefile">../app/+admin/users/user-list/user-list.component.ts</context> | ||
1976 | <context context-type="linenumber">102</context> | ||
1977 | </context-group> | ||
1978 | </trans-unit> | ||
1979 | <trans-unit id="3403978719736970622" datatype="html"> | ||
1980 | <source>You cannot ban root.</source> | ||
1981 | <context-group purpose="location"> | ||
1982 | <context context-type="sourcefile">../app/+admin/users/user-list/user-list.component.ts</context> | ||
1983 | <context context-type="linenumber">161</context> | ||
1984 | </context-group> | ||
1985 | </trans-unit> | ||
1986 | <trans-unit id="4884272193574287483" datatype="html"> | ||
1987 | <source>Do you really want to unban <x id="PH"/> users?</source> | ||
1988 | <context-group purpose="location"> | ||
1989 | <context context-type="sourcefile">../app/+admin/users/user-list/user-list.component.ts</context> | ||
1990 | <context context-type="linenumber">198</context> | ||
1991 | </context-group> | ||
1992 | </trans-unit> | ||
1993 | <trans-unit id="8712248120167780385" datatype="html"> | ||
1994 | <source><x id="PH"/> users unbanned.</source> | ||
1995 | <context-group purpose="location"> | ||
1996 | <context context-type="sourcefile">../app/+admin/users/user-list/user-list.component.ts</context> | ||
1997 | <context context-type="linenumber">204</context> | ||
1998 | </context-group> | ||
1999 | </trans-unit> | ||
2000 | <trans-unit id="5325873477837320044" datatype="html"> | ||
2001 | <source>You cannot delete root.</source> | ||
2002 | <context-group purpose="location"> | ||
2003 | <context context-type="sourcefile">../app/+admin/users/user-list/user-list.component.ts</context> | ||
2004 | <context context-type="linenumber">215</context> | ||
2005 | </context-group> | ||
2006 | </trans-unit> | ||
2007 | <trans-unit id="4086135983283545219" datatype="html"> | ||
2008 | <source>If you remove these users, you will not be able to create others with the same username!</source> | ||
2009 | <context-group purpose="location"> | ||
2010 | <context context-type="sourcefile">../app/+admin/users/user-list/user-list.component.ts</context> | ||
2011 | <context context-type="linenumber">220</context> | ||
2012 | </context-group> | ||
2013 | </trans-unit> | ||
2014 | <trans-unit id="7166936623843420016" datatype="html"> | ||
2015 | <source><x id="PH"/> users deleted.</source> | ||
2016 | <context-group purpose="location"> | ||
2017 | <context context-type="sourcefile">../app/+admin/users/user-list/user-list.component.ts</context> | ||
2018 | <context context-type="linenumber">226</context> | ||
2019 | </context-group> | ||
2020 | </trans-unit> | ||
2021 | <trans-unit id="8360664597512051242" datatype="html"> | ||
2022 | <source><x id="PH"/> users email set as verified.</source> | ||
2023 | <context-group purpose="location"> | ||
2024 | <context context-type="sourcefile">../app/+admin/users/user-list/user-list.component.ts</context> | ||
2025 | <context context-type="linenumber">237</context> | ||
2026 | </context-group> | ||
2027 | </trans-unit> | ||
1944 | <trans-unit id="0fcb785bae83bfd5c1b1bbeb57cda21eec98ae1a" datatype="html"> | 2028 | <trans-unit id="0fcb785bae83bfd5c1b1bbeb57cda21eec98ae1a" datatype="html"> |
1945 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> users</source> | 2029 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> users</source> |
1946 | <context-group purpose="location"> | 2030 | <context-group purpose="location"> |
@@ -2046,88 +2130,74 @@ | |||
2046 | <context context-type="linenumber">177</context> | 2130 | <context context-type="linenumber">177</context> |
2047 | </context-group> | 2131 | </context-group> |
2048 | </trans-unit> | 2132 | </trans-unit> |
2049 | <trans-unit id="3767259920053407667" datatype="html"> | 2133 | <trans-unit id="1035838766454786107" datatype="html"> |
2050 | <source>Videos will be deleted, comments will be tombstoned.</source> | 2134 | <source>Audio-only</source> |
2051 | <context-group purpose="location"> | ||
2052 | <context context-type="sourcefile">../app/+admin/users/user-list/user-list.component.ts</context> | ||
2053 | <context context-type="linenumber">84</context> | ||
2054 | </context-group> | ||
2055 | </trans-unit> | ||
2056 | <trans-unit id="4209525355702493436" datatype="html"> | ||
2057 | <source>Ban</source> | ||
2058 | <context-group purpose="location"> | ||
2059 | <context context-type="sourcefile">../app/+admin/users/user-list/user-list.component.ts</context> | ||
2060 | <context context-type="linenumber">89</context> | ||
2061 | </context-group> | ||
2062 | </trans-unit> | ||
2063 | <trans-unit id="3855396975723886053" datatype="html"> | ||
2064 | <source>User won't be able to login anymore, but videos and comments will be kept as is.</source> | ||
2065 | <context-group purpose="location"> | 2135 | <context-group purpose="location"> |
2066 | <context context-type="sourcefile">../app/+admin/users/user-list/user-list.component.ts</context> | 2136 | <context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context> |
2067 | <context context-type="linenumber">90</context> | 2137 | <context context-type="linenumber">56</context> |
2068 | </context-group> | 2138 | </context-group> |
2069 | </trans-unit> | 2139 | </trans-unit> |
2070 | <trans-unit id="4451482225013335720" datatype="html"> | 2140 | <trans-unit id="8011855989482474311" datatype="html"> |
2071 | <source>Unban</source> | 2141 | <source>A <code>.mp4</code> that keeps the original audio track, with no video</source> |
2072 | <context-group purpose="location"> | 2142 | <context-group purpose="location"> |
2073 | <context context-type="sourcefile">../app/+admin/users/user-list/user-list.component.ts</context> | 2143 | <context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context> |
2074 | <context context-type="linenumber">95</context> | 2144 | <context context-type="linenumber">57</context> |
2075 | </context-group> | 2145 | </context-group> |
2076 | </trans-unit> | 2146 | </trans-unit> |
2077 | <trans-unit id="7210277223053877333" datatype="html"> | 2147 | <trans-unit id="3768852440495368591" datatype="html"> |
2078 | <source>Set Email as Verified</source> | 2148 | <source>240p</source> |
2079 | <context-group purpose="location"> | 2149 | <context-group purpose="location"> |
2080 | <context context-type="sourcefile">../app/+admin/users/user-list/user-list.component.ts</context> | 2150 | <context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context> |
2081 | <context context-type="linenumber">102</context> | 2151 | <context context-type="linenumber">61</context> |
2082 | </context-group> | 2152 | </context-group> |
2083 | </trans-unit> | 2153 | </trans-unit> |
2084 | <trans-unit id="3403978719736970622" datatype="html"> | 2154 | <trans-unit id="6824490596490222280" datatype="html"> |
2085 | <source>You cannot ban root.</source> | 2155 | <source>360p</source> |
2086 | <context-group purpose="location"> | 2156 | <context-group purpose="location"> |
2087 | <context context-type="sourcefile">../app/+admin/users/user-list/user-list.component.ts</context> | 2157 | <context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context> |
2088 | <context context-type="linenumber">161</context> | 2158 | <context context-type="linenumber">65</context> |
2089 | </context-group> | 2159 | </context-group> |
2090 | </trans-unit> | 2160 | </trans-unit> |
2091 | <trans-unit id="4884272193574287483" datatype="html"> | 2161 | <trans-unit id="4039682741786530029" datatype="html"> |
2092 | <source>Do you really want to unban <x id="PH"/> users?</source> | 2162 | <source>480p</source> |
2093 | <context-group purpose="location"> | 2163 | <context-group purpose="location"> |
2094 | <context context-type="sourcefile">../app/+admin/users/user-list/user-list.component.ts</context> | 2164 | <context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context> |
2095 | <context context-type="linenumber">198</context> | 2165 | <context context-type="linenumber">69</context> |
2096 | </context-group> | 2166 | </context-group> |
2097 | </trans-unit> | 2167 | </trans-unit> |
2098 | <trans-unit id="8712248120167780385" datatype="html"> | 2168 | <trans-unit id="5165245100010036661" datatype="html"> |
2099 | <source><x id="PH"/> users unbanned.</source> | 2169 | <source>720p</source> |
2100 | <context-group purpose="location"> | 2170 | <context-group purpose="location"> |
2101 | <context context-type="sourcefile">../app/+admin/users/user-list/user-list.component.ts</context> | 2171 | <context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context> |
2102 | <context context-type="linenumber">204</context> | 2172 | <context context-type="linenumber">73</context> |
2103 | </context-group> | 2173 | </context-group> |
2104 | </trans-unit> | 2174 | </trans-unit> |
2105 | <trans-unit id="5325873477837320044" datatype="html"> | 2175 | <trans-unit id="7709767791012306261" datatype="html"> |
2106 | <source>You cannot delete root.</source> | 2176 | <source>1080p</source> |
2107 | <context-group purpose="location"> | 2177 | <context-group purpose="location"> |
2108 | <context context-type="sourcefile">../app/+admin/users/user-list/user-list.component.ts</context> | 2178 | <context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context> |
2109 | <context context-type="linenumber">215</context> | 2179 | <context context-type="linenumber">77</context> |
2110 | </context-group> | 2180 | </context-group> |
2111 | </trans-unit> | 2181 | </trans-unit> |
2112 | <trans-unit id="4086135983283545219" datatype="html"> | 2182 | <trans-unit id="597839553814574067" datatype="html"> |
2113 | <source>If you remove these users, you will not be able to create others with the same username!</source> | 2183 | <source>2160p</source> |
2114 | <context-group purpose="location"> | 2184 | <context-group purpose="location"> |
2115 | <context context-type="sourcefile">../app/+admin/users/user-list/user-list.component.ts</context> | 2185 | <context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context> |
2116 | <context context-type="linenumber">220</context> | 2186 | <context context-type="linenumber">81</context> |
2117 | </context-group> | 2187 | </context-group> |
2118 | </trans-unit> | 2188 | </trans-unit> |
2119 | <trans-unit id="7166936623843420016" datatype="html"> | 2189 | <trans-unit id="3957742085471141221" datatype="html"> |
2120 | <source><x id="PH"/> users deleted.</source> | 2190 | <source>Auto (via ffmpeg)</source> |
2121 | <context-group purpose="location"> | 2191 | <context-group purpose="location"> |
2122 | <context context-type="sourcefile">../app/+admin/users/user-list/user-list.component.ts</context> | 2192 | <context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context> |
2123 | <context context-type="linenumber">226</context> | 2193 | <context context-type="linenumber">86</context> |
2124 | </context-group> | 2194 | </context-group> |
2125 | </trans-unit> | 2195 | </trans-unit> |
2126 | <trans-unit id="8360664597512051242" datatype="html"> | 2196 | <trans-unit id="2060042292048624940" datatype="html"> |
2127 | <source><x id="PH"/> users email set as verified.</source> | 2197 | <source>Configuration updated.</source> |
2128 | <context-group purpose="location"> | 2198 | <context-group purpose="location"> |
2129 | <context context-type="sourcefile">../app/+admin/users/user-list/user-list.component.ts</context> | 2199 | <context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context> |
2130 | <context context-type="linenumber">237</context> | 2200 | <context context-type="linenumber">294</context> |
2131 | </context-group> | 2201 | </context-group> |
2132 | </trans-unit> | 2202 | </trans-unit> |
2133 | <trans-unit id="4a41f824a35ba01d5bd7be61aa06b3e8145209d0" datatype="html"> | 2203 | <trans-unit id="4a41f824a35ba01d5bd7be61aa06b3e8145209d0" datatype="html"> |
@@ -2948,76 +3018,6 @@ | |||
2948 | <context context-type="linenumber">948</context> | 3018 | <context context-type="linenumber">948</context> |
2949 | </context-group> | 3019 | </context-group> |
2950 | </trans-unit> | 3020 | </trans-unit> |
2951 | <trans-unit id="1035838766454786107" datatype="html"> | ||
2952 | <source>Audio-only</source> | ||
2953 | <context-group purpose="location"> | ||
2954 | <context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context> | ||
2955 | <context context-type="linenumber">56</context> | ||
2956 | </context-group> | ||
2957 | </trans-unit> | ||
2958 | <trans-unit id="8011855989482474311" datatype="html"> | ||
2959 | <source>A <code>.mp4</code> that keeps the original audio track, with no video</source> | ||
2960 | <context-group purpose="location"> | ||
2961 | <context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context> | ||
2962 | <context context-type="linenumber">57</context> | ||
2963 | </context-group> | ||
2964 | </trans-unit> | ||
2965 | <trans-unit id="3768852440495368591" datatype="html"> | ||
2966 | <source>240p</source> | ||
2967 | <context-group purpose="location"> | ||
2968 | <context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context> | ||
2969 | <context context-type="linenumber">61</context> | ||
2970 | </context-group> | ||
2971 | </trans-unit> | ||
2972 | <trans-unit id="6824490596490222280" datatype="html"> | ||
2973 | <source>360p</source> | ||
2974 | <context-group purpose="location"> | ||
2975 | <context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context> | ||
2976 | <context context-type="linenumber">65</context> | ||
2977 | </context-group> | ||
2978 | </trans-unit> | ||
2979 | <trans-unit id="4039682741786530029" datatype="html"> | ||
2980 | <source>480p</source> | ||
2981 | <context-group purpose="location"> | ||
2982 | <context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context> | ||
2983 | <context context-type="linenumber">69</context> | ||
2984 | </context-group> | ||
2985 | </trans-unit> | ||
2986 | <trans-unit id="5165245100010036661" datatype="html"> | ||
2987 | <source>720p</source> | ||
2988 | <context-group purpose="location"> | ||
2989 | <context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context> | ||
2990 | <context context-type="linenumber">73</context> | ||
2991 | </context-group> | ||
2992 | </trans-unit> | ||
2993 | <trans-unit id="7709767791012306261" datatype="html"> | ||
2994 | <source>1080p</source> | ||
2995 | <context-group purpose="location"> | ||
2996 | <context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context> | ||
2997 | <context context-type="linenumber">77</context> | ||
2998 | </context-group> | ||
2999 | </trans-unit> | ||
3000 | <trans-unit id="597839553814574067" datatype="html"> | ||
3001 | <source>2160p</source> | ||
3002 | <context-group purpose="location"> | ||
3003 | <context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context> | ||
3004 | <context context-type="linenumber">81</context> | ||
3005 | </context-group> | ||
3006 | </trans-unit> | ||
3007 | <trans-unit id="3957742085471141221" datatype="html"> | ||
3008 | <source>Auto (via ffmpeg)</source> | ||
3009 | <context-group purpose="location"> | ||
3010 | <context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context> | ||
3011 | <context context-type="linenumber">86</context> | ||
3012 | </context-group> | ||
3013 | </trans-unit> | ||
3014 | <trans-unit id="2060042292048624940" datatype="html"> | ||
3015 | <source>Configuration updated.</source> | ||
3016 | <context-group purpose="location"> | ||
3017 | <context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context> | ||
3018 | <context context-type="linenumber">294</context> | ||
3019 | </context-group> | ||
3020 | </trans-unit> | ||
3021 | <trans-unit id="6284468333579755406" datatype="html"> | 3021 | <trans-unit id="6284468333579755406" datatype="html"> |
3022 | <source>Edit custom configuration</source> | 3022 | <source>Edit custom configuration</source> |
3023 | <context-group purpose="location"> | 3023 | <context-group purpose="location"> |
@@ -3172,6 +3172,83 @@ | |||
3172 | <context context-type="linenumber">78</context> | 3172 | <context context-type="linenumber">78</context> |
3173 | </context-group> | 3173 | </context-group> |
3174 | </trans-unit> | 3174 | </trans-unit> |
3175 | <trans-unit id="6473213678768782133" datatype="html"> | ||
3176 | <source>Internal actions</source> | ||
3177 | <context-group purpose="location"> | ||
3178 | <context context-type="sourcefile">../app/+admin/moderation/video-block-list/video-block-list.component.ts</context> | ||
3179 | <context context-type="linenumber">43</context> | ||
3180 | </context-group> | ||
3181 | </trans-unit> | ||
3182 | <trans-unit id="3962242315365992494" datatype="html"> | ||
3183 | <source>Switch video block to manual</source> | ||
3184 | <context-group purpose="location"> | ||
3185 | <context context-type="sourcefile">../app/+admin/moderation/video-block-list/video-block-list.component.ts</context> | ||
3186 | <context context-type="linenumber">48</context> | ||
3187 | </context-group> | ||
3188 | </trans-unit> | ||
3189 | <trans-unit id="6906423861055262169" datatype="html"> | ||
3190 | <source>Video <x id="PH"/> switched to manual block.</source> | ||
3191 | <context-group purpose="location"> | ||
3192 | <context context-type="sourcefile">../app/+admin/moderation/video-block-list/video-block-list.component.ts</context> | ||
3193 | <context context-type="linenumber">54</context> | ||
3194 | </context-group> | ||
3195 | </trans-unit> | ||
3196 | <trans-unit id="296166371893775555" datatype="html"> | ||
3197 | <source>Actions for the video</source> | ||
3198 | <context-group purpose="location"> | ||
3199 | <context context-type="sourcefile">../app/+admin/moderation/video-block-list/video-block-list.component.ts</context> | ||
3200 | <context context-type="linenumber">66</context> | ||
3201 | </context-group> | ||
3202 | </trans-unit> | ||
3203 | <trans-unit id="4859202148272511129" datatype="html"> | ||
3204 | <source>Unblock</source> | ||
3205 | <context-group purpose="location"> | ||
3206 | <context context-type="sourcefile">../app/+admin/moderation/video-block-list/video-block-list.component.ts</context> | ||
3207 | <context context-type="linenumber">70</context> | ||
3208 | </context-group> | ||
3209 | </trans-unit> | ||
3210 | <trans-unit id="3622946684246476652" datatype="html"> | ||
3211 | <source>Do you really want to delete this video?</source> | ||
3212 | <context-group purpose="location"> | ||
3213 | <context context-type="sourcefile">../app/+admin/moderation/video-block-list/video-block-list.component.ts</context> | ||
3214 | <context context-type="linenumber">78</context> | ||
3215 | </context-group> | ||
3216 | </trans-unit> | ||
3217 | <trans-unit id="3941342949736653028" datatype="html"> | ||
3218 | <source>Video deleted.</source> | ||
3219 | <context-group purpose="location"> | ||
3220 | <context context-type="sourcefile">../app/+admin/moderation/video-block-list/video-block-list.component.ts</context> | ||
3221 | <context context-type="linenumber">86</context> | ||
3222 | </context-group> | ||
3223 | </trans-unit> | ||
3224 | <trans-unit id="6286037250766429054" datatype="html"> | ||
3225 | <source>yes</source> | ||
3226 | <context-group purpose="location"> | ||
3227 | <context context-type="sourcefile">../app/+admin/moderation/video-block-list/video-block-list.component.ts</context> | ||
3228 | <context context-type="linenumber">149</context> | ||
3229 | </context-group> | ||
3230 | </trans-unit> | ||
3231 | <trans-unit id="2420525563530770652" datatype="html"> | ||
3232 | <source>no</source> | ||
3233 | <context-group purpose="location"> | ||
3234 | <context context-type="sourcefile">../app/+admin/moderation/video-block-list/video-block-list.component.ts</context> | ||
3235 | <context context-type="linenumber">151</context> | ||
3236 | </context-group> | ||
3237 | </trans-unit> | ||
3238 | <trans-unit id="7293356040886494773" datatype="html"> | ||
3239 | <source>Do you really want to unblock this video? It will be available again in the videos list.</source> | ||
3240 | <context-group purpose="location"> | ||
3241 | <context context-type="sourcefile">../app/+admin/moderation/video-block-list/video-block-list.component.ts</context> | ||
3242 | <context context-type="linenumber">159</context> | ||
3243 | </context-group> | ||
3244 | </trans-unit> | ||
3245 | <trans-unit id="4922469417589203720" datatype="html"> | ||
3246 | <source>Video <x id="PH"/> unblocked.</source> | ||
3247 | <context-group purpose="location"> | ||
3248 | <context context-type="sourcefile">../app/+admin/moderation/video-block-list/video-block-list.component.ts</context> | ||
3249 | <context context-type="linenumber">166</context> | ||
3250 | </context-group> | ||
3251 | </trans-unit> | ||
3175 | <trans-unit id="d2e7333704502d1720b353742634630b71ea8bd7" datatype="html"> | 3252 | <trans-unit id="d2e7333704502d1720b353742634630b71ea8bd7" datatype="html"> |
3176 | <source>Video blocks</source> | 3253 | <source>Video blocks</source> |
3177 | <context-group purpose="location"> | 3254 | <context-group purpose="location"> |
@@ -3270,83 +3347,6 @@ | |||
3270 | <context context-type="linenumber">124</context> | 3347 | <context context-type="linenumber">124</context> |
3271 | </context-group> | 3348 | </context-group> |
3272 | </trans-unit> | 3349 | </trans-unit> |
3273 | <trans-unit id="6473213678768782133" datatype="html"> | ||
3274 | <source>Internal actions</source> | ||
3275 | <context-group purpose="location"> | ||
3276 | <context context-type="sourcefile">../app/+admin/moderation/video-block-list/video-block-list.component.ts</context> | ||
3277 | <context context-type="linenumber">43</context> | ||
3278 | </context-group> | ||
3279 | </trans-unit> | ||
3280 | <trans-unit id="3962242315365992494" datatype="html"> | ||
3281 | <source>Switch video block to manual</source> | ||
3282 | <context-group purpose="location"> | ||
3283 | <context context-type="sourcefile">../app/+admin/moderation/video-block-list/video-block-list.component.ts</context> | ||
3284 | <context context-type="linenumber">48</context> | ||
3285 | </context-group> | ||
3286 | </trans-unit> | ||
3287 | <trans-unit id="6906423861055262169" datatype="html"> | ||
3288 | <source>Video <x id="PH"/> switched to manual block.</source> | ||
3289 | <context-group purpose="location"> | ||
3290 | <context context-type="sourcefile">../app/+admin/moderation/video-block-list/video-block-list.component.ts</context> | ||
3291 | <context context-type="linenumber">54</context> | ||
3292 | </context-group> | ||
3293 | </trans-unit> | ||
3294 | <trans-unit id="296166371893775555" datatype="html"> | ||
3295 | <source>Actions for the video</source> | ||
3296 | <context-group purpose="location"> | ||
3297 | <context context-type="sourcefile">../app/+admin/moderation/video-block-list/video-block-list.component.ts</context> | ||
3298 | <context context-type="linenumber">66</context> | ||
3299 | </context-group> | ||
3300 | </trans-unit> | ||
3301 | <trans-unit id="4859202148272511129" datatype="html"> | ||
3302 | <source>Unblock</source> | ||
3303 | <context-group purpose="location"> | ||
3304 | <context context-type="sourcefile">../app/+admin/moderation/video-block-list/video-block-list.component.ts</context> | ||
3305 | <context context-type="linenumber">70</context> | ||
3306 | </context-group> | ||
3307 | </trans-unit> | ||
3308 | <trans-unit id="3622946684246476652" datatype="html"> | ||
3309 | <source>Do you really want to delete this video?</source> | ||
3310 | <context-group purpose="location"> | ||
3311 | <context context-type="sourcefile">../app/+admin/moderation/video-block-list/video-block-list.component.ts</context> | ||
3312 | <context context-type="linenumber">78</context> | ||
3313 | </context-group> | ||
3314 | </trans-unit> | ||
3315 | <trans-unit id="3941342949736653028" datatype="html"> | ||
3316 | <source>Video deleted.</source> | ||
3317 | <context-group purpose="location"> | ||
3318 | <context context-type="sourcefile">../app/+admin/moderation/video-block-list/video-block-list.component.ts</context> | ||
3319 | <context context-type="linenumber">86</context> | ||
3320 | </context-group> | ||
3321 | </trans-unit> | ||
3322 | <trans-unit id="6286037250766429054" datatype="html"> | ||
3323 | <source>yes</source> | ||
3324 | <context-group purpose="location"> | ||
3325 | <context context-type="sourcefile">../app/+admin/moderation/video-block-list/video-block-list.component.ts</context> | ||
3326 | <context context-type="linenumber">149</context> | ||
3327 | </context-group> | ||
3328 | </trans-unit> | ||
3329 | <trans-unit id="2420525563530770652" datatype="html"> | ||
3330 | <source>no</source> | ||
3331 | <context-group purpose="location"> | ||
3332 | <context context-type="sourcefile">../app/+admin/moderation/video-block-list/video-block-list.component.ts</context> | ||
3333 | <context context-type="linenumber">151</context> | ||
3334 | </context-group> | ||
3335 | </trans-unit> | ||
3336 | <trans-unit id="7293356040886494773" datatype="html"> | ||
3337 | <source>Do you really want to unblock this video? It will be available again in the videos list.</source> | ||
3338 | <context-group purpose="location"> | ||
3339 | <context context-type="sourcefile">../app/+admin/moderation/video-block-list/video-block-list.component.ts</context> | ||
3340 | <context context-type="linenumber">159</context> | ||
3341 | </context-group> | ||
3342 | </trans-unit> | ||
3343 | <trans-unit id="4922469417589203720" datatype="html"> | ||
3344 | <source>Video <x id="PH"/> unblocked.</source> | ||
3345 | <context-group purpose="location"> | ||
3346 | <context context-type="sourcefile">../app/+admin/moderation/video-block-list/video-block-list.component.ts</context> | ||
3347 | <context context-type="linenumber">166</context> | ||
3348 | </context-group> | ||
3349 | </trans-unit> | ||
3350 | <trans-unit id="555ae4dbd23d5056aeafc8f3f31ebbab170bb917" datatype="html"> | 3350 | <trans-unit id="555ae4dbd23d5056aeafc8f3f31ebbab170bb917" datatype="html"> |
3351 | <source>Job type</source> | 3351 | <source>Job type</source> |
3352 | <context-group purpose="location"> | 3352 | <context-group purpose="location"> |
@@ -3417,6 +3417,34 @@ | |||
3417 | <context context-type="linenumber">51</context> | 3417 | <context context-type="linenumber">51</context> |
3418 | </context-group> | 3418 | </context-group> |
3419 | </trans-unit> | 3419 | </trans-unit> |
3420 | <trans-unit id="3150704904301058778" datatype="html"> | ||
3421 | <source>The plugin index is not available. Please retry later.</source> | ||
3422 | <context-group purpose="location"> | ||
3423 | <context context-type="sourcefile">../app/+admin/plugins/plugin-search/plugin-search.component.ts</context> | ||
3424 | <context context-type="linenumber">100</context> | ||
3425 | </context-group> | ||
3426 | </trans-unit> | ||
3427 | <trans-unit id="1387301493234848481" datatype="html"> | ||
3428 | <source>Please only install plugins or themes you trust, since they can execute any code on your instance.</source> | ||
3429 | <context-group purpose="location"> | ||
3430 | <context context-type="sourcefile">../app/+admin/plugins/plugin-search/plugin-search.component.ts</context> | ||
3431 | <context context-type="linenumber">122</context> | ||
3432 | </context-group> | ||
3433 | </trans-unit> | ||
3434 | <trans-unit id="2994182849694226596" datatype="html"> | ||
3435 | <source>Install <x id="PH"/>?</source> | ||
3436 | <context-group purpose="location"> | ||
3437 | <context context-type="sourcefile">../app/+admin/plugins/plugin-search/plugin-search.component.ts</context> | ||
3438 | <context context-type="linenumber">123</context> | ||
3439 | </context-group> | ||
3440 | </trans-unit> | ||
3441 | <trans-unit id="6703720397495603345" datatype="html"> | ||
3442 | <source><x id="PH"/> installed.</source> | ||
3443 | <context-group purpose="location"> | ||
3444 | <context context-type="sourcefile">../app/+admin/plugins/plugin-search/plugin-search.component.ts</context> | ||
3445 | <context context-type="linenumber">135</context> | ||
3446 | </context-group> | ||
3447 | </trans-unit> | ||
3420 | <trans-unit id="8aa58cf00d949c509df91c621ab38131df0a7599" datatype="html"> | 3448 | <trans-unit id="8aa58cf00d949c509df91c621ab38131df0a7599" datatype="html"> |
3421 | <source>Search...</source> | 3449 | <source>Search...</source> |
3422 | <context-group purpose="location"> | 3450 | <context-group purpose="location"> |
@@ -3468,34 +3496,6 @@ | |||
3468 | <context context-type="linenumber">44</context> | 3496 | <context context-type="linenumber">44</context> |
3469 | </context-group> | 3497 | </context-group> |
3470 | </trans-unit> | 3498 | </trans-unit> |
3471 | <trans-unit id="3150704904301058778" datatype="html"> | ||
3472 | <source>The plugin index is not available. Please retry later.</source> | ||
3473 | <context-group purpose="location"> | ||
3474 | <context context-type="sourcefile">../app/+admin/plugins/plugin-search/plugin-search.component.ts</context> | ||
3475 | <context context-type="linenumber">100</context> | ||
3476 | </context-group> | ||
3477 | </trans-unit> | ||
3478 | <trans-unit id="1387301493234848481" datatype="html"> | ||
3479 | <source>Please only install plugins or themes you trust, since they can execute any code on your instance.</source> | ||
3480 | <context-group purpose="location"> | ||
3481 | <context context-type="sourcefile">../app/+admin/plugins/plugin-search/plugin-search.component.ts</context> | ||
3482 | <context context-type="linenumber">122</context> | ||
3483 | </context-group> | ||
3484 | </trans-unit> | ||
3485 | <trans-unit id="2994182849694226596" datatype="html"> | ||
3486 | <source>Install <x id="PH"/>?</source> | ||
3487 | <context-group purpose="location"> | ||
3488 | <context context-type="sourcefile">../app/+admin/plugins/plugin-search/plugin-search.component.ts</context> | ||
3489 | <context context-type="linenumber">123</context> | ||
3490 | </context-group> | ||
3491 | </trans-unit> | ||
3492 | <trans-unit id="6703720397495603345" datatype="html"> | ||
3493 | <source><x id="PH"/> installed.</source> | ||
3494 | <context-group purpose="location"> | ||
3495 | <context context-type="sourcefile">../app/+admin/plugins/plugin-search/plugin-search.component.ts</context> | ||
3496 | <context context-type="linenumber">135</context> | ||
3497 | </context-group> | ||
3498 | </trans-unit> | ||
3499 | <trans-unit id="b1ff109b26ae8f08650415454b9098c43eba2e2c" datatype="html"> | 3499 | <trans-unit id="b1ff109b26ae8f08650415454b9098c43eba2e2c" datatype="html"> |
3500 | <source>Muted accounts</source> | 3500 | <source>Muted accounts</source> |
3501 | <context-group purpose="location"> | 3501 | <context-group purpose="location"> |
@@ -3552,6 +3552,13 @@ | |||
3552 | <context context-type="linenumber">46</context> | 3552 | <context context-type="linenumber">46</context> |
3553 | </context-group> | 3553 | </context-group> |
3554 | </trans-unit> | 3554 | </trans-unit> |
3555 | <trans-unit id="5210096066382592800" datatype="html"> | ||
3556 | <source>Video to import updated.</source> | ||
3557 | <context-group purpose="location"> | ||
3558 | <context context-type="sourcefile">../app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts</context> | ||
3559 | <context context-type="linenumber">128</context> | ||
3560 | </context-group> | ||
3561 | </trans-unit> | ||
3555 | <trans-unit id="047f50bc5b5d17b5bec0196355953e1a5c590ddb" datatype="html"> | 3562 | <trans-unit id="047f50bc5b5d17b5bec0196355953e1a5c590ddb" datatype="html"> |
3556 | <source>Update</source> | 3563 | <source>Update</source> |
3557 | <context-group purpose="location"> | 3564 | <context-group purpose="location"> |
@@ -3623,63 +3630,6 @@ | |||
3623 | <context context-type="linenumber">53,54</context> | 3630 | <context context-type="linenumber">53,54</context> |
3624 | </context-group> | 3631 | </context-group> |
3625 | </trans-unit> | 3632 | </trans-unit> |
3626 | <trans-unit id="5210096066382592800" datatype="html"> | ||
3627 | <source>Video to import updated.</source> | ||
3628 | <context-group purpose="location"> | ||
3629 | <context context-type="sourcefile">../app/+videos/+video-edit/video-add-components/video-import-torrent.component.ts</context> | ||
3630 | <context context-type="linenumber">128</context> | ||
3631 | </context-group> | ||
3632 | </trans-unit> | ||
3633 | <trans-unit id="223aae0477f79f0bc4436c1c57619415f04cbbb3" datatype="html"> | ||
3634 | <source>Publish</source> | ||
3635 | <context-group purpose="location"> | ||
3636 | <context context-type="sourcefile">../app/+videos/+video-edit/video-add-components/video-upload.component.html</context> | ||
3637 | <context context-type="linenumber">78</context> | ||
3638 | </context-group> | ||
3639 | </trans-unit> | ||
3640 | <trans-unit id="21add64f0f3ebbedf1150ca822c6e149494ab7a9" datatype="html"> | ||
3641 | <source>Select the file to upload</source> | ||
3642 | <context-group purpose="location"> | ||
3643 | <context context-type="sourcefile">../app/+videos/+video-edit/video-add-components/video-upload.component.html</context> | ||
3644 | <context context-type="linenumber">6</context> | ||
3645 | </context-group> | ||
3646 | </trans-unit> | ||
3647 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> | ||
3648 | <source>Video background image</source> | ||
3649 | <context-group purpose="location"> | ||
3650 | <context context-type="sourcefile">../app/+videos/+video-edit/video-add-components/video-upload.component.html</context> | ||
3651 | <context context-type="linenumber">26</context> | ||
3652 | </context-group> | ||
3653 | </trans-unit> | ||
3654 | <trans-unit id="1860b3f71e0b82e9c10e1eaf0ff073216ed896cc" datatype="html"> | ||
3655 | <source> Image that will be merged with your audio file. <x id="LINE_BREAK"/> The chosen image will be definitive and cannot be modified. </source> | ||
3656 | <context-group purpose="location"> | ||
3657 | <context context-type="sourcefile">../app/+videos/+video-edit/video-add-components/video-upload.component.html</context> | ||
3658 | <context context-type="linenumber">29,32</context> | ||
3659 | </context-group> | ||
3660 | </trans-unit> | ||
3661 | <trans-unit id="dfd046dad933ba0a50926b9ab3c1b579c802312e" datatype="html"> | ||
3662 | <source>Processing…</source> | ||
3663 | <context-group purpose="location"> | ||
3664 | <context context-type="sourcefile">../app/+videos/+video-edit/video-add-components/video-upload.component.html</context> | ||
3665 | <context context-type="linenumber">50</context> | ||
3666 | </context-group> | ||
3667 | </trans-unit> | ||
3668 | <trans-unit id="6357683911e256c566259880de43ea9403de00d3" datatype="html"> | ||
3669 | <source> Congratulations! Your video is now available in your private library. | ||
3670 | </source> | ||
3671 | <context-group purpose="location"> | ||
3672 | <context context-type="sourcefile">../app/+videos/+video-edit/video-add-components/video-upload.component.html</context> | ||
3673 | <context context-type="linenumber">63,64</context> | ||
3674 | </context-group> | ||
3675 | </trans-unit> | ||
3676 | <trans-unit id="f7ac2376749c7985f94f0fc89ba75ea624de1215" datatype="html"> | ||
3677 | <source>Publish will be available when upload is finished</source> | ||
3678 | <context-group purpose="location"> | ||
3679 | <context context-type="sourcefile">../app/+videos/+video-edit/video-add-components/video-upload.component.html</context> | ||
3680 | <context context-type="linenumber">76</context> | ||
3681 | </context-group> | ||
3682 | </trans-unit> | ||
3683 | <trans-unit id="3284171506518522275" datatype="html"> | 3633 | <trans-unit id="3284171506518522275" datatype="html"> |
3684 | <source>Your video was uploaded to your account and is private.</source> | 3634 | <source>Your video was uploaded to your account and is private.</source> |
3685 | <context-group purpose="location"> | 3635 | <context-group purpose="location"> |
@@ -3745,6 +3695,56 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</source> | |||
3745 | <context context-type="linenumber">285,286</context> | 3695 | <context context-type="linenumber">285,286</context> |
3746 | </context-group> | 3696 | </context-group> |
3747 | </trans-unit> | 3697 | </trans-unit> |
3698 | <trans-unit id="223aae0477f79f0bc4436c1c57619415f04cbbb3" datatype="html"> | ||
3699 | <source>Publish</source> | ||
3700 | <context-group purpose="location"> | ||
3701 | <context context-type="sourcefile">../app/+videos/+video-edit/video-add-components/video-upload.component.html</context> | ||
3702 | <context context-type="linenumber">78</context> | ||
3703 | </context-group> | ||
3704 | </trans-unit> | ||
3705 | <trans-unit id="21add64f0f3ebbedf1150ca822c6e149494ab7a9" datatype="html"> | ||
3706 | <source>Select the file to upload</source> | ||
3707 | <context-group purpose="location"> | ||
3708 | <context context-type="sourcefile">../app/+videos/+video-edit/video-add-components/video-upload.component.html</context> | ||
3709 | <context context-type="linenumber">6</context> | ||
3710 | </context-group> | ||
3711 | </trans-unit> | ||
3712 | <trans-unit id="5d6a58637313a6b2375e3af59534f788c8f8657d" datatype="html"> | ||
3713 | <source>Video background image</source> | ||
3714 | <context-group purpose="location"> | ||
3715 | <context context-type="sourcefile">../app/+videos/+video-edit/video-add-components/video-upload.component.html</context> | ||
3716 | <context context-type="linenumber">26</context> | ||
3717 | </context-group> | ||
3718 | </trans-unit> | ||
3719 | <trans-unit id="1860b3f71e0b82e9c10e1eaf0ff073216ed896cc" datatype="html"> | ||
3720 | <source> Image that will be merged with your audio file. <x id="LINE_BREAK"/> The chosen image will be definitive and cannot be modified. </source> | ||
3721 | <context-group purpose="location"> | ||
3722 | <context context-type="sourcefile">../app/+videos/+video-edit/video-add-components/video-upload.component.html</context> | ||
3723 | <context context-type="linenumber">29,32</context> | ||
3724 | </context-group> | ||
3725 | </trans-unit> | ||
3726 | <trans-unit id="dfd046dad933ba0a50926b9ab3c1b579c802312e" datatype="html"> | ||
3727 | <source>Processing…</source> | ||
3728 | <context-group purpose="location"> | ||
3729 | <context context-type="sourcefile">../app/+videos/+video-edit/video-add-components/video-upload.component.html</context> | ||
3730 | <context context-type="linenumber">50</context> | ||
3731 | </context-group> | ||
3732 | </trans-unit> | ||
3733 | <trans-unit id="6357683911e256c566259880de43ea9403de00d3" datatype="html"> | ||
3734 | <source> Congratulations! Your video is now available in your private library. | ||
3735 | </source> | ||
3736 | <context-group purpose="location"> | ||
3737 | <context context-type="sourcefile">../app/+videos/+video-edit/video-add-components/video-upload.component.html</context> | ||
3738 | <context context-type="linenumber">63,64</context> | ||
3739 | </context-group> | ||
3740 | </trans-unit> | ||
3741 | <trans-unit id="f7ac2376749c7985f94f0fc89ba75ea624de1215" datatype="html"> | ||
3742 | <source>Publish will be available when upload is finished</source> | ||
3743 | <context-group purpose="location"> | ||
3744 | <context context-type="sourcefile">../app/+videos/+video-edit/video-add-components/video-upload.component.html</context> | ||
3745 | <context context-type="linenumber">76</context> | ||
3746 | </context-group> | ||
3747 | </trans-unit> | ||
3748 | <trans-unit id="801b98c6f02fe3b32f6afa3ee854c99ed83474e6" datatype="html"> | 3748 | <trans-unit id="801b98c6f02fe3b32f6afa3ee854c99ed83474e6" datatype="html"> |
3749 | <source>URL</source> | 3749 | <source>URL</source> |
3750 | <context-group purpose="location"> | 3750 | <context-group purpose="location"> |
@@ -3837,6 +3837,20 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</source> | |||
3837 | <context context-type="linenumber">116</context> | 3837 | <context context-type="linenumber">116</context> |
3838 | </context-group> | 3838 | </context-group> |
3839 | </trans-unit> | 3839 | </trans-unit> |
3840 | <trans-unit id="2662644497259948010" datatype="html"> | ||
3841 | <source>Comment</source> | ||
3842 | <context-group purpose="location"> | ||
3843 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
3844 | <context context-type="linenumber">58</context> | ||
3845 | </context-group> | ||
3846 | </trans-unit> | ||
3847 | <trans-unit id="4502286564339177240" datatype="html"> | ||
3848 | <source>Reply</source> | ||
3849 | <context-group purpose="location"> | ||
3850 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
3851 | <context context-type="linenumber">60</context> | ||
3852 | </context-group> | ||
3853 | </trans-unit> | ||
3840 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e" datatype="html"> | 3854 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e" datatype="html"> |
3841 | <source>Add comment...</source> | 3855 | <source>Add comment...</source> |
3842 | <context-group purpose="location"> | 3856 | <context-group purpose="location"> |
@@ -3963,20 +3977,6 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</source> | |||
3963 | <context context-type="linenumber">84</context> | 3977 | <context context-type="linenumber">84</context> |
3964 | </context-group> | 3978 | </context-group> |
3965 | </trans-unit> | 3979 | </trans-unit> |
3966 | <trans-unit id="2662644497259948010" datatype="html"> | ||
3967 | <source>Comment</source> | ||
3968 | <context-group purpose="location"> | ||
3969 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
3970 | <context context-type="linenumber">58</context> | ||
3971 | </context-group> | ||
3972 | </trans-unit> | ||
3973 | <trans-unit id="4502286564339177240" datatype="html"> | ||
3974 | <source>Reply</source> | ||
3975 | <context-group purpose="location"> | ||
3976 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
3977 | <context context-type="linenumber">60</context> | ||
3978 | </context-group> | ||
3979 | </trans-unit> | ||
3980 | <trans-unit id="4267638333776227701" datatype="html"> | 3980 | <trans-unit id="4267638333776227701" datatype="html"> |
3981 | <source>Comment is required.</source> | 3981 | <source>Comment is required.</source> |
3982 | <context-group purpose="location"> | 3982 | <context-group purpose="location"> |
@@ -4012,6 +4012,13 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</source> | |||
4012 | <context context-type="linenumber">11</context> | 4012 | <context context-type="linenumber">11</context> |
4013 | </context-group> | 4013 | </context-group> |
4014 | </trans-unit> | 4014 | </trans-unit> |
4015 | <trans-unit id="1729036051846673606" datatype="html"> | ||
4016 | <source>When active, the next video is automatically played after the current one.</source> | ||
4017 | <context-group purpose="location"> | ||
4018 | <context context-type="sourcefile">../app/+videos/+video-watch/recommendations/recommended-videos.component.ts</context> | ||
4019 | <context context-type="linenumber">59</context> | ||
4020 | </context-group> | ||
4021 | </trans-unit> | ||
4015 | <trans-unit id="7ce8b0d7cc34d4c1ef4a21e990b0a001337bedd1" datatype="html"> | 4022 | <trans-unit id="7ce8b0d7cc34d4c1ef4a21e990b0a001337bedd1" datatype="html"> |
4016 | <source> Other videos </source> | 4023 | <source> Other videos </source> |
4017 | <context-group purpose="location"> | 4024 | <context-group purpose="location"> |
@@ -4026,11 +4033,25 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</source> | |||
4026 | <context context-type="linenumber">10</context> | 4033 | <context context-type="linenumber">10</context> |
4027 | </context-group> | 4034 | </context-group> |
4028 | </trans-unit> | 4035 | </trans-unit> |
4029 | <trans-unit id="1729036051846673606" datatype="html"> | 4036 | <trans-unit id="7008439939460403347" datatype="html"> |
4030 | <source>When active, the next video is automatically played after the current one.</source> | 4037 | <source>Report</source> |
4031 | <context-group purpose="location"> | 4038 | <context-group purpose="location"> |
4032 | <context context-type="sourcefile">../app/+videos/+video-watch/recommendations/recommended-videos.component.ts</context> | 4039 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> |
4033 | <context context-type="linenumber">59</context> | 4040 | <context context-type="linenumber">171</context> |
4041 | </context-group> | ||
4042 | </trans-unit> | ||
4043 | <trans-unit id="4814285799071780083" datatype="html"> | ||
4044 | <source>Remove</source> | ||
4045 | <context-group purpose="location"> | ||
4046 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> | ||
4047 | <context context-type="linenumber">179</context> | ||
4048 | </context-group> | ||
4049 | </trans-unit> | ||
4050 | <trans-unit id="6871668720687277843" datatype="html"> | ||
4051 | <source>Remove & re-draft</source> | ||
4052 | <context-group purpose="location"> | ||
4053 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> | ||
4054 | <context context-type="linenumber">187</context> | ||
4034 | </context-group> | 4055 | </context-group> |
4035 | </trans-unit> | 4056 | </trans-unit> |
4036 | <trans-unit id="24813b8a3e45f0b57136c18d003027262cfe2d1f" datatype="html"> | 4057 | <trans-unit id="24813b8a3e45f0b57136c18d003027262cfe2d1f" datatype="html"> |
@@ -4068,25 +4089,172 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</source> | |||
4068 | <context context-type="linenumber">61</context> | 4089 | <context context-type="linenumber">61</context> |
4069 | </context-group> | 4090 | </context-group> |
4070 | </trans-unit> | 4091 | </trans-unit> |
4071 | <trans-unit id="7008439939460403347" datatype="html"> | 4092 | <trans-unit id="677619204556459328" datatype="html"> |
4072 | <source>Report</source> | 4093 | <source>Like this video</source> |
4073 | <context-group purpose="location"> | 4094 | <context-group purpose="location"> |
4074 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> | 4095 | <context context-type="sourcefile">../app/+videos/+video-watch/video-watch.component.ts</context> |
4075 | <context context-type="linenumber">171</context> | 4096 | <context context-type="linenumber">105</context> |
4076 | </context-group> | 4097 | </context-group> |
4077 | </trans-unit> | 4098 | </trans-unit> |
4078 | <trans-unit id="4814285799071780083" datatype="html"> | 4099 | <trans-unit id="1979134407801821102" datatype="html"> |
4079 | <source>Remove</source> | 4100 | <source>Dislike this video</source> |
4080 | <context-group purpose="location"> | 4101 | <context-group purpose="location"> |
4081 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> | 4102 | <context context-type="sourcefile">../app/+videos/+video-watch/video-watch.component.ts</context> |
4082 | <context context-type="linenumber">179</context> | 4103 | <context context-type="linenumber">106</context> |
4083 | </context-group> | 4104 | </context-group> |
4084 | </trans-unit> | 4105 | </trans-unit> |
4085 | <trans-unit id="6871668720687277843" datatype="html"> | 4106 | <trans-unit id="4001371302469308813" datatype="html"> |
4086 | <source>Remove & re-draft</source> | 4107 | <source>Support options for this video</source> |
4087 | <context-group purpose="location"> | 4108 | <context-group purpose="location"> |
4088 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> | 4109 | <context context-type="sourcefile">../app/+videos/+video-watch/video-watch.component.ts</context> |
4089 | <context context-type="linenumber">187</context> | 4110 | <context context-type="linenumber">107</context> |
4111 | </context-group> | ||
4112 | </trans-unit> | ||
4113 | <trans-unit id="1950057220179636309" datatype="html"> | ||
4114 | <source>Save to playlist</source> | ||
4115 | <context-group purpose="location"> | ||
4116 | <context context-type="sourcefile">../app/+videos/+video-watch/video-watch.component.ts</context> | ||
4117 | <context context-type="linenumber">108</context> | ||
4118 | </context-group> | ||
4119 | </trans-unit> | ||
4120 | <trans-unit id="7669913834211153805" datatype="html"> | ||
4121 | <source>You need to be connected to rate this content.</source> | ||
4122 | <context-group purpose="location"> | ||
4123 | <context context-type="sourcefile">../app/+videos/+video-watch/video-watch.component.ts</context> | ||
4124 | <context context-type="linenumber">190</context> | ||
4125 | </context-group> | ||
4126 | </trans-unit> | ||
4127 | <trans-unit id="8858527736400081688" datatype="html"> | ||
4128 | <source>This video contains mature or explicit content. Are you sure you want to watch it?</source> | ||
4129 | <context-group purpose="location"> | ||
4130 | <context context-type="sourcefile">../app/+videos/+video-watch/video-watch.component.ts</context> | ||
4131 | <context context-type="linenumber">467</context> | ||
4132 | </context-group> | ||
4133 | </trans-unit> | ||
4134 | <trans-unit id="3937119019020041049" datatype="html"> | ||
4135 | <source>Mature or explicit content</source> | ||
4136 | <context-group purpose="location"> | ||
4137 | <context context-type="sourcefile">../app/+videos/+video-watch/video-watch.component.ts</context> | ||
4138 | <context context-type="linenumber">468</context> | ||
4139 | </context-group> | ||
4140 | </trans-unit> | ||
4141 | <trans-unit id="1755474755114288376" datatype="html"> | ||
4142 | <source>Up Next</source> | ||
4143 | <context-group purpose="location"> | ||
4144 | <context context-type="sourcefile">../app/+videos/+video-watch/video-watch.component.ts</context> | ||
4145 | <context context-type="linenumber">517</context> | ||
4146 | </context-group> | ||
4147 | </trans-unit> | ||
4148 | <trans-unit id="2159130950882492111" datatype="html"> | ||
4149 | <source>Cancel</source> | ||
4150 | <context-group purpose="location"> | ||
4151 | <context context-type="sourcefile">../app/+videos/+video-watch/video-watch.component.ts</context> | ||
4152 | <context context-type="linenumber">518</context> | ||
4153 | </context-group> | ||
4154 | </trans-unit> | ||
4155 | <trans-unit id="3354816756665089864" datatype="html"> | ||
4156 | <source>Autoplay is suspended</source> | ||
4157 | <context-group purpose="location"> | ||
4158 | <context context-type="sourcefile">../app/+videos/+video-watch/video-watch.component.ts</context> | ||
4159 | <context context-type="linenumber">519</context> | ||
4160 | </context-group> | ||
4161 | </trans-unit> | ||
4162 | <trans-unit id="7895294730547405228" datatype="html"> | ||
4163 | <source>Enter/exit fullscreen (requires player focus)</source> | ||
4164 | <context-group purpose="location"> | ||
4165 | <context context-type="sourcefile">../app/+videos/+video-watch/video-watch.component.ts</context> | ||
4166 | <context context-type="linenumber">781</context> | ||
4167 | </context-group> | ||
4168 | </trans-unit> | ||
4169 | <trans-unit id="7618388257165864759" datatype="html"> | ||
4170 | <source>Play/Pause the video (requires player focus)</source> | ||
4171 | <context-group purpose="location"> | ||
4172 | <context context-type="sourcefile">../app/+videos/+video-watch/video-watch.component.ts</context> | ||
4173 | <context context-type="linenumber">782</context> | ||
4174 | </context-group> | ||
4175 | </trans-unit> | ||
4176 | <trans-unit id="7761890399634216630" datatype="html"> | ||
4177 | <source>Mute/unmute the video (requires player focus)</source> | ||
4178 | <context-group purpose="location"> | ||
4179 | <context context-type="sourcefile">../app/+videos/+video-watch/video-watch.component.ts</context> | ||
4180 | <context context-type="linenumber">783</context> | ||
4181 | </context-group> | ||
4182 | </trans-unit> | ||
4183 | <trans-unit id="5996585232248234904" datatype="html"> | ||
4184 | <source>Skip to a percentage of the video: 0 is 0% and 9 is 90% (requires player focus)</source> | ||
4185 | <context-group purpose="location"> | ||
4186 | <context context-type="sourcefile">../app/+videos/+video-watch/video-watch.component.ts</context> | ||
4187 | <context context-type="linenumber">785</context> | ||
4188 | </context-group> | ||
4189 | </trans-unit> | ||
4190 | <trans-unit id="3748765405903319998" datatype="html"> | ||
4191 | <source>Increase the volume (requires player focus)</source> | ||
4192 | <context-group purpose="location"> | ||
4193 | <context context-type="sourcefile">../app/+videos/+video-watch/video-watch.component.ts</context> | ||
4194 | <context context-type="linenumber">787</context> | ||
4195 | </context-group> | ||
4196 | </trans-unit> | ||
4197 | <trans-unit id="5810704036407159982" datatype="html"> | ||
4198 | <source>Decrease the volume (requires player focus)</source> | ||
4199 | <context-group purpose="location"> | ||
4200 | <context context-type="sourcefile">../app/+videos/+video-watch/video-watch.component.ts</context> | ||
4201 | <context context-type="linenumber">788</context> | ||
4202 | </context-group> | ||
4203 | </trans-unit> | ||
4204 | <trans-unit id="2622048822548065691" datatype="html"> | ||
4205 | <source>Seek the video forward (requires player focus)</source> | ||
4206 | <context-group purpose="location"> | ||
4207 | <context context-type="sourcefile">../app/+videos/+video-watch/video-watch.component.ts</context> | ||
4208 | <context context-type="linenumber">790</context> | ||
4209 | </context-group> | ||
4210 | </trans-unit> | ||
4211 | <trans-unit id="6540078205109221153" datatype="html"> | ||
4212 | <source>Seek the video backward (requires player focus)</source> | ||
4213 | <context-group purpose="location"> | ||
4214 | <context context-type="sourcefile">../app/+videos/+video-watch/video-watch.component.ts</context> | ||
4215 | <context context-type="linenumber">791</context> | ||
4216 | </context-group> | ||
4217 | </trans-unit> | ||
4218 | <trans-unit id="1956491957766210808" datatype="html"> | ||
4219 | <source>Increase playback rate (requires player focus)</source> | ||
4220 | <context-group purpose="location"> | ||
4221 | <context context-type="sourcefile">../app/+videos/+video-watch/video-watch.component.ts</context> | ||
4222 | <context context-type="linenumber">793</context> | ||
4223 | </context-group> | ||
4224 | </trans-unit> | ||
4225 | <trans-unit id="5495529997674803186" datatype="html"> | ||
4226 | <source>Decrease playback rate (requires player focus)</source> | ||
4227 | <context-group purpose="location"> | ||
4228 | <context context-type="sourcefile">../app/+videos/+video-watch/video-watch.component.ts</context> | ||
4229 | <context context-type="linenumber">794</context> | ||
4230 | </context-group> | ||
4231 | </trans-unit> | ||
4232 | <trans-unit id="3178343147230721210" datatype="html"> | ||
4233 | <source>Navigate in the video frame by frame (requires player focus)</source> | ||
4234 | <context-group purpose="location"> | ||
4235 | <context context-type="sourcefile">../app/+videos/+video-watch/video-watch.component.ts</context> | ||
4236 | <context context-type="linenumber">796</context> | ||
4237 | </context-group> | ||
4238 | </trans-unit> | ||
4239 | <trans-unit id="8025996572234182184" datatype="html"> | ||
4240 | <source>Like the video</source> | ||
4241 | <context-group purpose="location"> | ||
4242 | <context context-type="sourcefile">../app/+videos/+video-watch/video-watch.component.ts</context> | ||
4243 | <context context-type="linenumber">804</context> | ||
4244 | </context-group> | ||
4245 | </trans-unit> | ||
4246 | <trans-unit id="7692127636377222448" datatype="html"> | ||
4247 | <source>Dislike the video</source> | ||
4248 | <context-group purpose="location"> | ||
4249 | <context context-type="sourcefile">../app/+videos/+video-watch/video-watch.component.ts</context> | ||
4250 | <context context-type="linenumber">809</context> | ||
4251 | </context-group> | ||
4252 | </trans-unit> | ||
4253 | <trans-unit id="1783173774503340906" datatype="html"> | ||
4254 | <source>Subscribe to the account</source> | ||
4255 | <context-group purpose="location"> | ||
4256 | <context context-type="sourcefile">../app/+videos/+video-watch/video-watch.component.ts</context> | ||
4257 | <context context-type="linenumber">814</context> | ||
4090 | </context-group> | 4258 | </context-group> |
4091 | </trans-unit> | 4259 | </trans-unit> |
4092 | <trans-unit id="38e66e2d779d6d819cd7703ab73ab1bab75f8614" datatype="html"> | 4260 | <trans-unit id="38e66e2d779d6d819cd7703ab73ab1bab75f8614" datatype="html"> |
@@ -4278,172 +4446,32 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</source> | |||
4278 | <context context-type="linenumber">293</context> | 4446 | <context context-type="linenumber">293</context> |
4279 | </context-group> | 4447 | </context-group> |
4280 | </trans-unit> | 4448 | </trans-unit> |
4281 | <trans-unit id="677619204556459328" datatype="html"> | 4449 | <trans-unit id="6775540171466219199" datatype="html"> |
4282 | <source>Like this video</source> | 4450 | <source>Stop autoplaying next video</source> |
4283 | <context-group purpose="location"> | ||
4284 | <context context-type="sourcefile">../app/+videos/+video-watch/video-watch.component.ts</context> | ||
4285 | <context context-type="linenumber">105</context> | ||
4286 | </context-group> | ||
4287 | </trans-unit> | ||
4288 | <trans-unit id="1979134407801821102" datatype="html"> | ||
4289 | <source>Dislike this video</source> | ||
4290 | <context-group purpose="location"> | ||
4291 | <context context-type="sourcefile">../app/+videos/+video-watch/video-watch.component.ts</context> | ||
4292 | <context context-type="linenumber">106</context> | ||
4293 | </context-group> | ||
4294 | </trans-unit> | ||
4295 | <trans-unit id="4001371302469308813" datatype="html"> | ||
4296 | <source>Support options for this video</source> | ||
4297 | <context-group purpose="location"> | ||
4298 | <context context-type="sourcefile">../app/+videos/+video-watch/video-watch.component.ts</context> | ||
4299 | <context context-type="linenumber">107</context> | ||
4300 | </context-group> | ||
4301 | </trans-unit> | ||
4302 | <trans-unit id="1950057220179636309" datatype="html"> | ||
4303 | <source>Save to playlist</source> | ||
4304 | <context-group purpose="location"> | ||
4305 | <context context-type="sourcefile">../app/+videos/+video-watch/video-watch.component.ts</context> | ||
4306 | <context context-type="linenumber">108</context> | ||
4307 | </context-group> | ||
4308 | </trans-unit> | ||
4309 | <trans-unit id="7669913834211153805" datatype="html"> | ||
4310 | <source>You need to be connected to rate this content.</source> | ||
4311 | <context-group purpose="location"> | ||
4312 | <context context-type="sourcefile">../app/+videos/+video-watch/video-watch.component.ts</context> | ||
4313 | <context context-type="linenumber">190</context> | ||
4314 | </context-group> | ||
4315 | </trans-unit> | ||
4316 | <trans-unit id="8858527736400081688" datatype="html"> | ||
4317 | <source>This video contains mature or explicit content. Are you sure you want to watch it?</source> | ||
4318 | <context-group purpose="location"> | ||
4319 | <context context-type="sourcefile">../app/+videos/+video-watch/video-watch.component.ts</context> | ||
4320 | <context context-type="linenumber">467</context> | ||
4321 | </context-group> | ||
4322 | </trans-unit> | ||
4323 | <trans-unit id="3937119019020041049" datatype="html"> | ||
4324 | <source>Mature or explicit content</source> | ||
4325 | <context-group purpose="location"> | ||
4326 | <context context-type="sourcefile">../app/+videos/+video-watch/video-watch.component.ts</context> | ||
4327 | <context context-type="linenumber">468</context> | ||
4328 | </context-group> | ||
4329 | </trans-unit> | ||
4330 | <trans-unit id="1755474755114288376" datatype="html"> | ||
4331 | <source>Up Next</source> | ||
4332 | <context-group purpose="location"> | ||
4333 | <context context-type="sourcefile">../app/+videos/+video-watch/video-watch.component.ts</context> | ||
4334 | <context context-type="linenumber">517</context> | ||
4335 | </context-group> | ||
4336 | </trans-unit> | ||
4337 | <trans-unit id="2159130950882492111" datatype="html"> | ||
4338 | <source>Cancel</source> | ||
4339 | <context-group purpose="location"> | ||
4340 | <context context-type="sourcefile">../app/+videos/+video-watch/video-watch.component.ts</context> | ||
4341 | <context context-type="linenumber">518</context> | ||
4342 | </context-group> | ||
4343 | </trans-unit> | ||
4344 | <trans-unit id="3354816756665089864" datatype="html"> | ||
4345 | <source>Autoplay is suspended</source> | ||
4346 | <context-group purpose="location"> | ||
4347 | <context context-type="sourcefile">../app/+videos/+video-watch/video-watch.component.ts</context> | ||
4348 | <context context-type="linenumber">519</context> | ||
4349 | </context-group> | ||
4350 | </trans-unit> | ||
4351 | <trans-unit id="7895294730547405228" datatype="html"> | ||
4352 | <source>Enter/exit fullscreen (requires player focus)</source> | ||
4353 | <context-group purpose="location"> | ||
4354 | <context context-type="sourcefile">../app/+videos/+video-watch/video-watch.component.ts</context> | ||
4355 | <context context-type="linenumber">781</context> | ||
4356 | </context-group> | ||
4357 | </trans-unit> | ||
4358 | <trans-unit id="7618388257165864759" datatype="html"> | ||
4359 | <source>Play/Pause the video (requires player focus)</source> | ||
4360 | <context-group purpose="location"> | ||
4361 | <context context-type="sourcefile">../app/+videos/+video-watch/video-watch.component.ts</context> | ||
4362 | <context context-type="linenumber">782</context> | ||
4363 | </context-group> | ||
4364 | </trans-unit> | ||
4365 | <trans-unit id="7761890399634216630" datatype="html"> | ||
4366 | <source>Mute/unmute the video (requires player focus)</source> | ||
4367 | <context-group purpose="location"> | ||
4368 | <context context-type="sourcefile">../app/+videos/+video-watch/video-watch.component.ts</context> | ||
4369 | <context context-type="linenumber">783</context> | ||
4370 | </context-group> | ||
4371 | </trans-unit> | ||
4372 | <trans-unit id="5996585232248234904" datatype="html"> | ||
4373 | <source>Skip to a percentage of the video: 0 is 0% and 9 is 90% (requires player focus)</source> | ||
4374 | <context-group purpose="location"> | ||
4375 | <context context-type="sourcefile">../app/+videos/+video-watch/video-watch.component.ts</context> | ||
4376 | <context context-type="linenumber">785</context> | ||
4377 | </context-group> | ||
4378 | </trans-unit> | ||
4379 | <trans-unit id="3748765405903319998" datatype="html"> | ||
4380 | <source>Increase the volume (requires player focus)</source> | ||
4381 | <context-group purpose="location"> | ||
4382 | <context context-type="sourcefile">../app/+videos/+video-watch/video-watch.component.ts</context> | ||
4383 | <context context-type="linenumber">787</context> | ||
4384 | </context-group> | ||
4385 | </trans-unit> | ||
4386 | <trans-unit id="5810704036407159982" datatype="html"> | ||
4387 | <source>Decrease the volume (requires player focus)</source> | ||
4388 | <context-group purpose="location"> | ||
4389 | <context context-type="sourcefile">../app/+videos/+video-watch/video-watch.component.ts</context> | ||
4390 | <context context-type="linenumber">788</context> | ||
4391 | </context-group> | ||
4392 | </trans-unit> | ||
4393 | <trans-unit id="2622048822548065691" datatype="html"> | ||
4394 | <source>Seek the video forward (requires player focus)</source> | ||
4395 | <context-group purpose="location"> | ||
4396 | <context context-type="sourcefile">../app/+videos/+video-watch/video-watch.component.ts</context> | ||
4397 | <context context-type="linenumber">790</context> | ||
4398 | </context-group> | ||
4399 | </trans-unit> | ||
4400 | <trans-unit id="6540078205109221153" datatype="html"> | ||
4401 | <source>Seek the video backward (requires player focus)</source> | ||
4402 | <context-group purpose="location"> | ||
4403 | <context context-type="sourcefile">../app/+videos/+video-watch/video-watch.component.ts</context> | ||
4404 | <context context-type="linenumber">791</context> | ||
4405 | </context-group> | ||
4406 | </trans-unit> | ||
4407 | <trans-unit id="1956491957766210808" datatype="html"> | ||
4408 | <source>Increase playback rate (requires player focus)</source> | ||
4409 | <context-group purpose="location"> | ||
4410 | <context context-type="sourcefile">../app/+videos/+video-watch/video-watch.component.ts</context> | ||
4411 | <context context-type="linenumber">793</context> | ||
4412 | </context-group> | ||
4413 | </trans-unit> | ||
4414 | <trans-unit id="5495529997674803186" datatype="html"> | ||
4415 | <source>Decrease playback rate (requires player focus)</source> | ||
4416 | <context-group purpose="location"> | ||
4417 | <context context-type="sourcefile">../app/+videos/+video-watch/video-watch.component.ts</context> | ||
4418 | <context context-type="linenumber">794</context> | ||
4419 | </context-group> | ||
4420 | </trans-unit> | ||
4421 | <trans-unit id="3178343147230721210" datatype="html"> | ||
4422 | <source>Navigate in the video frame by frame (requires player focus)</source> | ||
4423 | <context-group purpose="location"> | 4451 | <context-group purpose="location"> |
4424 | <context context-type="sourcefile">../app/+videos/+video-watch/video-watch.component.ts</context> | 4452 | <context context-type="sourcefile">../app/+videos/+video-watch/video-watch-playlist.component.ts</context> |
4425 | <context context-type="linenumber">796</context> | 4453 | <context context-type="linenumber">203</context> |
4426 | </context-group> | 4454 | </context-group> |
4427 | </trans-unit> | 4455 | </trans-unit> |
4428 | <trans-unit id="8025996572234182184" datatype="html"> | 4456 | <trans-unit id="5149234672404299151" datatype="html"> |
4429 | <source>Like the video</source> | 4457 | <source>Autoplay next video</source> |
4430 | <context-group purpose="location"> | 4458 | <context-group purpose="location"> |
4431 | <context context-type="sourcefile">../app/+videos/+video-watch/video-watch.component.ts</context> | 4459 | <context context-type="sourcefile">../app/+videos/+video-watch/video-watch-playlist.component.ts</context> |
4432 | <context context-type="linenumber">804</context> | 4460 | <context context-type="linenumber">204</context> |
4433 | </context-group> | 4461 | </context-group> |
4434 | </trans-unit> | 4462 | </trans-unit> |
4435 | <trans-unit id="7692127636377222448" datatype="html"> | 4463 | <trans-unit id="5870421136141540382" datatype="html"> |
4436 | <source>Dislike the video</source> | 4464 | <source>Stop looping playlist videos</source> |
4437 | <context-group purpose="location"> | 4465 | <context-group purpose="location"> |
4438 | <context context-type="sourcefile">../app/+videos/+video-watch/video-watch.component.ts</context> | 4466 | <context context-type="sourcefile">../app/+videos/+video-watch/video-watch-playlist.component.ts</context> |
4439 | <context context-type="linenumber">809</context> | 4467 | <context context-type="linenumber">209</context> |
4440 | </context-group> | 4468 | </context-group> |
4441 | </trans-unit> | 4469 | </trans-unit> |
4442 | <trans-unit id="1783173774503340906" datatype="html"> | 4470 | <trans-unit id="1599585307037758139" datatype="html"> |
4443 | <source>Subscribe to the account</source> | 4471 | <source>Loop playlist videos</source> |
4444 | <context-group purpose="location"> | 4472 | <context-group purpose="location"> |
4445 | <context context-type="sourcefile">../app/+videos/+video-watch/video-watch.component.ts</context> | 4473 | <context context-type="sourcefile">../app/+videos/+video-watch/video-watch-playlist.component.ts</context> |
4446 | <context context-type="linenumber">814</context> | 4474 | <context context-type="linenumber">210</context> |
4447 | </context-group> | 4475 | </context-group> |
4448 | </trans-unit> | 4476 | </trans-unit> |
4449 | <trans-unit id="4b3963c6d0863118fe9e9e33447d12be3c2db081" datatype="html"> | 4477 | <trans-unit id="4b3963c6d0863118fe9e9e33447d12be3c2db081" datatype="html"> |
@@ -4467,32 +4495,39 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</source> | |||
4467 | <context context-type="linenumber">11</context> | 4495 | <context context-type="linenumber">11</context> |
4468 | </context-group> | 4496 | </context-group> |
4469 | </trans-unit> | 4497 | </trans-unit> |
4470 | <trans-unit id="6775540171466219199" datatype="html"> | 4498 | <trans-unit id="6747218355168080191" datatype="html"> |
4471 | <source>Stop autoplaying next video</source> | 4499 | <source>Do you really want to delete this comment?</source> |
4472 | <context-group purpose="location"> | 4500 | <context-group purpose="location"> |
4473 | <context context-type="sourcefile">../app/+videos/+video-watch/video-watch-playlist.component.ts</context> | 4501 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> |
4474 | <context context-type="linenumber">203</context> | 4502 | <context context-type="linenumber">166</context> |
4475 | </context-group> | 4503 | </context-group> |
4476 | </trans-unit> | 4504 | </trans-unit> |
4477 | <trans-unit id="5149234672404299151" datatype="html"> | 4505 | <trans-unit id="3691787517663044217" datatype="html"> |
4478 | <source>Autoplay next video</source> | 4506 | <source> The deletion will be sent to remote instances so they can reflect the change.</source> |
4479 | <context-group purpose="location"> | 4507 | <context-group purpose="location"> |
4480 | <context context-type="sourcefile">../app/+videos/+video-watch/video-watch-playlist.component.ts</context> | 4508 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> |
4481 | <context context-type="linenumber">204</context> | 4509 | <context context-type="linenumber">169</context> |
4482 | </context-group> | 4510 | </context-group> |
4483 | </trans-unit> | 4511 | </trans-unit> |
4484 | <trans-unit id="5870421136141540382" datatype="html"> | 4512 | <trans-unit id="7321800851971795962" datatype="html"> |
4485 | <source>Stop looping playlist videos</source> | 4513 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source> |
4486 | <context-group purpose="location"> | 4514 | <context-group purpose="location"> |
4487 | <context context-type="sourcefile">../app/+videos/+video-watch/video-watch-playlist.component.ts</context> | 4515 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> |
4488 | <context context-type="linenumber">209</context> | 4516 | <context context-type="linenumber">171</context> |
4489 | </context-group> | 4517 | </context-group> |
4490 | </trans-unit> | 4518 | </trans-unit> |
4491 | <trans-unit id="1599585307037758139" datatype="html"> | 4519 | <trans-unit id="5964038603724691720" datatype="html"> |
4492 | <source>Loop playlist videos</source> | 4520 | <source>Delete and re-draft</source> |
4493 | <context-group purpose="location"> | 4521 | <context-group purpose="location"> |
4494 | <context context-type="sourcefile">../app/+videos/+video-watch/video-watch-playlist.component.ts</context> | 4522 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> |
4495 | <context context-type="linenumber">210</context> | 4523 | <context context-type="linenumber">197</context> |
4524 | </context-group> | ||
4525 | </trans-unit> | ||
4526 | <trans-unit id="7163633882758007711" datatype="html"> | ||
4527 | <source>Do you really want to delete and re-draft this comment?</source> | ||
4528 | <context-group purpose="location"> | ||
4529 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | ||
4530 | <context context-type="linenumber">197</context> | ||
4496 | </context-group> | 4531 | </context-group> |
4497 | </trans-unit> | 4532 | </trans-unit> |
4498 | <trans-unit id="a87cd0a1633f944e697fa2ee68362d8bc11c41ee" datatype="html"> | 4533 | <trans-unit id="a87cd0a1633f944e697fa2ee68362d8bc11c41ee" datatype="html"> |
@@ -4572,41 +4607,6 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</source> | |||
4572 | <context context-type="linenumber">101,102</context> | 4607 | <context context-type="linenumber">101,102</context> |
4573 | </context-group> | 4608 | </context-group> |
4574 | </trans-unit> | 4609 | </trans-unit> |
4575 | <trans-unit id="6747218355168080191" datatype="html"> | ||
4576 | <source>Do you really want to delete this comment?</source> | ||
4577 | <context-group purpose="location"> | ||
4578 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | ||
4579 | <context context-type="linenumber">166</context> | ||
4580 | </context-group> | ||
4581 | </trans-unit> | ||
4582 | <trans-unit id="3691787517663044217" datatype="html"> | ||
4583 | <source> The deletion will be sent to remote instances so they can reflect the change.</source> | ||
4584 | <context-group purpose="location"> | ||
4585 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | ||
4586 | <context context-type="linenumber">169</context> | ||
4587 | </context-group> | ||
4588 | </trans-unit> | ||
4589 | <trans-unit id="7321800851971795962" datatype="html"> | ||
4590 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source> | ||
4591 | <context-group purpose="location"> | ||
4592 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | ||
4593 | <context context-type="linenumber">171</context> | ||
4594 | </context-group> | ||
4595 | </trans-unit> | ||
4596 | <trans-unit id="5964038603724691720" datatype="html"> | ||
4597 | <source>Delete and re-draft</source> | ||
4598 | <context-group purpose="location"> | ||
4599 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | ||
4600 | <context context-type="linenumber">197</context> | ||
4601 | </context-group> | ||
4602 | </trans-unit> | ||
4603 | <trans-unit id="7163633882758007711" datatype="html"> | ||
4604 | <source>Do you really want to delete and re-draft this comment?</source> | ||
4605 | <context-group purpose="location"> | ||
4606 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | ||
4607 | <context context-type="linenumber">197</context> | ||
4608 | </context-group> | ||
4609 | </trans-unit> | ||
4610 | <trans-unit id="6784913005965759008" datatype="html"> | 4610 | <trans-unit id="6784913005965759008" datatype="html"> |
4611 | <source><x id="PH"/> h <x id="PH_1"/> min <x id="PH_2"/> sec</source> | 4611 | <source><x id="PH"/> h <x id="PH_1"/> min <x id="PH_2"/> sec</source> |
4612 | <context-group purpose="location"> | 4612 | <context-group purpose="location"> |
@@ -5069,6 +5069,20 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</source> | |||
5069 | <context context-type="linenumber">69</context> | 5069 | <context context-type="linenumber">69</context> |
5070 | </context-group> | 5070 | </context-group> |
5071 | </trans-unit> | 5071 | </trans-unit> |
5072 | <trans-unit id="1909009883731319373" datatype="html"> | ||
5073 | <source>Report <x id="PH"/></source> | ||
5074 | <context-group purpose="location"> | ||
5075 | <context context-type="sourcefile">../app/shared/shared-moderation/report-modals/account-report.component.ts</context> | ||
5076 | <context context-type="linenumber">51</context> | ||
5077 | </context-group> | ||
5078 | </trans-unit> | ||
5079 | <trans-unit id="5065410539274460415" datatype="html"> | ||
5080 | <source>Account reported.</source> | ||
5081 | <context-group purpose="location"> | ||
5082 | <context context-type="sourcefile">../app/shared/shared-moderation/report-modals/account-report.component.ts</context> | ||
5083 | <context context-type="linenumber">82</context> | ||
5084 | </context-group> | ||
5085 | </trans-unit> | ||
5072 | <trans-unit id="97916f2928694b8d574b6f052b93e54565ed9823" datatype="html"> | 5086 | <trans-unit id="97916f2928694b8d574b6f052b93e54565ed9823" datatype="html"> |
5073 | <source>What is the issue?</source> | 5087 | <source>What is the issue?</source> |
5074 | <context-group purpose="location"> | 5088 | <context-group purpose="location"> |
@@ -5090,20 +5104,6 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</source> | |||
5090 | <context context-type="linenumber">37,38</context> | 5104 | <context context-type="linenumber">37,38</context> |
5091 | </context-group> | 5105 | </context-group> |
5092 | </trans-unit> | 5106 | </trans-unit> |
5093 | <trans-unit id="1909009883731319373" datatype="html"> | ||
5094 | <source>Report <x id="PH"/></source> | ||
5095 | <context-group purpose="location"> | ||
5096 | <context context-type="sourcefile">../app/shared/shared-moderation/report-modals/account-report.component.ts</context> | ||
5097 | <context context-type="linenumber">51</context> | ||
5098 | </context-group> | ||
5099 | </trans-unit> | ||
5100 | <trans-unit id="5065410539274460415" datatype="html"> | ||
5101 | <source>Account reported.</source> | ||
5102 | <context-group purpose="location"> | ||
5103 | <context context-type="sourcefile">../app/shared/shared-moderation/report-modals/account-report.component.ts</context> | ||
5104 | <context context-type="linenumber">82</context> | ||
5105 | </context-group> | ||
5106 | </trans-unit> | ||
5107 | <trans-unit id="6746743143272021955" datatype="html"> | 5107 | <trans-unit id="6746743143272021955" datatype="html"> |
5108 | <source>Violent or repulsive</source> | 5108 | <source>Violent or repulsive</source> |
5109 | <context-group purpose="location"> | 5109 | <context-group purpose="location"> |
@@ -5216,6 +5216,13 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</source> | |||
5216 | <context context-type="linenumber">179</context> | 5216 | <context context-type="linenumber">179</context> |
5217 | </context-group> | 5217 | </context-group> |
5218 | </trans-unit> | 5218 | </trans-unit> |
5219 | <trans-unit id="1472171759957681533" datatype="html"> | ||
5220 | <source>Video reported.</source> | ||
5221 | <context-group purpose="location"> | ||
5222 | <context context-type="sourcefile">../app/shared/shared-moderation/report-modals/video-report.component.ts</context> | ||
5223 | <context context-type="linenumber">110</context> | ||
5224 | </context-group> | ||
5225 | </trans-unit> | ||
5219 | <trans-unit id="448d436df053141260523149173073ccbb0259f9" datatype="html"> | 5226 | <trans-unit id="448d436df053141260523149173073ccbb0259f9" datatype="html"> |
5220 | <source>Report video "<x id="INTERPOLATION"/>"</source> | 5227 | <source>Report video "<x id="INTERPOLATION"/>"</source> |
5221 | <context-group purpose="location"> | 5228 | <context-group purpose="location"> |
@@ -5244,11 +5251,11 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</source> | |||
5244 | <context context-type="linenumber">75,76</context> | 5251 | <context context-type="linenumber">75,76</context> |
5245 | </context-group> | 5252 | </context-group> |
5246 | </trans-unit> | 5253 | </trans-unit> |
5247 | <trans-unit id="1472171759957681533" datatype="html"> | 5254 | <trans-unit id="6549061957433635758" datatype="html"> |
5248 | <source>Video reported.</source> | 5255 | <source>Process domains</source> |
5249 | <context-group purpose="location"> | 5256 | <context-group purpose="location"> |
5250 | <context context-type="sourcefile">../app/shared/shared-moderation/report-modals/video-report.component.ts</context> | 5257 | <context context-type="sourcefile">../app/shared/shared-moderation/batch-domains-modal.component.ts</context> |
5251 | <context context-type="linenumber">110</context> | 5258 | <context context-type="linenumber">28</context> |
5252 | </context-group> | 5259 | </context-group> |
5253 | </trans-unit> | 5260 | </trans-unit> |
5254 | <trans-unit id="270a185f179774aa3cee3120ed4f5650e8816b9f" datatype="html"> | 5261 | <trans-unit id="270a185f179774aa3cee3120ed4f5650e8816b9f" datatype="html"> |
@@ -5265,11 +5272,18 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</source> | |||
5265 | <context context-type="linenumber">11</context> | 5272 | <context context-type="linenumber">11</context> |
5266 | </context-group> | 5273 | </context-group> |
5267 | </trans-unit> | 5274 | </trans-unit> |
5268 | <trans-unit id="6549061957433635758" datatype="html"> | 5275 | <trans-unit id="5708680277917691451" datatype="html"> |
5269 | <source>Process domains</source> | 5276 | <source><x id="PH"/> users banned.</source> |
5270 | <context-group purpose="location"> | 5277 | <context-group purpose="location"> |
5271 | <context context-type="sourcefile">../app/shared/shared-moderation/batch-domains-modal.component.ts</context> | 5278 | <context context-type="sourcefile">../app/shared/shared-moderation/user-ban-modal.component.ts</context> |
5272 | <context context-type="linenumber">28</context> | 5279 | <context context-type="linenumber">53</context> |
5280 | </context-group> | ||
5281 | </trans-unit> | ||
5282 | <trans-unit id="2448281151916042849" datatype="html"> | ||
5283 | <source>User <x id="PH"/> banned.</source> | ||
5284 | <context-group purpose="location"> | ||
5285 | <context context-type="sourcefile">../app/shared/shared-moderation/user-ban-modal.component.ts</context> | ||
5286 | <context context-type="linenumber">54</context> | ||
5273 | </context-group> | 5287 | </context-group> |
5274 | </trans-unit> | 5288 | </trans-unit> |
5275 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0" datatype="html"> | 5289 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0" datatype="html"> |
@@ -5300,18 +5314,11 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</source> | |||
5300 | <context context-type="linenumber">31</context> | 5314 | <context context-type="linenumber">31</context> |
5301 | </context-group> | 5315 | </context-group> |
5302 | </trans-unit> | 5316 | </trans-unit> |
5303 | <trans-unit id="5708680277917691451" datatype="html"> | 5317 | <trans-unit id="4762794934098378428" datatype="html"> |
5304 | <source><x id="PH"/> users banned.</source> | 5318 | <source>Video blocked.</source> |
5305 | <context-group purpose="location"> | ||
5306 | <context context-type="sourcefile">../app/shared/shared-moderation/user-ban-modal.component.ts</context> | ||
5307 | <context context-type="linenumber">53</context> | ||
5308 | </context-group> | ||
5309 | </trans-unit> | ||
5310 | <trans-unit id="2448281151916042849" datatype="html"> | ||
5311 | <source>User <x id="PH"/> banned.</source> | ||
5312 | <context-group purpose="location"> | 5319 | <context-group purpose="location"> |
5313 | <context context-type="sourcefile">../app/shared/shared-moderation/user-ban-modal.component.ts</context> | 5320 | <context context-type="sourcefile">../app/shared/shared-moderation/video-block.component.ts</context> |
5314 | <context context-type="linenumber">54</context> | 5321 | <context context-type="linenumber">60</context> |
5315 | </context-group> | 5322 | </context-group> |
5316 | </trans-unit> | 5323 | </trans-unit> |
5317 | <trans-unit id="dbabcb47dc77c29275d0f836280ef1dcd924fdb9" datatype="html"> | 5324 | <trans-unit id="dbabcb47dc77c29275d0f836280ef1dcd924fdb9" datatype="html"> |
@@ -5342,13 +5349,6 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</source> | |||
5342 | <context context-type="linenumber">26</context> | 5349 | <context context-type="linenumber">26</context> |
5343 | </context-group> | 5350 | </context-group> |
5344 | </trans-unit> | 5351 | </trans-unit> |
5345 | <trans-unit id="4762794934098378428" datatype="html"> | ||
5346 | <source>Video blocked.</source> | ||
5347 | <context-group purpose="location"> | ||
5348 | <context context-type="sourcefile">../app/shared/shared-moderation/video-block.component.ts</context> | ||
5349 | <context context-type="linenumber">60</context> | ||
5350 | </context-group> | ||
5351 | </trans-unit> | ||
5352 | <trans-unit id="8639315630141911544" datatype="html"> | 5352 | <trans-unit id="8639315630141911544" datatype="html"> |
5353 | <source>Account <x id="PH"/> unmuted by your instance.</source> | 5353 | <source>Account <x id="PH"/> unmuted by your instance.</source> |
5354 | <context-group purpose="location"> | 5354 | <context-group purpose="location"> |
@@ -5552,34 +5552,6 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</source> | |||
5552 | <context context-type="linenumber">82</context> | 5552 | <context context-type="linenumber">82</context> |
5553 | </context-group> | 5553 | </context-group> |
5554 | </trans-unit> | 5554 | </trans-unit> |
5555 | <trans-unit id="15c02cb6b6c3be53477e502d3e1ee26955b23af0" datatype="html"> | ||
5556 | <source>Unavailable</source> | ||
5557 | <context-group purpose="location"> | ||
5558 | <context context-type="sourcefile">../app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context> | ||
5559 | <context context-type="linenumber">32</context> | ||
5560 | </context-group> | ||
5561 | </trans-unit> | ||
5562 | <trans-unit id="b9dee3108a18796bd69c6be316c8fb985b58fb8e" datatype="html"> | ||
5563 | <source>Delete from <x id="INTERPOLATION"/></source> | ||
5564 | <context-group purpose="location"> | ||
5565 | <context context-type="sourcefile">../app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context> | ||
5566 | <context context-type="linenumber">88</context> | ||
5567 | </context-group> | ||
5568 | </trans-unit> | ||
5569 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc" datatype="html"> | ||
5570 | <source>Edit starts/stops at</source> | ||
5571 | <context-group purpose="location"> | ||
5572 | <context context-type="sourcefile">../app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context> | ||
5573 | <context context-type="linenumber">50</context> | ||
5574 | </context-group> | ||
5575 | </trans-unit> | ||
5576 | <trans-unit id="52c9a103b812f258bcddc3d90a6e3f46871d25fe" datatype="html"> | ||
5577 | <source>Save</source> | ||
5578 | <context-group purpose="location"> | ||
5579 | <context context-type="sourcefile">../app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context> | ||
5580 | <context context-type="linenumber">82</context> | ||
5581 | </context-group> | ||
5582 | </trans-unit> | ||
5583 | <trans-unit id="3723085768598852106" datatype="html"> | 5555 | <trans-unit id="3723085768598852106" datatype="html"> |
5584 | <source>Video removed from <x id="PH"/></source> | 5556 | <source>Video removed from <x id="PH"/></source> |
5585 | <context-group purpose="location"> | 5557 | <context-group purpose="location"> |
@@ -5615,6 +5587,48 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</source> | |||
5615 | <context context-type="linenumber">143</context> | 5587 | <context context-type="linenumber">143</context> |
5616 | </context-group> | 5588 | </context-group> |
5617 | </trans-unit> | 5589 | </trans-unit> |
5590 | <trans-unit id="15c02cb6b6c3be53477e502d3e1ee26955b23af0" datatype="html"> | ||
5591 | <source>Unavailable</source> | ||
5592 | <context-group purpose="location"> | ||
5593 | <context context-type="sourcefile">../app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context> | ||
5594 | <context context-type="linenumber">32</context> | ||
5595 | </context-group> | ||
5596 | </trans-unit> | ||
5597 | <trans-unit id="b9dee3108a18796bd69c6be316c8fb985b58fb8e" datatype="html"> | ||
5598 | <source>Delete from <x id="INTERPOLATION"/></source> | ||
5599 | <context-group purpose="location"> | ||
5600 | <context context-type="sourcefile">../app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context> | ||
5601 | <context context-type="linenumber">88</context> | ||
5602 | </context-group> | ||
5603 | </trans-unit> | ||
5604 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc" datatype="html"> | ||
5605 | <source>Edit starts/stops at</source> | ||
5606 | <context-group purpose="location"> | ||
5607 | <context context-type="sourcefile">../app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context> | ||
5608 | <context context-type="linenumber">50</context> | ||
5609 | </context-group> | ||
5610 | </trans-unit> | ||
5611 | <trans-unit id="52c9a103b812f258bcddc3d90a6e3f46871d25fe" datatype="html"> | ||
5612 | <source>Save</source> | ||
5613 | <context-group purpose="location"> | ||
5614 | <context context-type="sourcefile">../app/shared/shared-video-playlist/video-playlist-element-miniature.component.html</context> | ||
5615 | <context context-type="linenumber">82</context> | ||
5616 | </context-group> | ||
5617 | </trans-unit> | ||
5618 | <trans-unit id="1056145626640340519" datatype="html"> | ||
5619 | <source>Video added in <x id="PH"/> at timestamps <x id="PH_1"/></source> | ||
5620 | <context-group purpose="location"> | ||
5621 | <context context-type="sourcefile">../app/shared/shared-video-playlist/video-add-to-playlist.component.ts</context> | ||
5622 | <context context-type="linenumber">377</context> | ||
5623 | </context-group> | ||
5624 | </trans-unit> | ||
5625 | <trans-unit id="7754186870520534716" datatype="html"> | ||
5626 | <source>Video added in <x id="PH"/></source> | ||
5627 | <context-group purpose="location"> | ||
5628 | <context context-type="sourcefile">../app/shared/shared-video-playlist/video-add-to-playlist.component.ts</context> | ||
5629 | <context context-type="linenumber">378</context> | ||
5630 | </context-group> | ||
5631 | </trans-unit> | ||
5618 | <trans-unit id="b2b638f4333842009c258a23e59dbe4160d1e566" datatype="html"> | 5632 | <trans-unit id="b2b638f4333842009c258a23e59dbe4160d1e566" datatype="html"> |
5619 | <source>Save to</source> | 5633 | <source>Save to</source> |
5620 | <context-group purpose="location"> | 5634 | <context-group purpose="location"> |
@@ -5643,18 +5657,46 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</source> | |||
5643 | <context context-type="linenumber">72</context> | 5657 | <context context-type="linenumber">72</context> |
5644 | </context-group> | 5658 | </context-group> |
5645 | </trans-unit> | 5659 | </trans-unit> |
5646 | <trans-unit id="1056145626640340519" datatype="html"> | 5660 | <trans-unit id="5927402622550505067" datatype="html"> |
5647 | <source>Video added in <x id="PH"/> at timestamps <x id="PH_1"/></source> | 5661 | <source>Subscribed to all current channels of <x id="PH"/>. You will be notified of all their new videos.</source> |
5648 | <context-group purpose="location"> | 5662 | <context-group purpose="location"> |
5649 | <context context-type="sourcefile">../app/shared/shared-video-playlist/video-add-to-playlist.component.ts</context> | 5663 | <context context-type="sourcefile">../app/shared/shared-user-subscription/subscribe-button.component.ts</context> |
5650 | <context context-type="linenumber">377</context> | 5664 | <context context-type="linenumber">109</context> |
5651 | </context-group> | 5665 | </context-group> |
5652 | </trans-unit> | 5666 | </trans-unit> |
5653 | <trans-unit id="7754186870520534716" datatype="html"> | 5667 | <trans-unit id="2780460651686172544" datatype="html"> |
5654 | <source>Video added in <x id="PH"/></source> | 5668 | <source>Subscribed to <x id="PH"/>. You will be notified of all their new videos.</source> |
5655 | <context-group purpose="location"> | 5669 | <context-group purpose="location"> |
5656 | <context context-type="sourcefile">../app/shared/shared-video-playlist/video-add-to-playlist.component.ts</context> | 5670 | <context context-type="sourcefile">../app/shared/shared-user-subscription/subscribe-button.component.ts</context> |
5657 | <context context-type="linenumber">378</context> | 5671 | <context context-type="linenumber">110</context> |
5672 | </context-group> | ||
5673 | </trans-unit> | ||
5674 | <trans-unit id="7019115336138470191" datatype="html"> | ||
5675 | <source>Subscribed</source> | ||
5676 | <context-group purpose="location"> | ||
5677 | <context context-type="sourcefile">../app/shared/shared-user-subscription/subscribe-button.component.ts</context> | ||
5678 | <context context-type="linenumber">112</context> | ||
5679 | </context-group> | ||
5680 | </trans-unit> | ||
5681 | <trans-unit id="7070823964189404459" datatype="html"> | ||
5682 | <source>Unsubscribed from all channels of <x id="PH"/></source> | ||
5683 | <context-group purpose="location"> | ||
5684 | <context context-type="sourcefile">../app/shared/shared-user-subscription/subscribe-button.component.ts</context> | ||
5685 | <context context-type="linenumber">139</context> | ||
5686 | </context-group> | ||
5687 | </trans-unit> | ||
5688 | <trans-unit id="9201562016527884133" datatype="html"> | ||
5689 | <source>Unsubscribed from <x id="PH"/></source> | ||
5690 | <context-group purpose="location"> | ||
5691 | <context context-type="sourcefile">../app/shared/shared-user-subscription/subscribe-button.component.ts</context> | ||
5692 | <context context-type="linenumber">140</context> | ||
5693 | </context-group> | ||
5694 | </trans-unit> | ||
5695 | <trans-unit id="516954136005961440" datatype="html"> | ||
5696 | <source>Unsubscribed</source> | ||
5697 | <context-group purpose="location"> | ||
5698 | <context context-type="sourcefile">../app/shared/shared-user-subscription/subscribe-button.component.ts</context> | ||
5699 | <context context-type="linenumber">142</context> | ||
5658 | </context-group> | 5700 | </context-group> |
5659 | </trans-unit> | 5701 | </trans-unit> |
5660 | <trans-unit id="9b3287f52c239cad05ec98391553e5052ba1aa66" datatype="html"> | 5702 | <trans-unit id="9b3287f52c239cad05ec98391553e5052ba1aa66" datatype="html"> |
@@ -5727,48 +5769,6 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</source> | |||
5727 | <context context-type="linenumber">54</context> | 5769 | <context context-type="linenumber">54</context> |
5728 | </context-group> | 5770 | </context-group> |
5729 | </trans-unit> | 5771 | </trans-unit> |
5730 | <trans-unit id="5927402622550505067" datatype="html"> | ||
5731 | <source>Subscribed to all current channels of <x id="PH"/>. You will be notified of all their new videos.</source> | ||
5732 | <context-group purpose="location"> | ||
5733 | <context context-type="sourcefile">../app/shared/shared-user-subscription/subscribe-button.component.ts</context> | ||
5734 | <context context-type="linenumber">109</context> | ||
5735 | </context-group> | ||
5736 | </trans-unit> | ||
5737 | <trans-unit id="2780460651686172544" datatype="html"> | ||
5738 | <source>Subscribed to <x id="PH"/>. You will be notified of all their new videos.</source> | ||
5739 | <context-group purpose="location"> | ||
5740 | <context context-type="sourcefile">../app/shared/shared-user-subscription/subscribe-button.component.ts</context> | ||
5741 | <context context-type="linenumber">110</context> | ||
5742 | </context-group> | ||
5743 | </trans-unit> | ||
5744 | <trans-unit id="7019115336138470191" datatype="html"> | ||
5745 | <source>Subscribed</source> | ||
5746 | <context-group purpose="location"> | ||
5747 | <context context-type="sourcefile">../app/shared/shared-user-subscription/subscribe-button.component.ts</context> | ||
5748 | <context context-type="linenumber">112</context> | ||
5749 | </context-group> | ||
5750 | </trans-unit> | ||
5751 | <trans-unit id="7070823964189404459" datatype="html"> | ||
5752 | <source>Unsubscribed from all channels of <x id="PH"/></source> | ||
5753 | <context-group purpose="location"> | ||
5754 | <context context-type="sourcefile">../app/shared/shared-user-subscription/subscribe-button.component.ts</context> | ||
5755 | <context context-type="linenumber">139</context> | ||
5756 | </context-group> | ||
5757 | </trans-unit> | ||
5758 | <trans-unit id="9201562016527884133" datatype="html"> | ||
5759 | <source>Unsubscribed from <x id="PH"/></source> | ||
5760 | <context-group purpose="location"> | ||
5761 | <context context-type="sourcefile">../app/shared/shared-user-subscription/subscribe-button.component.ts</context> | ||
5762 | <context context-type="linenumber">140</context> | ||
5763 | </context-group> | ||
5764 | </trans-unit> | ||
5765 | <trans-unit id="516954136005961440" datatype="html"> | ||
5766 | <source>Unsubscribed</source> | ||
5767 | <context-group purpose="location"> | ||
5768 | <context context-type="sourcefile">../app/shared/shared-user-subscription/subscribe-button.component.ts</context> | ||
5769 | <context context-type="linenumber">142</context> | ||
5770 | </context-group> | ||
5771 | </trans-unit> | ||
5772 | <trans-unit id="2767660806989176400" datatype="html"> | 5772 | <trans-unit id="2767660806989176400" datatype="html"> |
5773 | <source>Video <x id="PH"/> deleted.</source> | 5773 | <source>Video <x id="PH"/> deleted.</source> |
5774 | <context-group purpose="location"> | 5774 | <context-group purpose="location"> |
@@ -5818,27 +5818,6 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</source> | |||
5818 | <context context-type="linenumber">294</context> | 5818 | <context context-type="linenumber">294</context> |
5819 | </context-group> | 5819 | </context-group> |
5820 | </trans-unit> | 5820 | </trans-unit> |
5821 | <trans-unit id="f73a82bb90c6c856cc0d2e3b2f5c109460074912" datatype="html"> | ||
5822 | <source>{VAR_PLURAL, plural, =1 {1 view} other {<x id="INTERPOLATION"/> views}}</source> | ||
5823 | <context-group purpose="location"> | ||
5824 | <context context-type="sourcefile">../app/shared/shared-video-miniature/video-miniature.component.html</context> | ||
5825 | <context context-type="linenumber">31</context> | ||
5826 | </context-group> | ||
5827 | </trans-unit> | ||
5828 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> | ||
5829 | <source>Blocked</source> | ||
5830 | <context-group purpose="location"> | ||
5831 | <context context-type="sourcefile">../app/shared/shared-video-miniature/video-miniature.component.html</context> | ||
5832 | <context context-type="linenumber">51</context> | ||
5833 | </context-group> | ||
5834 | </trans-unit> | ||
5835 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87" datatype="html"> | ||
5836 | <source> Sensitive </source> | ||
5837 | <context-group purpose="location"> | ||
5838 | <context context-type="sourcefile">../app/shared/shared-video-miniature/video-miniature.component.html</context> | ||
5839 | <context context-type="linenumber">57</context> | ||
5840 | </context-group> | ||
5841 | </trans-unit> | ||
5842 | <trans-unit id="6952960992592445535" datatype="html"> | 5821 | <trans-unit id="6952960992592445535" datatype="html"> |
5843 | <source><x id="PH"/> (channel page)</source> | 5822 | <source><x id="PH"/> (channel page)</source> |
5844 | <context-group purpose="location"> | 5823 | <context-group purpose="location"> |
@@ -5881,6 +5860,27 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</source> | |||
5881 | <context context-type="linenumber">179</context> | 5860 | <context context-type="linenumber">179</context> |
5882 | </context-group> | 5861 | </context-group> |
5883 | </trans-unit> | 5862 | </trans-unit> |
5863 | <trans-unit id="f73a82bb90c6c856cc0d2e3b2f5c109460074912" datatype="html"> | ||
5864 | <source>{VAR_PLURAL, plural, =1 {1 view} other {<x id="INTERPOLATION"/> views}}</source> | ||
5865 | <context-group purpose="location"> | ||
5866 | <context context-type="sourcefile">../app/shared/shared-video-miniature/video-miniature.component.html</context> | ||
5867 | <context context-type="linenumber">31</context> | ||
5868 | </context-group> | ||
5869 | </trans-unit> | ||
5870 | <trans-unit id="1d3781d7296d4b4e04e7f023aec1052fb2955c4d" datatype="html"> | ||
5871 | <source>Blocked</source> | ||
5872 | <context-group purpose="location"> | ||
5873 | <context context-type="sourcefile">../app/shared/shared-video-miniature/video-miniature.component.html</context> | ||
5874 | <context context-type="linenumber">51</context> | ||
5875 | </context-group> | ||
5876 | </trans-unit> | ||
5877 | <trans-unit id="fb8ccb136ab0ad1ff1dfbce739198be16a814f87" datatype="html"> | ||
5878 | <source> Sensitive </source> | ||
5879 | <context-group purpose="location"> | ||
5880 | <context context-type="sourcefile">../app/shared/shared-video-miniature/video-miniature.component.html</context> | ||
5881 | <context context-type="linenumber">57</context> | ||
5882 | </context-group> | ||
5883 | </trans-unit> | ||
5884 | <trans-unit id="6854100952145697527" datatype="html"> | 5884 | <trans-unit id="6854100952145697527" datatype="html"> |
5885 | <source>Display name cannot be more than 120 characters long.</source> | 5885 | <source>Display name cannot be more than 120 characters long.</source> |
5886 | <context-group purpose="location"> | 5886 | <context-group purpose="location"> |
@@ -6000,69 +6000,6 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</source> | |||
6000 | <context context-type="linenumber">193</context> | 6000 | <context context-type="linenumber">193</context> |
6001 | </context-group> | 6001 | </context-group> |
6002 | </trans-unit> | 6002 | </trans-unit> |
6003 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd" datatype="html"> | ||
6004 | <source>Download</source> | ||
6005 | <context-group purpose="location"> | ||
6006 | <context context-type="sourcefile">../app/shared/shared-video-miniature/video-download.component.html</context> | ||
6007 | <context context-type="linenumber">4</context> | ||
6008 | </context-group> | ||
6009 | </trans-unit> | ||
6010 | <trans-unit id="7cdda05962b3123483985a6fe7da45a7a564ecf9" datatype="html"> | ||
6011 | <source>subtitles</source> | ||
6012 | <context-group purpose="location"> | ||
6013 | <context context-type="sourcefile">../app/shared/shared-video-miniature/video-download.component.html</context> | ||
6014 | <context context-type="linenumber">11</context> | ||
6015 | </context-group> | ||
6016 | </trans-unit> | ||
6017 | <trans-unit id="e53246788ffa2660a170aa859691a55576df2e6c" datatype="html"> | ||
6018 | <source>video</source> | ||
6019 | <context-group purpose="location"> | ||
6020 | <context context-type="sourcefile">../app/shared/shared-video-miniature/video-download.component.html</context> | ||
6021 | <context context-type="linenumber">12</context> | ||
6022 | </context-group> | ||
6023 | </trans-unit> | ||
6024 | <trans-unit id="7722a92a1fc887570b4f4d8a7bb916f067f32028" datatype="html"> | ||
6025 | <source>Format</source> | ||
6026 | <context-group purpose="location"> | ||
6027 | <context context-type="sourcefile">../app/shared/shared-video-miniature/video-download.component.html</context> | ||
6028 | <context context-type="linenumber">45</context> | ||
6029 | </context-group> | ||
6030 | </trans-unit> | ||
6031 | <trans-unit id="01504bc3847894e0816ec486648854d3835f91b0" datatype="html"> | ||
6032 | <source>Video stream</source> | ||
6033 | <context-group purpose="location"> | ||
6034 | <context context-type="sourcefile">../app/shared/shared-video-miniature/video-download.component.html</context> | ||
6035 | <context context-type="linenumber">57</context> | ||
6036 | </context-group> | ||
6037 | </trans-unit> | ||
6038 | <trans-unit id="697b93fd14fd3c85be79056c6d7f459da204eff1" datatype="html"> | ||
6039 | <source>Audio stream</source> | ||
6040 | <context-group purpose="location"> | ||
6041 | <context context-type="sourcefile">../app/shared/shared-video-miniature/video-download.component.html</context> | ||
6042 | <context context-type="linenumber">69</context> | ||
6043 | </context-group> | ||
6044 | </trans-unit> | ||
6045 | <trans-unit id="be745b3dc0df310871766eb6c8f78c3ce652a2b4" datatype="html"> | ||
6046 | <source><x id="INTERPOLATION"/></source> | ||
6047 | <context-group purpose="location"> | ||
6048 | <context context-type="sourcefile">../app/shared/shared-video-miniature/video-download.component.html</context> | ||
6049 | <context context-type="linenumber">49</context> | ||
6050 | </context-group> | ||
6051 | </trans-unit> | ||
6052 | <trans-unit id="8d6a41c2703bed3edfc76e1df0b1ca203404c17c" datatype="html"> | ||
6053 | <source>Direct download</source> | ||
6054 | <context-group purpose="location"> | ||
6055 | <context context-type="sourcefile">../app/shared/shared-video-miniature/video-download.component.html</context> | ||
6056 | <context context-type="linenumber">87</context> | ||
6057 | </context-group> | ||
6058 | </trans-unit> | ||
6059 | <trans-unit id="ac3a02ecd20f41278f1ef7c03f45c1117b4b796d" datatype="html"> | ||
6060 | <source>Torrent (.torrent file)</source> | ||
6061 | <context-group purpose="location"> | ||
6062 | <context context-type="sourcefile">../app/shared/shared-video-miniature/video-download.component.html</context> | ||
6063 | <context context-type="linenumber">92</context> | ||
6064 | </context-group> | ||
6065 | </trans-unit> | ||
6066 | <trans-unit id="1006562256968398209" datatype="html"> | 6003 | <trans-unit id="1006562256968398209" datatype="html"> |
6067 | <source>video</source> | 6004 | <source>video</source> |
6068 | <context-group purpose="location"> | 6005 | <context-group purpose="location"> |
@@ -6168,6 +6105,104 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</source> | |||
6168 | <context context-type="linenumber">187</context> | 6105 | <context context-type="linenumber">187</context> |
6169 | </context-group> | 6106 | </context-group> |
6170 | </trans-unit> | 6107 | </trans-unit> |
6108 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd" datatype="html"> | ||
6109 | <source>Download</source> | ||
6110 | <context-group purpose="location"> | ||
6111 | <context context-type="sourcefile">../app/shared/shared-video-miniature/video-download.component.html</context> | ||
6112 | <context context-type="linenumber">4</context> | ||
6113 | </context-group> | ||
6114 | </trans-unit> | ||
6115 | <trans-unit id="7cdda05962b3123483985a6fe7da45a7a564ecf9" datatype="html"> | ||
6116 | <source>subtitles</source> | ||
6117 | <context-group purpose="location"> | ||
6118 | <context context-type="sourcefile">../app/shared/shared-video-miniature/video-download.component.html</context> | ||
6119 | <context context-type="linenumber">11</context> | ||
6120 | </context-group> | ||
6121 | </trans-unit> | ||
6122 | <trans-unit id="e53246788ffa2660a170aa859691a55576df2e6c" datatype="html"> | ||
6123 | <source>video</source> | ||
6124 | <context-group purpose="location"> | ||
6125 | <context context-type="sourcefile">../app/shared/shared-video-miniature/video-download.component.html</context> | ||
6126 | <context context-type="linenumber">12</context> | ||
6127 | </context-group> | ||
6128 | </trans-unit> | ||
6129 | <trans-unit id="7722a92a1fc887570b4f4d8a7bb916f067f32028" datatype="html"> | ||
6130 | <source>Format</source> | ||
6131 | <context-group purpose="location"> | ||
6132 | <context context-type="sourcefile">../app/shared/shared-video-miniature/video-download.component.html</context> | ||
6133 | <context context-type="linenumber">45</context> | ||
6134 | </context-group> | ||
6135 | </trans-unit> | ||
6136 | <trans-unit id="01504bc3847894e0816ec486648854d3835f91b0" datatype="html"> | ||
6137 | <source>Video stream</source> | ||
6138 | <context-group purpose="location"> | ||
6139 | <context context-type="sourcefile">../app/shared/shared-video-miniature/video-download.component.html</context> | ||
6140 | <context context-type="linenumber">57</context> | ||
6141 | </context-group> | ||
6142 | </trans-unit> | ||
6143 | <trans-unit id="697b93fd14fd3c85be79056c6d7f459da204eff1" datatype="html"> | ||
6144 | <source>Audio stream</source> | ||
6145 | <context-group purpose="location"> | ||
6146 | <context context-type="sourcefile">../app/shared/shared-video-miniature/video-download.component.html</context> | ||
6147 | <context context-type="linenumber">69</context> | ||
6148 | </context-group> | ||
6149 | </trans-unit> | ||
6150 | <trans-unit id="be745b3dc0df310871766eb6c8f78c3ce652a2b4" datatype="html"> | ||
6151 | <source><x id="INTERPOLATION"/></source> | ||
6152 | <context-group purpose="location"> | ||
6153 | <context context-type="sourcefile">../app/shared/shared-video-miniature/video-download.component.html</context> | ||
6154 | <context context-type="linenumber">49</context> | ||
6155 | </context-group> | ||
6156 | </trans-unit> | ||
6157 | <trans-unit id="8d6a41c2703bed3edfc76e1df0b1ca203404c17c" datatype="html"> | ||
6158 | <source>Direct download</source> | ||
6159 | <context-group purpose="location"> | ||
6160 | <context context-type="sourcefile">../app/shared/shared-video-miniature/video-download.component.html</context> | ||
6161 | <context context-type="linenumber">87</context> | ||
6162 | </context-group> | ||
6163 | </trans-unit> | ||
6164 | <trans-unit id="ac3a02ecd20f41278f1ef7c03f45c1117b4b796d" datatype="html"> | ||
6165 | <source>Torrent (.torrent file)</source> | ||
6166 | <context-group purpose="location"> | ||
6167 | <context context-type="sourcefile">../app/shared/shared-video-miniature/video-download.component.html</context> | ||
6168 | <context context-type="linenumber">92</context> | ||
6169 | </context-group> | ||
6170 | </trans-unit> | ||
6171 | <trans-unit id="149121389669248117" datatype="html"> | ||
6172 | <source>Violent or Repulsive</source> | ||
6173 | <context-group purpose="location"> | ||
6174 | <context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-details.component.ts</context> | ||
6175 | <context context-type="linenumber">21</context> | ||
6176 | </context-group> | ||
6177 | </trans-unit> | ||
6178 | <trans-unit id="2493388551376623687" datatype="html"> | ||
6179 | <source>Hateful or Abusive</source> | ||
6180 | <context-group purpose="location"> | ||
6181 | <context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-details.component.ts</context> | ||
6182 | <context context-type="linenumber">22</context> | ||
6183 | </context-group> | ||
6184 | </trans-unit> | ||
6185 | <trans-unit id="5124757565683866220" datatype="html"> | ||
6186 | <source>Spam or Misleading</source> | ||
6187 | <context-group purpose="location"> | ||
6188 | <context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-details.component.ts</context> | ||
6189 | <context context-type="linenumber">23</context> | ||
6190 | </context-group> | ||
6191 | </trans-unit> | ||
6192 | <trans-unit id="8440128775129354214" datatype="html"> | ||
6193 | <source>Privacy</source> | ||
6194 | <context-group purpose="location"> | ||
6195 | <context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-details.component.ts</context> | ||
6196 | <context context-type="linenumber">24</context> | ||
6197 | </context-group> | ||
6198 | </trans-unit> | ||
6199 | <trans-unit id="3776575731053010580" datatype="html"> | ||
6200 | <source>Server rules</source> | ||
6201 | <context-group purpose="location"> | ||
6202 | <context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-details.component.ts</context> | ||
6203 | <context context-type="linenumber">26</context> | ||
6204 | </context-group> | ||
6205 | </trans-unit> | ||
6171 | <trans-unit id="f72992030f134408b675152c397f9d0ec00f3b2a" datatype="html"> | 6206 | <trans-unit id="f72992030f134408b675152c397f9d0ec00f3b2a" datatype="html"> |
6172 | <source>Report</source> | 6207 | <source>Report</source> |
6173 | <context-group purpose="location"> | 6208 | <context-group purpose="location"> |
@@ -6252,39 +6287,18 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</source> | |||
6252 | <context context-type="linenumber">105</context> | 6287 | <context context-type="linenumber">105</context> |
6253 | </context-group> | 6288 | </context-group> |
6254 | </trans-unit> | 6289 | </trans-unit> |
6255 | <trans-unit id="149121389669248117" datatype="html"> | 6290 | <trans-unit id="2044813052587776285" datatype="html"> |
6256 | <source>Violent or Repulsive</source> | 6291 | <source>Add a message to communicate with the reporter</source> |
6257 | <context-group purpose="location"> | ||
6258 | <context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-details.component.ts</context> | ||
6259 | <context context-type="linenumber">21</context> | ||
6260 | </context-group> | ||
6261 | </trans-unit> | ||
6262 | <trans-unit id="2493388551376623687" datatype="html"> | ||
6263 | <source>Hateful or Abusive</source> | ||
6264 | <context-group purpose="location"> | ||
6265 | <context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-details.component.ts</context> | ||
6266 | <context context-type="linenumber">22</context> | ||
6267 | </context-group> | ||
6268 | </trans-unit> | ||
6269 | <trans-unit id="5124757565683866220" datatype="html"> | ||
6270 | <source>Spam or Misleading</source> | ||
6271 | <context-group purpose="location"> | ||
6272 | <context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-details.component.ts</context> | ||
6273 | <context context-type="linenumber">23</context> | ||
6274 | </context-group> | ||
6275 | </trans-unit> | ||
6276 | <trans-unit id="8440128775129354214" datatype="html"> | ||
6277 | <source>Privacy</source> | ||
6278 | <context-group purpose="location"> | 6292 | <context-group purpose="location"> |
6279 | <context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-details.component.ts</context> | 6293 | <context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-message-modal.component.ts</context> |
6280 | <context context-type="linenumber">24</context> | 6294 | <context context-type="linenumber">100</context> |
6281 | </context-group> | 6295 | </context-group> |
6282 | </trans-unit> | 6296 | </trans-unit> |
6283 | <trans-unit id="3776575731053010580" datatype="html"> | 6297 | <trans-unit id="4117663541503607703" datatype="html"> |
6284 | <source>Server rules</source> | 6298 | <source>Add a message to communicate with the moderation team</source> |
6285 | <context-group purpose="location"> | 6299 | <context-group purpose="location"> |
6286 | <context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-details.component.ts</context> | 6300 | <context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-message-modal.component.ts</context> |
6287 | <context context-type="linenumber">26</context> | 6301 | <context context-type="linenumber">103</context> |
6288 | </context-group> | 6302 | </context-group> |
6289 | </trans-unit> | 6303 | </trans-unit> |
6290 | <trans-unit id="7d1344e3d4e8b1b30abaaf383945b4543d70b303" datatype="html"> | 6304 | <trans-unit id="7d1344e3d4e8b1b30abaaf383945b4543d70b303" datatype="html"> |
@@ -6315,18 +6329,11 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</source> | |||
6315 | <context context-type="linenumber">28,29</context> | 6329 | <context context-type="linenumber">28,29</context> |
6316 | </context-group> | 6330 | </context-group> |
6317 | </trans-unit> | 6331 | </trans-unit> |
6318 | <trans-unit id="2044813052587776285" datatype="html"> | 6332 | <trans-unit id="2393853062458645999" datatype="html"> |
6319 | <source>Add a message to communicate with the reporter</source> | 6333 | <source>Comment updated.</source> |
6320 | <context-group purpose="location"> | ||
6321 | <context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-message-modal.component.ts</context> | ||
6322 | <context context-type="linenumber">100</context> | ||
6323 | </context-group> | ||
6324 | </trans-unit> | ||
6325 | <trans-unit id="4117663541503607703" datatype="html"> | ||
6326 | <source>Add a message to communicate with the moderation team</source> | ||
6327 | <context-group purpose="location"> | 6334 | <context-group purpose="location"> |
6328 | <context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-message-modal.component.ts</context> | 6335 | <context context-type="sourcefile">../app/shared/shared-abuse-list/moderation-comment-modal.component.ts</context> |
6329 | <context context-type="linenumber">103</context> | 6336 | <context context-type="linenumber">58</context> |
6330 | </context-group> | 6337 | </context-group> |
6331 | </trans-unit> | 6338 | </trans-unit> |
6332 | <trans-unit id="bb863c794307735652d8695143e116eaee8a3c4f" datatype="html"> | 6339 | <trans-unit id="bb863c794307735652d8695143e116eaee8a3c4f" datatype="html"> |
@@ -6350,139 +6357,6 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</source> | |||
6350 | <context context-type="linenumber">31</context> | 6357 | <context context-type="linenumber">31</context> |
6351 | </context-group> | 6358 | </context-group> |
6352 | </trans-unit> | 6359 | </trans-unit> |
6353 | <trans-unit id="2393853062458645999" datatype="html"> | ||
6354 | <source>Comment updated.</source> | ||
6355 | <context-group purpose="location"> | ||
6356 | <context context-type="sourcefile">../app/shared/shared-abuse-list/moderation-comment-modal.component.ts</context> | ||
6357 | <context context-type="linenumber">58</context> | ||
6358 | </context-group> | ||
6359 | </trans-unit> | ||
6360 | <trans-unit id="8d1011bd5b502c857858a97d074118377d8fe714" datatype="html"> | ||
6361 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> reports</source> | ||
6362 | <context-group purpose="location"> | ||
6363 | <context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
6364 | <context context-type="linenumber">5</context> | ||
6365 | </context-group> | ||
6366 | </trans-unit> | ||
6367 | <trans-unit id="f7753a5d0baa909f5860eb49e14c41fc4ae00fb4" datatype="html"> | ||
6368 | <source>Advanced report filters</source> | ||
6369 | <context-group purpose="location"> | ||
6370 | <context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
6371 | <context context-type="linenumber">18</context> | ||
6372 | </context-group> | ||
6373 | </trans-unit> | ||
6374 | <trans-unit id="006dd388f1d14f58c33fb4ed4bb05a1dfbc42ffa" datatype="html"> | ||
6375 | <source>Unsolved reports</source> | ||
6376 | <context-group purpose="location"> | ||
6377 | <context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
6378 | <context context-type="linenumber">19</context> | ||
6379 | </context-group> | ||
6380 | </trans-unit> | ||
6381 | <trans-unit id="dee7eb63010b67c2464dd7987307e85369f24b9d" datatype="html"> | ||
6382 | <source>Accepted reports</source> | ||
6383 | <context-group purpose="location"> | ||
6384 | <context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
6385 | <context context-type="linenumber">20</context> | ||
6386 | </context-group> | ||
6387 | </trans-unit> | ||
6388 | <trans-unit id="8140a31650a8a974acaf9f7e88cfb246ed6c9314" datatype="html"> | ||
6389 | <source>Refused reports</source> | ||
6390 | <context-group purpose="location"> | ||
6391 | <context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
6392 | <context context-type="linenumber">21</context> | ||
6393 | </context-group> | ||
6394 | </trans-unit> | ||
6395 | <trans-unit id="1f5ed7018178a08c8eb17305833874a976fa428c" datatype="html"> | ||
6396 | <source>Reports with blocked videos</source> | ||
6397 | <context-group purpose="location"> | ||
6398 | <context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
6399 | <context context-type="linenumber">22</context> | ||
6400 | </context-group> | ||
6401 | </trans-unit> | ||
6402 | <trans-unit id="2f536bc37b142c0376631cefb992151fb733ce48" datatype="html"> | ||
6403 | <source>Reports with deleted videos</source> | ||
6404 | <context-group purpose="location"> | ||
6405 | <context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
6406 | <context context-type="linenumber">23</context> | ||
6407 | </context-group> | ||
6408 | </trans-unit> | ||
6409 | <trans-unit id="08658c558971c49d1120d6c8a5a4fecf5c3b1561" datatype="html"> | ||
6410 | <source>Video/Comment/Account</source> | ||
6411 | <context-group purpose="location"> | ||
6412 | <context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
6413 | <context context-type="linenumber">41</context> | ||
6414 | </context-group> | ||
6415 | </trans-unit> | ||
6416 | <trans-unit id="ea965d544a7dfd8185064c52cdfff553cf94d585" datatype="html"> | ||
6417 | <source>Messages</source> | ||
6418 | <context-group purpose="location"> | ||
6419 | <context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
6420 | <context context-type="linenumber">44</context> | ||
6421 | </context-group> | ||
6422 | </trans-unit> | ||
6423 | <trans-unit id="31b1d714a41f00a1347b78884eee465b1d90f7e1" datatype="html"> | ||
6424 | <source>Internal note</source> | ||
6425 | <context-group purpose="location"> | ||
6426 | <context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
6427 | <context context-type="linenumber">45</context> | ||
6428 | </context-group> | ||
6429 | </trans-unit> | ||
6430 | <trans-unit id="d9e38d58225f58cb64126e4d5ec58f39dcb326df" datatype="html"> | ||
6431 | <source> Deleted account </source> | ||
6432 | <context-group purpose="location"> | ||
6433 | <context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
6434 | <context context-type="linenumber">75,76</context> | ||
6435 | </context-group> | ||
6436 | </trans-unit> | ||
6437 | <trans-unit id="e186aa4dc511ff4347ec5304691000e3e0a4a048" datatype="html"> | ||
6438 | <source>by <x id="INTERPOLATION"/> on <x id="INTERPOLATION_1"/> </source> | ||
6439 | <context-group purpose="location"> | ||
6440 | <context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
6441 | <context context-type="linenumber">100</context> | ||
6442 | </context-group> | ||
6443 | </trans-unit> | ||
6444 | <trans-unit id="dee48932053451ee2dfafe5500a5262cd4220d5e" datatype="html"> | ||
6445 | <source>This video has been reported multiple times.</source> | ||
6446 | <context-group purpose="location"> | ||
6447 | <context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
6448 | <context context-type="linenumber">88</context> | ||
6449 | </context-group> | ||
6450 | </trans-unit> | ||
6451 | <trans-unit id="e9a289d014e33a5a45e1cf47131074f50abb7c18" datatype="html"> | ||
6452 | <source>The video was blocked</source> | ||
6453 | <context-group purpose="location"> | ||
6454 | <context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
6455 | <context context-type="linenumber">97</context> | ||
6456 | </context-group> | ||
6457 | </trans-unit> | ||
6458 | <trans-unit id="b0a337363ec610cf41744167b12f020e141a4617" datatype="html"> | ||
6459 | <source>Video was deleted</source> | ||
6460 | <context-group purpose="location"> | ||
6461 | <context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
6462 | <context context-type="linenumber">107</context> | ||
6463 | </context-group> | ||
6464 | </trans-unit> | ||
6465 | <trans-unit id="c45d28b67fd917b804defbf9e465ec1abe0c67da" datatype="html"> | ||
6466 | <source> Account deleted </source> | ||
6467 | <context-group purpose="location"> | ||
6468 | <context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
6469 | <context context-type="linenumber">143,144</context> | ||
6470 | </context-group> | ||
6471 | </trans-unit> | ||
6472 | <trans-unit id="c5cc399a82eb7993156daf2d6c1d9e071cde47ad" datatype="html"> | ||
6473 | <source>No abuses found matching current filters.</source> | ||
6474 | <context-group purpose="location"> | ||
6475 | <context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
6476 | <context context-type="linenumber">188</context> | ||
6477 | </context-group> | ||
6478 | </trans-unit> | ||
6479 | <trans-unit id="5d9dd64c1974b18918db7f24051bb385bd5558e1" datatype="html"> | ||
6480 | <source>No abuses found.</source> | ||
6481 | <context-group purpose="location"> | ||
6482 | <context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
6483 | <context context-type="linenumber">189</context> | ||
6484 | </context-group> | ||
6485 | </trans-unit> | ||
6486 | <trans-unit id="1250415136605923486" datatype="html"> | 6360 | <trans-unit id="1250415136605923486" datatype="html"> |
6487 | <source>Do you really want to delete this abuse report?</source> | 6361 | <source>Do you really want to delete this abuse report?</source> |
6488 | <context-group purpose="location"> | 6362 | <context-group purpose="location"> |
@@ -6644,6 +6518,160 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</source> | |||
6644 | <context context-type="linenumber">470</context> | 6518 | <context context-type="linenumber">470</context> |
6645 | </context-group> | 6519 | </context-group> |
6646 | </trans-unit> | 6520 | </trans-unit> |
6521 | <trans-unit id="8d1011bd5b502c857858a97d074118377d8fe714" datatype="html"> | ||
6522 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> reports</source> | ||
6523 | <context-group purpose="location"> | ||
6524 | <context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
6525 | <context context-type="linenumber">5</context> | ||
6526 | </context-group> | ||
6527 | </trans-unit> | ||
6528 | <trans-unit id="f7753a5d0baa909f5860eb49e14c41fc4ae00fb4" datatype="html"> | ||
6529 | <source>Advanced report filters</source> | ||
6530 | <context-group purpose="location"> | ||
6531 | <context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
6532 | <context context-type="linenumber">18</context> | ||
6533 | </context-group> | ||
6534 | </trans-unit> | ||
6535 | <trans-unit id="006dd388f1d14f58c33fb4ed4bb05a1dfbc42ffa" datatype="html"> | ||
6536 | <source>Unsolved reports</source> | ||
6537 | <context-group purpose="location"> | ||
6538 | <context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
6539 | <context context-type="linenumber">19</context> | ||
6540 | </context-group> | ||
6541 | </trans-unit> | ||
6542 | <trans-unit id="dee7eb63010b67c2464dd7987307e85369f24b9d" datatype="html"> | ||
6543 | <source>Accepted reports</source> | ||
6544 | <context-group purpose="location"> | ||
6545 | <context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
6546 | <context context-type="linenumber">20</context> | ||
6547 | </context-group> | ||
6548 | </trans-unit> | ||
6549 | <trans-unit id="8140a31650a8a974acaf9f7e88cfb246ed6c9314" datatype="html"> | ||
6550 | <source>Refused reports</source> | ||
6551 | <context-group purpose="location"> | ||
6552 | <context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
6553 | <context context-type="linenumber">21</context> | ||
6554 | </context-group> | ||
6555 | </trans-unit> | ||
6556 | <trans-unit id="1f5ed7018178a08c8eb17305833874a976fa428c" datatype="html"> | ||
6557 | <source>Reports with blocked videos</source> | ||
6558 | <context-group purpose="location"> | ||
6559 | <context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
6560 | <context context-type="linenumber">22</context> | ||
6561 | </context-group> | ||
6562 | </trans-unit> | ||
6563 | <trans-unit id="2f536bc37b142c0376631cefb992151fb733ce48" datatype="html"> | ||
6564 | <source>Reports with deleted videos</source> | ||
6565 | <context-group purpose="location"> | ||
6566 | <context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
6567 | <context context-type="linenumber">23</context> | ||
6568 | </context-group> | ||
6569 | </trans-unit> | ||
6570 | <trans-unit id="08658c558971c49d1120d6c8a5a4fecf5c3b1561" datatype="html"> | ||
6571 | <source>Video/Comment/Account</source> | ||
6572 | <context-group purpose="location"> | ||
6573 | <context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
6574 | <context context-type="linenumber">41</context> | ||
6575 | </context-group> | ||
6576 | </trans-unit> | ||
6577 | <trans-unit id="ea965d544a7dfd8185064c52cdfff553cf94d585" datatype="html"> | ||
6578 | <source>Messages</source> | ||
6579 | <context-group purpose="location"> | ||
6580 | <context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
6581 | <context context-type="linenumber">44</context> | ||
6582 | </context-group> | ||
6583 | </trans-unit> | ||
6584 | <trans-unit id="31b1d714a41f00a1347b78884eee465b1d90f7e1" datatype="html"> | ||
6585 | <source>Internal note</source> | ||
6586 | <context-group purpose="location"> | ||
6587 | <context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
6588 | <context context-type="linenumber">45</context> | ||
6589 | </context-group> | ||
6590 | </trans-unit> | ||
6591 | <trans-unit id="d9e38d58225f58cb64126e4d5ec58f39dcb326df" datatype="html"> | ||
6592 | <source> Deleted account </source> | ||
6593 | <context-group purpose="location"> | ||
6594 | <context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
6595 | <context context-type="linenumber">75,76</context> | ||
6596 | </context-group> | ||
6597 | </trans-unit> | ||
6598 | <trans-unit id="e186aa4dc511ff4347ec5304691000e3e0a4a048" datatype="html"> | ||
6599 | <source>by <x id="INTERPOLATION"/> on <x id="INTERPOLATION_1"/> </source> | ||
6600 | <context-group purpose="location"> | ||
6601 | <context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
6602 | <context context-type="linenumber">100</context> | ||
6603 | </context-group> | ||
6604 | </trans-unit> | ||
6605 | <trans-unit id="dee48932053451ee2dfafe5500a5262cd4220d5e" datatype="html"> | ||
6606 | <source>This video has been reported multiple times.</source> | ||
6607 | <context-group purpose="location"> | ||
6608 | <context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
6609 | <context context-type="linenumber">88</context> | ||
6610 | </context-group> | ||
6611 | </trans-unit> | ||
6612 | <trans-unit id="e9a289d014e33a5a45e1cf47131074f50abb7c18" datatype="html"> | ||
6613 | <source>The video was blocked</source> | ||
6614 | <context-group purpose="location"> | ||
6615 | <context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
6616 | <context context-type="linenumber">97</context> | ||
6617 | </context-group> | ||
6618 | </trans-unit> | ||
6619 | <trans-unit id="b0a337363ec610cf41744167b12f020e141a4617" datatype="html"> | ||
6620 | <source>Video was deleted</source> | ||
6621 | <context-group purpose="location"> | ||
6622 | <context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
6623 | <context context-type="linenumber">107</context> | ||
6624 | </context-group> | ||
6625 | </trans-unit> | ||
6626 | <trans-unit id="c45d28b67fd917b804defbf9e465ec1abe0c67da" datatype="html"> | ||
6627 | <source> Account deleted </source> | ||
6628 | <context-group purpose="location"> | ||
6629 | <context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
6630 | <context context-type="linenumber">143,144</context> | ||
6631 | </context-group> | ||
6632 | </trans-unit> | ||
6633 | <trans-unit id="c5cc399a82eb7993156daf2d6c1d9e071cde47ad" datatype="html"> | ||
6634 | <source>No abuses found matching current filters.</source> | ||
6635 | <context-group purpose="location"> | ||
6636 | <context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
6637 | <context context-type="linenumber">188</context> | ||
6638 | </context-group> | ||
6639 | </trans-unit> | ||
6640 | <trans-unit id="5d9dd64c1974b18918db7f24051bb385bd5558e1" datatype="html"> | ||
6641 | <source>No abuses found.</source> | ||
6642 | <context-group purpose="location"> | ||
6643 | <context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.html</context> | ||
6644 | <context context-type="linenumber">189</context> | ||
6645 | </context-group> | ||
6646 | </trans-unit> | ||
6647 | <trans-unit id="2830831449226931729" datatype="html"> | ||
6648 | <source>Instance languages</source> | ||
6649 | <context-group purpose="location"> | ||
6650 | <context context-type="sourcefile">../app/+videos/+video-edit/shared/video-edit.component.ts</context> | ||
6651 | <context context-type="linenumber">169</context> | ||
6652 | </context-group> | ||
6653 | </trans-unit> | ||
6654 | <trans-unit id="40119547597591062" datatype="html"> | ||
6655 | <source>All languages</source> | ||
6656 | <context-group purpose="location"> | ||
6657 | <context context-type="sourcefile">../app/+videos/+video-edit/shared/video-edit.component.ts</context> | ||
6658 | <context context-type="linenumber">170</context> | ||
6659 | </context-group> | ||
6660 | </trans-unit> | ||
6661 | <trans-unit id="9172233176401579786" datatype="html"> | ||
6662 | <source>Scheduled</source> | ||
6663 | <context-group purpose="location"> | ||
6664 | <context context-type="sourcefile">../app/+videos/+video-edit/shared/video-edit.component.ts</context> | ||
6665 | <context context-type="linenumber">181</context> | ||
6666 | </context-group> | ||
6667 | </trans-unit> | ||
6668 | <trans-unit id="1435317307066082710" datatype="html"> | ||
6669 | <source>Hide the video until a specific date</source> | ||
6670 | <context-group purpose="location"> | ||
6671 | <context context-type="sourcefile">../app/+videos/+video-edit/shared/video-edit.component.ts</context> | ||
6672 | <context context-type="linenumber">182</context> | ||
6673 | </context-group> | ||
6674 | </trans-unit> | ||
6647 | <trans-unit id="c7742322b1d3dbc921362058d1747c7ec2adbec7" datatype="html"> | 6675 | <trans-unit id="c7742322b1d3dbc921362058d1747c7ec2adbec7" datatype="html"> |
6648 | <source>Basic info</source> | 6676 | <source>Basic info</source> |
6649 | <context-group purpose="location"> | 6677 | <context-group purpose="location"> |
@@ -6840,34 +6868,6 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</source> | |||
6840 | <context context-type="linenumber">269</context> | 6868 | <context context-type="linenumber">269</context> |
6841 | </context-group> | 6869 | </context-group> |
6842 | </trans-unit> | 6870 | </trans-unit> |
6843 | <trans-unit id="2830831449226931729" datatype="html"> | ||
6844 | <source>Instance languages</source> | ||
6845 | <context-group purpose="location"> | ||
6846 | <context context-type="sourcefile">../app/+videos/+video-edit/shared/video-edit.component.ts</context> | ||
6847 | <context context-type="linenumber">169</context> | ||
6848 | </context-group> | ||
6849 | </trans-unit> | ||
6850 | <trans-unit id="40119547597591062" datatype="html"> | ||
6851 | <source>All languages</source> | ||
6852 | <context-group purpose="location"> | ||
6853 | <context context-type="sourcefile">../app/+videos/+video-edit/shared/video-edit.component.ts</context> | ||
6854 | <context context-type="linenumber">170</context> | ||
6855 | </context-group> | ||
6856 | </trans-unit> | ||
6857 | <trans-unit id="9172233176401579786" datatype="html"> | ||
6858 | <source>Scheduled</source> | ||
6859 | <context-group purpose="location"> | ||
6860 | <context context-type="sourcefile">../app/+videos/+video-edit/shared/video-edit.component.ts</context> | ||
6861 | <context context-type="linenumber">181</context> | ||
6862 | </context-group> | ||
6863 | </trans-unit> | ||
6864 | <trans-unit id="1435317307066082710" datatype="html"> | ||
6865 | <source>Hide the video until a specific date</source> | ||
6866 | <context-group purpose="location"> | ||
6867 | <context context-type="sourcefile">../app/+videos/+video-edit/shared/video-edit.component.ts</context> | ||
6868 | <context context-type="linenumber">182</context> | ||
6869 | </context-group> | ||
6870 | </trans-unit> | ||
6871 | <trans-unit id="1099619384694370156" datatype="html"> | 6871 | <trans-unit id="1099619384694370156" datatype="html"> |
6872 | <source>Video caption language is required.</source> | 6872 | <source>Video caption language is required.</source> |
6873 | <context-group purpose="location"> | 6873 | <context-group purpose="location"> |
@@ -7489,6 +7489,28 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</source> | |||
7489 | <context context-type="linenumber">14</context> | 7489 | <context context-type="linenumber">14</context> |
7490 | </context-group> | 7490 | </context-group> |
7491 | </trans-unit> | 7491 | </trans-unit> |
7492 | <trans-unit id="1190256911880544559" datatype="html"> | ||
7493 | <source>An email with the reset password instructions will be sent to <x id="PH"/>. | ||
7494 | The link will expire within 1 hour.</source> | ||
7495 | <context-group purpose="location"> | ||
7496 | <context context-type="sourcefile">../app/+login/login.component.ts</context> | ||
7497 | <context context-type="linenumber">106,107</context> | ||
7498 | </context-group> | ||
7499 | </trans-unit> | ||
7500 | <trans-unit id="1266887509445371246" datatype="html"> | ||
7501 | <source>Incorrect username or password.</source> | ||
7502 | <context-group purpose="location"> | ||
7503 | <context context-type="sourcefile">../app/+login/login.component.ts</context> | ||
7504 | <context context-type="linenumber">140</context> | ||
7505 | </context-group> | ||
7506 | </trans-unit> | ||
7507 | <trans-unit id="6974874606619467663" datatype="html"> | ||
7508 | <source>Your account is blocked.</source> | ||
7509 | <context-group purpose="location"> | ||
7510 | <context context-type="sourcefile">../app/+login/login.component.ts</context> | ||
7511 | <context context-type="linenumber">141</context> | ||
7512 | </context-group> | ||
7513 | </trans-unit> | ||
7492 | <trans-unit id="12910217fdcdbca64bee06f511639b653d5428ea" datatype="html"> | 7514 | <trans-unit id="12910217fdcdbca64bee06f511639b653d5428ea" datatype="html"> |
7493 | <source> Login </source> | 7515 | <source> Login </source> |
7494 | <context-group purpose="location"> | 7516 | <context-group purpose="location"> |
@@ -7594,28 +7616,6 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</source> | |||
7594 | <context context-type="linenumber">91,92</context> | 7616 | <context context-type="linenumber">91,92</context> |
7595 | </context-group> | 7617 | </context-group> |
7596 | </trans-unit> | 7618 | </trans-unit> |
7597 | <trans-unit id="1190256911880544559" datatype="html"> | ||
7598 | <source>An email with the reset password instructions will be sent to <x id="PH"/>. | ||
7599 | The link will expire within 1 hour.</source> | ||
7600 | <context-group purpose="location"> | ||
7601 | <context context-type="sourcefile">../app/+login/login.component.ts</context> | ||
7602 | <context context-type="linenumber">106,107</context> | ||
7603 | </context-group> | ||
7604 | </trans-unit> | ||
7605 | <trans-unit id="1266887509445371246" datatype="html"> | ||
7606 | <source>Incorrect username or password.</source> | ||
7607 | <context-group purpose="location"> | ||
7608 | <context context-type="sourcefile">../app/+login/login.component.ts</context> | ||
7609 | <context context-type="linenumber">140</context> | ||
7610 | </context-group> | ||
7611 | </trans-unit> | ||
7612 | <trans-unit id="6974874606619467663" datatype="html"> | ||
7613 | <source>Your account is blocked.</source> | ||
7614 | <context-group purpose="location"> | ||
7615 | <context context-type="sourcefile">../app/+login/login.component.ts</context> | ||
7616 | <context context-type="linenumber">141</context> | ||
7617 | </context-group> | ||
7618 | </trans-unit> | ||
7619 | <trans-unit id="aef5c45fb9c725573d20a6283492e6b80fd2ae96" datatype="html"> | 7619 | <trans-unit id="aef5c45fb9c725573d20a6283492e6b80fd2ae96" datatype="html"> |
7620 | <source>Change the language</source> | 7620 | <source>Change the language</source> |
7621 | <context-group purpose="location"> | 7621 | <context-group purpose="location"> |
@@ -7686,200 +7686,221 @@ The link will expire within 1 hour.</source> | |||
7686 | <context context-type="linenumber">354</context> | 7686 | <context context-type="linenumber">354</context> |
7687 | </context-group> | 7687 | </context-group> |
7688 | </trans-unit> | 7688 | </trans-unit> |
7689 | <trans-unit id="f4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8" datatype="html"> | 7689 | <trans-unit id="ngb.alert.close" datatype="html"> |
7690 | <source>Close</source> | 7690 | <source>Close</source> |
7691 | <context-group purpose="location"> | 7691 | <context-group purpose="location"> |
7692 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 7692 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/alert/alert.ts</context> |
7693 | <context context-type="linenumber">1</context> | 7693 | <context context-type="linenumber">74</context> |
7694 | </context-group> | 7694 | </context-group> |
7695 | </trans-unit> | 7695 | </trans-unit> |
7696 | <trans-unit id="680d5c75b7fd8d37961083608b9fcdc4167b4c43" datatype="html"> | 7696 | <trans-unit id="ngb.carousel.previous" datatype="html"> |
7697 | <source>Previous</source> | 7697 | <source>Previous</source> |
7698 | <context-group purpose="location"> | 7698 | <context-group purpose="location"> |
7699 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 7699 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> |
7700 | <context context-type="linenumber">1</context> | 7700 | <context context-type="linenumber">349</context> |
7701 | </context-group> | 7701 | </context-group> |
7702 | </trans-unit> | 7702 | </trans-unit> |
7703 | <trans-unit id="f732c304c7433e5a83ffcd862c3dce709a0f4982" datatype="html"> | 7703 | <trans-unit id="ngb.carousel.next" datatype="html"> |
7704 | <source>Next</source> | 7704 | <source>Next</source> |
7705 | <context-group purpose="location"> | 7705 | <context-group purpose="location"> |
7706 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 7706 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> |
7707 | <context context-type="linenumber">1</context> | 7707 | <context context-type="linenumber">349</context> |
7708 | </context-group> | 7708 | </context-group> |
7709 | </trans-unit> | 7709 | </trans-unit> |
7710 | <trans-unit id="c3b08b07b5ab98e7cdcf18df39355690ab7d3884" datatype="html"> | 7710 | <trans-unit id="ngb.datepicker.previous-month" datatype="html"> |
7711 | <source>Previous month</source> | 7711 | <source>Previous month</source> |
7712 | <context-group purpose="location"> | 7712 | <context-group purpose="location"> |
7713 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 7713 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation.ts</context> |
7714 | <context context-type="linenumber">1</context> | 7714 | <context context-type="linenumber">69</context> |
7715 | </context-group> | 7715 | </context-group> |
7716 | </trans-unit> | 7716 | </trans-unit> |
7717 | <trans-unit id="4bd046985cfe13040d5ef0cd881edce0968a111a" datatype="html"> | 7717 | <trans-unit id="ngb.datepicker.next-month" datatype="html"> |
7718 | <source>Next month</source> | 7718 | <source>Next month</source> |
7719 | <context-group purpose="location"> | 7719 | <context-group purpose="location"> |
7720 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 7720 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-month.ts</context> |
7721 | <context context-type="linenumber">1</context> | 7721 | <context context-type="linenumber">72</context> |
7722 | </context-group> | 7722 | </context-group> |
7723 | </trans-unit> | 7723 | </trans-unit> |
7724 | <trans-unit id="1dbc84807f35518112f62e5775d1daebd3d8462b" datatype="html"> | 7724 | <trans-unit id="ngb.datepicker.select-month" datatype="html"> |
7725 | <source>Select month</source> | 7725 | <source>Select month</source> |
7726 | <context-group purpose="location"> | 7726 | <context-group purpose="location"> |
7727 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 7727 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> |
7728 | <context context-type="linenumber">1</context> | 7728 | <context context-type="linenumber">74</context> |
7729 | </context-group> | 7729 | </context-group> |
7730 | </trans-unit> | 7730 | </trans-unit> |
7731 | <trans-unit id="8ceb09d002bf0c5d1cac171dfbffe1805d2b3962" datatype="html"> | 7731 | <trans-unit id="ngb.datepicker.select-year" datatype="html"> |
7732 | <source>Select year</source> | 7732 | <source>Select year</source> |
7733 | <context-group purpose="location"> | 7733 | <context-group purpose="location"> |
7734 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 7734 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> |
7735 | <context context-type="linenumber">1</context> | 7735 | <context context-type="linenumber">74</context> |
7736 | </context-group> | 7736 | </context-group> |
7737 | </trans-unit> | 7737 | </trans-unit> |
7738 | <trans-unit id="656506dfd46380956a655f919f1498d018f75ca0" datatype="html"> | 7738 | <trans-unit id="ngb.pagination.first" datatype="html"> |
7739 | <source>««</source> | 7739 | <source>««</source> |
7740 | <context-group purpose="location"> | 7740 | <context-group purpose="location"> |
7741 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 7741 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> |
7742 | <context context-type="linenumber">1</context> | 7742 | <context context-type="linenumber">404</context> |
7743 | </context-group> | 7743 | </context-group> |
7744 | </trans-unit> | 7744 | </trans-unit> |
7745 | <trans-unit id="6e52b6ee77a4848d899dd21b591c6fd499e3aef3" datatype="html"> | 7745 | <trans-unit id="ngb.pagination.previous" datatype="html"> |
7746 | <source>«</source> | 7746 | <source>«</source> |
7747 | <context-group purpose="location"> | 7747 | <context-group purpose="location"> |
7748 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 7748 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> |
7749 | <context context-type="linenumber">1</context> | 7749 | <context context-type="linenumber">404</context> |
7750 | </context-group> | 7750 | </context-group> |
7751 | </trans-unit> | 7751 | </trans-unit> |
7752 | <trans-unit id="ba9cbb4ff311464308a3627e4f1c3345d9fe6d7d" datatype="html"> | 7752 | <trans-unit id="ngb.pagination.next" datatype="html"> |
7753 | <source>»</source> | 7753 | <source>»</source> |
7754 | <context-group purpose="location"> | 7754 | <context-group purpose="location"> |
7755 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 7755 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> |
7756 | <context context-type="linenumber">1</context> | 7756 | <context context-type="linenumber">404</context> |
7757 | </context-group> | 7757 | </context-group> |
7758 | </trans-unit> | 7758 | </trans-unit> |
7759 | <trans-unit id="49f27a460bc97e7e00be5b37098bfa79884fc7d9" datatype="html"> | 7759 | <trans-unit id="ngb.pagination.last" datatype="html"> |
7760 | <source>»»</source> | 7760 | <source>»»</source> |
7761 | <context-group purpose="location"> | 7761 | <context-group purpose="location"> |
7762 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 7762 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> |
7763 | <context context-type="linenumber">1</context> | 7763 | <context context-type="linenumber">404</context> |
7764 | </context-group> | 7764 | </context-group> |
7765 | </trans-unit> | 7765 | </trans-unit> |
7766 | <trans-unit id="f2f852318759c6396b5d3d17031d53817d7b38cc" datatype="html"> | 7766 | <trans-unit id="ngb.pagination.first-aria" datatype="html"> |
7767 | <source>First</source> | 7767 | <source>First</source> |
7768 | <context-group purpose="location"> | 7768 | <context-group purpose="location"> |
7769 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 7769 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> |
7770 | <context context-type="linenumber">1</context> | 7770 | <context context-type="linenumber">404</context> |
7771 | </context-group> | 7771 | </context-group> |
7772 | </trans-unit> | 7772 | </trans-unit> |
7773 | <trans-unit id="5c729788ba138508aca1bec050b610f7bf81db3e" datatype="html"> | 7773 | <trans-unit id="ngb.pagination.previous-aria" datatype="html"> |
7774 | <source>Previous</source> | ||
7775 | <context-group purpose="location"> | ||
7776 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
7777 | <context context-type="linenumber">404</context> | ||
7778 | </context-group> | ||
7779 | </trans-unit> | ||
7780 | <trans-unit id="ngb.pagination.next-aria" datatype="html"> | ||
7781 | <source>Next</source> | ||
7782 | <context-group purpose="location"> | ||
7783 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
7784 | <context context-type="linenumber">404</context> | ||
7785 | </context-group> | ||
7786 | </trans-unit> | ||
7787 | <trans-unit id="ngb.pagination.last-aria" datatype="html"> | ||
7774 | <source>Last</source> | 7788 | <source>Last</source> |
7775 | <context-group purpose="location"> | 7789 | <context-group purpose="location"> |
7776 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 7790 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> |
7777 | <context context-type="linenumber">1</context> | 7791 | <context context-type="linenumber">404</context> |
7778 | </context-group> | 7792 | </context-group> |
7779 | </trans-unit> | 7793 | </trans-unit> |
7780 | <trans-unit id="f8e9a947b9db4252c0e9905765338712f2fd032f" datatype="html"> | 7794 | <trans-unit id="ngb.progressbar.value" datatype="html"> |
7781 | <source><x id="INTERPOLATION"/></source> | 7795 | <source><x id="INTERPOLATION"/></source> |
7782 | <context-group purpose="location"> | 7796 | <context-group purpose="location"> |
7783 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 7797 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/progressbar/progressbar.ts</context> |
7784 | <context context-type="linenumber">1</context> | 7798 | <context context-type="linenumber">101</context> |
7785 | </context-group> | 7799 | </context-group> |
7786 | </trans-unit> | 7800 | </trans-unit> |
7787 | <trans-unit id="ce676ab1d6d98f85c836381cf100a4a91ef95a1f" datatype="html"> | 7801 | <trans-unit id="ngb.timepicker.HH" datatype="html"> |
7788 | <source>HH</source> | 7802 | <source>HH</source> |
7789 | <context-group purpose="location"> | 7803 | <context-group purpose="location"> |
7790 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 7804 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> |
7791 | <context context-type="linenumber">1</context> | 7805 | <context context-type="linenumber">296</context> |
7792 | </context-group> | 7806 | </context-group> |
7793 | </trans-unit> | 7807 | </trans-unit> |
7794 | <trans-unit id="3bbce5fef7e1151da052a4e529453edb340e3912" datatype="html"> | 7808 | <trans-unit id="ngb.timepicker.hours" datatype="html"> |
7795 | <source>Hours</source> | 7809 | <source>Hours</source> |
7796 | <context-group purpose="location"> | 7810 | <context-group purpose="location"> |
7797 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 7811 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> |
7798 | <context context-type="linenumber">1</context> | 7812 | <context context-type="linenumber">296</context> |
7799 | </context-group> | 7813 | </context-group> |
7800 | </trans-unit> | 7814 | </trans-unit> |
7801 | <trans-unit id="72c8edf6a50068a05bde70991e36b1e881f4ca54" datatype="html"> | 7815 | <trans-unit id="ngb.timepicker.MM" datatype="html"> |
7802 | <source>MM</source> | 7816 | <source>MM</source> |
7803 | <context-group purpose="location"> | 7817 | <context-group purpose="location"> |
7804 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 7818 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> |
7805 | <context context-type="linenumber">1</context> | 7819 | <context context-type="linenumber">296</context> |
7806 | </context-group> | 7820 | </context-group> |
7807 | </trans-unit> | 7821 | </trans-unit> |
7808 | <trans-unit id="41e62daa962947c0d23ded0981975d1bddf0bf38" datatype="html"> | 7822 | <trans-unit id="ngb.timepicker.minutes" datatype="html"> |
7809 | <source>Minutes</source> | 7823 | <source>Minutes</source> |
7810 | <context-group purpose="location"> | 7824 | <context-group purpose="location"> |
7811 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 7825 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> |
7812 | <context context-type="linenumber">1</context> | 7826 | <context context-type="linenumber">296</context> |
7813 | </context-group> | 7827 | </context-group> |
7814 | </trans-unit> | 7828 | </trans-unit> |
7815 | <trans-unit id="cb74bc1d625a6c1742f0d7d47306cf495780c218" datatype="html"> | 7829 | <trans-unit id="ngb.timepicker.increment-hours" datatype="html"> |
7816 | <source>Increment hours</source> | 7830 | <source>Increment hours</source> |
7817 | <context-group purpose="location"> | 7831 | <context-group purpose="location"> |
7818 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 7832 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> |
7819 | <context context-type="linenumber">1</context> | 7833 | <context context-type="linenumber">296</context> |
7820 | </context-group> | 7834 | </context-group> |
7821 | </trans-unit> | 7835 | </trans-unit> |
7822 | <trans-unit id="147c7a19429da7d999e247d22e33fee370b1691b" datatype="html"> | 7836 | <trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> |
7823 | <source>Decrement hours</source> | 7837 | <source>Decrement hours</source> |
7824 | <context-group purpose="location"> | 7838 | <context-group purpose="location"> |
7825 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 7839 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> |
7826 | <context context-type="linenumber">1</context> | 7840 | <context context-type="linenumber">296</context> |
7827 | </context-group> | 7841 | </context-group> |
7828 | </trans-unit> | 7842 | </trans-unit> |
7829 | <trans-unit id="f5a4a3bc05e053f6732475d0e74875ec01c3a348" datatype="html"> | 7843 | <trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> |
7830 | <source>Increment minutes</source> | 7844 | <source>Increment minutes</source> |
7831 | <context-group purpose="location"> | 7845 | <context-group purpose="location"> |
7832 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 7846 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> |
7833 | <context context-type="linenumber">1</context> | 7847 | <context context-type="linenumber">296</context> |
7834 | </context-group> | 7848 | </context-group> |
7835 | </trans-unit> | 7849 | </trans-unit> |
7836 | <trans-unit id="c1a6899e529c096da5b660385d4e77fe1f7ad271" datatype="html"> | 7850 | <trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> |
7837 | <source>Decrement minutes</source> | 7851 | <source>Decrement minutes</source> |
7838 | <context-group purpose="location"> | 7852 | <context-group purpose="location"> |
7839 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 7853 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> |
7840 | <context context-type="linenumber">1</context> | 7854 | <context context-type="linenumber">296</context> |
7841 | </context-group> | 7855 | </context-group> |
7842 | </trans-unit> | 7856 | </trans-unit> |
7843 | <trans-unit id="ebe38d36a40a2383c5fefa9b4608ffbda08bd4a3" datatype="html"> | 7857 | <trans-unit id="ngb.timepicker.SS" datatype="html"> |
7844 | <source>SS</source> | 7858 | <source>SS</source> |
7845 | <context-group purpose="location"> | 7859 | <context-group purpose="location"> |
7846 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 7860 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> |
7847 | <context context-type="linenumber">1</context> | 7861 | <context context-type="linenumber">296</context> |
7848 | </context-group> | 7862 | </context-group> |
7849 | </trans-unit> | 7863 | </trans-unit> |
7850 | <trans-unit id="4f2ed9e71a7c981db3e50ae2fedb28aff2ec4e6c" datatype="html"> | 7864 | <trans-unit id="ngb.timepicker.seconds" datatype="html"> |
7851 | <source>Seconds</source> | 7865 | <source>Seconds</source> |
7852 | <context-group purpose="location"> | 7866 | <context-group purpose="location"> |
7853 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 7867 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> |
7854 | <context context-type="linenumber">1</context> | 7868 | <context context-type="linenumber">296</context> |
7855 | </context-group> | 7869 | </context-group> |
7856 | </trans-unit> | 7870 | </trans-unit> |
7857 | <trans-unit id="912322ecee7d659d04dcf494a70e22e49d334b26" datatype="html"> | 7871 | <trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> |
7858 | <source>Increment seconds</source> | 7872 | <source>Increment seconds</source> |
7859 | <context-group purpose="location"> | 7873 | <context-group purpose="location"> |
7860 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 7874 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> |
7861 | <context context-type="linenumber">1</context> | 7875 | <context context-type="linenumber">296</context> |
7862 | </context-group> | 7876 | </context-group> |
7863 | </trans-unit> | 7877 | </trans-unit> |
7864 | <trans-unit id="5db47ac104294243a70eb9124fbea9d0004ddf69" datatype="html"> | 7878 | <trans-unit id="ngb.timepicker.decrement-seconds" datatype="html"> |
7865 | <source>Decrement seconds</source> | 7879 | <source>Decrement seconds</source> |
7866 | <context-group purpose="location"> | 7880 | <context-group purpose="location"> |
7867 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 7881 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> |
7868 | <context context-type="linenumber">1</context> | 7882 | <context context-type="linenumber">296</context> |
7869 | </context-group> | 7883 | </context-group> |
7870 | </trans-unit> | 7884 | </trans-unit> |
7871 | <trans-unit id="8d6e691e10306c1b34c6b26805151aaea320ef7f" datatype="html"> | 7885 | <trans-unit id="ngb.timepicker.PM" datatype="html"> |
7872 | <source><x id="INTERPOLATION"/></source> | 7886 | <source><x id="INTERPOLATION"/></source> |
7873 | <context-group purpose="location"> | 7887 | <context-group purpose="location"> |
7874 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 7888 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> |
7875 | <context context-type="linenumber">1</context> | 7889 | <context context-type="linenumber">296</context> |
7876 | </context-group> | 7890 | </context-group> |
7877 | </trans-unit> | 7891 | </trans-unit> |
7878 | <trans-unit id="69a1f176a93998876952adac57c3bc3863b6105e" datatype="html"> | 7892 | <trans-unit id="ngb.timepicker.AM" datatype="html"> |
7879 | <source><x id="INTERPOLATION"/></source> | 7893 | <source><x id="INTERPOLATION"/></source> |
7880 | <context-group purpose="location"> | 7894 | <context-group purpose="location"> |
7881 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 7895 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> |
7882 | <context context-type="linenumber">1</context> | 7896 | <context context-type="linenumber">296</context> |
7897 | </context-group> | ||
7898 | </trans-unit> | ||
7899 | <trans-unit id="ngb.toast.close-aria" datatype="html"> | ||
7900 | <source>Close</source> | ||
7901 | <context-group purpose="location"> | ||
7902 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/toast/toast.ts</context> | ||
7903 | <context context-type="linenumber">137</context> | ||
7883 | </context-group> | 7904 | </context-group> |
7884 | </trans-unit> | 7905 | </trans-unit> |
7885 | <trans-unit id="9082008222523034483" datatype="html"> | 7906 | <trans-unit id="9082008222523034483" datatype="html"> |
@@ -7931,6 +7952,13 @@ The link will expire within 1 hour.</source> | |||
7931 | <context context-type="linenumber">85</context> | 7952 | <context context-type="linenumber">85</context> |
7932 | </context-group> | 7953 | </context-group> |
7933 | </trans-unit> | 7954 | </trans-unit> |
7955 | <trans-unit id="4776289814033837037" datatype="html"> | ||
7956 | <source>Interface settings updated.</source> | ||
7957 | <context-group purpose="location"> | ||
7958 | <context context-type="sourcefile">../app/shared/shared-user-settings/user-interface-settings.component.ts</context> | ||
7959 | <context context-type="linenumber">74</context> | ||
7960 | </context-group> | ||
7961 | </trans-unit> | ||
7934 | <trans-unit id="2fb6d9783b2c3ce93df9cee3542cda87aa60a808" datatype="html"> | 7962 | <trans-unit id="2fb6d9783b2c3ce93df9cee3542cda87aa60a808" datatype="html"> |
7935 | <source>instance default</source> | 7963 | <source>instance default</source> |
7936 | <context-group purpose="location"> | 7964 | <context-group purpose="location"> |
@@ -7945,13 +7973,6 @@ The link will expire within 1 hour.</source> | |||
7945 | <context context-type="linenumber">9</context> | 7973 | <context context-type="linenumber">9</context> |
7946 | </context-group> | 7974 | </context-group> |
7947 | </trans-unit> | 7975 | </trans-unit> |
7948 | <trans-unit id="4776289814033837037" datatype="html"> | ||
7949 | <source>Interface settings updated.</source> | ||
7950 | <context-group purpose="location"> | ||
7951 | <context context-type="sourcefile">../app/shared/shared-user-settings/user-interface-settings.component.ts</context> | ||
7952 | <context context-type="linenumber">74</context> | ||
7953 | </context-group> | ||
7954 | </trans-unit> | ||
7955 | <trans-unit id="5cf92a1d527e65908c75633e8484cdd3b6d16b9b" datatype="html"> | 7976 | <trans-unit id="5cf92a1d527e65908c75633e8484cdd3b6d16b9b" datatype="html"> |
7956 | <source>Welcome to PeerTube, dear administrator!</source> | 7977 | <source>Welcome to PeerTube, dear administrator!</source> |
7957 | <context-group purpose="location"> | 7978 | <context-group purpose="location"> |
@@ -8085,6 +8106,13 @@ The link will expire within 1 hour.</source> | |||
8085 | <context context-type="linenumber">33</context> | 8106 | <context context-type="linenumber">33</context> |
8086 | </context-group> | 8107 | </context-group> |
8087 | </trans-unit> | 8108 | </trans-unit> |
8109 | <trans-unit id="f4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8" datatype="html"> | ||
8110 | <source>Close</source> | ||
8111 | <context-group purpose="location"> | ||
8112 | <context context-type="sourcefile">../app/modal/instance-config-warning-modal.component.html</context> | ||
8113 | <context context-type="linenumber">38</context> | ||
8114 | </context-group> | ||
8115 | </trans-unit> | ||
8088 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> | 8116 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> |
8089 | <source> Configure </source> | 8117 | <source> Configure </source> |
8090 | <context-group purpose="location"> | 8118 | <context-group purpose="location"> |
@@ -8428,13 +8456,6 @@ The link will expire within 1 hour.</source> | |||
8428 | <context context-type="linenumber">11</context> | 8456 | <context context-type="linenumber">11</context> |
8429 | </context-group> | 8457 | </context-group> |
8430 | </trans-unit> | 8458 | </trans-unit> |
8431 | <trans-unit id="be24dae69c0d0605237d6dd638b172a42a88851e" datatype="html"> | ||
8432 | <source>No items found</source> | ||
8433 | <context-group purpose="location"> | ||
8434 | <context context-type="sourcefile">../app/shared/shared-forms/select/select-checkbox.component.html</context> | ||
8435 | <context context-type="linenumber">14</context> | ||
8436 | </context-group> | ||
8437 | </trans-unit> | ||
8438 | <trans-unit id="6708273825233539746" datatype="html"> | 8459 | <trans-unit id="6708273825233539746" datatype="html"> |
8439 | <source>Add a new option</source> | 8460 | <source>Add a new option</source> |
8440 | <context-group purpose="location"> | 8461 | <context-group purpose="location"> |
@@ -8442,6 +8463,13 @@ The link will expire within 1 hour.</source> | |||
8442 | <context context-type="linenumber">28</context> | 8463 | <context context-type="linenumber">28</context> |
8443 | </context-group> | 8464 | </context-group> |
8444 | </trans-unit> | 8465 | </trans-unit> |
8466 | <trans-unit id="be24dae69c0d0605237d6dd638b172a42a88851e" datatype="html"> | ||
8467 | <source>No items found</source> | ||
8468 | <context-group purpose="location"> | ||
8469 | <context context-type="sourcefile">../app/shared/shared-forms/select/select-checkbox.component.html</context> | ||
8470 | <context context-type="linenumber">14</context> | ||
8471 | </context-group> | ||
8472 | </trans-unit> | ||
8445 | <trans-unit id="7916647920967632052" datatype="html"> | 8473 | <trans-unit id="7916647920967632052" datatype="html"> |
8446 | <source>max size</source> | 8474 | <source>max size</source> |
8447 | <context-group purpose="location"> | 8475 | <context-group purpose="location"> |
@@ -8547,6 +8575,13 @@ The link will expire within 1 hour.</source> | |||
8547 | <context context-type="linenumber">21</context> | 8575 | <context context-type="linenumber">21</context> |
8548 | </context-group> | 8576 | </context-group> |
8549 | </trans-unit> | 8577 | </trans-unit> |
8578 | <trans-unit id="1209500590333005801" datatype="html"> | ||
8579 | <source><x id="PH"/> (account page)</source> | ||
8580 | <context-group purpose="location"> | ||
8581 | <context context-type="sourcefile">../app/shared/shared-main/account/avatar.component.ts</context> | ||
8582 | <context context-type="linenumber">19</context> | ||
8583 | </context-group> | ||
8584 | </trans-unit> | ||
8550 | <trans-unit id="f50983ee112befc1afddea5c570283db67e20fed" datatype="html"> | 8585 | <trans-unit id="f50983ee112befc1afddea5c570283db67e20fed" datatype="html"> |
8551 | <source>Channel avatar</source> | 8586 | <source>Channel avatar</source> |
8552 | <context-group purpose="location"> | 8587 | <context-group purpose="location"> |
@@ -8561,13 +8596,6 @@ The link will expire within 1 hour.</source> | |||
8561 | <context context-type="linenumber">7</context> | 8596 | <context context-type="linenumber">7</context> |
8562 | </context-group> | 8597 | </context-group> |
8563 | </trans-unit> | 8598 | </trans-unit> |
8564 | <trans-unit id="1209500590333005801" datatype="html"> | ||
8565 | <source><x id="PH"/> (account page)</source> | ||
8566 | <context-group purpose="location"> | ||
8567 | <context context-type="sourcefile">../app/shared/shared-main/account/avatar.component.ts</context> | ||
8568 | <context context-type="linenumber">19</context> | ||
8569 | </context-group> | ||
8570 | </trans-unit> | ||
8571 | <trans-unit id="3b79d221458541611e8508d3551dd1ddd76b49d9" datatype="html"> | 8599 | <trans-unit id="3b79d221458541611e8508d3551dd1ddd76b49d9" datatype="html"> |
8572 | <source>Display settings</source> | 8600 | <source>Display settings</source> |
8573 | <context-group purpose="location"> | 8601 | <context-group purpose="location"> |
@@ -8603,13 +8631,6 @@ The link will expire within 1 hour.</source> | |||
8603 | <context context-type="linenumber">39</context> | 8631 | <context context-type="linenumber">39</context> |
8604 | </context-group> | 8632 | </context-group> |
8605 | </trans-unit> | 8633 | </trans-unit> |
8606 | <trans-unit id="0fab2b1e25b97842c52a6b95f139bda7e416fde6" datatype="html"> | ||
8607 | <source>Close this message</source> | ||
8608 | <context-group purpose="location"> | ||
8609 | <context context-type="sourcefile">../app/app.component.html</context> | ||
8610 | <context context-type="linenumber">34</context> | ||
8611 | </context-group> | ||
8612 | </trans-unit> | ||
8613 | <trans-unit id="7709367721354853232" datatype="html"> | 8634 | <trans-unit id="7709367721354853232" datatype="html"> |
8614 | <source>Focus the search bar</source> | 8635 | <source>Focus the search bar</source> |
8615 | <context-group purpose="location"> | 8636 | <context-group purpose="location"> |
@@ -8659,6 +8680,48 @@ The link will expire within 1 hour.</source> | |||
8659 | <context context-type="linenumber">319</context> | 8680 | <context context-type="linenumber">319</context> |
8660 | </context-group> | 8681 | </context-group> |
8661 | </trans-unit> | 8682 | </trans-unit> |
8683 | <trans-unit id="0fab2b1e25b97842c52a6b95f139bda7e416fde6" datatype="html"> | ||
8684 | <source>Close this message</source> | ||
8685 | <context-group purpose="location"> | ||
8686 | <context context-type="sourcefile">../app/app.component.html</context> | ||
8687 | <context context-type="linenumber">34</context> | ||
8688 | </context-group> | ||
8689 | </trans-unit> | ||
8690 | <trans-unit id="5633144232269377096" datatype="html"> | ||
8691 | <source>hide</source> | ||
8692 | <context-group purpose="location"> | ||
8693 | <context context-type="sourcefile">../app/menu/menu.component.ts</context> | ||
8694 | <context context-type="linenumber">121</context> | ||
8695 | </context-group> | ||
8696 | </trans-unit> | ||
8697 | <trans-unit id="8603861867909474404" datatype="html"> | ||
8698 | <source>blur</source> | ||
8699 | <context-group purpose="location"> | ||
8700 | <context context-type="sourcefile">../app/menu/menu.component.ts</context> | ||
8701 | <context context-type="linenumber">124</context> | ||
8702 | </context-group> | ||
8703 | </trans-unit> | ||
8704 | <trans-unit id="4534458451100881847" datatype="html"> | ||
8705 | <source>display</source> | ||
8706 | <context-group purpose="location"> | ||
8707 | <context context-type="sourcefile">../app/menu/menu.component.ts</context> | ||
8708 | <context context-type="linenumber">127</context> | ||
8709 | </context-group> | ||
8710 | </trans-unit> | ||
8711 | <trans-unit id="4467323362722952678" datatype="html"> | ||
8712 | <source>Unknown</source> | ||
8713 | <context-group purpose="location"> | ||
8714 | <context context-type="sourcefile">../app/menu/menu.component.ts</context> | ||
8715 | <context context-type="linenumber">193</context> | ||
8716 | </context-group> | ||
8717 | </trans-unit> | ||
8718 | <trans-unit id="7939914198003891823" datatype="html"> | ||
8719 | <source>any language</source> | ||
8720 | <context-group purpose="location"> | ||
8721 | <context context-type="sourcefile">../app/menu/menu.component.ts</context> | ||
8722 | <context context-type="linenumber">229</context> | ||
8723 | </context-group> | ||
8724 | </trans-unit> | ||
8662 | <trans-unit id="411ca58f59b00246e15b161e07409df55b5eb6db" datatype="html"> | 8725 | <trans-unit id="411ca58f59b00246e15b161e07409df55b5eb6db" datatype="html"> |
8663 | <source>Discover</source> | 8726 | <source>Discover</source> |
8664 | <context-group purpose="location"> | 8727 | <context-group purpose="location"> |
@@ -8890,41 +8953,6 @@ The link will expire within 1 hour.</source> | |||
8890 | <context context-type="linenumber">162</context> | 8953 | <context context-type="linenumber">162</context> |
8891 | </context-group> | 8954 | </context-group> |
8892 | </trans-unit> | 8955 | </trans-unit> |
8893 | <trans-unit id="5633144232269377096" datatype="html"> | ||
8894 | <source>hide</source> | ||
8895 | <context-group purpose="location"> | ||
8896 | <context context-type="sourcefile">../app/menu/menu.component.ts</context> | ||
8897 | <context context-type="linenumber">121</context> | ||
8898 | </context-group> | ||
8899 | </trans-unit> | ||
8900 | <trans-unit id="8603861867909474404" datatype="html"> | ||
8901 | <source>blur</source> | ||
8902 | <context-group purpose="location"> | ||
8903 | <context context-type="sourcefile">../app/menu/menu.component.ts</context> | ||
8904 | <context context-type="linenumber">124</context> | ||
8905 | </context-group> | ||
8906 | </trans-unit> | ||
8907 | <trans-unit id="4534458451100881847" datatype="html"> | ||
8908 | <source>display</source> | ||
8909 | <context-group purpose="location"> | ||
8910 | <context context-type="sourcefile">../app/menu/menu.component.ts</context> | ||
8911 | <context context-type="linenumber">127</context> | ||
8912 | </context-group> | ||
8913 | </trans-unit> | ||
8914 | <trans-unit id="4467323362722952678" datatype="html"> | ||
8915 | <source>Unknown</source> | ||
8916 | <context-group purpose="location"> | ||
8917 | <context context-type="sourcefile">../app/menu/menu.component.ts</context> | ||
8918 | <context context-type="linenumber">193</context> | ||
8919 | </context-group> | ||
8920 | </trans-unit> | ||
8921 | <trans-unit id="7939914198003891823" datatype="html"> | ||
8922 | <source>any language</source> | ||
8923 | <context-group purpose="location"> | ||
8924 | <context context-type="sourcefile">../app/menu/menu.component.ts</context> | ||
8925 | <context context-type="linenumber">229</context> | ||
8926 | </context-group> | ||
8927 | </trans-unit> | ||
8928 | <trans-unit id="4670312387769733978" datatype="html"> | 8956 | <trans-unit id="4670312387769733978" datatype="html"> |
8929 | <source>All unsaved data will be lost, are you sure you want to leave this page?</source> | 8957 | <source>All unsaved data will be lost, are you sure you want to leave this page?</source> |
8930 | <context-group purpose="location"> | 8958 | <context-group purpose="location"> |
@@ -8975,6 +9003,62 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8975 | <context context-type="linenumber">215</context> | 9003 | <context context-type="linenumber">215</context> |
8976 | </context-group> | 9004 | </context-group> |
8977 | </trans-unit> | 9005 | </trans-unit> |
9006 | <trans-unit id="996392855508119363" datatype="html"> | ||
9007 | <source>Hidden</source> | ||
9008 | <context-group purpose="location"> | ||
9009 | <context context-type="sourcefile">../app/shared/shared-instance/instance-features-table.component.ts</context> | ||
9010 | <context context-type="linenumber">36</context> | ||
9011 | </context-group> | ||
9012 | </trans-unit> | ||
9013 | <trans-unit id="2173989454916398137" datatype="html"> | ||
9014 | <source>Blurred with confirmation request</source> | ||
9015 | <context-group purpose="location"> | ||
9016 | <context context-type="sourcefile">../app/shared/shared-instance/instance-features-table.component.ts</context> | ||
9017 | <context context-type="linenumber">37</context> | ||
9018 | </context-group> | ||
9019 | </trans-unit> | ||
9020 | <trans-unit id="8929218224642530466" datatype="html"> | ||
9021 | <source>Displayed</source> | ||
9022 | <context-group purpose="location"> | ||
9023 | <context context-type="sourcefile">../app/shared/shared-instance/instance-features-table.component.ts</context> | ||
9024 | <context context-type="linenumber">38</context> | ||
9025 | </context-group> | ||
9026 | </trans-unit> | ||
9027 | <trans-unit id="6291055174438137560" datatype="html"> | ||
9028 | <source>~ 1 minute</source> | ||
9029 | <context-group purpose="location"> | ||
9030 | <context context-type="sourcefile">../app/shared/shared-instance/instance-features-table.component.ts</context> | ||
9031 | <context context-type="linenumber">53</context> | ||
9032 | </context-group> | ||
9033 | </trans-unit> | ||
9034 | <trans-unit id="189524047518780716" datatype="html"> | ||
9035 | <source>~ <x id="PH"/> minutes</source> | ||
9036 | <context-group purpose="location"> | ||
9037 | <context context-type="sourcefile">../app/shared/shared-instance/instance-features-table.component.ts</context> | ||
9038 | <context context-type="linenumber">55</context> | ||
9039 | </context-group> | ||
9040 | </trans-unit> | ||
9041 | <trans-unit id="6028521920505655348" datatype="html"> | ||
9042 | <source><x id="PH"/> of full HD videos</source> | ||
9043 | <context-group purpose="location"> | ||
9044 | <context context-type="sourcefile">../app/shared/shared-instance/instance-features-table.component.ts</context> | ||
9045 | <context context-type="linenumber">71</context> | ||
9046 | </context-group> | ||
9047 | </trans-unit> | ||
9048 | <trans-unit id="117588083391484998" datatype="html"> | ||
9049 | <source><x id="PH"/> of HD videos</source> | ||
9050 | <context-group purpose="location"> | ||
9051 | <context context-type="sourcefile">../app/shared/shared-instance/instance-features-table.component.ts</context> | ||
9052 | <context context-type="linenumber">72</context> | ||
9053 | </context-group> | ||
9054 | </trans-unit> | ||
9055 | <trans-unit id="6636555695556123073" datatype="html"> | ||
9056 | <source><x id="PH"/> of average quality videos</source> | ||
9057 | <context-group purpose="location"> | ||
9058 | <context context-type="sourcefile">../app/shared/shared-instance/instance-features-table.component.ts</context> | ||
9059 | <context context-type="linenumber">73</context> | ||
9060 | </context-group> | ||
9061 | </trans-unit> | ||
8978 | <trans-unit id="fa48c3ddc2ef8e40e5c317e68bc05ae62c93b0c1" datatype="html"> | 9062 | <trans-unit id="fa48c3ddc2ef8e40e5c317e68bc05ae62c93b0c1" datatype="html"> |
8979 | <source>Features found on this instance</source> | 9063 | <source>Features found on this instance</source> |
8980 | <context-group purpose="location"> | 9064 | <context-group purpose="location"> |
@@ -9073,62 +9157,6 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9073 | <context context-type="linenumber">61</context> | 9157 | <context context-type="linenumber">61</context> |
9074 | </context-group> | 9158 | </context-group> |
9075 | </trans-unit> | 9159 | </trans-unit> |
9076 | <trans-unit id="996392855508119363" datatype="html"> | ||
9077 | <source>Hidden</source> | ||
9078 | <context-group purpose="location"> | ||
9079 | <context context-type="sourcefile">../app/shared/shared-instance/instance-features-table.component.ts</context> | ||
9080 | <context context-type="linenumber">36</context> | ||
9081 | </context-group> | ||
9082 | </trans-unit> | ||
9083 | <trans-unit id="2173989454916398137" datatype="html"> | ||
9084 | <source>Blurred with confirmation request</source> | ||
9085 | <context-group purpose="location"> | ||
9086 | <context context-type="sourcefile">../app/shared/shared-instance/instance-features-table.component.ts</context> | ||
9087 | <context context-type="linenumber">37</context> | ||
9088 | </context-group> | ||
9089 | </trans-unit> | ||
9090 | <trans-unit id="8929218224642530466" datatype="html"> | ||
9091 | <source>Displayed</source> | ||
9092 | <context-group purpose="location"> | ||
9093 | <context context-type="sourcefile">../app/shared/shared-instance/instance-features-table.component.ts</context> | ||
9094 | <context context-type="linenumber">38</context> | ||
9095 | </context-group> | ||
9096 | </trans-unit> | ||
9097 | <trans-unit id="6291055174438137560" datatype="html"> | ||
9098 | <source>~ 1 minute</source> | ||
9099 | <context-group purpose="location"> | ||
9100 | <context context-type="sourcefile">../app/shared/shared-instance/instance-features-table.component.ts</context> | ||
9101 | <context context-type="linenumber">53</context> | ||
9102 | </context-group> | ||
9103 | </trans-unit> | ||
9104 | <trans-unit id="189524047518780716" datatype="html"> | ||
9105 | <source>~ <x id="PH"/> minutes</source> | ||
9106 | <context-group purpose="location"> | ||
9107 | <context context-type="sourcefile">../app/shared/shared-instance/instance-features-table.component.ts</context> | ||
9108 | <context context-type="linenumber">55</context> | ||
9109 | </context-group> | ||
9110 | </trans-unit> | ||
9111 | <trans-unit id="6028521920505655348" datatype="html"> | ||
9112 | <source><x id="PH"/> of full HD videos</source> | ||
9113 | <context-group purpose="location"> | ||
9114 | <context context-type="sourcefile">../app/shared/shared-instance/instance-features-table.component.ts</context> | ||
9115 | <context context-type="linenumber">71</context> | ||
9116 | </context-group> | ||
9117 | </trans-unit> | ||
9118 | <trans-unit id="117588083391484998" datatype="html"> | ||
9119 | <source><x id="PH"/> of HD videos</source> | ||
9120 | <context-group purpose="location"> | ||
9121 | <context context-type="sourcefile">../app/shared/shared-instance/instance-features-table.component.ts</context> | ||
9122 | <context context-type="linenumber">72</context> | ||
9123 | </context-group> | ||
9124 | </trans-unit> | ||
9125 | <trans-unit id="6636555695556123073" datatype="html"> | ||
9126 | <source><x id="PH"/> of average quality videos</source> | ||
9127 | <context-group purpose="location"> | ||
9128 | <context context-type="sourcefile">../app/shared/shared-instance/instance-features-table.component.ts</context> | ||
9129 | <context context-type="linenumber">73</context> | ||
9130 | </context-group> | ||
9131 | </trans-unit> | ||
9132 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771" datatype="html"> | 9160 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771" datatype="html"> |
9133 | <source>View your notifications</source> | 9161 | <source>View your notifications</source> |
9134 | <context-group purpose="location"> | 9162 | <context-group purpose="location"> |
@@ -9298,6 +9326,41 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9298 | <context context-type="linenumber">23</context> | 9326 | <context context-type="linenumber">23</context> |
9299 | </context-group> | 9327 | </context-group> |
9300 | </trans-unit> | 9328 | </trans-unit> |
9329 | <trans-unit id="1233062525939746039" datatype="html"> | ||
9330 | <source>Unknown language</source> | ||
9331 | <context-group purpose="location"> | ||
9332 | <context context-type="sourcefile">../app/shared/shared-user-settings/user-video-settings.component.ts</context> | ||
9333 | <context context-type="linenumber">57</context> | ||
9334 | </context-group> | ||
9335 | </trans-unit> | ||
9336 | <trans-unit id="3761504852202418603" datatype="html"> | ||
9337 | <source>Too many languages are enabled. Please enable them all or stay below 20 enabled languages.</source> | ||
9338 | <context-group purpose="location"> | ||
9339 | <context context-type="sourcefile">../app/shared/shared-user-settings/user-video-settings.component.ts</context> | ||
9340 | <context context-type="linenumber">102</context> | ||
9341 | </context-group> | ||
9342 | </trans-unit> | ||
9343 | <trans-unit id="1904720062363293328" datatype="html"> | ||
9344 | <source>You need to enable at least 1 video language.</source> | ||
9345 | <context-group purpose="location"> | ||
9346 | <context context-type="sourcefile">../app/shared/shared-user-settings/user-video-settings.component.ts</context> | ||
9347 | <context context-type="linenumber">107</context> | ||
9348 | </context-group> | ||
9349 | </trans-unit> | ||
9350 | <trans-unit id="3960396487495291449" datatype="html"> | ||
9351 | <source>Video settings updated.</source> | ||
9352 | <context-group purpose="location"> | ||
9353 | <context context-type="sourcefile">../app/shared/shared-user-settings/user-video-settings.component.ts</context> | ||
9354 | <context context-type="linenumber">133</context> | ||
9355 | </context-group> | ||
9356 | </trans-unit> | ||
9357 | <trans-unit id="3326446048041727269" datatype="html"> | ||
9358 | <source>Display/Video settings updated.</source> | ||
9359 | <context-group purpose="location"> | ||
9360 | <context context-type="sourcefile">../app/shared/shared-user-settings/user-video-settings.component.ts</context> | ||
9361 | <context context-type="linenumber">140</context> | ||
9362 | </context-group> | ||
9363 | </trans-unit> | ||
9301 | <trans-unit id="20f62f24170d57b1efeb2387a0949f482cd4d129" datatype="html"> | 9364 | <trans-unit id="20f62f24170d57b1efeb2387a0949f482cd4d129" datatype="html"> |
9302 | <source>Default policy on videos containing sensitive content</source> | 9365 | <source>Default policy on videos containing sensitive content</source> |
9303 | <context-group purpose="location"> | 9366 | <context-group purpose="location"> |
@@ -9368,41 +9431,6 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9368 | <context context-type="linenumber">28</context> | 9431 | <context context-type="linenumber">28</context> |
9369 | </context-group> | 9432 | </context-group> |
9370 | </trans-unit> | 9433 | </trans-unit> |
9371 | <trans-unit id="1233062525939746039" datatype="html"> | ||
9372 | <source>Unknown language</source> | ||
9373 | <context-group purpose="location"> | ||
9374 | <context context-type="sourcefile">../app/shared/shared-user-settings/user-video-settings.component.ts</context> | ||
9375 | <context context-type="linenumber">57</context> | ||
9376 | </context-group> | ||
9377 | </trans-unit> | ||
9378 | <trans-unit id="3761504852202418603" datatype="html"> | ||
9379 | <source>Too many languages are enabled. Please enable them all or stay below 20 enabled languages.</source> | ||
9380 | <context-group purpose="location"> | ||
9381 | <context context-type="sourcefile">../app/shared/shared-user-settings/user-video-settings.component.ts</context> | ||
9382 | <context context-type="linenumber">102</context> | ||
9383 | </context-group> | ||
9384 | </trans-unit> | ||
9385 | <trans-unit id="1904720062363293328" datatype="html"> | ||
9386 | <source>You need to enable at least 1 video language.</source> | ||
9387 | <context-group purpose="location"> | ||
9388 | <context context-type="sourcefile">../app/shared/shared-user-settings/user-video-settings.component.ts</context> | ||
9389 | <context context-type="linenumber">107</context> | ||
9390 | </context-group> | ||
9391 | </trans-unit> | ||
9392 | <trans-unit id="3960396487495291449" datatype="html"> | ||
9393 | <source>Video settings updated.</source> | ||
9394 | <context-group purpose="location"> | ||
9395 | <context context-type="sourcefile">../app/shared/shared-user-settings/user-video-settings.component.ts</context> | ||
9396 | <context context-type="linenumber">133</context> | ||
9397 | </context-group> | ||
9398 | </trans-unit> | ||
9399 | <trans-unit id="3326446048041727269" datatype="html"> | ||
9400 | <source>Display/Video settings updated.</source> | ||
9401 | <context-group purpose="location"> | ||
9402 | <context context-type="sourcefile">../app/shared/shared-user-settings/user-video-settings.component.ts</context> | ||
9403 | <context context-type="linenumber">140</context> | ||
9404 | </context-group> | ||
9405 | </trans-unit> | ||
9406 | <trans-unit id="c078d4901a5fac169665947cc7a6108b94dd80c7" datatype="html"> | 9434 | <trans-unit id="c078d4901a5fac169665947cc7a6108b94dd80c7" datatype="html"> |
9407 | <source><x id="INTERPOLATION"/></source> | 9435 | <source><x id="INTERPOLATION"/></source> |
9408 | <context-group purpose="location"> | 9436 | <context-group purpose="location"> |
@@ -9487,6 +9515,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9487 | <context context-type="linenumber">119</context> | 9515 | <context context-type="linenumber">119</context> |
9488 | </context-group> | 9516 | </context-group> |
9489 | </trans-unit> | 9517 | </trans-unit> |
9518 | <trans-unit id="6810714890760227072" datatype="html"> | ||
9519 | <source>Ownership change request sent.</source> | ||
9520 | <context-group purpose="location"> | ||
9521 | <context context-type="sourcefile">../app/+my-account/my-account-videos/video-change-ownership/video-change-ownership.component.ts</context> | ||
9522 | <context context-type="linenumber">64</context> | ||
9523 | </context-group> | ||
9524 | </trans-unit> | ||
9490 | <trans-unit id="2dc22fcebf6aaa76196d2def33a827a34bf910bf" datatype="html"> | 9525 | <trans-unit id="2dc22fcebf6aaa76196d2def33a827a34bf910bf" datatype="html"> |
9491 | <source>Change ownership</source> | 9526 | <source>Change ownership</source> |
9492 | <context-group purpose="location"> | 9527 | <context-group purpose="location"> |
@@ -9501,11 +9536,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9501 | <context context-type="linenumber">10</context> | 9536 | <context context-type="linenumber">10</context> |
9502 | </context-group> | 9537 | </context-group> |
9503 | </trans-unit> | 9538 | </trans-unit> |
9504 | <trans-unit id="6810714890760227072" datatype="html"> | 9539 | <trans-unit id="6159571046971090595" datatype="html"> |
9505 | <source>Ownership change request sent.</source> | 9540 | <source>Password updated.</source> |
9506 | <context-group purpose="location"> | 9541 | <context-group purpose="location"> |
9507 | <context context-type="sourcefile">../app/+my-account/my-account-videos/video-change-ownership/video-change-ownership.component.ts</context> | 9542 | <context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts</context> |
9508 | <context context-type="linenumber">64</context> | 9543 | <context context-type="linenumber">48</context> |
9544 | </context-group> | ||
9545 | </trans-unit> | ||
9546 | <trans-unit id="853586874765134886" datatype="html"> | ||
9547 | <source>You current password is invalid.</source> | ||
9548 | <context-group purpose="location"> | ||
9549 | <context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts</context> | ||
9550 | <context context-type="linenumber">56</context> | ||
9509 | </context-group> | 9551 | </context-group> |
9510 | </trans-unit> | 9552 | </trans-unit> |
9511 | <trans-unit id="739516c2ca75843d5aec9cf0e6b3e4335c4227b9" datatype="html"> | 9553 | <trans-unit id="739516c2ca75843d5aec9cf0e6b3e4335c4227b9" datatype="html"> |
@@ -9536,18 +9578,11 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9536 | <context context-type="linenumber">23</context> | 9578 | <context context-type="linenumber">23</context> |
9537 | </context-group> | 9579 | </context-group> |
9538 | </trans-unit> | 9580 | </trans-unit> |
9539 | <trans-unit id="6159571046971090595" datatype="html"> | 9581 | <trans-unit id="3183245287221165928" datatype="html"> |
9540 | <source>Password updated.</source> | 9582 | <source>Ownership accepted</source> |
9541 | <context-group purpose="location"> | ||
9542 | <context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts</context> | ||
9543 | <context context-type="linenumber">48</context> | ||
9544 | </context-group> | ||
9545 | </trans-unit> | ||
9546 | <trans-unit id="853586874765134886" datatype="html"> | ||
9547 | <source>You current password is invalid.</source> | ||
9548 | <context-group purpose="location"> | 9583 | <context-group purpose="location"> |
9549 | <context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts</context> | 9584 | <context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-accept-ownership/my-account-accept-ownership.component.ts</context> |
9550 | <context context-type="linenumber">56</context> | 9585 | <context context-type="linenumber">64</context> |
9551 | </context-group> | 9586 | </context-group> |
9552 | </trans-unit> | 9587 | </trans-unit> |
9553 | <trans-unit id="fbc450919a486e8ed311a7e91a41987d47d83804" datatype="html"> | 9588 | <trans-unit id="fbc450919a486e8ed311a7e91a41987d47d83804" datatype="html"> |
@@ -9571,11 +9606,11 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9571 | <context context-type="linenumber">13</context> | 9606 | <context context-type="linenumber">13</context> |
9572 | </context-group> | 9607 | </context-group> |
9573 | </trans-unit> | 9608 | </trans-unit> |
9574 | <trans-unit id="3183245287221165928" datatype="html"> | 9609 | <trans-unit id="1431617394009162547" datatype="html"> |
9575 | <source>Ownership accepted</source> | 9610 | <source>Playlist <x id="PH"/> updated.</source> |
9576 | <context-group purpose="location"> | 9611 | <context-group purpose="location"> |
9577 | <context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-accept-ownership/my-account-accept-ownership.component.ts</context> | 9612 | <context context-type="sourcefile">../app/+my-account/my-account-video-playlists/my-account-video-playlist-update.component.ts</context> |
9578 | <context context-type="linenumber">64</context> | 9613 | <context context-type="linenumber">98</context> |
9579 | </context-group> | 9614 | </context-group> |
9580 | </trans-unit> | 9615 | </trans-unit> |
9581 | <trans-unit id="9d7a1c199570d42b4cc40d7886fcc7c06b0a35d2" datatype="html"> | 9616 | <trans-unit id="9d7a1c199570d42b4cc40d7886fcc7c06b0a35d2" datatype="html"> |
@@ -9606,27 +9641,6 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9606 | <context context-type="linenumber">26</context> | 9641 | <context context-type="linenumber">26</context> |
9607 | </context-group> | 9642 | </context-group> |
9608 | </trans-unit> | 9643 | </trans-unit> |
9609 | <trans-unit id="1431617394009162547" datatype="html"> | ||
9610 | <source>Playlist <x id="PH"/> updated.</source> | ||
9611 | <context-group purpose="location"> | ||
9612 | <context context-type="sourcefile">../app/+my-account/my-account-video-playlists/my-account-video-playlist-update.component.ts</context> | ||
9613 | <context context-type="linenumber">98</context> | ||
9614 | </context-group> | ||
9615 | </trans-unit> | ||
9616 | <trans-unit id="0b68f86015522b0dbd374822caefe74a62e3470f" datatype="html"> | ||
9617 | <source>Once you delete your account, there is no going back. You will be asked to confirm this action.</source> | ||
9618 | <context-group purpose="location"> | ||
9619 | <context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.html</context> | ||
9620 | <context context-type="linenumber">2</context> | ||
9621 | </context-group> | ||
9622 | </trans-unit> | ||
9623 | <trans-unit id="9a2f889dde4574a6883c853d1034e75891b28c45" datatype="html"> | ||
9624 | <source>Delete your account</source> | ||
9625 | <context-group purpose="location"> | ||
9626 | <context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.html</context> | ||
9627 | <context context-type="linenumber">4</context> | ||
9628 | </context-group> | ||
9629 | </trans-unit> | ||
9630 | <trans-unit id="5179099584732142331" datatype="html"> | 9644 | <trans-unit id="5179099584732142331" datatype="html"> |
9631 | <source>Are you sure you want to delete your account? This will delete all your data, including channels, videos and comments. Content cached by other servers and other third-parties might make longer to be deleted.</source> | 9645 | <source>Are you sure you want to delete your account? This will delete all your data, including channels, videos and comments. Content cached by other servers and other third-parties might make longer to be deleted.</source> |
9632 | <context-group purpose="location"> | 9646 | <context-group purpose="location"> |
@@ -9662,6 +9676,20 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9662 | <context context-type="linenumber">32</context> | 9676 | <context context-type="linenumber">32</context> |
9663 | </context-group> | 9677 | </context-group> |
9664 | </trans-unit> | 9678 | </trans-unit> |
9679 | <trans-unit id="0b68f86015522b0dbd374822caefe74a62e3470f" datatype="html"> | ||
9680 | <source>Once you delete your account, there is no going back. You will be asked to confirm this action.</source> | ||
9681 | <context-group purpose="location"> | ||
9682 | <context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.html</context> | ||
9683 | <context context-type="linenumber">2</context> | ||
9684 | </context-group> | ||
9685 | </trans-unit> | ||
9686 | <trans-unit id="9a2f889dde4574a6883c853d1034e75891b28c45" datatype="html"> | ||
9687 | <source>Delete your account</source> | ||
9688 | <context-group purpose="location"> | ||
9689 | <context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-danger-zone/my-account-danger-zone.component.html</context> | ||
9690 | <context context-type="linenumber">4</context> | ||
9691 | </context-group> | ||
9692 | </trans-unit> | ||
9665 | <trans-unit id="5032453707232754344" datatype="html"> | 9693 | <trans-unit id="5032453707232754344" datatype="html"> |
9666 | <source>Playlist <x id="PH"/> created.</source> | 9694 | <source>Playlist <x id="PH"/> created.</source> |
9667 | <context-group purpose="location"> | 9695 | <context-group purpose="location"> |
@@ -9683,20 +9711,6 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9683 | <context context-type="linenumber">51</context> | 9711 | <context context-type="linenumber">51</context> |
9684 | </context-group> | 9712 | </context-group> |
9685 | </trans-unit> | 9713 | </trans-unit> |
9686 | <trans-unit id="dd3b6c367381ddfa8f317b8e9b31c55368c65136" datatype="html"> | ||
9687 | <source>Activities</source> | ||
9688 | <context-group purpose="location"> | ||
9689 | <context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html</context> | ||
9690 | <context context-type="linenumber">2</context> | ||
9691 | </context-group> | ||
9692 | </trans-unit> | ||
9693 | <trans-unit id="847dffd493abbb2a5c71f3313f0eb730dd88a355" datatype="html"> | ||
9694 | <source>Web</source> | ||
9695 | <context-group purpose="location"> | ||
9696 | <context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html</context> | ||
9697 | <context context-type="linenumber">4,3</context> | ||
9698 | </context-group> | ||
9699 | </trans-unit> | ||
9700 | <trans-unit id="77907918814566205" datatype="html"> | 9714 | <trans-unit id="77907918814566205" datatype="html"> |
9701 | <source>New video from your subscriptions</source> | 9715 | <source>New video from your subscriptions</source> |
9702 | <context-group purpose="location"> | 9716 | <context-group purpose="location"> |
@@ -9802,6 +9816,20 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9802 | <context context-type="linenumber">92</context> | 9816 | <context context-type="linenumber">92</context> |
9803 | </context-group> | 9817 | </context-group> |
9804 | </trans-unit> | 9818 | </trans-unit> |
9819 | <trans-unit id="dd3b6c367381ddfa8f317b8e9b31c55368c65136" datatype="html"> | ||
9820 | <source>Activities</source> | ||
9821 | <context-group purpose="location"> | ||
9822 | <context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html</context> | ||
9823 | <context context-type="linenumber">2</context> | ||
9824 | </context-group> | ||
9825 | </trans-unit> | ||
9826 | <trans-unit id="847dffd493abbb2a5c71f3313f0eb730dd88a355" datatype="html"> | ||
9827 | <source>Web</source> | ||
9828 | <context-group purpose="location"> | ||
9829 | <context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.html</context> | ||
9830 | <context context-type="linenumber">4,3</context> | ||
9831 | </context-group> | ||
9832 | </trans-unit> | ||
9805 | <trans-unit id="e03a27ba50b0be207b4d17d044ab5ea300d70b43" datatype="html"> | 9833 | <trans-unit id="e03a27ba50b0be207b4d17d044ab5ea300d70b43" datatype="html"> |
9806 | <source>My ownership changes</source> | 9834 | <source>My ownership changes</source> |
9807 | <context-group purpose="location"> | 9835 | <context-group purpose="location"> |
@@ -9907,34 +9935,6 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9907 | <context context-type="linenumber">163</context> | 9935 | <context context-type="linenumber">163</context> |
9908 | </context-group> | 9936 | </context-group> |
9909 | </trans-unit> | 9937 | </trans-unit> |
9910 | <trans-unit id="4f953496ca94b4f83af049ff715172df2729fb79" datatype="html"> | ||
9911 | <source>My history</source> | ||
9912 | <context-group purpose="location"> | ||
9913 | <context context-type="sourcefile">../app/+my-account/my-account-history/my-account-history.component.html</context> | ||
9914 | <context context-type="linenumber">3</context> | ||
9915 | </context-group> | ||
9916 | </trans-unit> | ||
9917 | <trans-unit id="cb6fc818d4547d66ac5ea65f2c5d5cbfb6ebc04e" datatype="html"> | ||
9918 | <source>Video history</source> | ||
9919 | <context-group purpose="location"> | ||
9920 | <context context-type="sourcefile">../app/+my-account/my-account-history/my-account-history.component.html</context> | ||
9921 | <context context-type="linenumber">9</context> | ||
9922 | </context-group> | ||
9923 | </trans-unit> | ||
9924 | <trans-unit id="29c45bf49891748f930ef78b2e09857498b15131" datatype="html"> | ||
9925 | <source><x id="START_TAG_MY_GLOBAL_ICON"/><x id="CLOSE_TAG_MY_GLOBAL_ICON"/> Delete history </source> | ||
9926 | <context-group purpose="location"> | ||
9927 | <context context-type="sourcefile">../app/+my-account/my-account-history/my-account-history.component.html</context> | ||
9928 | <context context-type="linenumber">13,15</context> | ||
9929 | </context-group> | ||
9930 | </trans-unit> | ||
9931 | <trans-unit id="355c9f9d50ed1c6f12729332a44c1fd0f7576638" datatype="html"> | ||
9932 | <source>You don't have any video history yet.</source> | ||
9933 | <context-group purpose="location"> | ||
9934 | <context context-type="sourcefile">../app/+my-account/my-account-history/my-account-history.component.html</context> | ||
9935 | <context context-type="linenumber">19</context> | ||
9936 | </context-group> | ||
9937 | </trans-unit> | ||
9938 | <trans-unit id="7163720856202695008" datatype="html"> | 9938 | <trans-unit id="7163720856202695008" datatype="html"> |
9939 | <source>My videos history</source> | 9939 | <source>My videos history</source> |
9940 | <context-group purpose="location"> | 9940 | <context-group purpose="location"> |
@@ -9977,6 +9977,34 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9977 | <context context-type="linenumber">95</context> | 9977 | <context context-type="linenumber">95</context> |
9978 | </context-group> | 9978 | </context-group> |
9979 | </trans-unit> | 9979 | </trans-unit> |
9980 | <trans-unit id="4f953496ca94b4f83af049ff715172df2729fb79" datatype="html"> | ||
9981 | <source>My history</source> | ||
9982 | <context-group purpose="location"> | ||
9983 | <context context-type="sourcefile">../app/+my-account/my-account-history/my-account-history.component.html</context> | ||
9984 | <context context-type="linenumber">3</context> | ||
9985 | </context-group> | ||
9986 | </trans-unit> | ||
9987 | <trans-unit id="cb6fc818d4547d66ac5ea65f2c5d5cbfb6ebc04e" datatype="html"> | ||
9988 | <source>Video history</source> | ||
9989 | <context-group purpose="location"> | ||
9990 | <context context-type="sourcefile">../app/+my-account/my-account-history/my-account-history.component.html</context> | ||
9991 | <context context-type="linenumber">9</context> | ||
9992 | </context-group> | ||
9993 | </trans-unit> | ||
9994 | <trans-unit id="29c45bf49891748f930ef78b2e09857498b15131" datatype="html"> | ||
9995 | <source><x id="START_TAG_MY_GLOBAL_ICON"/><x id="CLOSE_TAG_MY_GLOBAL_ICON"/> Delete history </source> | ||
9996 | <context-group purpose="location"> | ||
9997 | <context context-type="sourcefile">../app/+my-account/my-account-history/my-account-history.component.html</context> | ||
9998 | <context context-type="linenumber">13,15</context> | ||
9999 | </context-group> | ||
10000 | </trans-unit> | ||
10001 | <trans-unit id="355c9f9d50ed1c6f12729332a44c1fd0f7576638" datatype="html"> | ||
10002 | <source>You don't have any video history yet.</source> | ||
10003 | <context-group purpose="location"> | ||
10004 | <context context-type="sourcefile">../app/+my-account/my-account-history/my-account-history.component.html</context> | ||
10005 | <context context-type="linenumber">19</context> | ||
10006 | </context-group> | ||
10007 | </trans-unit> | ||
9980 | <trans-unit id="9d2d802fa417a5a3f230cb5bcc975551a252c59c" datatype="html"> | 10008 | <trans-unit id="9d2d802fa417a5a3f230cb5bcc975551a252c59c" datatype="html"> |
9981 | <source><x id="START_TAG_MY_GLOBAL_ICON"/><x id="CLOSE_TAG_MY_GLOBAL_ICON"/> Notification preferences </source> | 10009 | <source><x id="START_TAG_MY_GLOBAL_ICON"/><x id="CLOSE_TAG_MY_GLOBAL_ICON"/> Notification preferences </source> |
9982 | <context-group purpose="location"> | 10010 | <context-group purpose="location"> |
@@ -10005,6 +10033,13 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10005 | <context context-type="linenumber">26</context> | 10033 | <context context-type="linenumber">26</context> |
10006 | </context-group> | 10034 | </context-group> |
10007 | </trans-unit> | 10035 | </trans-unit> |
10036 | <trans-unit id="3525866160632851851" datatype="html"> | ||
10037 | <source>Avatar changed.</source> | ||
10038 | <context-group purpose="location"> | ||
10039 | <context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.ts</context> | ||
10040 | <context context-type="linenumber">42</context> | ||
10041 | </context-group> | ||
10042 | </trans-unit> | ||
10008 | <trans-unit id="3e486bad6576aa445ccb6051069e45a3658e4160" datatype="html"> | 10043 | <trans-unit id="3e486bad6576aa445ccb6051069e45a3658e4160" datatype="html"> |
10009 | <source>PROFILE SETTINGS</source> | 10044 | <source>PROFILE SETTINGS</source> |
10010 | <context-group purpose="location"> | 10045 | <context-group purpose="location"> |
@@ -10047,11 +10082,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10047 | <context context-type="linenumber">57</context> | 10082 | <context context-type="linenumber">57</context> |
10048 | </context-group> | 10083 | </context-group> |
10049 | </trans-unit> | 10084 | </trans-unit> |
10050 | <trans-unit id="3525866160632851851" datatype="html"> | 10085 | <trans-unit id="6012072687166259654" datatype="html"> |
10051 | <source>Avatar changed.</source> | 10086 | <source>Please check your emails to verify your new email.</source> |
10052 | <context-group purpose="location"> | 10087 | <context-group purpose="location"> |
10053 | <context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.ts</context> | 10088 | <context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts</context> |
10054 | <context context-type="linenumber">42</context> | 10089 | <context context-type="linenumber">53</context> |
10090 | </context-group> | ||
10091 | </trans-unit> | ||
10092 | <trans-unit id="6585766371605707311" datatype="html"> | ||
10093 | <source>Email updated.</source> | ||
10094 | <context-group purpose="location"> | ||
10095 | <context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts</context> | ||
10096 | <context context-type="linenumber">55</context> | ||
10055 | </context-group> | 10097 | </context-group> |
10056 | </trans-unit> | 10098 | </trans-unit> |
10057 | <trans-unit id="dbcc539bd3ca0b962b87ea26855ca9d5d3c5cdf1" datatype="html"> | 10099 | <trans-unit id="dbcc539bd3ca0b962b87ea26855ca9d5d3c5cdf1" datatype="html"> |
@@ -10104,20 +10146,6 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10104 | <context context-type="linenumber">36</context> | 10146 | <context context-type="linenumber">36</context> |
10105 | </context-group> | 10147 | </context-group> |
10106 | </trans-unit> | 10148 | </trans-unit> |
10107 | <trans-unit id="6012072687166259654" datatype="html"> | ||
10108 | <source>Please check your emails to verify your new email.</source> | ||
10109 | <context-group purpose="location"> | ||
10110 | <context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts</context> | ||
10111 | <context context-type="linenumber">53</context> | ||
10112 | </context-group> | ||
10113 | </trans-unit> | ||
10114 | <trans-unit id="6585766371605707311" datatype="html"> | ||
10115 | <source>Email updated.</source> | ||
10116 | <context-group purpose="location"> | ||
10117 | <context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts</context> | ||
10118 | <context context-type="linenumber">55</context> | ||
10119 | </context-group> | ||
10120 | </trans-unit> | ||
10121 | <trans-unit id="29038e66547b3ba70701fb34eda68834a56f17d9" datatype="html"> | 10149 | <trans-unit id="29038e66547b3ba70701fb34eda68834a56f17d9" datatype="html"> |
10122 | <source>My subscriptions</source> | 10150 | <source>My subscriptions</source> |
10123 | <context-group purpose="location"> | 10151 | <context-group purpose="location"> |
@@ -10216,20 +10244,6 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10216 | <context context-type="linenumber">49</context> | 10244 | <context context-type="linenumber">49</context> |
10217 | </context-group> | 10245 | </context-group> |
10218 | </trans-unit> | 10246 | </trans-unit> |
10219 | <trans-unit id="d02888c485d3aeab6de628508f4a00312a722894" datatype="html"> | ||
10220 | <source>My videos</source> | ||
10221 | <context-group purpose="location"> | ||
10222 | <context context-type="sourcefile">../app/+my-account/my-account-videos/my-account-videos.component.html</context> | ||
10223 | <context context-type="linenumber">4</context> | ||
10224 | </context-group> | ||
10225 | </trans-unit> | ||
10226 | <trans-unit id="addd26e1d0d8a38fcfceeb76642c6f838f9525e3" datatype="html"> | ||
10227 | <source>Search your videos</source> | ||
10228 | <context-group purpose="location"> | ||
10229 | <context context-type="sourcefile">../app/+my-account/my-account-videos/my-account-videos.component.html</context> | ||
10230 | <context context-type="linenumber">11</context> | ||
10231 | </context-group> | ||
10232 | </trans-unit> | ||
10233 | <trans-unit id="8197117721861453263" datatype="html"> | 10247 | <trans-unit id="8197117721861453263" datatype="html"> |
10234 | <source>Do you really want to delete <x id="PH"/> videos?</source> | 10248 | <source>Do you really want to delete <x id="PH"/> videos?</source> |
10235 | <context-group purpose="location"> | 10249 | <context-group purpose="location"> |
@@ -10251,6 +10265,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10251 | <context context-type="linenumber">125</context> | 10265 | <context context-type="linenumber">125</context> |
10252 | </context-group> | 10266 | </context-group> |
10253 | </trans-unit> | 10267 | </trans-unit> |
10268 | <trans-unit id="d02888c485d3aeab6de628508f4a00312a722894" datatype="html"> | ||
10269 | <source>My videos</source> | ||
10270 | <context-group purpose="location"> | ||
10271 | <context context-type="sourcefile">../app/+my-account/my-account-videos/my-account-videos.component.html</context> | ||
10272 | <context context-type="linenumber">4</context> | ||
10273 | </context-group> | ||
10274 | </trans-unit> | ||
10275 | <trans-unit id="addd26e1d0d8a38fcfceeb76642c6f838f9525e3" datatype="html"> | ||
10276 | <source>Search your videos</source> | ||
10277 | <context-group purpose="location"> | ||
10278 | <context context-type="sourcefile">../app/+my-account/my-account-videos/my-account-videos.component.html</context> | ||
10279 | <context context-type="linenumber">11</context> | ||
10280 | </context-group> | ||
10281 | </trans-unit> | ||
10282 | <trans-unit id="8828123061564507501" datatype="html"> | ||
10283 | <source>Playlist <x id="PH"/>} deleted.</source> | ||
10284 | <context-group purpose="location"> | ||
10285 | <context context-type="sourcefile">../app/+my-account/my-account-video-playlists/my-account-video-playlists.component.ts</context> | ||
10286 | <context context-type="linenumber">61</context> | ||
10287 | </context-group> | ||
10288 | </trans-unit> | ||
10254 | <trans-unit id="1d3408919f4d08414721cc22c4be39d93d6691d2" datatype="html"> | 10289 | <trans-unit id="1d3408919f4d08414721cc22c4be39d93d6691d2" datatype="html"> |
10255 | <source>My playlists</source> | 10290 | <source>My playlists</source> |
10256 | <context-group purpose="location"> | 10291 | <context-group purpose="location"> |
@@ -10272,11 +10307,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10272 | <context context-type="linenumber">18</context> | 10307 | <context context-type="linenumber">18</context> |
10273 | </context-group> | 10308 | </context-group> |
10274 | </trans-unit> | 10309 | </trans-unit> |
10275 | <trans-unit id="8828123061564507501" datatype="html"> | 10310 | <trans-unit id="104404386496394770" datatype="html"> |
10276 | <source>Playlist <x id="PH"/>} deleted.</source> | 10311 | <source>Delete playlist</source> |
10277 | <context-group purpose="location"> | 10312 | <context-group purpose="location"> |
10278 | <context context-type="sourcefile">../app/+my-account/my-account-video-playlists/my-account-video-playlists.component.ts</context> | 10313 | <context context-type="sourcefile">../app/+my-account/my-account-video-playlists/my-account-video-playlist-elements.component.ts</context> |
10279 | <context context-type="linenumber">61</context> | 10314 | <context context-type="linenumber">53</context> |
10315 | </context-group> | ||
10316 | </trans-unit> | ||
10317 | <trans-unit id="3380608219513805292" datatype="html"> | ||
10318 | <source>Playlist <x id="PH"/> deleted.</source> | ||
10319 | <context-group purpose="location"> | ||
10320 | <context context-type="sourcefile">../app/+my-account/my-account-video-playlists/my-account-video-playlist-elements.component.ts</context> | ||
10321 | <context context-type="linenumber">136</context> | ||
10280 | </context-group> | 10322 | </context-group> |
10281 | </trans-unit> | 10323 | </trans-unit> |
10282 | <trans-unit id="188014887f7188d90b39e41d9606b91c77c17861" datatype="html"> | 10324 | <trans-unit id="188014887f7188d90b39e41d9606b91c77c17861" datatype="html"> |
@@ -10300,18 +10342,11 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10300 | <context context-type="linenumber">32,33</context> | 10342 | <context context-type="linenumber">32,33</context> |
10301 | </context-group> | 10343 | </context-group> |
10302 | </trans-unit> | 10344 | </trans-unit> |
10303 | <trans-unit id="104404386496394770" datatype="html"> | 10345 | <trans-unit id="7589345916094713536" datatype="html"> |
10304 | <source>Delete playlist</source> | 10346 | <source>Video channel <x id="PH"/> updated.</source> |
10305 | <context-group purpose="location"> | ||
10306 | <context context-type="sourcefile">../app/+my-account/my-account-video-playlists/my-account-video-playlist-elements.component.ts</context> | ||
10307 | <context context-type="linenumber">53</context> | ||
10308 | </context-group> | ||
10309 | </trans-unit> | ||
10310 | <trans-unit id="3380608219513805292" datatype="html"> | ||
10311 | <source>Playlist <x id="PH"/> deleted.</source> | ||
10312 | <context-group purpose="location"> | 10347 | <context-group purpose="location"> |
10313 | <context context-type="sourcefile">../app/+my-account/my-account-video-playlists/my-account-video-playlist-elements.component.ts</context> | 10348 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channel-update.component.ts</context> |
10314 | <context context-type="linenumber">136</context> | 10349 | <context context-type="linenumber">92</context> |
10315 | </context-group> | 10350 | </context-group> |
10316 | </trans-unit> | 10351 | </trans-unit> |
10317 | <trans-unit id="d5f0913d08d01648d7e6165c168a99ccd06d1f4c" datatype="html"> | 10352 | <trans-unit id="d5f0913d08d01648d7e6165c168a99ccd06d1f4c" datatype="html"> |
@@ -10357,13 +10392,6 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10357 | <context context-type="linenumber">92</context> | 10392 | <context context-type="linenumber">92</context> |
10358 | </context-group> | 10393 | </context-group> |
10359 | </trans-unit> | 10394 | </trans-unit> |
10360 | <trans-unit id="7589345916094713536" datatype="html"> | ||
10361 | <source>Video channel <x id="PH"/> updated.</source> | ||
10362 | <context-group purpose="location"> | ||
10363 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channel-update.component.ts</context> | ||
10364 | <context context-type="linenumber">92</context> | ||
10365 | </context-group> | ||
10366 | </trans-unit> | ||
10367 | <trans-unit id="1137937154872046253" datatype="html"> | 10395 | <trans-unit id="1137937154872046253" datatype="html"> |
10368 | <source>Video channel <x id="PH"/> created.</source> | 10396 | <source>Video channel <x id="PH"/> created.</source> |
10369 | <context-group purpose="location"> | 10397 | <context-group purpose="location"> |
@@ -10378,34 +10406,6 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
10378 | <context context-type="linenumber">67</context> | 10406 | <context context-type="linenumber">67</context> |
10379 | </context-group> | 10407 | </context-group> |
10380 | </trans-unit> | 10408 | </trans-unit> |
10381 | <trans-unit id="8dd18d9047c4b2dc9786550dfd8fa99f3b14e17f" datatype="html"> | ||
10382 | <source>My channels</source> | ||
10383 | <context-group purpose="location"> | ||
10384 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.html</context> | ||
10385 | <context context-type="linenumber">4</context> | ||
10386 | </context-group> | ||
10387 | </trans-unit> | ||
10388 | <trans-unit id="6749bdfd88a223fd464a9b09541342fbf42a0ad6" datatype="html"> | ||
10389 | <source>Search your channels</source> | ||
10390 | <context-group purpose="location"> | ||
10391 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.html</context> | ||
10392 | <context context-type="linenumber">11</context> | ||
10393 | </context-group> | ||
10394 | </trans-unit> | ||
10395 | <trans-unit id="574cce019fb31925d11095591d4321847ff1c7a5" datatype="html"> | ||
10396 | <source>Create video channel</source> | ||
10397 | <context-group purpose="location"> | ||
10398 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.html</context> | ||
10399 | <context context-type="linenumber">19</context> | ||
10400 | </context-group> | ||
10401 | </trans-unit> | ||
10402 | <trans-unit id="21dc89cfca84c2af7fdeb584b34e2529d842b72a" datatype="html"> | ||
10403 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> | ||
10404 | <context-group purpose="location"> | ||
10405 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.html</context> | ||
10406 | <context context-type="linenumber">37</context> | ||
10407 | </context-group> | ||
10408 | </trans-unit> | ||
10409 | <trans-unit id="7152797255397280410" datatype="html"> | 10409 | <trans-unit id="7152797255397280410" datatype="html"> |
10410 | <source>Do you really want to delete <x id="PH"/>? | 10410 | <source>Do you really want to delete <x id="PH"/>? |
10411 | It will delete <x id="PH_1"/> videos uploaded in this channel, and you will not be able to create another | 10411 | It will delete <x id="PH_1"/> videos uploaded in this channel, and you will not be able to create another |
@@ -10436,6 +10436,34 @@ channel with the same name (<x id="PH_2"/>)!</source> | |||
10436 | <context context-type="linenumber">144</context> | 10436 | <context context-type="linenumber">144</context> |
10437 | </context-group> | 10437 | </context-group> |
10438 | </trans-unit> | 10438 | </trans-unit> |
10439 | <trans-unit id="8dd18d9047c4b2dc9786550dfd8fa99f3b14e17f" datatype="html"> | ||
10440 | <source>My channels</source> | ||
10441 | <context-group purpose="location"> | ||
10442 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.html</context> | ||
10443 | <context context-type="linenumber">4</context> | ||
10444 | </context-group> | ||
10445 | </trans-unit> | ||
10446 | <trans-unit id="6749bdfd88a223fd464a9b09541342fbf42a0ad6" datatype="html"> | ||
10447 | <source>Search your channels</source> | ||
10448 | <context-group purpose="location"> | ||
10449 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.html</context> | ||
10450 | <context context-type="linenumber">11</context> | ||
10451 | </context-group> | ||
10452 | </trans-unit> | ||
10453 | <trans-unit id="574cce019fb31925d11095591d4321847ff1c7a5" datatype="html"> | ||
10454 | <source>Create video channel</source> | ||
10455 | <context-group purpose="location"> | ||
10456 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.html</context> | ||
10457 | <context context-type="linenumber">19</context> | ||
10458 | </context-group> | ||
10459 | </trans-unit> | ||
10460 | <trans-unit id="21dc89cfca84c2af7fdeb584b34e2529d842b72a" datatype="html"> | ||
10461 | <source>{VAR_PLURAL, plural, =0 {No videos} =1 {1 video} other {<x id="INTERPOLATION"/> videos}}</source> | ||
10462 | <context-group purpose="location"> | ||
10463 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.html</context> | ||
10464 | <context context-type="linenumber">37</context> | ||
10465 | </context-group> | ||
10466 | </trans-unit> | ||
10439 | <trans-unit id="4707367314920217630" datatype="html"> | 10467 | <trans-unit id="4707367314920217630" datatype="html"> |
10440 | <source>Create new video channel</source> | 10468 | <source>Create new video channel</source> |
10441 | <context-group purpose="location"> | 10469 | <context-group purpose="location"> |
@@ -10471,6 +10499,20 @@ channel with the same name (<x id="PH_2"/>)!</source> | |||
10471 | <context context-type="linenumber">9</context> | 10499 | <context context-type="linenumber">9</context> |
10472 | </context-group> | 10500 | </context-group> |
10473 | </trans-unit> | 10501 | </trans-unit> |
10502 | <trans-unit id="4180693983967989981" datatype="html"> | ||
10503 | <source>Unable to find user id or verification string.</source> | ||
10504 | <context-group purpose="location"> | ||
10505 | <context context-type="sourcefile">../app/+reset-password/reset-password.component.ts</context> | ||
10506 | <context context-type="linenumber">38</context> | ||
10507 | </context-group> | ||
10508 | </trans-unit> | ||
10509 | <trans-unit id="8781423666414310853" datatype="html"> | ||
10510 | <source>Your password has been successfully reset!</source> | ||
10511 | <context-group purpose="location"> | ||
10512 | <context context-type="sourcefile">../app/+reset-password/reset-password.component.ts</context> | ||
10513 | <context context-type="linenumber">47</context> | ||
10514 | </context-group> | ||
10515 | </trans-unit> | ||
10474 | <trans-unit id="2ba14c37f3b23553b2602c5e535d0ff4916f24aa" datatype="html"> | 10516 | <trans-unit id="2ba14c37f3b23553b2602c5e535d0ff4916f24aa" datatype="html"> |
10475 | <source> Reset my password </source> | 10517 | <source> Reset my password </source> |
10476 | <context-group purpose="location"> | 10518 | <context-group purpose="location"> |
@@ -10499,18 +10541,25 @@ channel with the same name (<x id="PH_2"/>)!</source> | |||
10499 | <context context-type="linenumber">29</context> | 10541 | <context context-type="linenumber">29</context> |
10500 | </context-group> | 10542 | </context-group> |
10501 | </trans-unit> | 10543 | </trans-unit> |
10502 | <trans-unit id="4180693983967989981" datatype="html"> | 10544 | <trans-unit id="3208627574396957172" datatype="html"> |
10503 | <source>Unable to find user id or verification string.</source> | 10545 | <source>Search index is unavailable. Retrying with instance results instead.</source> |
10504 | <context-group purpose="location"> | 10546 | <context-group purpose="location"> |
10505 | <context context-type="sourcefile">../app/+reset-password/reset-password.component.ts</context> | 10547 | <context context-type="sourcefile">../app/+search/search.component.ts</context> |
10506 | <context context-type="linenumber">38</context> | 10548 | <context context-type="linenumber">171</context> |
10507 | </context-group> | 10549 | </context-group> |
10508 | </trans-unit> | 10550 | </trans-unit> |
10509 | <trans-unit id="8781423666414310853" datatype="html"> | 10551 | <trans-unit id="307702206382241469" datatype="html"> |
10510 | <source>Your password has been successfully reset!</source> | 10552 | <source>Search error</source> |
10511 | <context-group purpose="location"> | 10553 | <context-group purpose="location"> |
10512 | <context context-type="sourcefile">../app/+reset-password/reset-password.component.ts</context> | 10554 | <context context-type="sourcefile">../app/+search/search.component.ts</context> |
10513 | <context context-type="linenumber">47</context> | 10555 | <context context-type="linenumber">172</context> |
10556 | </context-group> | ||
10557 | </trans-unit> | ||
10558 | <trans-unit id="4580988005648117665" datatype="html"> | ||
10559 | <source>Search</source> | ||
10560 | <context-group purpose="location"> | ||
10561 | <context context-type="sourcefile">../app/+search/search.component.ts</context> | ||
10562 | <context context-type="linenumber">230</context> | ||
10514 | </context-group> | 10563 | </context-group> |
10515 | </trans-unit> | 10564 | </trans-unit> |
10516 | <trans-unit id="406b08e859ab668ff07056881dcc4390109d4e1d" datatype="html"> | 10565 | <trans-unit id="406b08e859ab668ff07056881dcc4390109d4e1d" datatype="html"> |
@@ -10562,25 +10611,74 @@ channel with the same name (<x id="PH_2"/>)!</source> | |||
10562 | <context context-type="linenumber">60</context> | 10611 | <context context-type="linenumber">60</context> |
10563 | </context-group> | 10612 | </context-group> |
10564 | </trans-unit> | 10613 | </trans-unit> |
10565 | <trans-unit id="3208627574396957172" datatype="html"> | 10614 | <trans-unit id="3184700926171002527" datatype="html"> |
10566 | <source>Search index is unavailable. Retrying with instance results instead.</source> | 10615 | <source>Any</source> |
10567 | <context-group purpose="location"> | 10616 | <context-group purpose="location"> |
10568 | <context context-type="sourcefile">../app/+search/search.component.ts</context> | 10617 | <context context-type="sourcefile">../app/+search/search-filters.component.ts</context> |
10569 | <context context-type="linenumber">171</context> | 10618 | <context context-type="linenumber">38</context> |
10570 | </context-group> | 10619 | </context-group> |
10571 | </trans-unit> | 10620 | </trans-unit> |
10572 | <trans-unit id="307702206382241469" datatype="html"> | 10621 | <trans-unit id="4873149362496451858" datatype="html"> |
10573 | <source>Search error</source> | 10622 | <source>Last 7 days</source> |
10574 | <context-group purpose="location"> | 10623 | <context-group purpose="location"> |
10575 | <context context-type="sourcefile">../app/+search/search.component.ts</context> | 10624 | <context context-type="sourcefile">../app/+search/search-filters.component.ts</context> |
10576 | <context context-type="linenumber">172</context> | 10625 | <context context-type="linenumber">46</context> |
10577 | </context-group> | 10626 | </context-group> |
10578 | </trans-unit> | 10627 | </trans-unit> |
10579 | <trans-unit id="4580988005648117665" datatype="html"> | 10628 | <trans-unit id="2949150997160654358" datatype="html"> |
10580 | <source>Search</source> | 10629 | <source>Last 30 days</source> |
10581 | <context-group purpose="location"> | 10630 | <context-group purpose="location"> |
10582 | <context context-type="sourcefile">../app/+search/search.component.ts</context> | 10631 | <context context-type="sourcefile">../app/+search/search-filters.component.ts</context> |
10583 | <context context-type="linenumber">230</context> | 10632 | <context context-type="linenumber">50</context> |
10633 | </context-group> | ||
10634 | </trans-unit> | ||
10635 | <trans-unit id="5328600704510694984" datatype="html"> | ||
10636 | <source>Last 365 days</source> | ||
10637 | <context-group purpose="location"> | ||
10638 | <context context-type="sourcefile">../app/+search/search-filters.component.ts</context> | ||
10639 | <context context-type="linenumber">54</context> | ||
10640 | </context-group> | ||
10641 | </trans-unit> | ||
10642 | <trans-unit id="8487565500496466433" datatype="html"> | ||
10643 | <source>Short (< 4 min)</source> | ||
10644 | <context-group purpose="location"> | ||
10645 | <context context-type="sourcefile">../app/+search/search-filters.component.ts</context> | ||
10646 | <context context-type="linenumber">65</context> | ||
10647 | </context-group> | ||
10648 | </trans-unit> | ||
10649 | <trans-unit id="3642535017283477339" datatype="html"> | ||
10650 | <source>Medium (4-10 min)</source> | ||
10651 | <context-group purpose="location"> | ||
10652 | <context context-type="sourcefile">../app/+search/search-filters.component.ts</context> | ||
10653 | <context context-type="linenumber">69</context> | ||
10654 | </context-group> | ||
10655 | </trans-unit> | ||
10656 | <trans-unit id="6613870447286561244" datatype="html"> | ||
10657 | <source>Long (> 10 min)</source> | ||
10658 | <context-group purpose="location"> | ||
10659 | <context context-type="sourcefile">../app/+search/search-filters.component.ts</context> | ||
10660 | <context context-type="linenumber">73</context> | ||
10661 | </context-group> | ||
10662 | </trans-unit> | ||
10663 | <trans-unit id="1787083504545967" datatype="html"> | ||
10664 | <source>Relevance</source> | ||
10665 | <context-group purpose="location"> | ||
10666 | <context context-type="sourcefile">../app/+search/search-filters.component.ts</context> | ||
10667 | <context context-type="linenumber">80</context> | ||
10668 | </context-group> | ||
10669 | </trans-unit> | ||
10670 | <trans-unit id="7944277186358179990" datatype="html"> | ||
10671 | <source>Publish date</source> | ||
10672 | <context-group purpose="location"> | ||
10673 | <context context-type="sourcefile">../app/+search/search-filters.component.ts</context> | ||
10674 | <context context-type="linenumber">84</context> | ||
10675 | </context-group> | ||
10676 | </trans-unit> | ||
10677 | <trans-unit id="2123659921722214537" datatype="html"> | ||
10678 | <source>Views</source> | ||
10679 | <context-group purpose="location"> | ||
10680 | <context context-type="sourcefile">../app/+search/search-filters.component.ts</context> | ||
10681 | <context context-type="linenumber">88</context> | ||
10584 | </context-group> | 10682 | </context-group> |
10585 | </trans-unit> | 10683 | </trans-unit> |
10586 | <trans-unit id="5d43539fc358c3a548b9d487be821db73e2702ff" datatype="html"> | 10684 | <trans-unit id="5d43539fc358c3a548b9d487be821db73e2702ff" datatype="html"> |
@@ -10716,74 +10814,18 @@ channel with the same name (<x id="PH_2"/>)!</source> | |||
10716 | <context context-type="linenumber">179</context> | 10814 | <context context-type="linenumber">179</context> |
10717 | </context-group> | 10815 | </context-group> |
10718 | </trans-unit> | 10816 | </trans-unit> |
10719 | <trans-unit id="3184700926171002527" datatype="html"> | 10817 | <trans-unit id="6537885755702623401" datatype="html"> |
10720 | <source>Any</source> | 10818 | <source>Now please check your emails to verify your account and complete signup.</source> |
10721 | <context-group purpose="location"> | ||
10722 | <context context-type="sourcefile">../app/+search/search-filters.component.ts</context> | ||
10723 | <context context-type="linenumber">38</context> | ||
10724 | </context-group> | ||
10725 | </trans-unit> | ||
10726 | <trans-unit id="4873149362496451858" datatype="html"> | ||
10727 | <source>Last 7 days</source> | ||
10728 | <context-group purpose="location"> | ||
10729 | <context context-type="sourcefile">../app/+search/search-filters.component.ts</context> | ||
10730 | <context context-type="linenumber">46</context> | ||
10731 | </context-group> | ||
10732 | </trans-unit> | ||
10733 | <trans-unit id="2949150997160654358" datatype="html"> | ||
10734 | <source>Last 30 days</source> | ||
10735 | <context-group purpose="location"> | ||
10736 | <context context-type="sourcefile">../app/+search/search-filters.component.ts</context> | ||
10737 | <context context-type="linenumber">50</context> | ||
10738 | </context-group> | ||
10739 | </trans-unit> | ||
10740 | <trans-unit id="5328600704510694984" datatype="html"> | ||
10741 | <source>Last 365 days</source> | ||
10742 | <context-group purpose="location"> | ||
10743 | <context context-type="sourcefile">../app/+search/search-filters.component.ts</context> | ||
10744 | <context context-type="linenumber">54</context> | ||
10745 | </context-group> | ||
10746 | </trans-unit> | ||
10747 | <trans-unit id="8487565500496466433" datatype="html"> | ||
10748 | <source>Short (< 4 min)</source> | ||
10749 | <context-group purpose="location"> | ||
10750 | <context context-type="sourcefile">../app/+search/search-filters.component.ts</context> | ||
10751 | <context context-type="linenumber">65</context> | ||
10752 | </context-group> | ||
10753 | </trans-unit> | ||
10754 | <trans-unit id="3642535017283477339" datatype="html"> | ||
10755 | <source>Medium (4-10 min)</source> | ||
10756 | <context-group purpose="location"> | ||
10757 | <context context-type="sourcefile">../app/+search/search-filters.component.ts</context> | ||
10758 | <context context-type="linenumber">69</context> | ||
10759 | </context-group> | ||
10760 | </trans-unit> | ||
10761 | <trans-unit id="6613870447286561244" datatype="html"> | ||
10762 | <source>Long (> 10 min)</source> | ||
10763 | <context-group purpose="location"> | ||
10764 | <context context-type="sourcefile">../app/+search/search-filters.component.ts</context> | ||
10765 | <context context-type="linenumber">73</context> | ||
10766 | </context-group> | ||
10767 | </trans-unit> | ||
10768 | <trans-unit id="1787083504545967" datatype="html"> | ||
10769 | <source>Relevance</source> | ||
10770 | <context-group purpose="location"> | ||
10771 | <context context-type="sourcefile">../app/+search/search-filters.component.ts</context> | ||
10772 | <context context-type="linenumber">80</context> | ||
10773 | </context-group> | ||
10774 | </trans-unit> | ||
10775 | <trans-unit id="7944277186358179990" datatype="html"> | ||
10776 | <source>Publish date</source> | ||
10777 | <context-group purpose="location"> | 10819 | <context-group purpose="location"> |
10778 | <context context-type="sourcefile">../app/+search/search-filters.component.ts</context> | 10820 | <context context-type="sourcefile">../app/+signup/+register/register.component.ts</context> |
10779 | <context context-type="linenumber">84</context> | 10821 | <context context-type="linenumber">115</context> |
10780 | </context-group> | 10822 | </context-group> |
10781 | </trans-unit> | 10823 | </trans-unit> |
10782 | <trans-unit id="2123659921722214537" datatype="html"> | 10824 | <trans-unit id="2847376451647729886" datatype="html"> |
10783 | <source>Views</source> | 10825 | <source>You are now logged in as <x id="PH"/>!</source> |
10784 | <context-group purpose="location"> | 10826 | <context-group purpose="location"> |
10785 | <context context-type="sourcefile">../app/+search/search-filters.component.ts</context> | 10827 | <context context-type="sourcefile">../app/+signup/+register/register.component.ts</context> |
10786 | <context context-type="linenumber">88</context> | 10828 | <context context-type="linenumber">123</context> |
10787 | </context-group> | 10829 | </context-group> |
10788 | </trans-unit> | 10830 | </trans-unit> |
10789 | <trans-unit id="4499806949402133d08a5029cb5462c5ea25336d" datatype="html"> | 10831 | <trans-unit id="4499806949402133d08a5029cb5462c5ea25336d" datatype="html"> |
@@ -10793,6 +10835,13 @@ channel with the same name (<x id="PH_2"/>)!</source> | |||
10793 | <context context-type="linenumber">4,5</context> | 10835 | <context context-type="linenumber">4,5</context> |
10794 | </context-group> | 10836 | </context-group> |
10795 | </trans-unit> | 10837 | </trans-unit> |
10838 | <trans-unit id="f732c304c7433e5a83ffcd862c3dce709a0f4982" datatype="html"> | ||
10839 | <source>Next</source> | ||
10840 | <context-group purpose="location"> | ||
10841 | <context context-type="sourcefile">../app/+signup/+register/register.component.html</context> | ||
10842 | <context context-type="linenumber">20</context> | ||
10843 | </context-group> | ||
10844 | </trans-unit> | ||
10796 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1" datatype="html"> | 10845 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1" datatype="html"> |
10797 | <source> Create my account </source> | 10846 | <source> Create my account </source> |
10798 | <context-group purpose="location"> | 10847 | <context-group purpose="location"> |
@@ -10842,20 +10891,6 @@ channel with the same name (<x id="PH_2"/>)!</source> | |||
10842 | <context context-type="linenumber">70</context> | 10891 | <context context-type="linenumber">70</context> |
10843 | </context-group> | 10892 | </context-group> |
10844 | </trans-unit> | 10893 | </trans-unit> |
10845 | <trans-unit id="6537885755702623401" datatype="html"> | ||
10846 | <source>Now please check your emails to verify your account and complete signup.</source> | ||
10847 | <context-group purpose="location"> | ||
10848 | <context context-type="sourcefile">../app/+signup/+register/register.component.ts</context> | ||
10849 | <context context-type="linenumber">115</context> | ||
10850 | </context-group> | ||
10851 | </trans-unit> | ||
10852 | <trans-unit id="2847376451647729886" datatype="html"> | ||
10853 | <source>You are now logged in as <x id="PH"/>!</source> | ||
10854 | <context-group purpose="location"> | ||
10855 | <context context-type="sourcefile">../app/+signup/+register/register.component.ts</context> | ||
10856 | <context context-type="linenumber">123</context> | ||
10857 | </context-group> | ||
10858 | </trans-unit> | ||
10859 | <trans-unit id="041620337eaebda87971d345d05697639dfe78e4" datatype="html"> | 10894 | <trans-unit id="041620337eaebda87971d345d05697639dfe78e4" datatype="html"> |
10860 | <source>Step</source> | 10895 | <source>Step</source> |
10861 | <context-group purpose="location"> | 10896 | <context-group purpose="location"> |
@@ -10933,6 +10968,13 @@ channel with the same name (<x id="PH_2"/>)!</source> | |||
10933 | <context context-type="linenumber">14</context> | 10968 | <context context-type="linenumber">14</context> |
10934 | </context-group> | 10969 | </context-group> |
10935 | </trans-unit> | 10970 | </trans-unit> |
10971 | <trans-unit id="2687679787442328897" datatype="html"> | ||
10972 | <source>An email with verification link will be sent to <x id="PH"/>.</source> | ||
10973 | <context-group purpose="location"> | ||
10974 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context> | ||
10975 | <context context-type="linenumber">45</context> | ||
10976 | </context-group> | ||
10977 | </trans-unit> | ||
10936 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97" datatype="html"> | 10978 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97" datatype="html"> |
10937 | <source> Request email for account verification </source> | 10979 | <source> Request email for account verification </source> |
10938 | <context-group purpose="location"> | 10980 | <context-group purpose="location"> |
@@ -10954,13 +10996,6 @@ channel with the same name (<x id="PH_2"/>)!</source> | |||
10954 | <context context-type="linenumber">20</context> | 10996 | <context context-type="linenumber">20</context> |
10955 | </context-group> | 10997 | </context-group> |
10956 | </trans-unit> | 10998 | </trans-unit> |
10957 | <trans-unit id="2687679787442328897" datatype="html"> | ||
10958 | <source>An email with verification link will be sent to <x id="PH"/>.</source> | ||
10959 | <context-group purpose="location"> | ||
10960 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context> | ||
10961 | <context context-type="linenumber">45</context> | ||
10962 | </context-group> | ||
10963 | </trans-unit> | ||
10964 | <trans-unit id="8231550792139699065" datatype="html"> | 10999 | <trans-unit id="8231550792139699065" datatype="html"> |
10965 | <source>Verify account email</source> | 11000 | <source>Verify account email</source> |
10966 | <context-group purpose="location"> | 11001 | <context-group purpose="location"> |
@@ -11045,6 +11080,13 @@ channel with the same name (<x id="PH_2"/>)!</source> | |||
11045 | <context context-type="linenumber">6</context> | 11080 | <context context-type="linenumber">6</context> |
11046 | </context-group> | 11081 | </context-group> |
11047 | </trans-unit> | 11082 | </trans-unit> |
11083 | <trans-unit id="4014335318155107533" datatype="html"> | ||
11084 | <source>VIDEO PLAYLISTS</source> | ||
11085 | <context-group purpose="location"> | ||
11086 | <context context-type="sourcefile">../app/+video-channels/video-channels.component.ts</context> | ||
11087 | <context context-type="linenumber">66</context> | ||
11088 | </context-group> | ||
11089 | </trans-unit> | ||
11048 | <trans-unit id="e006ed166ce188cab168e1ca90435b33d042d913" datatype="html"> | 11090 | <trans-unit id="e006ed166ce188cab168e1ca90435b33d042d913" datatype="html"> |
11049 | <source>Go the owner account page</source> | 11091 | <source>Go the owner account page</source> |
11050 | <context-group purpose="location"> | 11092 | <context-group purpose="location"> |
@@ -11066,13 +11108,6 @@ channel with the same name (<x id="PH_2"/>)!</source> | |||
11066 | <context context-type="linenumber">22,23</context> | 11108 | <context context-type="linenumber">22,23</context> |
11067 | </context-group> | 11109 | </context-group> |
11068 | </trans-unit> | 11110 | </trans-unit> |
11069 | <trans-unit id="4014335318155107533" datatype="html"> | ||
11070 | <source>VIDEO PLAYLISTS</source> | ||
11071 | <context-group purpose="location"> | ||
11072 | <context context-type="sourcefile">../app/+video-channels/video-channels.component.ts</context> | ||
11073 | <context context-type="linenumber">66</context> | ||
11074 | </context-group> | ||
11075 | </trans-unit> | ||
11076 | <trans-unit id="5523952d0300c96cfba2ec5a693c95f923e90c40" datatype="html"> | 11111 | <trans-unit id="5523952d0300c96cfba2ec5a693c95f923e90c40" datatype="html"> |
11077 | <source>Created <x id="INTERPOLATION"/></source> | 11112 | <source>Created <x id="INTERPOLATION"/></source> |
11078 | <context-group purpose="location"> | 11113 | <context-group purpose="location"> |
diff --git a/client/src/locale/angular.zh-Hans-CN.xlf b/client/src/locale/angular.zh-Hans-CN.xlf index a98427199..fcf6e364f 100644 --- a/client/src/locale/angular.zh-Hans-CN.xlf +++ b/client/src/locale/angular.zh-Hans-CN.xlf | |||
@@ -1149,16 +1149,9 @@ The link will expire within 1 hour.</target> | |||
1149 | <trans-unit id="f4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8"> | 1149 | <trans-unit id="f4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8"> |
1150 | <source>Close</source> | 1150 | <source>Close</source> |
1151 | <target>关闭</target> | 1151 | <target>关闭</target> |
1152 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group> | 1152 | |
1153 | </trans-unit> | 1153 | <context-group purpose="location"><context context-type="sourcefile">../app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1154 | <trans-unit id="680d5c75b7fd8d37961083608b9fcdc4167b4c43" datatype="html"> | 1154 | |
1155 | <source>Previous</source> | ||
1156 | <target state="new">Previous</target> | ||
1157 | <context-group purpose="location"> | ||
1158 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
1159 | <context context-type="linenumber">1</context> | ||
1160 | </context-group> | ||
1161 | </trans-unit> | ||
1162 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> | 1155 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> |
1163 | <source>Configure</source> | 1156 | <source>Configure</source> |
1164 | <target state="new"> | 1157 | <target state="new"> |
@@ -5379,208 +5372,33 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5379 | <trans-unit id="f732c304c7433e5a83ffcd862c3dce709a0f4982"> | 5372 | <trans-unit id="f732c304c7433e5a83ffcd862c3dce709a0f4982"> |
5380 | <source>Next</source> | 5373 | <source>Next</source> |
5381 | <target>下一个</target> | 5374 | <target>下一个</target> |
5382 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group> | 5375 | |
5383 | </trans-unit> | 5376 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit> |
5384 | <trans-unit id="c3b08b07b5ab98e7cdcf18df39355690ab7d3884" datatype="html"> | 5377 | |
5385 | <source>Previous month</source> | 5378 | |
5386 | <target state="new">Previous month</target> | 5379 | |
5387 | <context-group purpose="location"> | 5380 | |
5388 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 5381 | |
5389 | <context context-type="linenumber">1</context> | 5382 | |
5390 | </context-group> | 5383 | |
5391 | </trans-unit> | 5384 | |
5392 | <trans-unit id="4bd046985cfe13040d5ef0cd881edce0968a111a" datatype="html"> | 5385 | |
5393 | <source>Next month</source> | 5386 | |
5394 | <target state="new">Next month</target> | 5387 | |
5395 | <context-group purpose="location"> | 5388 | |
5396 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 5389 | |
5397 | <context context-type="linenumber">1</context> | 5390 | |
5398 | </context-group> | 5391 | |
5399 | </trans-unit> | 5392 | |
5400 | <trans-unit id="1dbc84807f35518112f62e5775d1daebd3d8462b" datatype="html"> | 5393 | |
5401 | <source>Select month</source> | 5394 | |
5402 | <target state="new">Select month</target> | 5395 | |
5403 | <context-group purpose="location"> | 5396 | |
5404 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 5397 | |
5405 | <context context-type="linenumber">1</context> | 5398 | |
5406 | </context-group> | 5399 | |
5407 | </trans-unit> | 5400 | |
5408 | <trans-unit id="8ceb09d002bf0c5d1cac171dfbffe1805d2b3962" datatype="html"> | 5401 | <trans-unit id="9082008222523034483" datatype="html"> |
5409 | <source>Select year</source> | ||
5410 | <target state="new">Select year</target> | ||
5411 | <context-group purpose="location"> | ||
5412 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5413 | <context context-type="linenumber">1</context> | ||
5414 | </context-group> | ||
5415 | </trans-unit> | ||
5416 | <trans-unit id="656506dfd46380956a655f919f1498d018f75ca0" datatype="html"> | ||
5417 | <source>««</source> | ||
5418 | <target state="new">««</target> | ||
5419 | <context-group purpose="location"> | ||
5420 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5421 | <context context-type="linenumber">1</context> | ||
5422 | </context-group> | ||
5423 | </trans-unit> | ||
5424 | <trans-unit id="6e52b6ee77a4848d899dd21b591c6fd499e3aef3" datatype="html"> | ||
5425 | <source>«</source> | ||
5426 | <target state="new">«</target> | ||
5427 | <context-group purpose="location"> | ||
5428 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5429 | <context context-type="linenumber">1</context> | ||
5430 | </context-group> | ||
5431 | </trans-unit> | ||
5432 | <trans-unit id="ba9cbb4ff311464308a3627e4f1c3345d9fe6d7d" datatype="html"> | ||
5433 | <source>»</source> | ||
5434 | <target state="new">»</target> | ||
5435 | <context-group purpose="location"> | ||
5436 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5437 | <context context-type="linenumber">1</context> | ||
5438 | </context-group> | ||
5439 | </trans-unit> | ||
5440 | <trans-unit id="49f27a460bc97e7e00be5b37098bfa79884fc7d9" datatype="html"> | ||
5441 | <source>»»</source> | ||
5442 | <target state="new">»»</target> | ||
5443 | <context-group purpose="location"> | ||
5444 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5445 | <context context-type="linenumber">1</context> | ||
5446 | </context-group> | ||
5447 | </trans-unit> | ||
5448 | <trans-unit id="f2f852318759c6396b5d3d17031d53817d7b38cc" datatype="html"> | ||
5449 | <source>First</source> | ||
5450 | <target state="new">First</target> | ||
5451 | <context-group purpose="location"> | ||
5452 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5453 | <context context-type="linenumber">1</context> | ||
5454 | </context-group> | ||
5455 | </trans-unit> | ||
5456 | <trans-unit id="5c729788ba138508aca1bec050b610f7bf81db3e" datatype="html"> | ||
5457 | <source>Last</source> | ||
5458 | <target state="new">Last</target> | ||
5459 | <context-group purpose="location"> | ||
5460 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5461 | <context context-type="linenumber">1</context> | ||
5462 | </context-group> | ||
5463 | </trans-unit> | ||
5464 | <trans-unit id="f8e9a947b9db4252c0e9905765338712f2fd032f" datatype="html"> | ||
5465 | <source><x id="INTERPOLATION"/></source> | ||
5466 | <target state="new"><x id="INTERPOLATION"/></target> | ||
5467 | <context-group purpose="location"> | ||
5468 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5469 | <context context-type="linenumber">1</context> | ||
5470 | </context-group> | ||
5471 | </trans-unit> | ||
5472 | <trans-unit id="ce676ab1d6d98f85c836381cf100a4a91ef95a1f" datatype="html"> | ||
5473 | <source>HH</source> | ||
5474 | <target state="new">HH</target> | ||
5475 | <context-group purpose="location"> | ||
5476 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5477 | <context context-type="linenumber">1</context> | ||
5478 | </context-group> | ||
5479 | </trans-unit> | ||
5480 | <trans-unit id="3bbce5fef7e1151da052a4e529453edb340e3912" datatype="html"> | ||
5481 | <source>Hours</source> | ||
5482 | <target state="new">Hours</target> | ||
5483 | <context-group purpose="location"> | ||
5484 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5485 | <context context-type="linenumber">1</context> | ||
5486 | </context-group> | ||
5487 | </trans-unit> | ||
5488 | <trans-unit id="72c8edf6a50068a05bde70991e36b1e881f4ca54" datatype="html"> | ||
5489 | <source>MM</source> | ||
5490 | <target state="new">MM</target> | ||
5491 | <context-group purpose="location"> | ||
5492 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5493 | <context context-type="linenumber">1</context> | ||
5494 | </context-group> | ||
5495 | </trans-unit> | ||
5496 | <trans-unit id="41e62daa962947c0d23ded0981975d1bddf0bf38" datatype="html"> | ||
5497 | <source>Minutes</source> | ||
5498 | <target state="new">Minutes</target> | ||
5499 | <context-group purpose="location"> | ||
5500 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5501 | <context context-type="linenumber">1</context> | ||
5502 | </context-group> | ||
5503 | </trans-unit> | ||
5504 | <trans-unit id="cb74bc1d625a6c1742f0d7d47306cf495780c218" datatype="html"> | ||
5505 | <source>Increment hours</source> | ||
5506 | <target state="new">Increment hours</target> | ||
5507 | <context-group purpose="location"> | ||
5508 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5509 | <context context-type="linenumber">1</context> | ||
5510 | </context-group> | ||
5511 | </trans-unit> | ||
5512 | <trans-unit id="147c7a19429da7d999e247d22e33fee370b1691b" datatype="html"> | ||
5513 | <source>Decrement hours</source> | ||
5514 | <target state="new">Decrement hours</target> | ||
5515 | <context-group purpose="location"> | ||
5516 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5517 | <context context-type="linenumber">1</context> | ||
5518 | </context-group> | ||
5519 | </trans-unit> | ||
5520 | <trans-unit id="f5a4a3bc05e053f6732475d0e74875ec01c3a348" datatype="html"> | ||
5521 | <source>Increment minutes</source> | ||
5522 | <target state="new">Increment minutes</target> | ||
5523 | <context-group purpose="location"> | ||
5524 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5525 | <context context-type="linenumber">1</context> | ||
5526 | </context-group> | ||
5527 | </trans-unit> | ||
5528 | <trans-unit id="c1a6899e529c096da5b660385d4e77fe1f7ad271" datatype="html"> | ||
5529 | <source>Decrement minutes</source> | ||
5530 | <target state="new">Decrement minutes</target> | ||
5531 | <context-group purpose="location"> | ||
5532 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5533 | <context context-type="linenumber">1</context> | ||
5534 | </context-group> | ||
5535 | </trans-unit> | ||
5536 | <trans-unit id="ebe38d36a40a2383c5fefa9b4608ffbda08bd4a3" datatype="html"> | ||
5537 | <source>SS</source> | ||
5538 | <target state="new">SS</target> | ||
5539 | <context-group purpose="location"> | ||
5540 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5541 | <context context-type="linenumber">1</context> | ||
5542 | </context-group> | ||
5543 | </trans-unit> | ||
5544 | <trans-unit id="4f2ed9e71a7c981db3e50ae2fedb28aff2ec4e6c" datatype="html"> | ||
5545 | <source>Seconds</source> | ||
5546 | <target state="new">Seconds</target> | ||
5547 | <context-group purpose="location"> | ||
5548 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5549 | <context context-type="linenumber">1</context> | ||
5550 | </context-group> | ||
5551 | </trans-unit> | ||
5552 | <trans-unit id="912322ecee7d659d04dcf494a70e22e49d334b26" datatype="html"> | ||
5553 | <source>Increment seconds</source> | ||
5554 | <target state="new">Increment seconds</target> | ||
5555 | <context-group purpose="location"> | ||
5556 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5557 | <context context-type="linenumber">1</context> | ||
5558 | </context-group> | ||
5559 | </trans-unit> | ||
5560 | <trans-unit id="5db47ac104294243a70eb9124fbea9d0004ddf69" datatype="html"> | ||
5561 | <source>Decrement seconds</source> | ||
5562 | <target state="new">Decrement seconds</target> | ||
5563 | <context-group purpose="location"> | ||
5564 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5565 | <context context-type="linenumber">1</context> | ||
5566 | </context-group> | ||
5567 | </trans-unit> | ||
5568 | <trans-unit id="8d6e691e10306c1b34c6b26805151aaea320ef7f" datatype="html"> | ||
5569 | <source><x id="INTERPOLATION"/></source> | ||
5570 | <target state="new"><x id="INTERPOLATION"/></target> | ||
5571 | <context-group purpose="location"> | ||
5572 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5573 | <context context-type="linenumber">1</context> | ||
5574 | </context-group> | ||
5575 | </trans-unit> | ||
5576 | <trans-unit id="69a1f176a93998876952adac57c3bc3863b6105e" datatype="html"> | ||
5577 | <source><x id="INTERPOLATION"/></source> | ||
5578 | <target state="new"><x id="INTERPOLATION"/></target> | ||
5579 | <context-group purpose="location"> | ||
5580 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
5581 | <context context-type="linenumber">1</context> | ||
5582 | </context-group> | ||
5583 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
5584 | <source>Get help</source><target state="new">Get help</target> | 5402 | <source>Get help</source><target state="new">Get help</target> |
5585 | <context-group purpose="location"> | 5403 | <context-group purpose="location"> |
5586 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 5404 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> |
@@ -9026,7 +8844,193 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9026 | <source>Only users of this instance can see this video</source> | 8844 | <source>Only users of this instance can see this video</source> |
9027 | <target state="new">Only users of this instance can see this video</target> | 8845 | <target state="new">Only users of this instance can see this video</target> |
9028 | 8846 | ||
9029 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit> | 8847 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit><trans-unit id="ngb.alert.close" datatype="html"> |
8848 | <source>Close</source><target state="new">Close</target> | ||
8849 | <context-group purpose="location"> | ||
8850 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/alert/alert.ts</context> | ||
8851 | <context context-type="linenumber">74</context> | ||
8852 | </context-group> | ||
8853 | </trans-unit><trans-unit id="ngb.carousel.previous" datatype="html"> | ||
8854 | <source>Previous</source><target state="new">Previous</target> | ||
8855 | <context-group purpose="location"> | ||
8856 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
8857 | <context context-type="linenumber">349</context> | ||
8858 | </context-group> | ||
8859 | </trans-unit><trans-unit id="ngb.carousel.next" datatype="html"> | ||
8860 | <source>Next</source><target state="new">Next</target> | ||
8861 | <context-group purpose="location"> | ||
8862 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
8863 | <context context-type="linenumber">349</context> | ||
8864 | </context-group> | ||
8865 | </trans-unit><trans-unit id="ngb.datepicker.previous-month" datatype="html"> | ||
8866 | <source>Previous month</source><target state="new">Previous month</target> | ||
8867 | <context-group purpose="location"> | ||
8868 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation.ts</context> | ||
8869 | <context context-type="linenumber">69</context> | ||
8870 | </context-group> | ||
8871 | </trans-unit><trans-unit id="ngb.datepicker.next-month" datatype="html"> | ||
8872 | <source>Next month</source><target state="new">Next month</target> | ||
8873 | <context-group purpose="location"> | ||
8874 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-month.ts</context> | ||
8875 | <context context-type="linenumber">72</context> | ||
8876 | </context-group> | ||
8877 | </trans-unit><trans-unit id="ngb.datepicker.select-month" datatype="html"> | ||
8878 | <source>Select month</source><target state="new">Select month</target> | ||
8879 | <context-group purpose="location"> | ||
8880 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
8881 | <context context-type="linenumber">74</context> | ||
8882 | </context-group> | ||
8883 | </trans-unit><trans-unit id="ngb.datepicker.select-year" datatype="html"> | ||
8884 | <source>Select year</source><target state="new">Select year</target> | ||
8885 | <context-group purpose="location"> | ||
8886 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
8887 | <context context-type="linenumber">74</context> | ||
8888 | </context-group> | ||
8889 | </trans-unit><trans-unit id="ngb.pagination.first" datatype="html"> | ||
8890 | <source>««</source><target state="new">««</target> | ||
8891 | <context-group purpose="location"> | ||
8892 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8893 | <context context-type="linenumber">404</context> | ||
8894 | </context-group> | ||
8895 | </trans-unit><trans-unit id="ngb.pagination.previous" datatype="html"> | ||
8896 | <source>«</source><target state="new">«</target> | ||
8897 | <context-group purpose="location"> | ||
8898 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8899 | <context context-type="linenumber">404</context> | ||
8900 | </context-group> | ||
8901 | </trans-unit><trans-unit id="ngb.pagination.next" datatype="html"> | ||
8902 | <source>»</source><target state="new">»</target> | ||
8903 | <context-group purpose="location"> | ||
8904 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8905 | <context context-type="linenumber">404</context> | ||
8906 | </context-group> | ||
8907 | </trans-unit><trans-unit id="ngb.pagination.last" datatype="html"> | ||
8908 | <source>»»</source><target state="new">»»</target> | ||
8909 | <context-group purpose="location"> | ||
8910 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8911 | <context context-type="linenumber">404</context> | ||
8912 | </context-group> | ||
8913 | </trans-unit><trans-unit id="ngb.pagination.first-aria" datatype="html"> | ||
8914 | <source>First</source><target state="new">First</target> | ||
8915 | <context-group purpose="location"> | ||
8916 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8917 | <context context-type="linenumber">404</context> | ||
8918 | </context-group> | ||
8919 | </trans-unit><trans-unit id="ngb.pagination.previous-aria" datatype="html"> | ||
8920 | <source>Previous</source><target state="new">Previous</target> | ||
8921 | <context-group purpose="location"> | ||
8922 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8923 | <context context-type="linenumber">404</context> | ||
8924 | </context-group> | ||
8925 | </trans-unit><trans-unit id="ngb.pagination.next-aria" datatype="html"> | ||
8926 | <source>Next</source><target state="new">Next</target> | ||
8927 | <context-group purpose="location"> | ||
8928 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8929 | <context context-type="linenumber">404</context> | ||
8930 | </context-group> | ||
8931 | </trans-unit><trans-unit id="ngb.pagination.last-aria" datatype="html"> | ||
8932 | <source>Last</source><target state="new">Last</target> | ||
8933 | <context-group purpose="location"> | ||
8934 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8935 | <context context-type="linenumber">404</context> | ||
8936 | </context-group> | ||
8937 | </trans-unit><trans-unit id="ngb.progressbar.value" datatype="html"> | ||
8938 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
8939 | <context-group purpose="location"> | ||
8940 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/progressbar/progressbar.ts</context> | ||
8941 | <context context-type="linenumber">101</context> | ||
8942 | </context-group> | ||
8943 | </trans-unit><trans-unit id="ngb.timepicker.HH" datatype="html"> | ||
8944 | <source>HH</source><target state="new">HH</target> | ||
8945 | <context-group purpose="location"> | ||
8946 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8947 | <context context-type="linenumber">296</context> | ||
8948 | </context-group> | ||
8949 | </trans-unit><trans-unit id="ngb.timepicker.hours" datatype="html"> | ||
8950 | <source>Hours</source><target state="new">Hours</target> | ||
8951 | <context-group purpose="location"> | ||
8952 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8953 | <context context-type="linenumber">296</context> | ||
8954 | </context-group> | ||
8955 | </trans-unit><trans-unit id="ngb.timepicker.MM" datatype="html"> | ||
8956 | <source>MM</source><target state="new">MM</target> | ||
8957 | <context-group purpose="location"> | ||
8958 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8959 | <context context-type="linenumber">296</context> | ||
8960 | </context-group> | ||
8961 | </trans-unit><trans-unit id="ngb.timepicker.minutes" datatype="html"> | ||
8962 | <source>Minutes</source><target state="new">Minutes</target> | ||
8963 | <context-group purpose="location"> | ||
8964 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8965 | <context context-type="linenumber">296</context> | ||
8966 | </context-group> | ||
8967 | </trans-unit><trans-unit id="ngb.timepicker.increment-hours" datatype="html"> | ||
8968 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
8969 | <context-group purpose="location"> | ||
8970 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8971 | <context context-type="linenumber">296</context> | ||
8972 | </context-group> | ||
8973 | </trans-unit><trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> | ||
8974 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
8975 | <context-group purpose="location"> | ||
8976 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8977 | <context context-type="linenumber">296</context> | ||
8978 | </context-group> | ||
8979 | </trans-unit><trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> | ||
8980 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
8981 | <context-group purpose="location"> | ||
8982 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8983 | <context context-type="linenumber">296</context> | ||
8984 | </context-group> | ||
8985 | </trans-unit><trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> | ||
8986 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
8987 | <context-group purpose="location"> | ||
8988 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8989 | <context context-type="linenumber">296</context> | ||
8990 | </context-group> | ||
8991 | </trans-unit><trans-unit id="ngb.timepicker.SS" datatype="html"> | ||
8992 | <source>SS</source><target state="new">SS</target> | ||
8993 | <context-group purpose="location"> | ||
8994 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8995 | <context context-type="linenumber">296</context> | ||
8996 | </context-group> | ||
8997 | </trans-unit><trans-unit id="ngb.timepicker.seconds" datatype="html"> | ||
8998 | <source>Seconds</source><target state="new">Seconds</target> | ||
8999 | <context-group purpose="location"> | ||
9000 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9001 | <context context-type="linenumber">296</context> | ||
9002 | </context-group> | ||
9003 | </trans-unit><trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> | ||
9004 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
9005 | <context-group purpose="location"> | ||
9006 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9007 | <context context-type="linenumber">296</context> | ||
9008 | </context-group> | ||
9009 | </trans-unit><trans-unit id="ngb.timepicker.decrement-seconds" datatype="html"> | ||
9010 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
9011 | <context-group purpose="location"> | ||
9012 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9013 | <context context-type="linenumber">296</context> | ||
9014 | </context-group> | ||
9015 | </trans-unit><trans-unit id="ngb.timepicker.PM" datatype="html"> | ||
9016 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9017 | <context-group purpose="location"> | ||
9018 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9019 | <context context-type="linenumber">296</context> | ||
9020 | </context-group> | ||
9021 | </trans-unit><trans-unit id="ngb.timepicker.AM" datatype="html"> | ||
9022 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
9023 | <context-group purpose="location"> | ||
9024 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
9025 | <context context-type="linenumber">296</context> | ||
9026 | </context-group> | ||
9027 | </trans-unit><trans-unit id="ngb.toast.close-aria" datatype="html"> | ||
9028 | <source>Close</source><target state="new">Close</target> | ||
9029 | <context-group purpose="location"> | ||
9030 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/toast/toast.ts</context> | ||
9031 | <context context-type="linenumber">137</context> | ||
9032 | </context-group> | ||
9033 | </trans-unit> | ||
9030 | <trans-unit id="5210096066382592800"> | 9034 | <trans-unit id="5210096066382592800"> |
9031 | <source>Video to import updated.</source> | 9035 | <source>Video to import updated.</source> |
9032 | <target>已更新待导入的视频。</target> | 9036 | <target>已更新待导入的视频。</target> |
diff --git a/client/src/locale/angular.zh-Hant-TW.xlf b/client/src/locale/angular.zh-Hant-TW.xlf index 817f9af1b..481d753e0 100644 --- a/client/src/locale/angular.zh-Hant-TW.xlf +++ b/client/src/locale/angular.zh-Hant-TW.xlf | |||
@@ -906,16 +906,9 @@ The link will expire within 1 hour.</source> | |||
906 | <trans-unit id="f4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8"> | 906 | <trans-unit id="f4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8"> |
907 | <source>Close</source> | 907 | <source>Close</source> |
908 | <target>關閉</target> | 908 | <target>關閉</target> |
909 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group> | 909 | |
910 | </trans-unit> | 910 | <context-group purpose="location"><context context-type="sourcefile">../app/modal/instance-config-warning-modal.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
911 | <trans-unit id="680d5c75b7fd8d37961083608b9fcdc4167b4c43" datatype="html"> | 911 | |
912 | <source>Previous</source> | ||
913 | <target state="translated">上一個</target> | ||
914 | <context-group purpose="location"> | ||
915 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
916 | <context context-type="linenumber">1</context> | ||
917 | </context-group> | ||
918 | </trans-unit> | ||
919 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> | 912 | <trans-unit id="c2fe7580753ac7c1442df31eb97f8acc6fa250e6" datatype="html"> |
920 | <source>Configure</source> | 913 | <source>Configure</source> |
921 | <target state="translated">設定</target> | 914 | <target state="translated">設定</target> |
@@ -4658,208 +4651,33 @@ channel with the same name (<x id="PH_2"/>)!</source> | |||
4658 | <trans-unit id="f732c304c7433e5a83ffcd862c3dce709a0f4982"> | 4651 | <trans-unit id="f732c304c7433e5a83ffcd862c3dce709a0f4982"> |
4659 | <source>Next</source> | 4652 | <source>Next</source> |
4660 | <target>下一個</target> | 4653 | <target>下一個</target> |
4661 | <context-group purpose="location"><context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context><context context-type="linenumber">1</context></context-group> | 4654 | |
4662 | </trans-unit> | 4655 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register.component.html</context><context context-type="linenumber">20</context></context-group></trans-unit> |
4663 | <trans-unit id="c3b08b07b5ab98e7cdcf18df39355690ab7d3884" datatype="html"> | 4656 | |
4664 | <source>Previous month</source> | 4657 | |
4665 | <target state="translated">上個月</target> | 4658 | |
4666 | <context-group purpose="location"> | 4659 | |
4667 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 4660 | |
4668 | <context context-type="linenumber">1</context> | 4661 | |
4669 | </context-group> | 4662 | |
4670 | </trans-unit> | 4663 | |
4671 | <trans-unit id="4bd046985cfe13040d5ef0cd881edce0968a111a" datatype="html"> | 4664 | |
4672 | <source>Next month</source> | 4665 | |
4673 | <target state="translated">下個月</target> | 4666 | |
4674 | <context-group purpose="location"> | 4667 | |
4675 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 4668 | |
4676 | <context context-type="linenumber">1</context> | 4669 | |
4677 | </context-group> | 4670 | |
4678 | </trans-unit> | 4671 | |
4679 | <trans-unit id="1dbc84807f35518112f62e5775d1daebd3d8462b" datatype="html"> | 4672 | |
4680 | <source>Select month</source> | 4673 | |
4681 | <target state="translated">選取月份</target> | 4674 | |
4682 | <context-group purpose="location"> | 4675 | |
4683 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 4676 | |
4684 | <context context-type="linenumber">1</context> | 4677 | |
4685 | </context-group> | 4678 | |
4686 | </trans-unit> | 4679 | |
4687 | <trans-unit id="8ceb09d002bf0c5d1cac171dfbffe1805d2b3962" datatype="html"> | 4680 | <trans-unit id="9082008222523034483" datatype="html"> |
4688 | <source>Select year</source> | ||
4689 | <target state="translated">選取年份</target> | ||
4690 | <context-group purpose="location"> | ||
4691 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4692 | <context context-type="linenumber">1</context> | ||
4693 | </context-group> | ||
4694 | </trans-unit> | ||
4695 | <trans-unit id="656506dfd46380956a655f919f1498d018f75ca0" datatype="html"> | ||
4696 | <source>««</source> | ||
4697 | <target state="translated">««</target> | ||
4698 | <context-group purpose="location"> | ||
4699 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4700 | <context context-type="linenumber">1</context> | ||
4701 | </context-group> | ||
4702 | </trans-unit> | ||
4703 | <trans-unit id="6e52b6ee77a4848d899dd21b591c6fd499e3aef3" datatype="html"> | ||
4704 | <source>«</source> | ||
4705 | <target state="translated">«</target> | ||
4706 | <context-group purpose="location"> | ||
4707 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4708 | <context context-type="linenumber">1</context> | ||
4709 | </context-group> | ||
4710 | </trans-unit> | ||
4711 | <trans-unit id="ba9cbb4ff311464308a3627e4f1c3345d9fe6d7d" datatype="html"> | ||
4712 | <source>»</source> | ||
4713 | <target state="translated">»</target> | ||
4714 | <context-group purpose="location"> | ||
4715 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4716 | <context context-type="linenumber">1</context> | ||
4717 | </context-group> | ||
4718 | </trans-unit> | ||
4719 | <trans-unit id="49f27a460bc97e7e00be5b37098bfa79884fc7d9" datatype="html"> | ||
4720 | <source>»»</source> | ||
4721 | <target state="translated">»»</target> | ||
4722 | <context-group purpose="location"> | ||
4723 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4724 | <context context-type="linenumber">1</context> | ||
4725 | </context-group> | ||
4726 | </trans-unit> | ||
4727 | <trans-unit id="f2f852318759c6396b5d3d17031d53817d7b38cc" datatype="html"> | ||
4728 | <source>First</source> | ||
4729 | <target state="translated">第一</target> | ||
4730 | <context-group purpose="location"> | ||
4731 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4732 | <context context-type="linenumber">1</context> | ||
4733 | </context-group> | ||
4734 | </trans-unit> | ||
4735 | <trans-unit id="5c729788ba138508aca1bec050b610f7bf81db3e" datatype="html"> | ||
4736 | <source>Last</source> | ||
4737 | <target state="translated">最末</target> | ||
4738 | <context-group purpose="location"> | ||
4739 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4740 | <context context-type="linenumber">1</context> | ||
4741 | </context-group> | ||
4742 | </trans-unit> | ||
4743 | <trans-unit id="f8e9a947b9db4252c0e9905765338712f2fd032f" datatype="html"> | ||
4744 | <source><x id="INTERPOLATION"/></source> | ||
4745 | <target state="translated"><x id="INTERPOLATION"/></target> | ||
4746 | <context-group purpose="location"> | ||
4747 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4748 | <context context-type="linenumber">1</context> | ||
4749 | </context-group> | ||
4750 | </trans-unit> | ||
4751 | <trans-unit id="ce676ab1d6d98f85c836381cf100a4a91ef95a1f" datatype="html"> | ||
4752 | <source>HH</source> | ||
4753 | <target state="translated">HH</target> | ||
4754 | <context-group purpose="location"> | ||
4755 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4756 | <context context-type="linenumber">1</context> | ||
4757 | </context-group> | ||
4758 | </trans-unit> | ||
4759 | <trans-unit id="3bbce5fef7e1151da052a4e529453edb340e3912" datatype="html"> | ||
4760 | <source>Hours</source> | ||
4761 | <target state="translated">小時</target> | ||
4762 | <context-group purpose="location"> | ||
4763 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4764 | <context context-type="linenumber">1</context> | ||
4765 | </context-group> | ||
4766 | </trans-unit> | ||
4767 | <trans-unit id="72c8edf6a50068a05bde70991e36b1e881f4ca54" datatype="html"> | ||
4768 | <source>MM</source> | ||
4769 | <target state="translated">MM</target> | ||
4770 | <context-group purpose="location"> | ||
4771 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4772 | <context context-type="linenumber">1</context> | ||
4773 | </context-group> | ||
4774 | </trans-unit> | ||
4775 | <trans-unit id="41e62daa962947c0d23ded0981975d1bddf0bf38" datatype="html"> | ||
4776 | <source>Minutes</source> | ||
4777 | <target state="translated">分鐘</target> | ||
4778 | <context-group purpose="location"> | ||
4779 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4780 | <context context-type="linenumber">1</context> | ||
4781 | </context-group> | ||
4782 | </trans-unit> | ||
4783 | <trans-unit id="cb74bc1d625a6c1742f0d7d47306cf495780c218" datatype="html"> | ||
4784 | <source>Increment hours</source> | ||
4785 | <target state="translated">小時遞增</target> | ||
4786 | <context-group purpose="location"> | ||
4787 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4788 | <context context-type="linenumber">1</context> | ||
4789 | </context-group> | ||
4790 | </trans-unit> | ||
4791 | <trans-unit id="147c7a19429da7d999e247d22e33fee370b1691b" datatype="html"> | ||
4792 | <source>Decrement hours</source> | ||
4793 | <target state="translated">小時遞減</target> | ||
4794 | <context-group purpose="location"> | ||
4795 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4796 | <context context-type="linenumber">1</context> | ||
4797 | </context-group> | ||
4798 | </trans-unit> | ||
4799 | <trans-unit id="f5a4a3bc05e053f6732475d0e74875ec01c3a348" datatype="html"> | ||
4800 | <source>Increment minutes</source> | ||
4801 | <target state="translated">分鐘遞增</target> | ||
4802 | <context-group purpose="location"> | ||
4803 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4804 | <context context-type="linenumber">1</context> | ||
4805 | </context-group> | ||
4806 | </trans-unit> | ||
4807 | <trans-unit id="c1a6899e529c096da5b660385d4e77fe1f7ad271" datatype="html"> | ||
4808 | <source>Decrement minutes</source> | ||
4809 | <target state="translated">分鐘遞減</target> | ||
4810 | <context-group purpose="location"> | ||
4811 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4812 | <context context-type="linenumber">1</context> | ||
4813 | </context-group> | ||
4814 | </trans-unit> | ||
4815 | <trans-unit id="ebe38d36a40a2383c5fefa9b4608ffbda08bd4a3" datatype="html"> | ||
4816 | <source>SS</source> | ||
4817 | <target state="translated">SS</target> | ||
4818 | <context-group purpose="location"> | ||
4819 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4820 | <context context-type="linenumber">1</context> | ||
4821 | </context-group> | ||
4822 | </trans-unit> | ||
4823 | <trans-unit id="4f2ed9e71a7c981db3e50ae2fedb28aff2ec4e6c" datatype="html"> | ||
4824 | <source>Seconds</source> | ||
4825 | <target state="translated">秒</target> | ||
4826 | <context-group purpose="location"> | ||
4827 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4828 | <context context-type="linenumber">1</context> | ||
4829 | </context-group> | ||
4830 | </trans-unit> | ||
4831 | <trans-unit id="912322ecee7d659d04dcf494a70e22e49d334b26" datatype="html"> | ||
4832 | <source>Increment seconds</source> | ||
4833 | <target state="translated">秒遞增</target> | ||
4834 | <context-group purpose="location"> | ||
4835 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4836 | <context context-type="linenumber">1</context> | ||
4837 | </context-group> | ||
4838 | </trans-unit> | ||
4839 | <trans-unit id="5db47ac104294243a70eb9124fbea9d0004ddf69" datatype="html"> | ||
4840 | <source>Decrement seconds</source> | ||
4841 | <target state="translated">秒遞減</target> | ||
4842 | <context-group purpose="location"> | ||
4843 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4844 | <context context-type="linenumber">1</context> | ||
4845 | </context-group> | ||
4846 | </trans-unit> | ||
4847 | <trans-unit id="8d6e691e10306c1b34c6b26805151aaea320ef7f" datatype="html"> | ||
4848 | <source><x id="INTERPOLATION"/></source> | ||
4849 | <target state="translated"><x id="INTERPOLATION"/></target> | ||
4850 | <context-group purpose="location"> | ||
4851 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4852 | <context context-type="linenumber">1</context> | ||
4853 | </context-group> | ||
4854 | </trans-unit> | ||
4855 | <trans-unit id="69a1f176a93998876952adac57c3bc3863b6105e" datatype="html"> | ||
4856 | <source><x id="INTERPOLATION"/></source> | ||
4857 | <target state="translated"><x id="INTERPOLATION"/></target> | ||
4858 | <context-group purpose="location"> | ||
4859 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | ||
4860 | <context context-type="linenumber">1</context> | ||
4861 | </context-group> | ||
4862 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
4863 | <source>Get help</source><target state="new">Get help</target> | 4681 | <source>Get help</source><target state="new">Get help</target> |
4864 | <context-group purpose="location"> | 4682 | <context-group purpose="location"> |
4865 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 4683 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> |
@@ -8155,7 +7973,193 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8155 | <source>Only users of this instance can see this video</source> | 7973 | <source>Only users of this instance can see this video</source> |
8156 | <target state="translated">僅此站臺的使用者才可觀看此影片</target> | 7974 | <target state="translated">僅此站臺的使用者才可觀看此影片</target> |
8157 | 7975 | ||
8158 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit> | 7976 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">354</context></context-group></trans-unit><trans-unit id="ngb.alert.close" datatype="html"> |
7977 | <source>Close</source><target state="new">Close</target> | ||
7978 | <context-group purpose="location"> | ||
7979 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/alert/alert.ts</context> | ||
7980 | <context context-type="linenumber">74</context> | ||
7981 | </context-group> | ||
7982 | </trans-unit><trans-unit id="ngb.carousel.previous" datatype="html"> | ||
7983 | <source>Previous</source><target state="new">Previous</target> | ||
7984 | <context-group purpose="location"> | ||
7985 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
7986 | <context context-type="linenumber">349</context> | ||
7987 | </context-group> | ||
7988 | </trans-unit><trans-unit id="ngb.carousel.next" datatype="html"> | ||
7989 | <source>Next</source><target state="new">Next</target> | ||
7990 | <context-group purpose="location"> | ||
7991 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/carousel/carousel.ts</context> | ||
7992 | <context context-type="linenumber">349</context> | ||
7993 | </context-group> | ||
7994 | </trans-unit><trans-unit id="ngb.datepicker.previous-month" datatype="html"> | ||
7995 | <source>Previous month</source><target state="new">Previous month</target> | ||
7996 | <context-group purpose="location"> | ||
7997 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation.ts</context> | ||
7998 | <context context-type="linenumber">69</context> | ||
7999 | </context-group> | ||
8000 | </trans-unit><trans-unit id="ngb.datepicker.next-month" datatype="html"> | ||
8001 | <source>Next month</source><target state="new">Next month</target> | ||
8002 | <context-group purpose="location"> | ||
8003 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-month.ts</context> | ||
8004 | <context context-type="linenumber">72</context> | ||
8005 | </context-group> | ||
8006 | </trans-unit><trans-unit id="ngb.datepicker.select-month" datatype="html"> | ||
8007 | <source>Select month</source><target state="new">Select month</target> | ||
8008 | <context-group purpose="location"> | ||
8009 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
8010 | <context context-type="linenumber">74</context> | ||
8011 | </context-group> | ||
8012 | </trans-unit><trans-unit id="ngb.datepicker.select-year" datatype="html"> | ||
8013 | <source>Select year</source><target state="new">Select year</target> | ||
8014 | <context-group purpose="location"> | ||
8015 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/datepicker/datepicker-navigation-select.ts</context> | ||
8016 | <context context-type="linenumber">74</context> | ||
8017 | </context-group> | ||
8018 | </trans-unit><trans-unit id="ngb.pagination.first" datatype="html"> | ||
8019 | <source>««</source><target state="new">««</target> | ||
8020 | <context-group purpose="location"> | ||
8021 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8022 | <context context-type="linenumber">404</context> | ||
8023 | </context-group> | ||
8024 | </trans-unit><trans-unit id="ngb.pagination.previous" datatype="html"> | ||
8025 | <source>«</source><target state="new">«</target> | ||
8026 | <context-group purpose="location"> | ||
8027 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8028 | <context context-type="linenumber">404</context> | ||
8029 | </context-group> | ||
8030 | </trans-unit><trans-unit id="ngb.pagination.next" datatype="html"> | ||
8031 | <source>»</source><target state="new">»</target> | ||
8032 | <context-group purpose="location"> | ||
8033 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8034 | <context context-type="linenumber">404</context> | ||
8035 | </context-group> | ||
8036 | </trans-unit><trans-unit id="ngb.pagination.last" datatype="html"> | ||
8037 | <source>»»</source><target state="new">»»</target> | ||
8038 | <context-group purpose="location"> | ||
8039 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8040 | <context context-type="linenumber">404</context> | ||
8041 | </context-group> | ||
8042 | </trans-unit><trans-unit id="ngb.pagination.first-aria" datatype="html"> | ||
8043 | <source>First</source><target state="new">First</target> | ||
8044 | <context-group purpose="location"> | ||
8045 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8046 | <context context-type="linenumber">404</context> | ||
8047 | </context-group> | ||
8048 | </trans-unit><trans-unit id="ngb.pagination.previous-aria" datatype="html"> | ||
8049 | <source>Previous</source><target state="new">Previous</target> | ||
8050 | <context-group purpose="location"> | ||
8051 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8052 | <context context-type="linenumber">404</context> | ||
8053 | </context-group> | ||
8054 | </trans-unit><trans-unit id="ngb.pagination.next-aria" datatype="html"> | ||
8055 | <source>Next</source><target state="new">Next</target> | ||
8056 | <context-group purpose="location"> | ||
8057 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8058 | <context context-type="linenumber">404</context> | ||
8059 | </context-group> | ||
8060 | </trans-unit><trans-unit id="ngb.pagination.last-aria" datatype="html"> | ||
8061 | <source>Last</source><target state="new">Last</target> | ||
8062 | <context-group purpose="location"> | ||
8063 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/pagination/pagination.ts</context> | ||
8064 | <context context-type="linenumber">404</context> | ||
8065 | </context-group> | ||
8066 | </trans-unit><trans-unit id="ngb.progressbar.value" datatype="html"> | ||
8067 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
8068 | <context-group purpose="location"> | ||
8069 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/progressbar/progressbar.ts</context> | ||
8070 | <context context-type="linenumber">101</context> | ||
8071 | </context-group> | ||
8072 | </trans-unit><trans-unit id="ngb.timepicker.HH" datatype="html"> | ||
8073 | <source>HH</source><target state="new">HH</target> | ||
8074 | <context-group purpose="location"> | ||
8075 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8076 | <context context-type="linenumber">296</context> | ||
8077 | </context-group> | ||
8078 | </trans-unit><trans-unit id="ngb.timepicker.hours" datatype="html"> | ||
8079 | <source>Hours</source><target state="new">Hours</target> | ||
8080 | <context-group purpose="location"> | ||
8081 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8082 | <context context-type="linenumber">296</context> | ||
8083 | </context-group> | ||
8084 | </trans-unit><trans-unit id="ngb.timepicker.MM" datatype="html"> | ||
8085 | <source>MM</source><target state="new">MM</target> | ||
8086 | <context-group purpose="location"> | ||
8087 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8088 | <context context-type="linenumber">296</context> | ||
8089 | </context-group> | ||
8090 | </trans-unit><trans-unit id="ngb.timepicker.minutes" datatype="html"> | ||
8091 | <source>Minutes</source><target state="new">Minutes</target> | ||
8092 | <context-group purpose="location"> | ||
8093 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8094 | <context context-type="linenumber">296</context> | ||
8095 | </context-group> | ||
8096 | </trans-unit><trans-unit id="ngb.timepicker.increment-hours" datatype="html"> | ||
8097 | <source>Increment hours</source><target state="new">Increment hours</target> | ||
8098 | <context-group purpose="location"> | ||
8099 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8100 | <context context-type="linenumber">296</context> | ||
8101 | </context-group> | ||
8102 | </trans-unit><trans-unit id="ngb.timepicker.decrement-hours" datatype="html"> | ||
8103 | <source>Decrement hours</source><target state="new">Decrement hours</target> | ||
8104 | <context-group purpose="location"> | ||
8105 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8106 | <context context-type="linenumber">296</context> | ||
8107 | </context-group> | ||
8108 | </trans-unit><trans-unit id="ngb.timepicker.increment-minutes" datatype="html"> | ||
8109 | <source>Increment minutes</source><target state="new">Increment minutes</target> | ||
8110 | <context-group purpose="location"> | ||
8111 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8112 | <context context-type="linenumber">296</context> | ||
8113 | </context-group> | ||
8114 | </trans-unit><trans-unit id="ngb.timepicker.decrement-minutes" datatype="html"> | ||
8115 | <source>Decrement minutes</source><target state="new">Decrement minutes</target> | ||
8116 | <context-group purpose="location"> | ||
8117 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8118 | <context context-type="linenumber">296</context> | ||
8119 | </context-group> | ||
8120 | </trans-unit><trans-unit id="ngb.timepicker.SS" datatype="html"> | ||
8121 | <source>SS</source><target state="new">SS</target> | ||
8122 | <context-group purpose="location"> | ||
8123 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8124 | <context context-type="linenumber">296</context> | ||
8125 | </context-group> | ||
8126 | </trans-unit><trans-unit id="ngb.timepicker.seconds" datatype="html"> | ||
8127 | <source>Seconds</source><target state="new">Seconds</target> | ||
8128 | <context-group purpose="location"> | ||
8129 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8130 | <context context-type="linenumber">296</context> | ||
8131 | </context-group> | ||
8132 | </trans-unit><trans-unit id="ngb.timepicker.increment-seconds" datatype="html"> | ||
8133 | <source>Increment seconds</source><target state="new">Increment seconds</target> | ||
8134 | <context-group purpose="location"> | ||
8135 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8136 | <context context-type="linenumber">296</context> | ||
8137 | </context-group> | ||
8138 | </trans-unit><trans-unit id="ngb.timepicker.decrement-seconds" datatype="html"> | ||
8139 | <source>Decrement seconds</source><target state="new">Decrement seconds</target> | ||
8140 | <context-group purpose="location"> | ||
8141 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8142 | <context context-type="linenumber">296</context> | ||
8143 | </context-group> | ||
8144 | </trans-unit><trans-unit id="ngb.timepicker.PM" datatype="html"> | ||
8145 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
8146 | <context-group purpose="location"> | ||
8147 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8148 | <context context-type="linenumber">296</context> | ||
8149 | </context-group> | ||
8150 | </trans-unit><trans-unit id="ngb.timepicker.AM" datatype="html"> | ||
8151 | <source><x id="INTERPOLATION"/></source><target state="new"><x id="INTERPOLATION"/></target> | ||
8152 | <context-group purpose="location"> | ||
8153 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/timepicker/timepicker.ts</context> | ||
8154 | <context context-type="linenumber">296</context> | ||
8155 | </context-group> | ||
8156 | </trans-unit><trans-unit id="ngb.toast.close-aria" datatype="html"> | ||
8157 | <source>Close</source><target state="new">Close</target> | ||
8158 | <context-group purpose="location"> | ||
8159 | <context context-type="sourcefile">../../node_modules/@ng-bootstrap/ng-bootstrap/__ivy_ngcc__/fesm2015/@ng-bootstrap/ng-bootstrap/toast/toast.ts</context> | ||
8160 | <context context-type="linenumber">137</context> | ||
8161 | </context-group> | ||
8162 | </trans-unit> | ||
8159 | <trans-unit id="5210096066382592800"> | 8163 | <trans-unit id="5210096066382592800"> |
8160 | <source>Video to import updated.</source> | 8164 | <source>Video to import updated.</source> |
8161 | <target>匯入的影片已更新。</target> | 8165 | <target>匯入的影片已更新。</target> |
diff --git a/client/src/sass/application.scss b/client/src/sass/application.scss index 3be8f057b..351676a38 100644 --- a/client/src/sass/application.scss +++ b/client/src/sass/application.scss | |||
@@ -161,7 +161,7 @@ code { | |||
161 | 161 | ||
162 | &.sub-menu-fixed { | 162 | &.sub-menu-fixed { |
163 | position: fixed; | 163 | position: fixed; |
164 | z-index: #{z('header') - 1}; | 164 | z-index: #{z('sub-menu') - 1}; |
165 | } | 165 | } |
166 | } | 166 | } |
167 | 167 | ||
diff --git a/client/src/sass/bootstrap.scss b/client/src/sass/bootstrap.scss index a3b60198c..259af7a77 100644 --- a/client/src/sass/bootstrap.scss +++ b/client/src/sass/bootstrap.scss | |||
@@ -27,15 +27,24 @@ $icon-font-path: '~@neos21/bootstrap3-glyphicons/assets/fonts/'; | |||
27 | } | 27 | } |
28 | 28 | ||
29 | /* rules for dropdowns excepts when in button group, to avoid impacting the dropdown-toggle */ | 29 | /* rules for dropdowns excepts when in button group, to avoid impacting the dropdown-toggle */ |
30 | .dropdown:not(.btn-group):not(.dropdown-root):not(.action-dropdown):not(.input-group-prepend):not(.column-toggle) { | 30 | .dropdown { |
31 | z-index: z(dropdown) !important; | 31 | z-index: z(dropdown) !important; |
32 | } | ||
32 | 33 | ||
33 | &.list-overflow-menu, | 34 | .list-overflow-menu, |
34 | &.parent-entry { | 35 | .parent-entry { |
35 | z-index: z(header) - 1 !important; | 36 | z-index: z(header) - 1 !important; |
36 | } | ||
37 | } | 37 | } |
38 | 38 | ||
39 | .btn-group, | ||
40 | .dropdown-root, | ||
41 | .action-dropdown, | ||
42 | .input-group-prepend, | ||
43 | .column-toggle { | ||
44 | z-index: inherit !important; | ||
45 | } | ||
46 | |||
47 | |||
39 | .dropdown-menu { | 48 | .dropdown-menu { |
40 | z-index: z(dropdown) + 1 !important; | 49 | z-index: z(dropdown) + 1 !important; |
41 | 50 | ||
@@ -167,7 +176,7 @@ $icon-font-path: '~@neos21/bootstrap3-glyphicons/assets/fonts/'; | |||
167 | content: ''; | 176 | content: ''; |
168 | display: block; | 177 | display: block; |
169 | position: fixed; | 178 | position: fixed; |
170 | z-index: z('header') - 1; | 179 | z-index: z('menu') - 1; |
171 | } | 180 | } |
172 | } | 181 | } |
173 | } | 182 | } |
diff --git a/client/src/sass/include/_variables.scss b/client/src/sass/include/_variables.scss index 130462b89..565f9b512 100644 --- a/client/src/sass/include/_variables.scss +++ b/client/src/sass/include/_variables.scss | |||
@@ -124,19 +124,20 @@ $variables: ( | |||
124 | /*** z-index groups ***/ | 124 | /*** z-index groups ***/ |
125 | 125 | ||
126 | $zindex: ( | 126 | $zindex: ( |
127 | miniature : 10, | 127 | miniature : 10, |
128 | privacymsg : 20, | 128 | privacymsg : 20, |
129 | typeahead : 30, | 129 | dropdown : 12000, |
130 | header : 1000, | 130 | sub-menu : 12500, |
131 | menu : 11000, | 131 | menu : 12600, |
132 | dropdown : 12000, | 132 | search-typeahead: 12650, |
133 | popover : 13000, | 133 | header : 12700, |
134 | tooltip : 14000, | 134 | popover : 13000, |
135 | loadbar : 15000, | 135 | tooltip : 14000, |
136 | modal : 16000, | 136 | loadbar : 15000, |
137 | help-popover : 17000, | 137 | modal : 16000, |
138 | notification : 18000, | 138 | help-popover : 17000, |
139 | hotkeys : 19000 | 139 | notification : 18000, |
140 | hotkeys : 19000 | ||
140 | ); | 141 | ); |
141 | 142 | ||
142 | @function z($label) { | 143 | @function z($label) { |
diff --git a/client/yarn.lock b/client/yarn.lock index d33a7020f..f55da88a4 100644 --- a/client/yarn.lock +++ b/client/yarn.lock | |||
@@ -2,31 +2,31 @@ | |||
2 | # yarn lockfile v1 | 2 | # yarn lockfile v1 |
3 | 3 | ||
4 | 4 | ||
5 | "@angular-devkit/architect@0.1001.0-next.4": | 5 | "@angular-devkit/architect@0.1001.0-next.6": |
6 | version "0.1001.0-next.4" | 6 | version "0.1001.0-next.6" |
7 | resolved "https://registry.yarnpkg.com/@angular-devkit/architect/-/architect-0.1001.0-next.4.tgz#88764dd9668bf1b2830fa45e90f53d1ebc845fcc" | 7 | resolved "https://registry.yarnpkg.com/@angular-devkit/architect/-/architect-0.1001.0-next.6.tgz#484e9fb5d5cceef42ebd6514d197a2381c7e9e20" |
8 | integrity sha512-g8kklud/eA/wSKOIPNisgw9lttkU4GtAco33CBp3R5JACSc3uVv0FgW/sU6jPS87Az+he1Lj053oQTows4ugBA== | 8 | integrity sha512-iZ8jAwhCyrCOraOMlecqZ+shwYAplWRc6gjAmt3YmH1h52Bqt+GcVfIL1KVqHHIiVj6XO11qaEveawxOtqQZZg== |
9 | dependencies: | 9 | dependencies: |
10 | "@angular-devkit/core" "10.1.0-next.4" | 10 | "@angular-devkit/core" "10.1.0-next.6" |
11 | rxjs "6.6.2" | 11 | rxjs "6.6.2" |
12 | 12 | ||
13 | "@angular-devkit/build-angular@^0.1001.0-next.4": | 13 | "@angular-devkit/build-angular@^0.1001.0-next.6": |
14 | version "0.1001.0-next.4" | 14 | version "0.1001.0-next.6" |
15 | resolved "https://registry.yarnpkg.com/@angular-devkit/build-angular/-/build-angular-0.1001.0-next.4.tgz#2fd0c602b809acb868a5dad3d1a116cd8e40298b" | 15 | resolved "https://registry.yarnpkg.com/@angular-devkit/build-angular/-/build-angular-0.1001.0-next.6.tgz#ce402cf67a3905e510900ebe8e2d61e77932a2b1" |
16 | integrity sha512-mFcUI1zCW7KqyldCVcsuVr9frxZliiU7wDywsVYWv4q3ko3TzvGHT6q6cqM7IhjbLEvrdasglKT3C5adfl6zJw== | 16 | integrity sha512-fWPb5EjkofDSiVFs308bcmG3lpEdE+ZULykPul6cLJzKPYDm4SvFJB6ubHZbvqXo9E46+QCVi9lQ5Opwq+QncA== |
17 | dependencies: | 17 | dependencies: |
18 | "@angular-devkit/architect" "0.1001.0-next.4" | 18 | "@angular-devkit/architect" "0.1001.0-next.6" |
19 | "@angular-devkit/build-optimizer" "0.1001.0-next.4" | 19 | "@angular-devkit/build-optimizer" "0.1001.0-next.6" |
20 | "@angular-devkit/build-webpack" "0.1001.0-next.4" | 20 | "@angular-devkit/build-webpack" "0.1001.0-next.6" |
21 | "@angular-devkit/core" "10.1.0-next.4" | 21 | "@angular-devkit/core" "10.1.0-next.6" |
22 | "@babel/core" "7.11.0" | 22 | "@babel/core" "7.11.1" |
23 | "@babel/generator" "7.11.0" | 23 | "@babel/generator" "7.11.0" |
24 | "@babel/plugin-transform-runtime" "7.11.0" | 24 | "@babel/plugin-transform-runtime" "7.11.0" |
25 | "@babel/preset-env" "7.11.0" | 25 | "@babel/preset-env" "7.11.0" |
26 | "@babel/runtime" "7.11.0" | 26 | "@babel/runtime" "7.11.2" |
27 | "@babel/template" "7.10.4" | 27 | "@babel/template" "7.10.4" |
28 | "@jsdevtools/coverage-istanbul-loader" "3.0.5" | 28 | "@jsdevtools/coverage-istanbul-loader" "3.0.5" |
29 | "@ngtools/webpack" "10.1.0-next.4" | 29 | "@ngtools/webpack" "10.1.0-next.6" |
30 | autoprefixer "9.8.6" | 30 | autoprefixer "9.8.6" |
31 | babel-loader "8.1.0" | 31 | babel-loader "8.1.0" |
32 | browserslist "^4.9.1" | 32 | browserslist "^4.9.1" |
@@ -35,17 +35,17 @@ | |||
35 | circular-dependency-plugin "5.2.0" | 35 | circular-dependency-plugin "5.2.0" |
36 | copy-webpack-plugin "6.0.3" | 36 | copy-webpack-plugin "6.0.3" |
37 | core-js "3.6.4" | 37 | core-js "3.6.4" |
38 | css-loader "4.2.0" | 38 | css-loader "4.2.1" |
39 | cssnano "4.1.10" | 39 | cssnano "4.1.10" |
40 | file-loader "6.0.0" | 40 | file-loader "6.0.0" |
41 | find-cache-dir "3.3.1" | 41 | find-cache-dir "3.3.1" |
42 | glob "7.1.6" | 42 | glob "7.1.6" |
43 | jest-worker "26.2.1" | 43 | jest-worker "26.3.0" |
44 | karma-source-map-support "1.4.0" | 44 | karma-source-map-support "1.4.0" |
45 | less-loader "6.2.0" | 45 | less-loader "6.2.0" |
46 | license-webpack-plugin "2.3.0" | 46 | license-webpack-plugin "2.3.0" |
47 | loader-utils "2.0.0" | 47 | loader-utils "2.0.0" |
48 | mini-css-extract-plugin "0.9.0" | 48 | mini-css-extract-plugin "0.10.0" |
49 | minimatch "3.0.4" | 49 | minimatch "3.0.4" |
50 | open "7.1.0" | 50 | open "7.1.0" |
51 | parse5 "6.0.1" | 51 | parse5 "6.0.1" |
@@ -58,20 +58,20 @@ | |||
58 | regenerator-runtime "0.13.7" | 58 | regenerator-runtime "0.13.7" |
59 | resolve-url-loader "3.1.1" | 59 | resolve-url-loader "3.1.1" |
60 | rimraf "3.0.2" | 60 | rimraf "3.0.2" |
61 | rollup "2.23.0" | 61 | rollup "2.26.4" |
62 | rxjs "6.6.2" | 62 | rxjs "6.6.2" |
63 | sass "1.26.10" | 63 | sass "1.26.10" |
64 | sass-loader "9.0.2" | 64 | sass-loader "9.0.3" |
65 | semver "7.3.2" | 65 | semver "7.3.2" |
66 | source-map "0.7.3" | 66 | source-map "0.7.3" |
67 | source-map-loader "1.0.1" | 67 | source-map-loader "1.0.2" |
68 | source-map-support "0.5.19" | 68 | source-map-support "0.5.19" |
69 | speed-measure-webpack-plugin "1.3.3" | 69 | speed-measure-webpack-plugin "1.3.3" |
70 | style-loader "1.2.1" | 70 | style-loader "1.2.1" |
71 | stylus "0.54.8" | 71 | stylus "0.54.8" |
72 | stylus-loader "3.0.2" | 72 | stylus-loader "3.0.2" |
73 | terser "5.0.0" | 73 | terser "5.2.0" |
74 | terser-webpack-plugin "4.0.0" | 74 | terser-webpack-plugin "4.1.0" |
75 | tree-kill "1.2.2" | 75 | tree-kill "1.2.2" |
76 | webpack "4.44.1" | 76 | webpack "4.44.1" |
77 | webpack-dev-middleware "3.7.2" | 77 | webpack-dev-middleware "3.7.2" |
@@ -79,73 +79,73 @@ | |||
79 | webpack-merge "4.2.2" | 79 | webpack-merge "4.2.2" |
80 | webpack-sources "1.4.3" | 80 | webpack-sources "1.4.3" |
81 | webpack-subresource-integrity "1.4.1" | 81 | webpack-subresource-integrity "1.4.1" |
82 | worker-plugin "4.0.3" | 82 | worker-plugin "5.0.0" |
83 | 83 | ||
84 | "@angular-devkit/build-optimizer@0.1001.0-next.4": | 84 | "@angular-devkit/build-optimizer@0.1001.0-next.6": |
85 | version "0.1001.0-next.4" | 85 | version "0.1001.0-next.6" |
86 | resolved "https://registry.yarnpkg.com/@angular-devkit/build-optimizer/-/build-optimizer-0.1001.0-next.4.tgz#24a2f7609d4d564cb509c022db52cbfc787b5bf7" | 86 | resolved "https://registry.yarnpkg.com/@angular-devkit/build-optimizer/-/build-optimizer-0.1001.0-next.6.tgz#1f657600c84a5480a7bcaafadab407feefa312f7" |
87 | integrity sha512-RoSLO4LCV2MRyhqNKEylD0DwI67b7f/NKD7mx81xB7oo66eqkDqhHArLiXWOpz5vDGZsQOfX9X+eep4YM9UMiA== | 87 | integrity sha512-eF8wK2BFZBoSaaOfgLi5Rp/K4s+VyHkoI7KIHAQN2RAx70oQ5GazmBHgiYZYQYiG1iSeOLbkzwiNNhlXubzSbA== |
88 | dependencies: | 88 | dependencies: |
89 | loader-utils "2.0.0" | 89 | loader-utils "2.0.0" |
90 | source-map "0.7.3" | 90 | source-map "0.7.3" |
91 | tslib "2.0.0" | 91 | tslib "2.0.1" |
92 | webpack-sources "1.4.3" | 92 | webpack-sources "1.4.3" |
93 | 93 | ||
94 | "@angular-devkit/build-webpack@0.1001.0-next.4": | 94 | "@angular-devkit/build-webpack@0.1001.0-next.6": |
95 | version "0.1001.0-next.4" | 95 | version "0.1001.0-next.6" |
96 | resolved "https://registry.yarnpkg.com/@angular-devkit/build-webpack/-/build-webpack-0.1001.0-next.4.tgz#bc473affba7a7411ba4d8e8c9d1fc623a47b2081" | 96 | resolved "https://registry.yarnpkg.com/@angular-devkit/build-webpack/-/build-webpack-0.1001.0-next.6.tgz#2889a8d236c691467e2344451ac2059f4faa6086" |
97 | integrity sha512-5vAXy5DmMexUu03eGTlXDHO8klSdZIAKX6Eby/Mw8yUPbBE2ehJ4A1UWri+cG0r7cLquC9WNHYF52Dzs7ZM8TA== | 97 | integrity sha512-IpaU0RimmED1qtWgvm01RWyoeTy1H8SWajYnKntaczUKiIkpBsZSSid4f8FItYev/XuVvIM/KWgtwMbrU/c66g== |
98 | dependencies: | 98 | dependencies: |
99 | "@angular-devkit/architect" "0.1001.0-next.4" | 99 | "@angular-devkit/architect" "0.1001.0-next.6" |
100 | "@angular-devkit/core" "10.1.0-next.4" | 100 | "@angular-devkit/core" "10.1.0-next.6" |
101 | rxjs "6.6.2" | 101 | rxjs "6.6.2" |
102 | 102 | ||
103 | "@angular-devkit/core@10.1.0-next.4": | 103 | "@angular-devkit/core@10.1.0-next.6": |
104 | version "10.1.0-next.4" | 104 | version "10.1.0-next.6" |
105 | resolved "https://registry.yarnpkg.com/@angular-devkit/core/-/core-10.1.0-next.4.tgz#bb45a3320e9721810e4700c0fed5064bab724b5e" | 105 | resolved "https://registry.yarnpkg.com/@angular-devkit/core/-/core-10.1.0-next.6.tgz#dab1d293cc77c867a78c12d0d724eb7a68afac37" |
106 | integrity sha512-97n2yA1QacHqC+IqqGSYNuLFIXOIuF7EWif71PqsNIMVObP8n/ZCTaynSLSXHHgMHzzCB0bUimz9qaaoNcvYKQ== | 106 | integrity sha512-TzXxO/fXir0sGIzgM0/yCAVata5AQv4At02m9HykEknMU427cqBYfaITFl7MbgdRRhmwzDOqwqsWyqXY2J1y4g== |
107 | dependencies: | 107 | dependencies: |
108 | ajv "6.12.3" | 108 | ajv "6.12.4" |
109 | fast-json-stable-stringify "2.1.0" | 109 | fast-json-stable-stringify "2.1.0" |
110 | magic-string "0.25.7" | 110 | magic-string "0.25.7" |
111 | rxjs "6.6.2" | 111 | rxjs "6.6.2" |
112 | source-map "0.7.3" | 112 | source-map "0.7.3" |
113 | 113 | ||
114 | "@angular-devkit/schematics@10.1.0-next.4": | 114 | "@angular-devkit/schematics@10.1.0-next.6": |
115 | version "10.1.0-next.4" | 115 | version "10.1.0-next.6" |
116 | resolved "https://registry.yarnpkg.com/@angular-devkit/schematics/-/schematics-10.1.0-next.4.tgz#1a420d68a5d0194c91e2a5f62822757cadd685d6" | 116 | resolved "https://registry.yarnpkg.com/@angular-devkit/schematics/-/schematics-10.1.0-next.6.tgz#1d5fcb81b8eb727edaf9a2b5ed6f94d18f6f4d0b" |
117 | integrity sha512-xUg4IU20WOTLprM8olrEFIBfuzUEhqimKJXkB/bHqYeO+YGffZ+MRMpyH8Vp7W3IAUSRJsNmsxsNqfoL4XySuA== | 117 | integrity sha512-DYvu9Z5UTfsEgRbgfozqozG/uKFGQu7+c5O5XsEpmJeXYL6DO5mMGHZ6Q6cH3nfkwC6Y3PqnzJHnfkkSP+oEcw== |
118 | dependencies: | 118 | dependencies: |
119 | "@angular-devkit/core" "10.1.0-next.4" | 119 | "@angular-devkit/core" "10.1.0-next.6" |
120 | ora "4.0.5" | 120 | ora "5.0.0" |
121 | rxjs "6.6.2" | 121 | rxjs "6.6.2" |
122 | 122 | ||
123 | "@angular/animations@^10.1.0-next.5": | 123 | "@angular/animations@^10.1.0-next.8": |
124 | version "10.1.0-next.5" | 124 | version "10.1.0-next.8" |
125 | resolved "https://registry.yarnpkg.com/@angular/animations/-/animations-10.1.0-next.5.tgz#af5c9365ef5473d430797eb1b2f08a8ed4e75b96" | 125 | resolved "https://registry.yarnpkg.com/@angular/animations/-/animations-10.1.0-next.8.tgz#f78ff8ba0ffa67dc303d7b7271e2dc2487bc82f9" |
126 | integrity sha512-1ssVuf4in1nLqiC7ZOXQyjbk4KMj9g4jTB5LkhPgXmkMr5cdHckIgeSSk0sF0I7F1+Xo0P0Dz4CL7AZY/IlxQw== | 126 | integrity sha512-Pk9j4xauDrREnd1fE7Rmac/gsJiQGkPXj258U4BZI/UaqYQXXaD7QVNf/KSD1t1Pkma2cAztY9SYWt/HMVu1qA== |
127 | dependencies: | 127 | dependencies: |
128 | tslib "^2.0.0" | 128 | tslib "^2.0.0" |
129 | 129 | ||
130 | "@angular/cdk@^10.0.0": | 130 | "@angular/cdk@^10.0.0": |
131 | version "10.1.1" | 131 | version "10.1.3" |
132 | resolved "https://registry.yarnpkg.com/@angular/cdk/-/cdk-10.1.1.tgz#aec95fb4d1143d0b82a41c34622453ffbae42872" | 132 | resolved "https://registry.yarnpkg.com/@angular/cdk/-/cdk-10.1.3.tgz#4a8d7dcdbe344b4d7e8e0ed5c25c19b78313b494" |
133 | integrity sha512-Gt9TmqSVxPTmuNkApEuvva25U60WW152r9+vL7ViFgG+297RE7tzUU8ffBwMXZMdtXnrhLKqLv6ZaBhihMM2Kw== | 133 | integrity sha512-xMV1M41mfuaQod4rtAG/duYiWffGIC2C87E1YuyHTh8SEcHopGVRQd2C8PWH+iwinPbes7AjU1uzCEvmOYikrA== |
134 | dependencies: | 134 | dependencies: |
135 | tslib "^2.0.0" | 135 | tslib "^2.0.0" |
136 | optionalDependencies: | 136 | optionalDependencies: |
137 | parse5 "^5.0.0" | 137 | parse5 "^5.0.0" |
138 | 138 | ||
139 | "@angular/cli@^10.1.0-next.4": | 139 | "@angular/cli@^10.1.0-next.6": |
140 | version "10.1.0-next.4" | 140 | version "10.1.0-next.6" |
141 | resolved "https://registry.yarnpkg.com/@angular/cli/-/cli-10.1.0-next.4.tgz#eaff97b31287c44da051ba17ad1bebc1de9fa09c" | 141 | resolved "https://registry.yarnpkg.com/@angular/cli/-/cli-10.1.0-next.6.tgz#e9dc4d749c52f30582f988fd0898a3417ba1a35a" |
142 | integrity sha512-fs40tgTMyKd2JxuGasOnlMzNIB0f0KhLolwZp5PVPLlW4M57aQh4v+ZGFFYtZGapRa08PxLDWnu8GV3QgfDLBw== | 142 | integrity sha512-H1z36BP3q5qnSmw3b+zPbQ98bdwotI86i1xrNPSswQ4ienfxZvZ1Srg6+hw93wm8K9mpyVOzhHY6fLEyQ62xFg== |
143 | dependencies: | 143 | dependencies: |
144 | "@angular-devkit/architect" "0.1001.0-next.4" | 144 | "@angular-devkit/architect" "0.1001.0-next.6" |
145 | "@angular-devkit/core" "10.1.0-next.4" | 145 | "@angular-devkit/core" "10.1.0-next.6" |
146 | "@angular-devkit/schematics" "10.1.0-next.4" | 146 | "@angular-devkit/schematics" "10.1.0-next.6" |
147 | "@schematics/angular" "10.1.0-next.4" | 147 | "@schematics/angular" "10.1.0-next.6" |
148 | "@schematics/update" "0.1001.0-next.4" | 148 | "@schematics/update" "0.1001.0-next.6" |
149 | "@yarnpkg/lockfile" "1.1.0" | 149 | "@yarnpkg/lockfile" "1.1.0" |
150 | ansi-colors "4.1.1" | 150 | ansi-colors "4.1.1" |
151 | debug "4.1.1" | 151 | debug "4.1.1" |
@@ -162,17 +162,17 @@ | |||
162 | universal-analytics "0.4.23" | 162 | universal-analytics "0.4.23" |
163 | uuid "8.3.0" | 163 | uuid "8.3.0" |
164 | 164 | ||
165 | "@angular/common@^10.1.0-next.5": | 165 | "@angular/common@^10.1.0-next.8": |
166 | version "10.1.0-next.5" | 166 | version "10.1.0-next.8" |
167 | resolved "https://registry.yarnpkg.com/@angular/common/-/common-10.1.0-next.5.tgz#9c8e43e6a319e9d65e4d6c8e000ee1ca9775eaf8" | 167 | resolved "https://registry.yarnpkg.com/@angular/common/-/common-10.1.0-next.8.tgz#04a05c9ca117057b49255844a86a9c4189cfe914" |
168 | integrity sha512-vK7btoMtC3hE6BfNY3QLlDipW9sd8CGdOfHyl8smNtRyw7qAMSxgvIkQSaclN4K7h3uD7QMppqPAjZMgeUxfzw== | 168 | integrity sha512-mEEEfaMUkLlA1qybTYal4wc9eGlhFsx3T+ckmN2tl8rouvVWL+nXP3EjCJJZAhNG31lqSULOW8dkpPk1+4sHuA== |
169 | dependencies: | 169 | dependencies: |
170 | tslib "^2.0.0" | 170 | tslib "^2.0.0" |
171 | 171 | ||
172 | "@angular/compiler-cli@^10.1.0-next.5": | 172 | "@angular/compiler-cli@^10.1.0-next.8": |
173 | version "10.1.0-next.5" | 173 | version "10.1.0-next.8" |
174 | resolved "https://registry.yarnpkg.com/@angular/compiler-cli/-/compiler-cli-10.1.0-next.5.tgz#4ef0ae92ecee8b1de003a82180c5813f2c507cdb" | 174 | resolved "https://registry.yarnpkg.com/@angular/compiler-cli/-/compiler-cli-10.1.0-next.8.tgz#c5cdd98de68f783f2a52d66e6cdfd73457a5c1b8" |
175 | integrity sha512-+MI4enl5N0xyjzvL9vfqVaDqDm6RkuX/jydvaFr8yTESBRXCu8g4UvTcxnOwLcQehl7ZD45WmOeOnRXdwcI3kA== | 175 | integrity sha512-bj7SXxcMdqPYHm9MimZgdD0POpcBzF2pig5OwXODe/hX0BS2jYIkZFAtrmSOlOgEl/oQfTSSoT6RbOUQ+zHs9w== |
176 | dependencies: | 176 | dependencies: |
177 | canonical-path "1.0.0" | 177 | canonical-path "1.0.0" |
178 | chokidar "^3.0.0" | 178 | chokidar "^3.0.0" |
@@ -188,61 +188,71 @@ | |||
188 | tslib "^2.0.0" | 188 | tslib "^2.0.0" |
189 | yargs "15.3.0" | 189 | yargs "15.3.0" |
190 | 190 | ||
191 | "@angular/compiler@^10.1.0-next.5": | 191 | "@angular/compiler@9.0.0": |
192 | version "10.1.0-next.5" | 192 | version "9.0.0" |
193 | resolved "https://registry.yarnpkg.com/@angular/compiler/-/compiler-10.1.0-next.5.tgz#3b638e8708d24310b81003271bee5006ea9c7d9e" | 193 | resolved "https://registry.yarnpkg.com/@angular/compiler/-/compiler-9.0.0.tgz#87e0bef4c369b6cadae07e3a4295778fc93799d5" |
194 | integrity sha512-pDUTIerTs6A9yDBGeKiSFzu0CsG3l0ct4UkIWE1PsW9ui63ar+UytGpiLBBJ8pXfktMOZle8NVmlKAzhXG2g/g== | 194 | integrity sha512-ctjwuntPfZZT2mNj2NDIVu51t9cvbhl/16epc5xEwyzyDt76pX9UgwvY+MbXrf/C/FWwdtmNtfP698BKI+9leQ== |
195 | |||
196 | "@angular/compiler@^10.1.0-next.8": | ||
197 | version "10.1.0-next.8" | ||
198 | resolved "https://registry.yarnpkg.com/@angular/compiler/-/compiler-10.1.0-next.8.tgz#bf0ce38ee77c2aa6ec7447c19a3253e18aa9a4e4" | ||
199 | integrity sha512-lvkt/H1s8/bmv9S/CtPQLtg7Pfz9hv21tfXlr9ionIaqta4TBqtlsvxMVj9ex+ZT2riuBUPIVC/OgOwxbWOLAA== | ||
195 | dependencies: | 200 | dependencies: |
196 | tslib "^2.0.0" | 201 | tslib "^2.0.0" |
197 | 202 | ||
198 | "@angular/core@^10.1.0-next.5": | 203 | "@angular/core@9.0.0": |
199 | version "10.1.0-next.5" | 204 | version "9.0.0" |
200 | resolved "https://registry.yarnpkg.com/@angular/core/-/core-10.1.0-next.5.tgz#70269efc5ede9553bac231f4d61e2a99bb5b69bb" | 205 | resolved "https://registry.yarnpkg.com/@angular/core/-/core-9.0.0.tgz#227dc53e1ac81824f998c6e76000b7efc522641e" |
201 | integrity sha512-bLV1sSaEZqda+cmYwfYKvy4KX0xtoAoLwtNQi6/TGVBj4c+6NsUp5oN2SwSEQKTo7vi0qaP1/Q/XUGSX4ZYHQw== | 206 | integrity sha512-6Pxgsrf0qF9iFFqmIcWmjJGkkCaCm6V5QNnxMy2KloO3SDq6QuMVRbN9RtC8Urmo25LP+eZ6ZgYqFYpdD8Hd9w== |
207 | |||
208 | "@angular/core@^10.1.0-next.8": | ||
209 | version "10.1.0-next.8" | ||
210 | resolved "https://registry.yarnpkg.com/@angular/core/-/core-10.1.0-next.8.tgz#60619b3225d6275b37ef2be493ade7cb8e6f24a7" | ||
211 | integrity sha512-Ph8p+qky2IcSoZsDJQ78cMAHcy+UQl9f3+/03jyTZ0jXCqrlSIaRkptUibhj1R9RbIkp0FniO0D0mhZ0A34XIQ== | ||
202 | dependencies: | 212 | dependencies: |
203 | tslib "^2.0.0" | 213 | tslib "^2.0.0" |
204 | 214 | ||
205 | "@angular/forms@^10.1.0-next.5": | 215 | "@angular/forms@^10.1.0-next.8": |
206 | version "10.1.0-next.5" | 216 | version "10.1.0-next.8" |
207 | resolved "https://registry.yarnpkg.com/@angular/forms/-/forms-10.1.0-next.5.tgz#02b0a361cda71fbd6ed7c45e707db7ab98abd950" | 217 | resolved "https://registry.yarnpkg.com/@angular/forms/-/forms-10.1.0-next.8.tgz#8eea74676df9faa68c59902cacfa9c6b8f944350" |
208 | integrity sha512-aE/Q0VT4k1AtUzC/2YL7//mXBZQDENwtFUVnMjv8Krbvlka9EylZHN0MdFNhzW2zuNmELnv2Eud4O+vEF9vJ6Q== | 218 | integrity sha512-mQMKPmCzL9WyBjco84rz+l10ivIoA8/uXMciRiFBS/x25uz7tJEwe+o1y7A8dBGctXlssaS56bQ/Y2KjjmXpzQ== |
209 | dependencies: | 219 | dependencies: |
210 | tslib "^2.0.0" | 220 | tslib "^2.0.0" |
211 | 221 | ||
212 | "@angular/localize@^10.1.0-next.5": | 222 | "@angular/localize@^10.1.0-next.8": |
213 | version "10.1.0-next.5" | 223 | version "10.1.0-next.8" |
214 | resolved "https://registry.yarnpkg.com/@angular/localize/-/localize-10.1.0-next.5.tgz#f2722ac407d34ac7f0c6b748f58b8966c08f797b" | 224 | resolved "https://registry.yarnpkg.com/@angular/localize/-/localize-10.1.0-next.8.tgz#c3d3b30791a4a9384b3d505a5adc0fe383414d2a" |
215 | integrity sha512-EBTsMw66snjNOl1FZJB/bhPJC19E5K5TImS4+Pf1lEbHBLuvfEwZLQnrFoyPWwU98ozFCxYtNZvNJUOHFpM5hQ== | 225 | integrity sha512-Z83UGv1b1eWpSafklXMv6coC/TsN+PoQ5Z3NuBGGw+OBlYhHpSG6Rm59LyfKUAOj8QQqW3cFE+do9GI5EXAiIQ== |
216 | dependencies: | 226 | dependencies: |
217 | "@babel/core" "7.8.3" | 227 | "@babel/core" "7.8.3" |
218 | glob "7.1.2" | 228 | glob "7.1.2" |
219 | yargs "15.3.0" | 229 | yargs "15.3.0" |
220 | 230 | ||
221 | "@angular/platform-browser-dynamic@^10.1.0-next.5": | 231 | "@angular/platform-browser-dynamic@^10.1.0-next.8": |
222 | version "10.1.0-next.5" | 232 | version "10.1.0-next.8" |
223 | resolved "https://registry.yarnpkg.com/@angular/platform-browser-dynamic/-/platform-browser-dynamic-10.1.0-next.5.tgz#bc348ed36dc4f97cc90bb6817191e15d3f1b6f23" | 233 | resolved "https://registry.yarnpkg.com/@angular/platform-browser-dynamic/-/platform-browser-dynamic-10.1.0-next.8.tgz#a269d1ed217524ef20fa910adfce5c5eaee48baf" |
224 | integrity sha512-dgxGMyz5wwVegFEaE3RS4XSurlrqK1RMvFKpIpb/EbJVP7ZBYMhtX6Wqw0p81MYo0GIssaSaKJd+j4rjjxWR2g== | 234 | integrity sha512-vqEkAD2MUsvJKmbQ3CrtZgJVD1w02HrcLeq7qlWFtFNBcnAznhO0Pl5sbS2tW2BcaZ5eO2aDAB9EJDhVzfCfvg== |
225 | dependencies: | 235 | dependencies: |
226 | tslib "^2.0.0" | 236 | tslib "^2.0.0" |
227 | 237 | ||
228 | "@angular/platform-browser@^10.1.0-next.5": | 238 | "@angular/platform-browser@^10.1.0-next.8": |
229 | version "10.1.0-next.5" | 239 | version "10.1.0-next.8" |
230 | resolved "https://registry.yarnpkg.com/@angular/platform-browser/-/platform-browser-10.1.0-next.5.tgz#205c99c3edb11b7a83bfa2f967d1e4617a4671ee" | 240 | resolved "https://registry.yarnpkg.com/@angular/platform-browser/-/platform-browser-10.1.0-next.8.tgz#89d77f9dd53380eade7c8bd8538de23fc3fc695c" |
231 | integrity sha512-RDgLlDYqWYDdNEPYHJIoG5JsO6m81xxfJNsDVI4DE9z6iCqUxnWappRoDNs/yXFXbdF8p+WbjtL2pru50TWFEA== | 241 | integrity sha512-f62t953wxDLykXaJpgwwMD55l0JSwpIl2qC7lotpbpYJlIkIitsNkFqgUXhH0Lzu5dXJMBjM1DcKO+NYvQEVRg== |
232 | dependencies: | 242 | dependencies: |
233 | tslib "^2.0.0" | 243 | tslib "^2.0.0" |
234 | 244 | ||
235 | "@angular/router@^10.1.0-next.5": | 245 | "@angular/router@^10.1.0-next.8": |
236 | version "10.1.0-next.5" | 246 | version "10.1.0-next.8" |
237 | resolved "https://registry.yarnpkg.com/@angular/router/-/router-10.1.0-next.5.tgz#3882a2ed1ea5b7f2efca67af4fa3fd28b9e25762" | 247 | resolved "https://registry.yarnpkg.com/@angular/router/-/router-10.1.0-next.8.tgz#e7d2936dd86d08dae955c8702fbf913787a1c885" |
238 | integrity sha512-Jyh62a0zP1gX/R3hV5ILnd/t3AwBLTvRetXfDuOB5c5vImjgwpl84gX3+aJsSvc1cZ0Rs31zqV8JR9M9yEAAbQ== | 248 | integrity sha512-IdtMbW+o6wsMvlo5dLbs/hHmLejCevkMMtn4SqBUBWem1jIoN7Bm4xeKUHO9i+nUrEBCO0l4IIXeDJxC2nZSQA== |
239 | dependencies: | 249 | dependencies: |
240 | tslib "^2.0.0" | 250 | tslib "^2.0.0" |
241 | 251 | ||
242 | "@angular/service-worker@^10.1.0-next.5": | 252 | "@angular/service-worker@^10.1.0-next.8": |
243 | version "10.1.0-next.5" | 253 | version "10.1.0-next.8" |
244 | resolved "https://registry.yarnpkg.com/@angular/service-worker/-/service-worker-10.1.0-next.5.tgz#699bfd88e7b02c9e30fa9103c1fd508b86725e60" | 254 | resolved "https://registry.yarnpkg.com/@angular/service-worker/-/service-worker-10.1.0-next.8.tgz#f25f5af64a0456b1c5effbd84b990a3e04164ce8" |
245 | integrity sha512-lXne4/88dre8NXY/jHEm+bONdG4EswzBGln2PnaHGZ1i3ALATcSwzrCEAqh29eeP9/OGXRMc7iBdAj2N24WxUw== | 255 | integrity sha512-HO9VEAgZxjh0i1rOGAHVBgM+st/AQ+YYWbxgnVaFP1LkZy9PQ+eMUxRJ9yOMQTBIKb2vTyZWcclfwtmRD7wgDg== |
246 | dependencies: | 256 | dependencies: |
247 | tslib "^2.0.0" | 257 | tslib "^2.0.0" |
248 | 258 | ||
@@ -251,7 +261,7 @@ | |||
251 | resolved "https://registry.yarnpkg.com/@angularclass/hmr/-/hmr-2.1.3.tgz#34e658ed3da37f23b0a200e2da5a89be92bb209f" | 261 | resolved "https://registry.yarnpkg.com/@angularclass/hmr/-/hmr-2.1.3.tgz#34e658ed3da37f23b0a200e2da5a89be92bb209f" |
252 | integrity sha1-NOZY7T2jfyOwogDi2lqJvpK7IJ8= | 262 | integrity sha1-NOZY7T2jfyOwogDi2lqJvpK7IJ8= |
253 | 263 | ||
254 | "@babel/cli@^7.4.4": | 264 | "@babel/cli@^7.10.5": |
255 | version "7.10.5" | 265 | version "7.10.5" |
256 | resolved "https://registry.yarnpkg.com/@babel/cli/-/cli-7.10.5.tgz#57df2987c8cf89d0fc7d4b157ec59d7619f1b77a" | 266 | resolved "https://registry.yarnpkg.com/@babel/cli/-/cli-7.10.5.tgz#57df2987c8cf89d0fc7d4b157ec59d7619f1b77a" |
257 | integrity sha512-j9H9qSf3kLdM0Ao3aGPbGZ73mEA9XazuupcS6cDGWuiyAcANoguhP0r2Lx32H5JGw4sSSoHG3x/mxVnHgvOoyA== | 267 | integrity sha512-j9H9qSf3kLdM0Ao3aGPbGZ73mEA9XazuupcS6cDGWuiyAcANoguhP0r2Lx32H5JGw4sSSoHG3x/mxVnHgvOoyA== |
@@ -274,16 +284,7 @@ | |||
274 | dependencies: | 284 | dependencies: |
275 | "@babel/highlight" "^7.10.4" | 285 | "@babel/highlight" "^7.10.4" |
276 | 286 | ||
277 | "@babel/compat-data@^7.10.4": | 287 | "@babel/compat-data@^7.10.4", "@babel/compat-data@^7.11.0": |
278 | version "7.10.5" | ||
279 | resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.10.5.tgz#d38425e67ea96b1480a3f50404d1bf85676301a6" | ||
280 | integrity sha512-mPVoWNzIpYJHbWje0if7Ck36bpbtTvIxOi9+6WSK9wjGEXearAqlwBoTQvVjsAY2VIwgcs8V940geY3okzRCEw== | ||
281 | dependencies: | ||
282 | browserslist "^4.12.0" | ||
283 | invariant "^2.2.4" | ||
284 | semver "^5.5.0" | ||
285 | |||
286 | "@babel/compat-data@^7.11.0": | ||
287 | version "7.11.0" | 288 | version "7.11.0" |
288 | resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.11.0.tgz#e9f73efe09af1355b723a7f39b11bad637d7c99c" | 289 | resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.11.0.tgz#e9f73efe09af1355b723a7f39b11bad637d7c99c" |
289 | integrity sha512-TPSvJfv73ng0pfnEOh17bYMPQbI95+nGWc71Ss4vZdRBHTDqmM9Z8ZV4rYz8Ks7sfzc95n30k6ODIq5UGnXcYQ== | 290 | integrity sha512-TPSvJfv73ng0pfnEOh17bYMPQbI95+nGWc71Ss4vZdRBHTDqmM9Z8ZV4rYz8Ks7sfzc95n30k6ODIq5UGnXcYQ== |
@@ -292,16 +293,16 @@ | |||
292 | invariant "^2.2.4" | 293 | invariant "^2.2.4" |
293 | semver "^5.5.0" | 294 | semver "^5.5.0" |
294 | 295 | ||
295 | "@babel/core@7.11.0": | 296 | "@babel/core@7.11.1": |
296 | version "7.11.0" | 297 | version "7.11.1" |
297 | resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.11.0.tgz#73b9c33f1658506887f767c26dae07798b30df76" | 298 | resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.11.1.tgz#2c55b604e73a40dc21b0e52650b11c65cf276643" |
298 | integrity sha512-mkLq8nwaXmDtFmRkQ8ED/eA2CnVw4zr7dCztKalZXBvdK5EeNUAesrrwUqjQEzFgomJssayzB0aqlOsP1vGLqg== | 299 | integrity sha512-XqF7F6FWQdKGGWAzGELL+aCO1p+lRY5Tj5/tbT3St1G8NaH70jhhDIKknIZaDans0OQBG5wRAldROLHSt44BgQ== |
299 | dependencies: | 300 | dependencies: |
300 | "@babel/code-frame" "^7.10.4" | 301 | "@babel/code-frame" "^7.10.4" |
301 | "@babel/generator" "^7.11.0" | 302 | "@babel/generator" "^7.11.0" |
302 | "@babel/helper-module-transforms" "^7.11.0" | 303 | "@babel/helper-module-transforms" "^7.11.0" |
303 | "@babel/helpers" "^7.10.4" | 304 | "@babel/helpers" "^7.10.4" |
304 | "@babel/parser" "^7.11.0" | 305 | "@babel/parser" "^7.11.1" |
305 | "@babel/template" "^7.10.4" | 306 | "@babel/template" "^7.10.4" |
306 | "@babel/traverse" "^7.11.0" | 307 | "@babel/traverse" "^7.11.0" |
307 | "@babel/types" "^7.11.0" | 308 | "@babel/types" "^7.11.0" |
@@ -336,18 +337,18 @@ | |||
336 | source-map "^0.5.0" | 337 | source-map "^0.5.0" |
337 | 338 | ||
338 | "@babel/core@^7.7.5": | 339 | "@babel/core@^7.7.5": |
339 | version "7.10.5" | 340 | version "7.11.4" |
340 | resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.10.5.tgz#1f15e2cca8ad9a1d78a38ddba612f5e7cdbbd330" | 341 | resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.11.4.tgz#4301dfdfafa01eeb97f1896c5501a3f0655d4229" |
341 | integrity sha512-O34LQooYVDXPl7QWCdW9p4NR+QlzOr7xShPPJz8GsuCU3/8ua/wqTr7gmnxXv+WBESiGU/G5s16i6tUvHkNb+w== | 342 | integrity sha512-5deljj5HlqRXN+5oJTY7Zs37iH3z3b++KjiKtIsJy1NrjOOVSEaJHEetLBhyu0aQOSNNZ/0IuEAan9GzRuDXHg== |
342 | dependencies: | 343 | dependencies: |
343 | "@babel/code-frame" "^7.10.4" | 344 | "@babel/code-frame" "^7.10.4" |
344 | "@babel/generator" "^7.10.5" | 345 | "@babel/generator" "^7.11.4" |
345 | "@babel/helper-module-transforms" "^7.10.5" | 346 | "@babel/helper-module-transforms" "^7.11.0" |
346 | "@babel/helpers" "^7.10.4" | 347 | "@babel/helpers" "^7.10.4" |
347 | "@babel/parser" "^7.10.5" | 348 | "@babel/parser" "^7.11.4" |
348 | "@babel/template" "^7.10.4" | 349 | "@babel/template" "^7.10.4" |
349 | "@babel/traverse" "^7.10.5" | 350 | "@babel/traverse" "^7.11.0" |
350 | "@babel/types" "^7.10.5" | 351 | "@babel/types" "^7.11.0" |
351 | convert-source-map "^1.7.0" | 352 | convert-source-map "^1.7.0" |
352 | debug "^4.1.0" | 353 | debug "^4.1.0" |
353 | gensync "^1.0.0-beta.1" | 354 | gensync "^1.0.0-beta.1" |
@@ -357,7 +358,7 @@ | |||
357 | semver "^5.4.1" | 358 | semver "^5.4.1" |
358 | source-map "^0.5.0" | 359 | source-map "^0.5.0" |
359 | 360 | ||
360 | "@babel/generator@7.11.0", "@babel/generator@^7.11.0": | 361 | "@babel/generator@7.11.0": |
361 | version "7.11.0" | 362 | version "7.11.0" |
362 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.11.0.tgz#4b90c78d8c12825024568cbe83ee6c9af193585c" | 363 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.11.0.tgz#4b90c78d8c12825024568cbe83ee6c9af193585c" |
363 | integrity sha512-fEm3Uzw7Mc9Xi//qU20cBKatTfs2aOtKqmvy/Vm7RkJEGFQ4xc9myCfbXxqK//ZS8MR/ciOHw6meGASJuKmDfQ== | 364 | integrity sha512-fEm3Uzw7Mc9Xi//qU20cBKatTfs2aOtKqmvy/Vm7RkJEGFQ4xc9myCfbXxqK//ZS8MR/ciOHw6meGASJuKmDfQ== |
@@ -366,12 +367,12 @@ | |||
366 | jsesc "^2.5.1" | 367 | jsesc "^2.5.1" |
367 | source-map "^0.5.0" | 368 | source-map "^0.5.0" |
368 | 369 | ||
369 | "@babel/generator@^7.10.5", "@babel/generator@^7.8.3": | 370 | "@babel/generator@^7.11.0", "@babel/generator@^7.11.4", "@babel/generator@^7.8.3": |
370 | version "7.10.5" | 371 | version "7.11.4" |
371 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.10.5.tgz#1b903554bc8c583ee8d25f1e8969732e6b829a69" | 372 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.11.4.tgz#1ec7eec00defba5d6f83e50e3ee72ae2fee482be" |
372 | integrity sha512-3vXxr3FEW7E7lJZiWQ3bM4+v/Vyr9C+hpolQ8BGFr9Y8Ri2tFLWTixmwKBafDujO1WVah4fhZBeU1bieKdghig== | 373 | integrity sha512-Rn26vueFx0eOoz7iifCN2UHT6rGtnkSGWSoDRIy8jZN3B91PzeSULbswfLoOWuTuAcNwpG/mxy+uCTDnZ9Mp1g== |
373 | dependencies: | 374 | dependencies: |
374 | "@babel/types" "^7.10.5" | 375 | "@babel/types" "^7.11.0" |
375 | jsesc "^2.5.1" | 376 | jsesc "^2.5.1" |
376 | source-map "^0.5.0" | 377 | source-map "^0.5.0" |
377 | 378 | ||
@@ -432,11 +433,10 @@ | |||
432 | lodash "^4.17.19" | 433 | lodash "^4.17.19" |
433 | 434 | ||
434 | "@babel/helper-explode-assignable-expression@^7.10.4": | 435 | "@babel/helper-explode-assignable-expression@^7.10.4": |
435 | version "7.10.4" | 436 | version "7.11.4" |
436 | resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.10.4.tgz#40a1cd917bff1288f699a94a75b37a1a2dbd8c7c" | 437 | resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.11.4.tgz#2d8e3470252cc17aba917ede7803d4a7a276a41b" |
437 | integrity sha512-4K71RyRQNPRrR85sr5QY4X3VwG4wtVoXZB9+L3r1Gp38DhELyHCtovqydRi7c1Ovb17eRGiQ/FD5s8JdU0Uy5A== | 438 | integrity sha512-ux9hm3zR4WV1Y3xXxXkdG/0gxF9nvI0YVmKVhvK9AfMoaQkemL3sJpXw+Xbz65azo8qJiEz2XVDUpK3KYhH3ZQ== |
438 | dependencies: | 439 | dependencies: |
439 | "@babel/traverse" "^7.10.4" | ||
440 | "@babel/types" "^7.10.4" | 440 | "@babel/types" "^7.10.4" |
441 | 441 | ||
442 | "@babel/helper-function-name@^7.10.4": | 442 | "@babel/helper-function-name@^7.10.4": |
@@ -463,11 +463,11 @@ | |||
463 | "@babel/types" "^7.10.4" | 463 | "@babel/types" "^7.10.4" |
464 | 464 | ||
465 | "@babel/helper-member-expression-to-functions@^7.10.4", "@babel/helper-member-expression-to-functions@^7.10.5": | 465 | "@babel/helper-member-expression-to-functions@^7.10.4", "@babel/helper-member-expression-to-functions@^7.10.5": |
466 | version "7.10.5" | 466 | version "7.11.0" |
467 | resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.10.5.tgz#172f56e7a63e78112f3a04055f24365af702e7ee" | 467 | resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.11.0.tgz#ae69c83d84ee82f4b42f96e2a09410935a8f26df" |
468 | integrity sha512-HiqJpYD5+WopCXIAbQDG0zye5XYVvcO9w/DHp5GsaGkRUaamLj2bEtu6i8rnGGprAhHM3qidCMgp71HF4endhA== | 468 | integrity sha512-JbFlKHFntRV5qKw3YC0CvQnDZ4XMwgzzBbld7Ly4Mj4cbFy3KywcR8NtNctRToMWJOVvLINJv525Gd6wwVEx/Q== |
469 | dependencies: | 469 | dependencies: |
470 | "@babel/types" "^7.10.5" | 470 | "@babel/types" "^7.11.0" |
471 | 471 | ||
472 | "@babel/helper-module-imports@^7.10.4": | 472 | "@babel/helper-module-imports@^7.10.4": |
473 | version "7.10.4" | 473 | version "7.10.4" |
@@ -476,20 +476,7 @@ | |||
476 | dependencies: | 476 | dependencies: |
477 | "@babel/types" "^7.10.4" | 477 | "@babel/types" "^7.10.4" |
478 | 478 | ||
479 | "@babel/helper-module-transforms@^7.10.4", "@babel/helper-module-transforms@^7.10.5": | 479 | "@babel/helper-module-transforms@^7.10.4", "@babel/helper-module-transforms@^7.10.5", "@babel/helper-module-transforms@^7.11.0": |
480 | version "7.10.5" | ||
481 | resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.10.5.tgz#120c271c0b3353673fcdfd8c053db3c544a260d6" | ||
482 | integrity sha512-4P+CWMJ6/j1W915ITJaUkadLObmCRRSC234uctJfn/vHrsLNxsR8dwlcXv9ZhJWzl77awf+mWXSZEKt5t0OnlA== | ||
483 | dependencies: | ||
484 | "@babel/helper-module-imports" "^7.10.4" | ||
485 | "@babel/helper-replace-supers" "^7.10.4" | ||
486 | "@babel/helper-simple-access" "^7.10.4" | ||
487 | "@babel/helper-split-export-declaration" "^7.10.4" | ||
488 | "@babel/template" "^7.10.4" | ||
489 | "@babel/types" "^7.10.5" | ||
490 | lodash "^4.17.19" | ||
491 | |||
492 | "@babel/helper-module-transforms@^7.11.0": | ||
493 | version "7.11.0" | 480 | version "7.11.0" |
494 | resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.11.0.tgz#b16f250229e47211abdd84b34b64737c2ab2d359" | 481 | resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.11.0.tgz#b16f250229e47211abdd84b34b64737c2ab2d359" |
495 | integrity sha512-02EVu8COMuTRO1TAzdMtpBPbe6aQ1w/8fePD2YgQmxZU4gpNWaL9gK3Jp7dxlkUlUCJOTaSeA+Hrm1BRQwqIhg== | 482 | integrity sha512-02EVu8COMuTRO1TAzdMtpBPbe6aQ1w/8fePD2YgQmxZU4gpNWaL9gK3Jp7dxlkUlUCJOTaSeA+Hrm1BRQwqIhg== |
@@ -522,14 +509,13 @@ | |||
522 | lodash "^4.17.19" | 509 | lodash "^4.17.19" |
523 | 510 | ||
524 | "@babel/helper-remap-async-to-generator@^7.10.4": | 511 | "@babel/helper-remap-async-to-generator@^7.10.4": |
525 | version "7.10.4" | 512 | version "7.11.4" |
526 | resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.10.4.tgz#fce8bea4e9690bbe923056ded21e54b4e8b68ed5" | 513 | resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.11.4.tgz#4474ea9f7438f18575e30b0cac784045b402a12d" |
527 | integrity sha512-86Lsr6NNw3qTNl+TBcF1oRZMaVzJtbWTyTko+CQL/tvNvcGYEFKbLXDPxtW0HKk3McNOk4KzY55itGWCAGK5tg== | 514 | integrity sha512-tR5vJ/vBa9wFy3m5LLv2faapJLnDFxNWff2SAYkSE4rLUdbp7CdObYFgI7wK4T/Mj4UzpjPwzR8Pzmr5m7MHGA== |
528 | dependencies: | 515 | dependencies: |
529 | "@babel/helper-annotate-as-pure" "^7.10.4" | 516 | "@babel/helper-annotate-as-pure" "^7.10.4" |
530 | "@babel/helper-wrap-function" "^7.10.4" | 517 | "@babel/helper-wrap-function" "^7.10.4" |
531 | "@babel/template" "^7.10.4" | 518 | "@babel/template" "^7.10.4" |
532 | "@babel/traverse" "^7.10.4" | ||
533 | "@babel/types" "^7.10.4" | 519 | "@babel/types" "^7.10.4" |
534 | 520 | ||
535 | "@babel/helper-replace-supers@^7.10.4": | 521 | "@babel/helper-replace-supers@^7.10.4": |
@@ -557,14 +543,7 @@ | |||
557 | dependencies: | 543 | dependencies: |
558 | "@babel/types" "^7.11.0" | 544 | "@babel/types" "^7.11.0" |
559 | 545 | ||
560 | "@babel/helper-split-export-declaration@^7.10.4": | 546 | "@babel/helper-split-export-declaration@^7.10.4", "@babel/helper-split-export-declaration@^7.11.0": |
561 | version "7.10.4" | ||
562 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.10.4.tgz#2c70576eaa3b5609b24cb99db2888cc3fc4251d1" | ||
563 | integrity sha512-pySBTeoUff56fL5CBU2hWm9TesA4r/rOkI9DyJLvvgz09MB9YtfIYe3iBriVaYNaPe+Alua0vBIOVOLs2buWhg== | ||
564 | dependencies: | ||
565 | "@babel/types" "^7.10.4" | ||
566 | |||
567 | "@babel/helper-split-export-declaration@^7.11.0": | ||
568 | version "7.11.0" | 547 | version "7.11.0" |
569 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz#f8a491244acf6a676158ac42072911ba83ad099f" | 548 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz#f8a491244acf6a676158ac42072911ba83ad099f" |
570 | integrity sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg== | 549 | integrity sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg== |
@@ -604,15 +583,10 @@ | |||
604 | chalk "^2.0.0" | 583 | chalk "^2.0.0" |
605 | js-tokens "^4.0.0" | 584 | js-tokens "^4.0.0" |
606 | 585 | ||
607 | "@babel/parser@^7.10.4", "@babel/parser@^7.10.5", "@babel/parser@^7.7.0", "@babel/parser@^7.8.3": | 586 | "@babel/parser@^7.10.4", "@babel/parser@^7.11.0", "@babel/parser@^7.11.1", "@babel/parser@^7.11.4", "@babel/parser@^7.7.0", "@babel/parser@^7.8.3": |
608 | version "7.10.5" | 587 | version "7.11.4" |
609 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.10.5.tgz#e7c6bf5a7deff957cec9f04b551e2762909d826b" | 588 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.11.4.tgz#6fa1a118b8b0d80d0267b719213dc947e88cc0ca" |
610 | integrity sha512-wfryxy4bE1UivvQKSQDU4/X6dr+i8bctjUjj8Zyt3DQy7NtPizJXT8M52nqpNKL+nq2PW8lxk4ZqLj0fD4B4hQ== | 589 | integrity sha512-MggwidiH+E9j5Sh8pbrX5sJvMcsqS5o+7iB42M9/k0CD63MjYbdP4nhSh7uB5wnv2/RVzTZFTxzF/kIa5mrCqA== |
611 | |||
612 | "@babel/parser@^7.11.0": | ||
613 | version "7.11.2" | ||
614 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.11.2.tgz#0882ab8a455df3065ea2dcb4c753b2460a24bead" | ||
615 | integrity sha512-Vuj/+7vLo6l1Vi7uuO+1ngCDNeVmNbTngcJFKCR/oEtz8tKz0CJxZEGmPt9KcIloZhOZ3Zit6xbpXT2MDlS9Vw== | ||
616 | 590 | ||
617 | "@babel/plugin-proposal-async-generator-functions@^7.10.4": | 591 | "@babel/plugin-proposal-async-generator-functions@^7.10.4": |
618 | version "7.10.5" | 592 | version "7.10.5" |
@@ -679,15 +653,6 @@ | |||
679 | "@babel/helper-plugin-utils" "^7.10.4" | 653 | "@babel/helper-plugin-utils" "^7.10.4" |
680 | "@babel/plugin-syntax-numeric-separator" "^7.10.4" | 654 | "@babel/plugin-syntax-numeric-separator" "^7.10.4" |
681 | 655 | ||
682 | "@babel/plugin-proposal-object-rest-spread@^7.10.4": | ||
683 | version "7.10.4" | ||
684 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.10.4.tgz#50129ac216b9a6a55b3853fdd923e74bf553a4c0" | ||
685 | integrity sha512-6vh4SqRuLLarjgeOf4EaROJAHjvu9Gl+/346PbDH9yWbJyfnJ/ah3jmYKYtswEyCoWZiidvVHjHshd4WgjB9BA== | ||
686 | dependencies: | ||
687 | "@babel/helper-plugin-utils" "^7.10.4" | ||
688 | "@babel/plugin-syntax-object-rest-spread" "^7.8.0" | ||
689 | "@babel/plugin-transform-parameters" "^7.10.4" | ||
690 | |||
691 | "@babel/plugin-proposal-object-rest-spread@^7.11.0": | 656 | "@babel/plugin-proposal-object-rest-spread@^7.11.0": |
692 | version "7.11.0" | 657 | version "7.11.0" |
693 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.11.0.tgz#bd81f95a1f746760ea43b6c2d3d62b11790ad0af" | 658 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.11.0.tgz#bd81f95a1f746760ea43b6c2d3d62b11790ad0af" |
@@ -705,14 +670,6 @@ | |||
705 | "@babel/helper-plugin-utils" "^7.10.4" | 670 | "@babel/helper-plugin-utils" "^7.10.4" |
706 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.0" | 671 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.0" |
707 | 672 | ||
708 | "@babel/plugin-proposal-optional-chaining@^7.10.4": | ||
709 | version "7.10.4" | ||
710 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.10.4.tgz#750f1255e930a1f82d8cdde45031f81a0d0adff7" | ||
711 | integrity sha512-ZIhQIEeavTgouyMSdZRap4VPPHqJJ3NEs2cuHs5p0erH+iz6khB0qfgU8g7UuJkG88+fBMy23ZiU+nuHvekJeQ== | ||
712 | dependencies: | ||
713 | "@babel/helper-plugin-utils" "^7.10.4" | ||
714 | "@babel/plugin-syntax-optional-chaining" "^7.8.0" | ||
715 | |||
716 | "@babel/plugin-proposal-optional-chaining@^7.11.0": | 673 | "@babel/plugin-proposal-optional-chaining@^7.11.0": |
717 | version "7.11.0" | 674 | version "7.11.0" |
718 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.11.0.tgz#de5866d0646f6afdaab8a566382fe3a221755076" | 675 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.11.0.tgz#de5866d0646f6afdaab8a566382fe3a221755076" |
@@ -846,9 +803,9 @@ | |||
846 | "@babel/helper-plugin-utils" "^7.10.4" | 803 | "@babel/helper-plugin-utils" "^7.10.4" |
847 | 804 | ||
848 | "@babel/plugin-transform-block-scoping@^7.10.4": | 805 | "@babel/plugin-transform-block-scoping@^7.10.4": |
849 | version "7.10.5" | 806 | version "7.11.1" |
850 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.10.5.tgz#b81b8aafefbfe68f0f65f7ef397b9ece68a6037d" | 807 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.11.1.tgz#5b7efe98852bef8d652c0b28144cd93a9e4b5215" |
851 | integrity sha512-6Ycw3hjpQti0qssQcA6AMSFDHeNJ++R6dIMnpRqUjFeBBTmTDPa8zgF90OVfTvAo11mXZTlVUViY1g8ffrURLg== | 808 | integrity sha512-00dYeDE0EVEHuuM+26+0w/SCL0BH2Qy7LwHuI4Hi4MH5gkC8/AqMN5uWFJIsoXZrAphiMm1iXzBw6L2T+eA0ew== |
852 | dependencies: | 809 | dependencies: |
853 | "@babel/helper-plugin-utils" "^7.10.4" | 810 | "@babel/helper-plugin-utils" "^7.10.4" |
854 | 811 | ||
@@ -1037,13 +994,6 @@ | |||
1037 | dependencies: | 994 | dependencies: |
1038 | "@babel/helper-plugin-utils" "^7.10.4" | 995 | "@babel/helper-plugin-utils" "^7.10.4" |
1039 | 996 | ||
1040 | "@babel/plugin-transform-spread@^7.10.4": | ||
1041 | version "7.10.4" | ||
1042 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.10.4.tgz#4e2c85ea0d6abaee1b24dcfbbae426fe8d674cff" | ||
1043 | integrity sha512-1e/51G/Ni+7uH5gktbWv+eCED9pP8ZpRhZB3jOaI3mmzfvJTWHkuyYTv0Z5PYtyM+Tr2Ccr9kUdQxn60fI5WuQ== | ||
1044 | dependencies: | ||
1045 | "@babel/helper-plugin-utils" "^7.10.4" | ||
1046 | |||
1047 | "@babel/plugin-transform-spread@^7.11.0": | 997 | "@babel/plugin-transform-spread@^7.11.0": |
1048 | version "7.11.0" | 998 | version "7.11.0" |
1049 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.11.0.tgz#fa84d300f5e4f57752fe41a6d1b3c554f13f17cc" | 999 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.11.0.tgz#fa84d300f5e4f57752fe41a6d1b3c554f13f17cc" |
@@ -1090,7 +1040,7 @@ | |||
1090 | "@babel/helper-create-regexp-features-plugin" "^7.10.4" | 1040 | "@babel/helper-create-regexp-features-plugin" "^7.10.4" |
1091 | "@babel/helper-plugin-utils" "^7.10.4" | 1041 | "@babel/helper-plugin-utils" "^7.10.4" |
1092 | 1042 | ||
1093 | "@babel/preset-env@7.11.0": | 1043 | "@babel/preset-env@7.11.0", "@babel/preset-env@^7.11.0": |
1094 | version "7.11.0" | 1044 | version "7.11.0" |
1095 | resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.11.0.tgz#860ee38f2ce17ad60480c2021ba9689393efb796" | 1045 | resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.11.0.tgz#860ee38f2ce17ad60480c2021ba9689393efb796" |
1096 | integrity sha512-2u1/k7rG/gTh02dylX2kL3S0IJNF+J6bfDSp4DI2Ma8QN6Y9x9pmAax59fsCk6QUQG0yqH47yJWA+u1I1LccAg== | 1046 | integrity sha512-2u1/k7rG/gTh02dylX2kL3S0IJNF+J6bfDSp4DI2Ma8QN6Y9x9pmAax59fsCk6QUQG0yqH47yJWA+u1I1LccAg== |
@@ -1164,76 +1114,6 @@ | |||
1164 | levenary "^1.1.1" | 1114 | levenary "^1.1.1" |
1165 | semver "^5.5.0" | 1115 | semver "^5.5.0" |
1166 | 1116 | ||
1167 | "@babel/preset-env@^7.4.5": | ||
1168 | version "7.10.4" | ||
1169 | resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.10.4.tgz#fbf57f9a803afd97f4f32e4f798bb62e4b2bef5f" | ||
1170 | integrity sha512-tcmuQ6vupfMZPrLrc38d0sF2OjLT3/bZ0dry5HchNCQbrokoQi4reXqclvkkAT5b+gWc23meVWpve5P/7+w/zw== | ||
1171 | dependencies: | ||
1172 | "@babel/compat-data" "^7.10.4" | ||
1173 | "@babel/helper-compilation-targets" "^7.10.4" | ||
1174 | "@babel/helper-module-imports" "^7.10.4" | ||
1175 | "@babel/helper-plugin-utils" "^7.10.4" | ||
1176 | "@babel/plugin-proposal-async-generator-functions" "^7.10.4" | ||
1177 | "@babel/plugin-proposal-class-properties" "^7.10.4" | ||
1178 | "@babel/plugin-proposal-dynamic-import" "^7.10.4" | ||
1179 | "@babel/plugin-proposal-json-strings" "^7.10.4" | ||
1180 | "@babel/plugin-proposal-nullish-coalescing-operator" "^7.10.4" | ||
1181 | "@babel/plugin-proposal-numeric-separator" "^7.10.4" | ||
1182 | "@babel/plugin-proposal-object-rest-spread" "^7.10.4" | ||
1183 | "@babel/plugin-proposal-optional-catch-binding" "^7.10.4" | ||
1184 | "@babel/plugin-proposal-optional-chaining" "^7.10.4" | ||
1185 | "@babel/plugin-proposal-private-methods" "^7.10.4" | ||
1186 | "@babel/plugin-proposal-unicode-property-regex" "^7.10.4" | ||
1187 | "@babel/plugin-syntax-async-generators" "^7.8.0" | ||
1188 | "@babel/plugin-syntax-class-properties" "^7.10.4" | ||
1189 | "@babel/plugin-syntax-dynamic-import" "^7.8.0" | ||
1190 | "@babel/plugin-syntax-json-strings" "^7.8.0" | ||
1191 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0" | ||
1192 | "@babel/plugin-syntax-numeric-separator" "^7.10.4" | ||
1193 | "@babel/plugin-syntax-object-rest-spread" "^7.8.0" | ||
1194 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.0" | ||
1195 | "@babel/plugin-syntax-optional-chaining" "^7.8.0" | ||
1196 | "@babel/plugin-syntax-top-level-await" "^7.10.4" | ||
1197 | "@babel/plugin-transform-arrow-functions" "^7.10.4" | ||
1198 | "@babel/plugin-transform-async-to-generator" "^7.10.4" | ||
1199 | "@babel/plugin-transform-block-scoped-functions" "^7.10.4" | ||
1200 | "@babel/plugin-transform-block-scoping" "^7.10.4" | ||
1201 | "@babel/plugin-transform-classes" "^7.10.4" | ||
1202 | "@babel/plugin-transform-computed-properties" "^7.10.4" | ||
1203 | "@babel/plugin-transform-destructuring" "^7.10.4" | ||
1204 | "@babel/plugin-transform-dotall-regex" "^7.10.4" | ||
1205 | "@babel/plugin-transform-duplicate-keys" "^7.10.4" | ||
1206 | "@babel/plugin-transform-exponentiation-operator" "^7.10.4" | ||
1207 | "@babel/plugin-transform-for-of" "^7.10.4" | ||
1208 | "@babel/plugin-transform-function-name" "^7.10.4" | ||
1209 | "@babel/plugin-transform-literals" "^7.10.4" | ||
1210 | "@babel/plugin-transform-member-expression-literals" "^7.10.4" | ||
1211 | "@babel/plugin-transform-modules-amd" "^7.10.4" | ||
1212 | "@babel/plugin-transform-modules-commonjs" "^7.10.4" | ||
1213 | "@babel/plugin-transform-modules-systemjs" "^7.10.4" | ||
1214 | "@babel/plugin-transform-modules-umd" "^7.10.4" | ||
1215 | "@babel/plugin-transform-named-capturing-groups-regex" "^7.10.4" | ||
1216 | "@babel/plugin-transform-new-target" "^7.10.4" | ||
1217 | "@babel/plugin-transform-object-super" "^7.10.4" | ||
1218 | "@babel/plugin-transform-parameters" "^7.10.4" | ||
1219 | "@babel/plugin-transform-property-literals" "^7.10.4" | ||
1220 | "@babel/plugin-transform-regenerator" "^7.10.4" | ||
1221 | "@babel/plugin-transform-reserved-words" "^7.10.4" | ||
1222 | "@babel/plugin-transform-shorthand-properties" "^7.10.4" | ||
1223 | "@babel/plugin-transform-spread" "^7.10.4" | ||
1224 | "@babel/plugin-transform-sticky-regex" "^7.10.4" | ||
1225 | "@babel/plugin-transform-template-literals" "^7.10.4" | ||
1226 | "@babel/plugin-transform-typeof-symbol" "^7.10.4" | ||
1227 | "@babel/plugin-transform-unicode-escapes" "^7.10.4" | ||
1228 | "@babel/plugin-transform-unicode-regex" "^7.10.4" | ||
1229 | "@babel/preset-modules" "^0.1.3" | ||
1230 | "@babel/types" "^7.10.4" | ||
1231 | browserslist "^4.12.0" | ||
1232 | core-js-compat "^3.6.2" | ||
1233 | invariant "^2.2.2" | ||
1234 | levenary "^1.1.1" | ||
1235 | semver "^5.5.0" | ||
1236 | |||
1237 | "@babel/preset-modules@^0.1.3": | 1117 | "@babel/preset-modules@^0.1.3": |
1238 | version "0.1.3" | 1118 | version "0.1.3" |
1239 | resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.3.tgz#13242b53b5ef8c883c3cf7dddd55b36ce80fbc72" | 1119 | resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.3.tgz#13242b53b5ef8c883c3cf7dddd55b36ce80fbc72" |
@@ -1245,17 +1125,10 @@ | |||
1245 | "@babel/types" "^7.4.4" | 1125 | "@babel/types" "^7.4.4" |
1246 | esutils "^2.0.2" | 1126 | esutils "^2.0.2" |
1247 | 1127 | ||
1248 | "@babel/runtime@7.11.0": | 1128 | "@babel/runtime@7.11.2", "@babel/runtime@^7.5.5", "@babel/runtime@^7.8.4", "@babel/runtime@^7.9.2": |
1249 | version "7.11.0" | 1129 | version "7.11.2" |
1250 | resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.11.0.tgz#f10245877042a815e07f7e693faff0ae9d3a2aac" | 1130 | resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.11.2.tgz#f549c13c754cc40b87644b9fa9f09a6a95fe0736" |
1251 | integrity sha512-qArkXsjJq7H+T86WrIFV0Fnu/tNOkZ4cgXmjkzAu3b/58D5mFIO8JH/y77t7C9q0OdDRdh9s7Ue5GasYssxtXw== | 1131 | integrity sha512-TeWkU52so0mPtDcaCTxNBI/IHiz0pZgr8VEFqXFtZWpYD08ZB6FaSwVAS8MKRQAP3bYKiVjwysOJgMFY28o6Tw== |
1252 | dependencies: | ||
1253 | regenerator-runtime "^0.13.4" | ||
1254 | |||
1255 | "@babel/runtime@^7.5.5", "@babel/runtime@^7.8.4", "@babel/runtime@^7.9.2": | ||
1256 | version "7.10.5" | ||
1257 | resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.10.5.tgz#303d8bd440ecd5a491eae6117fd3367698674c5c" | ||
1258 | integrity sha512-otddXKhdNn7d0ptoFRHtMLa8LqDxLYwTjB4nYgM1yy5N6gU/MUf8zqyyLltCH3yAVitBzmwK4us+DD0l/MauAg== | ||
1259 | dependencies: | 1132 | dependencies: |
1260 | regenerator-runtime "^0.13.4" | 1133 | regenerator-runtime "^0.13.4" |
1261 | 1134 | ||
@@ -1268,22 +1141,7 @@ | |||
1268 | "@babel/parser" "^7.10.4" | 1141 | "@babel/parser" "^7.10.4" |
1269 | "@babel/types" "^7.10.4" | 1142 | "@babel/types" "^7.10.4" |
1270 | 1143 | ||
1271 | "@babel/traverse@^7.10.4", "@babel/traverse@^7.10.5", "@babel/traverse@^7.7.0", "@babel/traverse@^7.8.3": | 1144 | "@babel/traverse@^7.10.4", "@babel/traverse@^7.11.0", "@babel/traverse@^7.7.0", "@babel/traverse@^7.8.3": |
1272 | version "7.10.5" | ||
1273 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.10.5.tgz#77ce464f5b258be265af618d8fddf0536f20b564" | ||
1274 | integrity sha512-yc/fyv2gUjPqzTz0WHeRJH2pv7jA9kA7mBX2tXl/x5iOE81uaVPuGPtaYk7wmkx4b67mQ7NqI8rmT2pF47KYKQ== | ||
1275 | dependencies: | ||
1276 | "@babel/code-frame" "^7.10.4" | ||
1277 | "@babel/generator" "^7.10.5" | ||
1278 | "@babel/helper-function-name" "^7.10.4" | ||
1279 | "@babel/helper-split-export-declaration" "^7.10.4" | ||
1280 | "@babel/parser" "^7.10.5" | ||
1281 | "@babel/types" "^7.10.5" | ||
1282 | debug "^4.1.0" | ||
1283 | globals "^11.1.0" | ||
1284 | lodash "^4.17.19" | ||
1285 | |||
1286 | "@babel/traverse@^7.11.0": | ||
1287 | version "7.11.0" | 1145 | version "7.11.0" |
1288 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.11.0.tgz#9b996ce1b98f53f7c3e4175115605d56ed07dd24" | 1146 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.11.0.tgz#9b996ce1b98f53f7c3e4175115605d56ed07dd24" |
1289 | integrity sha512-ZB2V+LskoWKNpMq6E5UUCrjtDUh5IOTAyIl0dTjIEoXum/iKWkoIEKIRDnUucO6f+2FzNkE0oD4RLKoPIufDtg== | 1147 | integrity sha512-ZB2V+LskoWKNpMq6E5UUCrjtDUh5IOTAyIl0dTjIEoXum/iKWkoIEKIRDnUucO6f+2FzNkE0oD4RLKoPIufDtg== |
@@ -1298,16 +1156,7 @@ | |||
1298 | globals "^11.1.0" | 1156 | globals "^11.1.0" |
1299 | lodash "^4.17.19" | 1157 | lodash "^4.17.19" |
1300 | 1158 | ||
1301 | "@babel/types@^7.10.4", "@babel/types@^7.10.5", "@babel/types@^7.4.4", "@babel/types@^7.7.0", "@babel/types@^7.8.3": | 1159 | "@babel/types@^7.10.4", "@babel/types@^7.10.5", "@babel/types@^7.11.0", "@babel/types@^7.4.4", "@babel/types@^7.7.0", "@babel/types@^7.8.3": |
1302 | version "7.10.5" | ||
1303 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.10.5.tgz#d88ae7e2fde86bfbfe851d4d81afa70a997b5d15" | ||
1304 | integrity sha512-ixV66KWfCI6GKoA/2H9v6bQdbfXEwwpOdQ8cRvb4F+eyvhlaHxWFMQB4+3d9QFJXZsiiiqVrewNV0DFEQpyT4Q== | ||
1305 | dependencies: | ||
1306 | "@babel/helper-validator-identifier" "^7.10.4" | ||
1307 | lodash "^4.17.19" | ||
1308 | to-fast-properties "^2.0.0" | ||
1309 | |||
1310 | "@babel/types@^7.11.0": | ||
1311 | version "7.11.0" | 1160 | version "7.11.0" |
1312 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.11.0.tgz#2ae6bf1ba9ae8c3c43824e5861269871b206e90d" | 1161 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.11.0.tgz#2ae6bf1ba9ae8c3c43824e5861269871b206e90d" |
1313 | integrity sha512-O53yME4ZZI0jO1EVGtF1ePGl0LHirG4P1ibcD80XyzZcKhcMFeCXmh4Xb1ifGBIV233Qg12x4rBfQgA+tmOukA== | 1162 | integrity sha512-O53yME4ZZI0jO1EVGtF1ePGl0LHirG4P1ibcD80XyzZcKhcMFeCXmh4Xb1ifGBIV233Qg12x4rBfQgA+tmOukA== |
@@ -1345,20 +1194,19 @@ | |||
1345 | tslib "^2.0.0" | 1194 | tslib "^2.0.0" |
1346 | 1195 | ||
1347 | "@ng-select/ng-select@^5.0.0": | 1196 | "@ng-select/ng-select@^5.0.0": |
1348 | version "5.0.0" | 1197 | version "5.0.1" |
1349 | resolved "https://registry.yarnpkg.com/@ng-select/ng-select/-/ng-select-5.0.0.tgz#db021e5ca7be3fe6be346c3b63b3f2e109afa0f0" | 1198 | resolved "https://registry.yarnpkg.com/@ng-select/ng-select/-/ng-select-5.0.1.tgz#1d149fe3d2fd199647a00a0099ca0a9b32c7cded" |
1350 | integrity sha512-1mdGNh5xGriSnCLcLF/GWxqCgCehB3Stu7mxhB9K/+BxNCRE365Q1MgpzO61XQBgL0L6ktxiXRhCQWXXtFoq9w== | 1199 | integrity sha512-HXGZbJHUK/Bch88LUgvNard+Kg9tTB9HTG4SalBP64/hwvYOdQIcsFmf2Zxl0VvhUfKo7qLLIY3HKsy9i0wqJg== |
1351 | dependencies: | 1200 | dependencies: |
1352 | tslib "^2.0.0" | 1201 | tslib "^2.0.0" |
1353 | 1202 | ||
1354 | "@ngtools/webpack@10.1.0-next.4": | 1203 | "@ngtools/webpack@10.1.0-next.6": |
1355 | version "10.1.0-next.4" | 1204 | version "10.1.0-next.6" |
1356 | resolved "https://registry.yarnpkg.com/@ngtools/webpack/-/webpack-10.1.0-next.4.tgz#5397417820d110e29c7dc99db8adb538de98676e" | 1205 | resolved "https://registry.yarnpkg.com/@ngtools/webpack/-/webpack-10.1.0-next.6.tgz#161b11eddbf39d5aecca5051d0992ec801d359f6" |
1357 | integrity sha512-8hZMiVhQSIlvNGlN9Uii+c7MOYvR3zlPMo4XhZCPCXHAop1z4H0+XZBkKqV9uT5WrF0NcUY3KUyhA8sawY1l2w== | 1206 | integrity sha512-xrnfR9iq9VRLX7aocdTRxw+8t3lyxLwHfZcPyLvJGGxFGIf9qnUg0NxX0qzs4CBS5sklG7RGI8qyMFL69lCcRw== |
1358 | dependencies: | 1207 | dependencies: |
1359 | "@angular-devkit/core" "10.1.0-next.4" | 1208 | "@angular-devkit/core" "10.1.0-next.6" |
1360 | enhanced-resolve "4.3.0" | 1209 | enhanced-resolve "4.3.0" |
1361 | rxjs "6.6.2" | ||
1362 | webpack-sources "1.4.3" | 1210 | webpack-sources "1.4.3" |
1363 | 1211 | ||
1364 | "@ngx-i18nsupport/ngx-i18nsupport-lib@^1.12.1": | 1212 | "@ngx-i18nsupport/ngx-i18nsupport-lib@^1.12.1": |
@@ -1440,27 +1288,26 @@ | |||
1440 | dependencies: | 1288 | dependencies: |
1441 | mkdirp "^1.0.4" | 1289 | mkdirp "^1.0.4" |
1442 | 1290 | ||
1443 | "@schematics/angular@10.1.0-next.4": | 1291 | "@schematics/angular@10.1.0-next.6": |
1444 | version "10.1.0-next.4" | 1292 | version "10.1.0-next.6" |
1445 | resolved "https://registry.yarnpkg.com/@schematics/angular/-/angular-10.1.0-next.4.tgz#bfcbc3d017850635cc7d2c3c0d324eccf32af404" | 1293 | resolved "https://registry.yarnpkg.com/@schematics/angular/-/angular-10.1.0-next.6.tgz#f3e7483594bbcd13b1136868ecfaaba40793f510" |
1446 | integrity sha512-x1EDck9nN4h3Ka6qqce/XdXXIz0u12Jx/XmW/hIljn61+sZIOdB2pmNQovIir6DiPWtOcexUrYVrj0t1cjmJow== | 1294 | integrity sha512-fnECAMcaOS7EJAFngXJDg7pjMnEkDh0hAJfdoP9ucNd8PN7wCiNgMv64dBHCG1IkCSE0OsxzRGemhlIB5hgoQQ== |
1447 | dependencies: | 1295 | dependencies: |
1448 | "@angular-devkit/core" "10.1.0-next.4" | 1296 | "@angular-devkit/core" "10.1.0-next.6" |
1449 | "@angular-devkit/schematics" "10.1.0-next.4" | 1297 | "@angular-devkit/schematics" "10.1.0-next.6" |
1450 | jsonc-parser "2.3.0" | 1298 | jsonc-parser "2.3.0" |
1451 | 1299 | ||
1452 | "@schematics/update@0.1001.0-next.4": | 1300 | "@schematics/update@0.1001.0-next.6": |
1453 | version "0.1001.0-next.4" | 1301 | version "0.1001.0-next.6" |
1454 | resolved "https://registry.yarnpkg.com/@schematics/update/-/update-0.1001.0-next.4.tgz#cb446c491bad9c5d7aec04abba4a7d5bec01162f" | 1302 | resolved "https://registry.yarnpkg.com/@schematics/update/-/update-0.1001.0-next.6.tgz#b5a47fc16ed292e91a7cf715c9fc9f09b8ef16d9" |
1455 | integrity sha512-gAzcJ4gN1UKhxgQ4SACmIvORYez8YNy1UN241K3KHaygf8yozGSgTAQGDvHuWPEaVTpJoMshnNhZDZP9pc8vlA== | 1303 | integrity sha512-Q3RcDzsIiiLVCBt2mF9IzfnFKt4yPRKm3bXp2ExU6sB/lSr8mpHWfLwpBk973DQg5fpAwFJLFedKMERacibjDw== |
1456 | dependencies: | 1304 | dependencies: |
1457 | "@angular-devkit/core" "10.1.0-next.4" | 1305 | "@angular-devkit/core" "10.1.0-next.6" |
1458 | "@angular-devkit/schematics" "10.1.0-next.4" | 1306 | "@angular-devkit/schematics" "10.1.0-next.6" |
1459 | "@yarnpkg/lockfile" "1.1.0" | 1307 | "@yarnpkg/lockfile" "1.1.0" |
1460 | ini "1.3.5" | 1308 | ini "1.3.5" |
1461 | npm-package-arg "^8.0.0" | 1309 | npm-package-arg "^8.0.0" |
1462 | pacote "9.5.12" | 1310 | pacote "9.5.12" |
1463 | rxjs "6.6.2" | ||
1464 | semver "7.3.2" | 1311 | semver "7.3.2" |
1465 | semver-intersect "1.4.0" | 1312 | semver-intersect "1.4.0" |
1466 | 1313 | ||
@@ -1470,16 +1317,16 @@ | |||
1470 | integrity sha512-/+CRPXpBDpo2RK9C68N3b2cOvO0Cf5B9aPijHsoDQTHivnGSObdOF2BRQOYjojWTDy6nQvMjmqRXIxH55VjxxA== | 1317 | integrity sha512-/+CRPXpBDpo2RK9C68N3b2cOvO0Cf5B9aPijHsoDQTHivnGSObdOF2BRQOYjojWTDy6nQvMjmqRXIxH55VjxxA== |
1471 | 1318 | ||
1472 | "@types/bittorrent-protocol@*": | 1319 | "@types/bittorrent-protocol@*": |
1473 | version "3.1.0" | 1320 | version "3.1.1" |
1474 | resolved "https://registry.yarnpkg.com/@types/bittorrent-protocol/-/bittorrent-protocol-3.1.0.tgz#87638a5da5cd909a8646a1d5e164b76a56af64f7" | 1321 | resolved "https://registry.yarnpkg.com/@types/bittorrent-protocol/-/bittorrent-protocol-3.1.1.tgz#76bfd5903d0f7c7b23289763f39aca9337b3b723" |
1475 | integrity sha512-kx8FPnIIHBFdx6rAo4yfLROFAUAEXoU+zQxvEveZWOIXd9I/v5Uttb0NTa9cyXB0HG1FtE/nrZLKVJ/QhIlsaA== | 1322 | integrity sha512-YY3j5aJNTjAt5SA1P+4mK4cU4QuxSN79T1mzdQMLeQL1eTrruU5AxKcgxKZOuatPET3wCDx5JQnq+4XWpFEb/A== |
1476 | dependencies: | 1323 | dependencies: |
1477 | "@types/node" "*" | 1324 | "@types/node" "*" |
1478 | 1325 | ||
1479 | "@types/chart.js@^2.9.16": | 1326 | "@types/chart.js@^2.9.16": |
1480 | version "2.9.23" | 1327 | version "2.9.24" |
1481 | resolved "https://registry.yarnpkg.com/@types/chart.js/-/chart.js-2.9.23.tgz#5de713e801f5aff4d042c7d49ab9691489c11848" | 1328 | resolved "https://registry.yarnpkg.com/@types/chart.js/-/chart.js-2.9.24.tgz#f044fde90c928cb054e2ea582eb68d9945d84bc6" |
1482 | integrity sha512-4QQNE/b+digosu3mnj4E7aNQGKnlpzXa9JvQYPtexpO7v9gnDeqwc1DxF8vLJWLDCNoO6hH0EgO8K/7PtJl8wg== | 1329 | integrity sha512-AQI7X+ow3SaONl44JrHoL/5B+lCsJyG31UHZ5RP98Uh15hI/zjEkDsAb4EIm4P9TGfNhZLXw/nMc5w0u10+/fQ== |
1483 | dependencies: | 1330 | dependencies: |
1484 | moment "^2.10.2" | 1331 | moment "^2.10.2" |
1485 | 1332 | ||
@@ -1517,9 +1364,9 @@ | |||
1517 | integrity sha512-iYCgjm1dGPRuo12+BStjd1HiVQqhlRhWDOQigNxn023HcjnhsiFz9pc6CzJj4HwDCSQca9bxTL4PxJDbkdm3PA== | 1364 | integrity sha512-iYCgjm1dGPRuo12+BStjd1HiVQqhlRhWDOQigNxn023HcjnhsiFz9pc6CzJj4HwDCSQca9bxTL4PxJDbkdm3PA== |
1518 | 1365 | ||
1519 | "@types/jasmine@*", "@types/jasmine@^3.3.15": | 1366 | "@types/jasmine@*", "@types/jasmine@^3.3.15": |
1520 | version "3.5.11" | 1367 | version "3.5.13" |
1521 | resolved "https://registry.yarnpkg.com/@types/jasmine/-/jasmine-3.5.11.tgz#ba8e80639dffbe277f49c708b45373a320d158e2" | 1368 | resolved "https://registry.yarnpkg.com/@types/jasmine/-/jasmine-3.5.13.tgz#f5d34d7f9d0ad15e7c17adbaf1ebfaca68a60f73" |
1522 | integrity sha512-fg1rOd/DehQTIJTifGqGVY6q92lDgnLfs7C6t1ccSwQrMyoTGSoH6wWzhJDZb6ezhsdwAX4EIBLe8w5fXWmEng== | 1369 | integrity sha512-bVSrTEWdCNH2RHN+E0QlEr4pGPMRA6puKOmL/X13ZeZmUS0q12ZR1rkB9PVvJSX0zi/OXrMDNvUai+PC380+rQ== |
1523 | 1370 | ||
1524 | "@types/jasminewd2@^2.0.3": | 1371 | "@types/jasminewd2@^2.0.3": |
1525 | version "2.0.8" | 1372 | version "2.0.8" |
@@ -1558,9 +1405,9 @@ | |||
1558 | "@types/lodash" "*" | 1405 | "@types/lodash" "*" |
1559 | 1406 | ||
1560 | "@types/lodash@*": | 1407 | "@types/lodash@*": |
1561 | version "4.14.158" | 1408 | version "4.14.160" |
1562 | resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.158.tgz#b38ea8b6fe799acd076d7a8d7ab71c26ef77f785" | 1409 | resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.160.tgz#2f1bba6500bc3cb9a732c6d66a083378fb0b0b29" |
1563 | integrity sha512-InCEXJNTv/59yO4VSfuvNrZHt7eeNtWQEgnieIA+mIC+MOWM9arOWG2eQ8Vhk6NbOre6/BidiXhkZYeDY9U35w== | 1410 | integrity sha512-aP03BShJoO+WVndoVj/WNcB/YBPt+CIU1mvaao2GRAHy2yg4pT/XS4XnVHEQBjPJGycWf/9seKEO9vopTJGkvA== |
1564 | 1411 | ||
1565 | "@types/magnet-uri@*": | 1412 | "@types/magnet-uri@*": |
1566 | version "5.1.2" | 1413 | version "5.1.2" |
@@ -1570,9 +1417,9 @@ | |||
1570 | "@types/node" "*" | 1417 | "@types/node" "*" |
1571 | 1418 | ||
1572 | "@types/markdown-it@^10.0.1": | 1419 | "@types/markdown-it@^10.0.1": |
1573 | version "10.0.1" | 1420 | version "10.0.2" |
1574 | resolved "https://registry.yarnpkg.com/@types/markdown-it/-/markdown-it-10.0.1.tgz#94e252ab689c8e9ceb9aff2946e0a458390105eb" | 1421 | resolved "https://registry.yarnpkg.com/@types/markdown-it/-/markdown-it-10.0.2.tgz#f93334b9c7821ddb19865dfd91ecf688094c2626" |
1575 | integrity sha512-L1ibTdA5IUe/cRBlf3N3syAOBQSN1WCMGtAWir6mKxibiRl4LmpZM4jLz+7zAqiMnhQuAP1sqZOF9wXgn2kpEg== | 1422 | integrity sha512-FGKiVW1UgeIEAChYAuHcfCd0W4LsMEyrSyTVaZiuJhwR4BwSVUD8JKnzmWAMK2FHNLZSPGUaEkpa/dkZj2uq1w== |
1576 | dependencies: | 1423 | dependencies: |
1577 | "@types/linkify-it" "*" | 1424 | "@types/linkify-it" "*" |
1578 | "@types/mdurl" "*" | 1425 | "@types/mdurl" "*" |
@@ -1593,9 +1440,9 @@ | |||
1593 | integrity sha512-13gmo3M2qVvjQrWNseqM3+cR6S2Ss3grbR2NZltgMq94wOwqJYQdgn8qzwDshzgXqMlSUtyPZjysImmktu22ew== | 1440 | integrity sha512-13gmo3M2qVvjQrWNseqM3+cR6S2Ss3grbR2NZltgMq94wOwqJYQdgn8qzwDshzgXqMlSUtyPZjysImmktu22ew== |
1594 | 1441 | ||
1595 | "@types/node@*", "@types/node@^14.0.14": | 1442 | "@types/node@*", "@types/node@^14.0.14": |
1596 | version "14.0.26" | 1443 | version "14.6.0" |
1597 | resolved "https://registry.yarnpkg.com/@types/node/-/node-14.0.26.tgz#22a3b8a46510da8944b67bfc27df02c34a35331c" | 1444 | resolved "https://registry.yarnpkg.com/@types/node/-/node-14.6.0.tgz#7d4411bf5157339337d7cff864d9ff45f177b499" |
1598 | integrity sha512-W+fpe5s91FBGE0pEa0lnqGLL4USgpLgs4nokw16SrBBco/gQxuua7KnArSEOd5iaMqbbSHV10vUDkJYJJqpXKA== | 1445 | integrity sha512-mikldZQitV94akrc4sCcSjtJfsTKt4p+e/s0AGscVA6XArQ9kFclP+ZiYUMnq987rc6QlYxXv/EivqlfSLxpKA== |
1599 | 1446 | ||
1600 | "@types/parse-torrent-file@*": | 1447 | "@types/parse-torrent-file@*": |
1601 | version "4.0.2" | 1448 | version "4.0.2" |
@@ -1629,17 +1476,17 @@ | |||
1629 | integrity sha512-1HcDas8SEj4z1Wc696tH56G8OlRaH/sqZOynNNB+HF0WOeXPaxTtbYzJY2oEfiUxjSKjhCKr+MvR7dCHcEelug== | 1476 | integrity sha512-1HcDas8SEj4z1Wc696tH56G8OlRaH/sqZOynNNB+HF0WOeXPaxTtbYzJY2oEfiUxjSKjhCKr+MvR7dCHcEelug== |
1630 | 1477 | ||
1631 | "@types/react@*": | 1478 | "@types/react@*": |
1632 | version "16.9.43" | 1479 | version "16.9.47" |
1633 | resolved "https://registry.yarnpkg.com/@types/react/-/react-16.9.43.tgz#c287f23f6189666ee3bebc2eb8d0f84bcb6cdb6b" | 1480 | resolved "https://registry.yarnpkg.com/@types/react/-/react-16.9.47.tgz#fb092936f0b56425f874d0ff1b08051fdf70c1ba" |
1634 | integrity sha512-PxshAFcnJqIWYpJbLPriClH53Z2WlJcVZE+NP2etUtWQs2s7yIMj3/LDKZT/5CHJ/F62iyjVCDu2H3jHEXIxSg== | 1481 | integrity sha512-dAJO4VbrjYqTUwFiQqAKjLyHHl4RSTNnRyPdX3p16MPbDKvow51wxATUPxoe2QsiXNMEYrOjc2S6s92VjG+1VQ== |
1635 | dependencies: | 1482 | dependencies: |
1636 | "@types/prop-types" "*" | 1483 | "@types/prop-types" "*" |
1637 | csstype "^2.2.0" | 1484 | csstype "^3.0.2" |
1638 | 1485 | ||
1639 | "@types/sanitize-html@1.23.2": | 1486 | "@types/sanitize-html@1.23.3": |
1640 | version "1.23.2" | 1487 | version "1.23.3" |
1641 | resolved "https://registry.yarnpkg.com/@types/sanitize-html/-/sanitize-html-1.23.2.tgz#6dfef987681a6469b0aeb37bc6ff370700c6c440" | 1488 | resolved "https://registry.yarnpkg.com/@types/sanitize-html/-/sanitize-html-1.23.3.tgz#26527783aba3bf195ad8a3c3e51bd3713526fc0d" |
1642 | integrity sha512-s00omSXGjemcNGXChE44grxYLPCkxdp/rdxGCb4FcGyH0aOjFOacrnP0P394Ktp+IKeBk1Q7VsGJ+cOa2GZ5hw== | 1489 | integrity sha512-Isg8N0ifKdDq6/kaNlIcWfapDXxxquMSk2XC5THsOICRyOIhQGds95XH75/PL/g9mExi4bL8otIqJM/Wo96WxA== |
1643 | dependencies: | 1490 | dependencies: |
1644 | htmlparser2 "^4.1.0" | 1491 | htmlparser2 "^4.1.0" |
1645 | 1492 | ||
@@ -1683,9 +1530,9 @@ | |||
1683 | integrity sha512-RJKdtmUMb8WFDe+btAeBW9NVUJ/nksb+/1S+Tca7HNwnRv9iEwt802hgRSAcFj6+sL/eNi264zcBjbBHP5yQVw== | 1530 | integrity sha512-RJKdtmUMb8WFDe+btAeBW9NVUJ/nksb+/1S+Tca7HNwnRv9iEwt802hgRSAcFj6+sL/eNi264zcBjbBHP5yQVw== |
1684 | 1531 | ||
1685 | "@types/webpack-sources@*": | 1532 | "@types/webpack-sources@*": |
1686 | version "1.4.1" | 1533 | version "1.4.2" |
1687 | resolved "https://registry.yarnpkg.com/@types/webpack-sources/-/webpack-sources-1.4.1.tgz#3bed49013ec7935680d781e83cf4b5ce13ddf917" | 1534 | resolved "https://registry.yarnpkg.com/@types/webpack-sources/-/webpack-sources-1.4.2.tgz#5d3d4dea04008a779a90135ff96fb5c0c9e6292c" |
1688 | integrity sha512-B/RJcbpMp1/od7KADJlW/jeXTEau6NYmhWo+hB29cEfRriYK9SRlH8sY4hI9Au7nrP95Z5MumGvIEiEBHMxoWA== | 1535 | integrity sha512-77T++JyKow4BQB/m9O96n9d/UUHWLQHlcqXb9Vsf4F1+wKNrrlWNFPDLKNT92RJnCSL6CieTc+NDXtCVZswdTw== |
1689 | dependencies: | 1536 | dependencies: |
1690 | "@types/node" "*" | 1537 | "@types/node" "*" |
1691 | "@types/source-list-map" "*" | 1538 | "@types/source-list-map" "*" |
@@ -1927,9 +1774,9 @@ JSONStream@^1.3.4: | |||
1927 | through ">=2.2.7 <3" | 1774 | through ">=2.2.7 <3" |
1928 | 1775 | ||
1929 | abab@^2.0.3: | 1776 | abab@^2.0.3: |
1930 | version "2.0.3" | 1777 | version "2.0.4" |
1931 | resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.3.tgz#623e2075e02eb2d3f2475e49f99c91846467907a" | 1778 | resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.4.tgz#6dfa57b417ca06d21b2478f0e638302f99c2405c" |
1932 | integrity sha512-tsFzPpcttalNjFBCFMqsKYQcWxxen1pgJR56by//QwvJc4/OUS3kPOOttx2tSIfjsylB0pYu7f5D3K1RCxUnUg== | 1779 | integrity sha512-Eu9ELJWCz/c1e9gTiCY+FceWxcqzjYEbqMgtndnuSqZSUCOL73TWNK2mHfIj4Cw2E/ongOp+JISVNCmovt2KYQ== |
1933 | 1780 | ||
1934 | abbrev@1: | 1781 | abbrev@1: |
1935 | version "1.1.1" | 1782 | version "1.1.1" |
@@ -1972,9 +1819,9 @@ acorn@^6.4.1: | |||
1972 | integrity sha512-ZVA9k326Nwrj3Cj9jlh3wGFutC2ZornPNARZwsNYqQYgN0EsV2d53w5RN/co65Ohn4sUAUtb1rSUAOD6XN9idA== | 1819 | integrity sha512-ZVA9k326Nwrj3Cj9jlh3wGFutC2ZornPNARZwsNYqQYgN0EsV2d53w5RN/co65Ohn4sUAUtb1rSUAOD6XN9idA== |
1973 | 1820 | ||
1974 | acorn@^7.1.1: | 1821 | acorn@^7.1.1: |
1975 | version "7.3.1" | 1822 | version "7.4.0" |
1976 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.3.1.tgz#85010754db53c3fbaf3b9ea3e083aa5c5d147ffd" | 1823 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.0.tgz#e1ad486e6c54501634c6c397c5c121daa383607c" |
1977 | integrity sha512-tLc0wSnatxAQHVHUapaHdz72pi9KUyHjq5KyHjGg9Y8Ifdc79pTh2XvI6I1/chZbnM7QtNKzh66ooDogPZSleA== | 1824 | integrity sha512-+G7P8jJmCHr+S+cLfQxygbWhXy+8YTVGzAkpEbcLo2mLoL7tij/VG41QSHACSf5QgYRhMZYHuNc6drJaO0Da+w== |
1978 | 1825 | ||
1979 | addr-to-ip-port@^1.0.1, addr-to-ip-port@^1.5.1: | 1826 | addr-to-ip-port@^1.0.1, addr-to-ip-port@^1.5.1: |
1980 | version "1.5.1" | 1827 | version "1.5.1" |
@@ -2033,9 +1880,9 @@ agentkeepalive@^3.4.1: | |||
2033 | humanize-ms "^1.2.1" | 1880 | humanize-ms "^1.2.1" |
2034 | 1881 | ||
2035 | aggregate-error@^3.0.0: | 1882 | aggregate-error@^3.0.0: |
2036 | version "3.0.1" | 1883 | version "3.1.0" |
2037 | resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.0.1.tgz#db2fe7246e536f40d9b5442a39e117d7dd6a24e0" | 1884 | resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a" |
2038 | integrity sha512-quoaXsZ9/BLNae5yiNoUz+Nhkwz83GhWwtYFglcjEQB2NDHCIpApbqXxIFnm4Pq/Nvhrsq5sYJFyohrrxnTGAA== | 1885 | integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA== |
2039 | dependencies: | 1886 | dependencies: |
2040 | clean-stack "^2.0.0" | 1887 | clean-stack "^2.0.0" |
2041 | indent-string "^4.0.0" | 1888 | indent-string "^4.0.0" |
@@ -2055,10 +1902,10 @@ ajv-keywords@^3.1.0, ajv-keywords@^3.4.1: | |||
2055 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d" | 1902 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d" |
2056 | integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ== | 1903 | integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ== |
2057 | 1904 | ||
2058 | ajv@6.12.3, ajv@^6.1.0, ajv@^6.10.2, ajv@^6.12.2, ajv@^6.5.5: | 1905 | ajv@6.12.4, ajv@^6.1.0, ajv@^6.10.2, ajv@^6.12.2, ajv@^6.12.3: |
2059 | version "6.12.3" | 1906 | version "6.12.4" |
2060 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.3.tgz#18c5af38a111ddeb4f2697bd78d68abc1cabd706" | 1907 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.4.tgz#0614facc4522127fa713445c6bfd3ebd376e2234" |
2061 | integrity sha512-4K0cK3L1hsqk9xIb2z9vs/XU+PGJZ9PNpJRDS9YLzmNdX6jmVPfamLvTJr0aDAusnHyCHO6MjzlkAsgtqp9teA== | 1908 | integrity sha512-eienB2c9qVQs2KWexhkrdMLVDoIQCz5KSeLxwg9Lzk4DOfBtIK9PQwwufcsn1jjGuf9WZmqPMbGxOzfcuphJCQ== |
2062 | dependencies: | 1909 | dependencies: |
2063 | fast-deep-equal "^3.1.1" | 1910 | fast-deep-equal "^3.1.1" |
2064 | fast-json-stable-stringify "^2.0.0" | 1911 | fast-json-stable-stringify "^2.0.0" |
@@ -2182,10 +2029,10 @@ anymatch@~3.1.1: | |||
2182 | normalize-path "^3.0.0" | 2029 | normalize-path "^3.0.0" |
2183 | picomatch "^2.0.4" | 2030 | picomatch "^2.0.4" |
2184 | 2031 | ||
2185 | app-root-path@^2.2.1: | 2032 | app-root-path@^3.0.0: |
2186 | version "2.2.1" | 2033 | version "3.0.0" |
2187 | resolved "https://registry.yarnpkg.com/app-root-path/-/app-root-path-2.2.1.tgz#d0df4a682ee408273583d43f6f79e9892624bc9a" | 2034 | resolved "https://registry.yarnpkg.com/app-root-path/-/app-root-path-3.0.0.tgz#210b6f43873227e18a4b810a032283311555d5ad" |
2188 | integrity sha512-91IFKeKk7FjfmezPKkwtaRvSpnUc4gDwPAjA1YZ9Gn0q0PPeW+vbeUsZuyDwjI7+QTHhcLen2v25fi/AmhvbJA== | 2035 | integrity sha512-qMcx+Gy2UZynHjOHOIXPNvpf+9cjvk3cWrBBK7zg4gH9+clobJRb9NGzcT7mQTcV/6Gm/1WelUtqxVXnNlrwcw== |
2189 | 2036 | ||
2190 | aproba@^1.0.3, aproba@^1.1.1: | 2037 | aproba@^1.0.3, aproba@^1.1.1: |
2191 | version "1.2.0" | 2038 | version "1.2.0" |
@@ -2287,14 +2134,15 @@ asap@^2.0.0: | |||
2287 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" | 2134 | resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" |
2288 | integrity sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY= | 2135 | integrity sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY= |
2289 | 2136 | ||
2290 | asn1.js@^4.0.0: | 2137 | asn1.js@^5.2.0: |
2291 | version "4.10.1" | 2138 | version "5.4.1" |
2292 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.10.1.tgz#b9c2bf5805f1e64aadeed6df3a2bfafb5a73f5a0" | 2139 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-5.4.1.tgz#11a980b84ebb91781ce35b0fdc2ee294e3783f07" |
2293 | integrity sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw== | 2140 | integrity sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA== |
2294 | dependencies: | 2141 | dependencies: |
2295 | bn.js "^4.0.0" | 2142 | bn.js "^4.0.0" |
2296 | inherits "^2.0.1" | 2143 | inherits "^2.0.1" |
2297 | minimalistic-assert "^1.0.0" | 2144 | minimalistic-assert "^1.0.0" |
2145 | safer-buffer "^2.1.0" | ||
2298 | 2146 | ||
2299 | asn1@~0.2.3: | 2147 | asn1@~0.2.3: |
2300 | version "0.2.4" | 2148 | version "0.2.4" |
@@ -2355,7 +2203,7 @@ async@^2.4.1, async@^2.6.2: | |||
2355 | dependencies: | 2203 | dependencies: |
2356 | lodash "^4.17.14" | 2204 | lodash "^4.17.14" |
2357 | 2205 | ||
2358 | async@^3.0.1: | 2206 | async@^3.2.0: |
2359 | version "3.2.0" | 2207 | version "3.2.0" |
2360 | resolved "https://registry.yarnpkg.com/async/-/async-3.2.0.tgz#b3a2685c5ebb641d3de02d161002c60fc9f85720" | 2208 | resolved "https://registry.yarnpkg.com/async/-/async-3.2.0.tgz#b3a2685c5ebb641d3de02d161002c60fc9f85720" |
2361 | integrity sha512-TR2mEZFVOj2pLStYxLht7TyfuRzaydfpxr3k9RpHIzMgw7A64dzsdqCxH1WJyQdoe8T10nDXd9wnEigmiuHIZw== | 2209 | integrity sha512-TR2mEZFVOj2pLStYxLht7TyfuRzaydfpxr3k9RpHIzMgw7A64dzsdqCxH1WJyQdoe8T10nDXd9wnEigmiuHIZw== |
@@ -2389,9 +2237,9 @@ aws-sign2@~0.7.0: | |||
2389 | integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg= | 2237 | integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg= |
2390 | 2238 | ||
2391 | aws4@^1.8.0: | 2239 | aws4@^1.8.0: |
2392 | version "1.10.0" | 2240 | version "1.10.1" |
2393 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.10.0.tgz#a17b3a8ea811060e74d47d306122400ad4497ae2" | 2241 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.10.1.tgz#e1e82e4f3e999e2cfd61b161280d16a111f86428" |
2394 | integrity sha512-3YDiu347mtVtjpyV3u5kVqQLP242c06zwDOgpeRnybmXlYYsLbtTrUBUm8i8srONt+FWobl5aibnU1030PeeuA== | 2242 | integrity sha512-zg7Hz2k5lI8kb7U32998pRRFin7zJlkfezGJjUc2heaD4Pw2wObakCDVzkKztTm/Ln7eiVvYsjqak0Ed4LkMDA== |
2395 | 2243 | ||
2396 | axobject-query@2.0.2: | 2244 | axobject-query@2.0.2: |
2397 | version "2.0.2" | 2245 | version "2.0.2" |
@@ -2400,7 +2248,7 @@ axobject-query@2.0.2: | |||
2400 | dependencies: | 2248 | dependencies: |
2401 | ast-types-flow "0.0.7" | 2249 | ast-types-flow "0.0.7" |
2402 | 2250 | ||
2403 | babel-eslint@^10.0.2: | 2251 | babel-eslint@^10.1.0: |
2404 | version "10.1.0" | 2252 | version "10.1.0" |
2405 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-10.1.0.tgz#6968e568a910b78fb3779cdd8b6ac2f479943232" | 2253 | resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-10.1.0.tgz#6968e568a910b78fb3779cdd8b6ac2f479943232" |
2406 | integrity sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg== | 2254 | integrity sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg== |
@@ -2640,9 +2488,9 @@ bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.4.0: | |||
2640 | integrity sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw== | 2488 | integrity sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw== |
2641 | 2489 | ||
2642 | bn.js@^5.1.1: | 2490 | bn.js@^5.1.1: |
2643 | version "5.1.2" | 2491 | version "5.1.3" |
2644 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.1.2.tgz#c9686902d3c9a27729f43ab10f9d79c2004da7b0" | 2492 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.1.3.tgz#beca005408f642ebebea80b042b4d18d2ac0ee6b" |
2645 | integrity sha512-40rZaf3bUNKTVYu9sIeeEGOg7g14Yvnj9kH7b50EiwX0Q7A6umbvfI5tvHaOERH0XigqKkfLkFQxzb4e6CIXnA== | 2493 | integrity sha512-GkTiFpjFtUzU9CbMeJ5iazkCzGL3jrhzerzZIuqLABjbwRaFt33I9tUdSNryIptM+RxDet6OKm2WnLXzW51KsQ== |
2646 | 2494 | ||
2647 | body-parser@1.19.0, body-parser@^1.19.0: | 2495 | body-parser@1.19.0, body-parser@^1.19.0: |
2648 | version "1.19.0" | 2496 | version "1.19.0" |
@@ -2678,9 +2526,9 @@ boolbase@^1.0.0, boolbase@~1.0.0: | |||
2678 | integrity sha1-aN/1++YMUes3cl6p4+0xDcwed24= | 2526 | integrity sha1-aN/1++YMUes3cl6p4+0xDcwed24= |
2679 | 2527 | ||
2680 | bootstrap@^4.1.3: | 2528 | bootstrap@^4.1.3: |
2681 | version "4.5.0" | 2529 | version "4.5.2" |
2682 | resolved "https://registry.yarnpkg.com/bootstrap/-/bootstrap-4.5.0.tgz#97d9dbcb5a8972f8722c9962483543b907d9b9ec" | 2530 | resolved "https://registry.yarnpkg.com/bootstrap/-/bootstrap-4.5.2.tgz#a85c4eda59155f0d71186b6e6ad9b875813779ab" |
2683 | integrity sha512-Z93QoXvodoVslA+PWNdk23Hze4RBYIkpb5h8I2HY2Tu2h7A0LpAgLcyrhrSUyo2/Oxm2l1fRZPs1e5hnxnliXA== | 2531 | integrity sha512-vlGn0bcySYl/iV+BGA544JkkZP5LB3jsmkeKLFQakCOwCM3AOk7VkldBz4jrzSe+Z0Ezn99NVXa1o45cQY4R6A== |
2684 | 2532 | ||
2685 | brace-expansion@^1.1.7: | 2533 | brace-expansion@^1.1.7: |
2686 | version "1.1.11" | 2534 | version "1.1.11" |
@@ -2763,15 +2611,15 @@ browserify-rsa@^4.0.0, browserify-rsa@^4.0.1: | |||
2763 | randombytes "^2.0.1" | 2611 | randombytes "^2.0.1" |
2764 | 2612 | ||
2765 | browserify-sign@^4.0.0: | 2613 | browserify-sign@^4.0.0: |
2766 | version "4.2.0" | 2614 | version "4.2.1" |
2767 | resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.2.0.tgz#545d0b1b07e6b2c99211082bf1b12cce7a0b0e11" | 2615 | resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.2.1.tgz#eaf4add46dd54be3bb3b36c0cf15abbeba7956c3" |
2768 | integrity sha512-hEZC1KEeYuoHRqhGhTy6gWrpJA3ZDjFWv0DE61643ZnOXAKJb3u7yWcrU0mMc9SwAqK1n7myPGndkp0dFG7NFA== | 2616 | integrity sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg== |
2769 | dependencies: | 2617 | dependencies: |
2770 | bn.js "^5.1.1" | 2618 | bn.js "^5.1.1" |
2771 | browserify-rsa "^4.0.1" | 2619 | browserify-rsa "^4.0.1" |
2772 | create-hash "^1.2.0" | 2620 | create-hash "^1.2.0" |
2773 | create-hmac "^1.1.7" | 2621 | create-hmac "^1.1.7" |
2774 | elliptic "^6.5.2" | 2622 | elliptic "^6.5.3" |
2775 | inherits "^2.0.4" | 2623 | inherits "^2.0.4" |
2776 | parse-asn1 "^5.1.5" | 2624 | parse-asn1 "^5.1.5" |
2777 | readable-stream "^3.6.0" | 2625 | readable-stream "^3.6.0" |
@@ -2785,14 +2633,14 @@ browserify-zlib@^0.2.0: | |||
2785 | pako "~1.0.5" | 2633 | pako "~1.0.5" |
2786 | 2634 | ||
2787 | browserslist@^4.0.0, browserslist@^4.12.0, browserslist@^4.8.5, browserslist@^4.9.1: | 2635 | browserslist@^4.0.0, browserslist@^4.12.0, browserslist@^4.8.5, browserslist@^4.9.1: |
2788 | version "4.13.0" | 2636 | version "4.14.0" |
2789 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.13.0.tgz#42556cba011e1b0a2775b611cba6a8eca18e940d" | 2637 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.14.0.tgz#2908951abfe4ec98737b72f34c3bcedc8d43b000" |
2790 | integrity sha512-MINatJ5ZNrLnQ6blGvePd/QOz9Xtu+Ne+x29iQSCHfkU5BugKVJwZKn/iiL8UbpIpa3JhviKjz+XxMo0m2caFQ== | 2638 | integrity sha512-pUsXKAF2lVwhmtpeA3LJrZ76jXuusrNyhduuQs7CDFf9foT4Y38aQOserd2lMe5DSSrjf3fx34oHwryuvxAUgQ== |
2791 | dependencies: | 2639 | dependencies: |
2792 | caniuse-lite "^1.0.30001093" | 2640 | caniuse-lite "^1.0.30001111" |
2793 | electron-to-chromium "^1.3.488" | 2641 | electron-to-chromium "^1.3.523" |
2794 | escalade "^3.0.1" | 2642 | escalade "^3.0.2" |
2795 | node-releases "^1.1.58" | 2643 | node-releases "^1.1.60" |
2796 | 2644 | ||
2797 | browserstack@^1.5.1: | 2645 | browserstack@^1.5.1: |
2798 | version "1.6.0" | 2646 | version "1.6.0" |
@@ -3036,15 +2884,10 @@ caniuse-api@^3.0.0: | |||
3036 | lodash.memoize "^4.1.2" | 2884 | lodash.memoize "^4.1.2" |
3037 | lodash.uniq "^4.5.0" | 2885 | lodash.uniq "^4.5.0" |
3038 | 2886 | ||
3039 | caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001032, caniuse-lite@^1.0.30001093: | 2887 | caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001032, caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001111: |
3040 | version "1.0.30001107" | 2888 | version "1.0.30001117" |
3041 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001107.tgz#809360df7a5b3458f627aa46b0f6ed6d5239da9a" | 2889 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001117.tgz#69a9fae5d480eaa9589f7641a83842ad396d17c4" |
3042 | integrity sha512-86rCH+G8onCmdN4VZzJet5uPELII59cUzDphko3thQFgAQG1RNa+sVLDoALIhRYmflo5iSIzWY3vu1XTWtNMQQ== | 2890 | integrity sha512-4tY0Fatzdx59kYjQs+bNxUwZB03ZEBgVmJ1UkFPz/Q8OLiUUbjct2EdpnXj0fvFTPej2EkbPIG0w8BWsjAyk1Q== |
3043 | |||
3044 | caniuse-lite@^1.0.30001109: | ||
3045 | version "1.0.30001111" | ||
3046 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001111.tgz#dd0ce822c70eb6c7c068e4a55c22e19ec1501298" | ||
3047 | integrity sha512-xnDje2wchd/8mlJu8sXvWxOGvMgv+uT3iZ3bkIAynKOzToCssWCmkz/ZIkQBs/2pUB4uwnJKVORWQ31UkbVjOg== | ||
3048 | 2891 | ||
3049 | canonical-path@1.0.0: | 2892 | canonical-path@1.0.0: |
3050 | version "1.0.0" | 2893 | version "1.0.0" |
@@ -3076,15 +2919,7 @@ chalk@^2.0.0, chalk@^2.0.1, chalk@^2.3.0, chalk@^2.4.1, chalk@^2.4.2: | |||
3076 | escape-string-regexp "^1.0.5" | 2919 | escape-string-regexp "^1.0.5" |
3077 | supports-color "^5.3.0" | 2920 | supports-color "^5.3.0" |
3078 | 2921 | ||
3079 | chalk@^3.0.0: | 2922 | chalk@^4.0.0, chalk@^4.1.0: |
3080 | version "3.0.0" | ||
3081 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4" | ||
3082 | integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg== | ||
3083 | dependencies: | ||
3084 | ansi-styles "^4.1.0" | ||
3085 | supports-color "^7.1.0" | ||
3086 | |||
3087 | chalk@^4.1.0: | ||
3088 | version "4.1.0" | 2923 | version "4.1.0" |
3089 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a" | 2924 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a" |
3090 | integrity sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A== | 2925 | integrity sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A== |
@@ -3126,9 +2961,9 @@ check-types@^8.0.3: | |||
3126 | integrity sha512-YpeKZngUmG65rLudJ4taU7VLkOCTMhNl/u4ctNC56LQS/zJTyNH0Lrtwm1tfTsbLlwvlfsA2d1c8vCf/Kh2KwQ== | 2961 | integrity sha512-YpeKZngUmG65rLudJ4taU7VLkOCTMhNl/u4ctNC56LQS/zJTyNH0Lrtwm1tfTsbLlwvlfsA2d1c8vCf/Kh2KwQ== |
3127 | 2962 | ||
3128 | "chokidar@>=2.0.0 <4.0.0", chokidar@^3.0.0, chokidar@^3.4.1: | 2963 | "chokidar@>=2.0.0 <4.0.0", chokidar@^3.0.0, chokidar@^3.4.1: |
3129 | version "3.4.1" | 2964 | version "3.4.2" |
3130 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.4.1.tgz#e905bdecf10eaa0a0b1db0c664481cc4cbc22ba1" | 2965 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.4.2.tgz#38dc8e658dec3809741eb3ef7bb0a47fe424232d" |
3131 | integrity sha512-TQTJyr2stihpC4Sya9hs2Xh+O2wf+igjL36Y75xx2WdHuiICcn/XJza46Jwt0eT5hVpQOzo3FpY3cj3RVYLX0g== | 2966 | integrity sha512-IZHaDeBeI+sZJRX7lGcXsdzgvZqKv6sECqsbErJA4mHWfpRrD8B97kSFN4cQz6nGBGiuFia1MKR4d6c1o8Cv7A== |
3132 | dependencies: | 2967 | dependencies: |
3133 | anymatch "~3.1.1" | 2968 | anymatch "~3.1.1" |
3134 | braces "~3.0.2" | 2969 | braces "~3.0.2" |
@@ -3260,7 +3095,7 @@ cli-cursor@^3.1.0: | |||
3260 | dependencies: | 3095 | dependencies: |
3261 | restore-cursor "^3.1.0" | 3096 | restore-cursor "^3.1.0" |
3262 | 3097 | ||
3263 | cli-spinners@^2.2.0: | 3098 | cli-spinners@^2.4.0: |
3264 | version "2.4.0" | 3099 | version "2.4.0" |
3265 | resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.4.0.tgz#c6256db216b878cfba4720e719cec7cf72685d7f" | 3100 | resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.4.0.tgz#c6256db216b878cfba4720e719cec7cf72685d7f" |
3266 | integrity sha512-sJAofoarcm76ZGpuooaO0eDy8saEy+YoZBLjC4h8srt4jeBnkYeOgqxgsJQTpyt2LjI5PTfLJHSL+41Yu4fEJA== | 3101 | integrity sha512-sJAofoarcm76ZGpuooaO0eDy8saEy+YoZBLjC4h8srt4jeBnkYeOgqxgsJQTpyt2LjI5PTfLJHSL+41Yu4fEJA== |
@@ -3340,20 +3175,25 @@ code-point-at@^1.0.0: | |||
3340 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" | 3175 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" |
3341 | integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c= | 3176 | integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c= |
3342 | 3177 | ||
3343 | codelyzer@^5.1.2: | 3178 | codelyzer@^6.0.0: |
3344 | version "5.2.2" | 3179 | version "6.0.0" |
3345 | resolved "https://registry.yarnpkg.com/codelyzer/-/codelyzer-5.2.2.tgz#d0530a455784e6bea0b6d7e97166c73c30a5347f" | 3180 | resolved "https://registry.yarnpkg.com/codelyzer/-/codelyzer-6.0.0.tgz#50c98581cc2890e0e9a9f93878dc317115d836ed" |
3346 | integrity sha512-jB4FZ1Sx7kZhvZVdf+N2BaKTdrrNZOL0Bj10RRfrhHrb3zEvXjJvvq298JPMJAiyiCS/v4zs1QlGU0ip7xGqeA== | 3181 | integrity sha512-edJIQCIcxD9DhVSyBEdJ38AbLikm515Wl91t5RDGNT88uA6uQdTm4phTWfn9JhzAI8kXNUcfYyAE90lJElpGtA== |
3347 | dependencies: | 3182 | dependencies: |
3348 | app-root-path "^2.2.1" | 3183 | "@angular/compiler" "9.0.0" |
3184 | "@angular/core" "9.0.0" | ||
3185 | app-root-path "^3.0.0" | ||
3349 | aria-query "^3.0.0" | 3186 | aria-query "^3.0.0" |
3350 | axobject-query "2.0.2" | 3187 | axobject-query "2.0.2" |
3351 | css-selector-tokenizer "^0.7.1" | 3188 | css-selector-tokenizer "^0.7.1" |
3352 | cssauron "^1.4.0" | 3189 | cssauron "^1.4.0" |
3353 | damerau-levenshtein "^1.0.4" | 3190 | damerau-levenshtein "^1.0.4" |
3191 | rxjs "^6.5.3" | ||
3354 | semver-dsl "^1.0.1" | 3192 | semver-dsl "^1.0.1" |
3355 | source-map "^0.5.7" | 3193 | source-map "^0.5.7" |
3356 | sprintf-js "^1.1.2" | 3194 | sprintf-js "^1.1.2" |
3195 | tslib "^1.10.0" | ||
3196 | zone.js "~0.10.3" | ||
3357 | 3197 | ||
3358 | collection-visit@^1.0.0: | 3198 | collection-visit@^1.0.0: |
3359 | version "1.0.0" | 3199 | version "1.0.0" |
@@ -3641,12 +3481,12 @@ cosmiconfig@^5.0.0: | |||
3641 | parse-json "^4.0.0" | 3481 | parse-json "^4.0.0" |
3642 | 3482 | ||
3643 | create-ecdh@^4.0.0: | 3483 | create-ecdh@^4.0.0: |
3644 | version "4.0.3" | 3484 | version "4.0.4" |
3645 | resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.3.tgz#c9111b6f33045c4697f144787f9254cdc77c45ff" | 3485 | resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.4.tgz#d6e7f4bffa66736085a0762fd3a632684dabcc4e" |
3646 | integrity sha512-GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw== | 3486 | integrity sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A== |
3647 | dependencies: | 3487 | dependencies: |
3648 | bn.js "^4.1.0" | 3488 | bn.js "^4.1.0" |
3649 | elliptic "^6.0.0" | 3489 | elliptic "^6.5.3" |
3650 | 3490 | ||
3651 | create-hash@^1.1.0, create-hash@^1.1.2, create-hash@^1.2.0: | 3491 | create-hash@^1.1.0, create-hash@^1.1.2, create-hash@^1.2.0: |
3652 | version "1.2.0" | 3492 | version "1.2.0" |
@@ -3747,10 +3587,10 @@ css-declaration-sorter@^4.0.1: | |||
3747 | postcss "^7.0.1" | 3587 | postcss "^7.0.1" |
3748 | timsort "^0.3.0" | 3588 | timsort "^0.3.0" |
3749 | 3589 | ||
3750 | css-loader@4.2.0: | 3590 | css-loader@4.2.1: |
3751 | version "4.2.0" | 3591 | version "4.2.1" |
3752 | resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-4.2.0.tgz#b57efb92ac8f0cd85bf92d89df9634ef1f51b8bf" | 3592 | resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-4.2.1.tgz#9f48fd7eae1219d629a3f085ba9a9102ca1141a7" |
3753 | integrity sha512-ko7a9b0iFpWtk9eSI/C8IICvZeGtYnjxYjw45rJprokXj/+kBd/siX4vAIBq9Uij8Jubc4jL1EvSnTjCEwaHSw== | 3593 | integrity sha512-MoqmF1if7Z0pZIEXA4ZF9PgtCXxWbfzfJM+3p+OYfhcrwcqhaCRb74DSnfzRl7e024xEiCRn5hCvfUbTf2sgFA== |
3754 | dependencies: | 3594 | dependencies: |
3755 | camelcase "^6.0.0" | 3595 | camelcase "^6.0.0" |
3756 | cssesc "^3.0.0" | 3596 | cssesc "^3.0.0" |
@@ -3948,10 +3788,10 @@ csso@^4.0.2: | |||
3948 | dependencies: | 3788 | dependencies: |
3949 | css-tree "1.0.0-alpha.39" | 3789 | css-tree "1.0.0-alpha.39" |
3950 | 3790 | ||
3951 | csstype@^2.2.0: | 3791 | csstype@^3.0.2: |
3952 | version "2.6.11" | 3792 | version "3.0.3" |
3953 | resolved "https://registry.yarnpkg.com/csstype/-/csstype-2.6.11.tgz#452f4d024149ecf260a852b025e36562a253ffc5" | 3793 | resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.0.3.tgz#2b410bbeba38ba9633353aff34b05d9755d065f8" |
3954 | integrity sha512-l8YyEC9NBkSm783PFTvh0FmJy7s5pFKrDp49ZL7zBGX3fWkO+N4EEyan1qqp8cwPLDcD0OSdyY6hAMoxp34JFw== | 3794 | integrity sha512-jPl+wbWPOWJ7SXsWyqGRk3lGecbar0Cb0OvZF/r/ZU011R4YqiRehgkQ9p4eQfo9DSDLqLL3wHwfxeJiuIsNag== |
3955 | 3795 | ||
3956 | currently-unhandled@^0.4.1: | 3796 | currently-unhandled@^0.4.1: |
3957 | version "0.4.1" | 3797 | version "0.4.1" |
@@ -4197,9 +4037,9 @@ detect-node@^2.0.4: | |||
4197 | integrity sha512-ZIzRpLJrOj7jjP2miAtgqIfmzbxa4ZOr5jJc601zklsfEx9oTzmmj2nVpIPRpNlRTIh8lc1kyViIY7BWSGNmKw== | 4037 | integrity sha512-ZIzRpLJrOj7jjP2miAtgqIfmzbxa4ZOr5jJc601zklsfEx9oTzmmj2nVpIPRpNlRTIh8lc1kyViIY7BWSGNmKw== |
4198 | 4038 | ||
4199 | dexie@^3.0.0: | 4039 | dexie@^3.0.0: |
4200 | version "3.0.1" | 4040 | version "3.0.2" |
4201 | resolved "https://registry.yarnpkg.com/dexie/-/dexie-3.0.1.tgz#faafeb94be0d5e18b25d700546a2c05725511cfc" | 4041 | resolved "https://registry.yarnpkg.com/dexie/-/dexie-3.0.2.tgz#4b979904d739e0530b68352005f175a82633a075" |
4202 | integrity sha512-/s4KzlaerQnCad/uY1ZNdFckTrbdMVhLlziYQzz62Ff9Ick1lHGomvTXNfwh4ApEZATyXRyVk5F6/y8UU84B0w== | 4042 | integrity sha512-go4FnIoAhcUiCdxutfIZRxnSaSyDgfEq+GH7N0I8nTCJbC2FmeBj+0FrETa3ln5ix+VQMOPsFeYHlgE/8SZWwQ== |
4203 | 4043 | ||
4204 | dezalgo@^1.0.0: | 4044 | dezalgo@^1.0.0: |
4205 | version "1.0.3" | 4045 | version "1.0.3" |
@@ -4293,7 +4133,7 @@ dom-serialize@^2.2.1: | |||
4293 | extend "^3.0.0" | 4133 | extend "^3.0.0" |
4294 | void-elements "^2.0.0" | 4134 | void-elements "^2.0.0" |
4295 | 4135 | ||
4296 | dom-serializer@0, dom-serializer@^0.2.1: | 4136 | dom-serializer@0: |
4297 | version "0.2.2" | 4137 | version "0.2.2" |
4298 | resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.2.2.tgz#1afb81f533717175d478655debc5e332d9f9bb51" | 4138 | resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.2.2.tgz#1afb81f533717175d478655debc5e332d9f9bb51" |
4299 | integrity sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g== | 4139 | integrity sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g== |
@@ -4301,6 +4141,15 @@ dom-serializer@0, dom-serializer@^0.2.1: | |||
4301 | domelementtype "^2.0.1" | 4141 | domelementtype "^2.0.1" |
4302 | entities "^2.0.0" | 4142 | entities "^2.0.0" |
4303 | 4143 | ||
4144 | dom-serializer@^1.0.1: | ||
4145 | version "1.0.1" | ||
4146 | resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-1.0.1.tgz#79695eb49af3cd8abc8d93a73da382deb1ca0795" | ||
4147 | integrity sha512-1Aj1Qy3YLbdslkI75QEOfdp9TkQ3o8LRISAzxOibjBs/xWwr1WxZFOQphFkZuepHFGo+kB8e5FVJSS0faAJ4Rw== | ||
4148 | dependencies: | ||
4149 | domelementtype "^2.0.1" | ||
4150 | domhandler "^3.0.0" | ||
4151 | entities "^2.0.0" | ||
4152 | |||
4304 | dom-walk@^0.1.0: | 4153 | dom-walk@^0.1.0: |
4305 | version "0.1.2" | 4154 | version "0.1.2" |
4306 | resolved "https://registry.yarnpkg.com/dom-walk/-/dom-walk-0.1.2.tgz#0c548bef048f4d1f2a97249002236060daa3fd84" | 4155 | resolved "https://registry.yarnpkg.com/dom-walk/-/dom-walk-0.1.2.tgz#0c548bef048f4d1f2a97249002236060daa3fd84" |
@@ -4352,11 +4201,11 @@ domutils@^1.5.1, domutils@^1.7.0: | |||
4352 | domelementtype "1" | 4201 | domelementtype "1" |
4353 | 4202 | ||
4354 | domutils@^2.0.0: | 4203 | domutils@^2.0.0: |
4355 | version "2.1.0" | 4204 | version "2.2.0" |
4356 | resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.1.0.tgz#7ade3201af43703fde154952e3a868eb4b635f16" | 4205 | resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.2.0.tgz#f3ce1610af5c30280bde1b71f84b018b958f32cf" |
4357 | integrity sha512-CD9M0Dm1iaHfQ1R/TI+z3/JWp/pgub0j4jIQKH89ARR4ATAV2nbaOQS5XxU9maJP5jHaPdDDQSEHuE2UmpUTKg== | 4206 | integrity sha512-0haAxVr1PR0SqYwCH7mxMpHZUwjih9oPPedqpR/KufsnxPyZ9dyVw1R5093qnJF3WXSbjBkdzRWLw/knJV/fAg== |
4358 | dependencies: | 4207 | dependencies: |
4359 | dom-serializer "^0.2.1" | 4208 | dom-serializer "^1.0.1" |
4360 | domelementtype "^2.0.1" | 4209 | domelementtype "^2.0.1" |
4361 | domhandler "^3.0.0" | 4210 | domhandler "^3.0.0" |
4362 | 4211 | ||
@@ -4376,9 +4225,9 @@ dot-prop@^5.2.0: | |||
4376 | is-obj "^2.0.0" | 4225 | is-obj "^2.0.0" |
4377 | 4226 | ||
4378 | duplexer@^0.1.1: | 4227 | duplexer@^0.1.1: |
4379 | version "0.1.1" | 4228 | version "0.1.2" |
4380 | resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" | 4229 | resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.2.tgz#3abe43aef3835f8ae077d136ddce0f276b0400e6" |
4381 | integrity sha1-rOb/gIwc5mtX0ev5eXessCM0z8E= | 4230 | integrity sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg== |
4382 | 4231 | ||
4383 | duplexify@^3.4.2, duplexify@^3.6.0: | 4232 | duplexify@^3.4.2, duplexify@^3.6.0: |
4384 | version "3.7.1" | 4233 | version "3.7.1" |
@@ -4408,12 +4257,12 @@ ejs@^2.6.1: | |||
4408 | resolved "https://registry.yarnpkg.com/ejs/-/ejs-2.7.4.tgz#48661287573dcc53e366c7a1ae52c3a120eec9ba" | 4257 | resolved "https://registry.yarnpkg.com/ejs/-/ejs-2.7.4.tgz#48661287573dcc53e366c7a1ae52c3a120eec9ba" |
4409 | integrity sha512-7vmuyh5+kuUyJKePhQfRQBhXV5Ce+RnaeeQArKu1EAMpL3WbgMt5WG6uQZpEVvYSSsxMXRKOewtDk9RaTKXRlA== | 4258 | integrity sha512-7vmuyh5+kuUyJKePhQfRQBhXV5Ce+RnaeeQArKu1EAMpL3WbgMt5WG6uQZpEVvYSSsxMXRKOewtDk9RaTKXRlA== |
4410 | 4259 | ||
4411 | electron-to-chromium@^1.3.488: | 4260 | electron-to-chromium@^1.3.523: |
4412 | version "1.3.510" | 4261 | version "1.3.545" |
4413 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.510.tgz#dee781ff8b595c0deb60172b75d50b6889757eda" | 4262 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.545.tgz#d9add694c78554b8c00bc6e6fc929d5ccd7d1b99" |
4414 | integrity sha512-sLtGB0znXdmo6lM8hy5wTVo+fLqvIuO8hEpgc0DvPmFZqvBu/WB7AarEwhxVKjf3rVbws/rC8Xf+AlsOb36lJQ== | 4263 | integrity sha512-+0R/i17u5E1cwF3g0W8Niq3UUKTUMyyT4kLkutZUHG8mDNvFsAckK3HIanzGVtixe3b6rknD8k7gHiR6nKFkgg== |
4415 | 4264 | ||
4416 | elliptic@^6.0.0, elliptic@^6.5.2: | 4265 | elliptic@^6.5.3: |
4417 | version "6.5.3" | 4266 | version "6.5.3" |
4418 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.3.tgz#cb59eb2efdaf73a0bd78ccd7015a62ad6e0f93d6" | 4267 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.3.tgz#cb59eb2efdaf73a0bd78ccd7015a62ad6e0f93d6" |
4419 | integrity sha512-IMqzv5wNQf+E6aHeIqATs0tOLeOTwj1QKbRcS3jBbYkl5oLAserA8yJTT7/VyHUYG91PRmPyeQDObKLPpeS4dw== | 4268 | integrity sha512-IMqzv5wNQf+E6aHeIqATs0tOLeOTwj1QKbRcS3jBbYkl5oLAserA8yJTT7/VyHUYG91PRmPyeQDObKLPpeS4dw== |
@@ -4660,7 +4509,7 @@ es6-weak-map@^2.0.1: | |||
4660 | es6-iterator "^2.0.3" | 4509 | es6-iterator "^2.0.3" |
4661 | es6-symbol "^3.1.1" | 4510 | es6-symbol "^3.1.1" |
4662 | 4511 | ||
4663 | escalade@^3.0.1: | 4512 | escalade@^3.0.2: |
4664 | version "3.0.2" | 4513 | version "3.0.2" |
4665 | resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.0.2.tgz#6a580d70edb87880f22b4c91d0d56078df6962c4" | 4514 | resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.0.2.tgz#6a580d70edb87880f22b4c91d0d56078df6962c4" |
4666 | integrity sha512-gPYAU37hYCUhW5euPeR+Y74F7BL+IBsV93j5cvGriSaD1aG6MGsqsV1yamRdrWrb2j3aiZvb0X+UBOWpx3JWtQ== | 4515 | integrity sha512-gPYAU37hYCUhW5euPeR+Y74F7BL+IBsV93j5cvGriSaD1aG6MGsqsV1yamRdrWrb2j3aiZvb0X+UBOWpx3JWtQ== |
@@ -4785,15 +4634,10 @@ event-emitter@~0.3.5: | |||
4785 | d "1" | 4634 | d "1" |
4786 | es5-ext "~0.10.14" | 4635 | es5-ext "~0.10.14" |
4787 | 4636 | ||
4788 | eventemitter3@3.1.0: | 4637 | eventemitter3@^4.0.0, eventemitter3@^4.0.3: |
4789 | version "3.1.0" | 4638 | version "4.0.5" |
4790 | resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-3.1.0.tgz#090b4d6cdbd645ed10bf750d4b5407942d7ba163" | 4639 | resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.5.tgz#51d81e4f1ccc8311a04f0c20121ea824377ea6d9" |
4791 | integrity sha512-ivIvhpq/Y0uSjcHDcOIccjmYjGLcP09MFGE7ysAwkAvkXfpZlC985pH2/ui64DKazbTW/4kN3yqozUxlXzI6cA== | 4640 | integrity sha512-QR0rh0YiPuxuDQ6+T9GAO/xWTExXpxIes1Nl9RykNGTnE1HJmkuEfxJH9cubjIOQZ/GH4qNBR4u8VSHaKiWs4g== |
4792 | |||
4793 | eventemitter3@^4.0.0: | ||
4794 | version "4.0.4" | ||
4795 | resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.4.tgz#b5463ace635a083d018bdc7c917b4c5f10a85384" | ||
4796 | integrity sha512-rlaVLnVxtxvoyLsQQFBx53YmXHDxRIzzTLbdfxqi4yocpSjAxXwkU0cScM5JgSKMqEhrZpnvQ2D9gjylR0AimQ== | ||
4797 | 4641 | ||
4798 | events@^3.0.0: | 4642 | events@^3.0.0: |
4799 | version "3.2.0" | 4643 | version "3.2.0" |
@@ -5201,9 +5045,9 @@ focus-visible@^5.0.2: | |||
5201 | integrity sha512-nPer0rjtzdZ7csVIu233P2cUm/ks/4aVSI+5KUkYrYpgA7ujgC3p6J7FtFU+AIMWwnwYQOB/yeiOITxFeYIXiw== | 5045 | integrity sha512-nPer0rjtzdZ7csVIu233P2cUm/ks/4aVSI+5KUkYrYpgA7ujgC3p6J7FtFU+AIMWwnwYQOB/yeiOITxFeYIXiw== |
5202 | 5046 | ||
5203 | follow-redirects@^1.0.0: | 5047 | follow-redirects@^1.0.0: |
5204 | version "1.12.1" | 5048 | version "1.13.0" |
5205 | resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.12.1.tgz#de54a6205311b93d60398ebc01cf7015682312b6" | 5049 | resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.13.0.tgz#b42e8d93a2a7eea5ed88633676d6597bc8e384db" |
5206 | integrity sha512-tmRv0AVuR7ZyouUHLeNSiO6pqulF7dYa3s19c6t+wz9LD69/uSzdMxJ2S91nTI9U3rt/IldxpzMOFejp6f0hjg== | 5050 | integrity sha512-aq6gF1BEKje4a9i9+5jimNFIpq4Q1WiwBToeRK5NvZBd/TRsmW8BsJfOEGkr76TbOyPVD3OVDN910EcUNtRYEA== |
5207 | 5051 | ||
5208 | for-in@^1.0.2: | 5052 | for-in@^1.0.2: |
5209 | version "1.0.2" | 5053 | version "1.0.2" |
@@ -5631,11 +5475,11 @@ har-schema@^2.0.0: | |||
5631 | integrity sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI= | 5475 | integrity sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI= |
5632 | 5476 | ||
5633 | har-validator@~5.1.3: | 5477 | har-validator@~5.1.3: |
5634 | version "5.1.3" | 5478 | version "5.1.5" |
5635 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.3.tgz#1ef89ebd3e4996557675eed9893110dc350fa080" | 5479 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.5.tgz#1f0803b9f8cb20c0fa13822df1ecddb36bde1efd" |
5636 | integrity sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g== | 5480 | integrity sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w== |
5637 | dependencies: | 5481 | dependencies: |
5638 | ajv "^6.5.5" | 5482 | ajv "^6.12.3" |
5639 | har-schema "^2.0.0" | 5483 | har-schema "^2.0.0" |
5640 | 5484 | ||
5641 | has-ansi@^2.0.0: | 5485 | has-ansi@^2.0.0: |
@@ -5742,12 +5586,12 @@ hex-color-regex@^1.1.0: | |||
5742 | resolved "https://registry.yarnpkg.com/hex-color-regex/-/hex-color-regex-1.1.0.tgz#4c06fccb4602fe2602b3c93df82d7e7dbf1a8a8e" | 5586 | resolved "https://registry.yarnpkg.com/hex-color-regex/-/hex-color-regex-1.1.0.tgz#4c06fccb4602fe2602b3c93df82d7e7dbf1a8a8e" |
5743 | integrity sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ== | 5587 | integrity sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ== |
5744 | 5588 | ||
5745 | hls.js@^0.13.2: | 5589 | hls.js@^0.14.9: |
5746 | version "0.13.2" | 5590 | version "0.14.9" |
5747 | resolved "https://registry.yarnpkg.com/hls.js/-/hls.js-0.13.2.tgz#3e7dd28e3787c69c6aba42b64b11eb2c3c8c29f1" | 5591 | resolved "https://registry.yarnpkg.com/hls.js/-/hls.js-0.14.9.tgz#e85be87d94385ed9947155716578f7c568957d15" |
5748 | integrity sha512-sIg2t4uGpWQLzuK1Iid9614WOKqxj4OYg+EbFbhhTDCsxpENBN+Du3yBFnoi+a83DuOOHdiQd1ydnti9loSGXw== | 5592 | integrity sha512-5j1ONTvIzcIxCtg2eafikFbZ3b/9fDhR6u871LmK7jZ44/Qdc2G4xaSBCwcVK61gz7kTyiobaAhB++2M4J58rQ== |
5749 | dependencies: | 5593 | dependencies: |
5750 | eventemitter3 "3.1.0" | 5594 | eventemitter3 "^4.0.3" |
5751 | url-toolkit "^2.1.6" | 5595 | url-toolkit "^2.1.6" |
5752 | 5596 | ||
5753 | hmac-drbg@^1.0.0: | 5597 | hmac-drbg@^1.0.0: |
@@ -5819,17 +5663,16 @@ html-escaper@^2.0.0: | |||
5819 | integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== | 5663 | integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== |
5820 | 5664 | ||
5821 | html-loader@^1.0.0: | 5665 | html-loader@^1.0.0: |
5822 | version "1.1.0" | 5666 | version "1.2.1" |
5823 | resolved "https://registry.yarnpkg.com/html-loader/-/html-loader-1.1.0.tgz#91915f4d274caa9d46d1c3dc847cd82bfc037dbd" | 5667 | resolved "https://registry.yarnpkg.com/html-loader/-/html-loader-1.2.1.tgz#d564cde016d17fe8a2992a64fea314e09fed7fe3" |
5824 | integrity sha512-zwLbEgy+i7sgIYTlxI9M7jwkn29IvdsV6f1y7a2aLv/w8l1RigVk0PFijBZLLFsdi2gvL8sf2VJhTjLlfnK8sA== | 5668 | integrity sha512-oE92tLmSnWIjM0190s8+MiwNAKValkddHSVphSR37MrwcP3iy/rbbw4N7hSLG+m3OiuVRwVHJYFcIYfN2xqUHQ== |
5825 | dependencies: | 5669 | dependencies: |
5826 | html-minifier-terser "^5.0.5" | 5670 | html-minifier-terser "^5.1.1" |
5827 | htmlparser2 "^4.1.0" | 5671 | htmlparser2 "^4.1.0" |
5828 | loader-utils "^2.0.0" | 5672 | loader-utils "^2.0.0" |
5829 | parse-srcset "^1.0.2" | 5673 | schema-utils "^2.7.0" |
5830 | schema-utils "^2.6.5" | ||
5831 | 5674 | ||
5832 | html-minifier-terser@^5.0.1, html-minifier-terser@^5.0.5: | 5675 | html-minifier-terser@^5.0.1, html-minifier-terser@^5.1.1: |
5833 | version "5.1.1" | 5676 | version "5.1.1" |
5834 | resolved "https://registry.yarnpkg.com/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz#922e96f1f3bb60832c2634b79884096389b1f054" | 5677 | resolved "https://registry.yarnpkg.com/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz#922e96f1f3bb60832c2634b79884096389b1f054" |
5835 | integrity sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg== | 5678 | integrity sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg== |
@@ -6002,13 +5845,6 @@ iconv-lite@0.4.24, iconv-lite@^0.4.24: | |||
6002 | dependencies: | 5845 | dependencies: |
6003 | safer-buffer ">= 2.1.2 < 3" | 5846 | safer-buffer ">= 2.1.2 < 3" |
6004 | 5847 | ||
6005 | iconv-lite@^0.5.1: | ||
6006 | version "0.5.2" | ||
6007 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.5.2.tgz#af6d628dccfb463b7364d97f715e4b74b8c8c2b8" | ||
6008 | integrity sha512-kERHXvpSaB4aU3eANwidg79K8FlrN77m8G9V+0vOR3HYaRifrlwMEpT7ZBJqLSEIHnEgJTHcWK82wwLwwKwtag== | ||
6009 | dependencies: | ||
6010 | safer-buffer ">= 2.1.2 < 3" | ||
6011 | |||
6012 | iconv-lite@^0.6.2: | 5848 | iconv-lite@^0.6.2: |
6013 | version "0.6.2" | 5849 | version "0.6.2" |
6014 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.2.tgz#ce13d1875b0c3a674bd6a04b7f76b01b1b6ded01" | 5850 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.2.tgz#ce13d1875b0c3a674bd6a04b7f76b01b1b6ded01" |
@@ -6247,11 +6083,16 @@ ip@1.1.5, ip@^1.1.0, ip@^1.1.3, ip@^1.1.5: | |||
6247 | resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.5.tgz#bdded70114290828c0a039e72ef25f5aaec4354a" | 6083 | resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.5.tgz#bdded70114290828c0a039e72ef25f5aaec4354a" |
6248 | integrity sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo= | 6084 | integrity sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo= |
6249 | 6085 | ||
6250 | ipaddr.js@1.9.1, "ipaddr.js@>= 0.1.5", ipaddr.js@^1.0.1, ipaddr.js@^1.9.0: | 6086 | ipaddr.js@1.9.1, ipaddr.js@^1.0.1, ipaddr.js@^1.9.0: |
6251 | version "1.9.1" | 6087 | version "1.9.1" |
6252 | resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" | 6088 | resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" |
6253 | integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== | 6089 | integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== |
6254 | 6090 | ||
6091 | "ipaddr.js@>= 0.1.5": | ||
6092 | version "2.0.0" | ||
6093 | resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-2.0.0.tgz#77ccccc8063ae71ab65c55f21b090698e763fc6e" | ||
6094 | integrity sha512-S54H9mIj0rbxRIyrDMEuuER86LdlgUg9FSeZ8duQb6CUG2iRrA36MYVQBSprTF/ZeAwvyQ5mDGuNvIPM0BIl3w== | ||
6095 | |||
6255 | is-absolute-url@^2.0.0: | 6096 | is-absolute-url@^2.0.0: |
6256 | version "2.1.0" | 6097 | version "2.1.0" |
6257 | resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-2.1.0.tgz#50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6" | 6098 | resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-2.1.0.tgz#50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6" |
@@ -6375,9 +6216,9 @@ is-directory@^0.3.1: | |||
6375 | integrity sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE= | 6216 | integrity sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE= |
6376 | 6217 | ||
6377 | is-docker@^2.0.0: | 6218 | is-docker@^2.0.0: |
6378 | version "2.0.0" | 6219 | version "2.1.1" |
6379 | resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.0.0.tgz#2cb0df0e75e2d064fe1864c37cdeacb7b2dcf25b" | 6220 | resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.1.1.tgz#4125a88e44e450d384e09047ede71adc2d144156" |
6380 | integrity sha512-pJEdRugimx4fBMra5z2/5iRdZ63OhYV0vr0Dwm5+xtW4D1FvRkB8hamMIhnWfyJeDdyr/aa7BDyNbtG38VxgoQ== | 6221 | integrity sha512-ZOoqiXfEwtGknTiuDEy8pN2CfE3TxMHprvNer1mXiqwkOT77Rw3YVrUQ52EqAOU3QAWDQ+bQdx7HJzrv7LS2Hw== |
6381 | 6222 | ||
6382 | is-extendable@^0.1.0, is-extendable@^0.1.1: | 6223 | is-extendable@^0.1.0, is-extendable@^0.1.1: |
6383 | version "0.1.1" | 6224 | version "0.1.1" |
@@ -6536,9 +6377,9 @@ is-property@^1.0.0, is-property@^1.0.2: | |||
6536 | integrity sha1-V/4cTkhHTt1lsJkR8msc1Ald2oQ= | 6377 | integrity sha1-V/4cTkhHTt1lsJkR8msc1Ald2oQ= |
6537 | 6378 | ||
6538 | is-regex@^1.0.4, is-regex@^1.1.0: | 6379 | is-regex@^1.0.4, is-regex@^1.1.0: |
6539 | version "1.1.0" | 6380 | version "1.1.1" |
6540 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.0.tgz#ece38e389e490df0dc21caea2bd596f987f767ff" | 6381 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.1.tgz#c6f98aacc546f6cec5468a07b7b153ab564a57b9" |
6541 | integrity sha512-iI97M8KTWID2la5uYXlkbSDQIg4F6o1sYboZKKTDpnDQMLtUL86zxhgDet3Q2SriaYsyGqZ6Mn2SjbRKeLHdqw== | 6382 | integrity sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg== |
6542 | dependencies: | 6383 | dependencies: |
6543 | has-symbols "^1.0.1" | 6384 | has-symbols "^1.0.1" |
6544 | 6385 | ||
@@ -6688,7 +6529,7 @@ istanbul-reports@^3.0.2: | |||
6688 | html-escaper "^2.0.0" | 6529 | html-escaper "^2.0.0" |
6689 | istanbul-lib-report "^3.0.0" | 6530 | istanbul-lib-report "^3.0.0" |
6690 | 6531 | ||
6691 | jasmine-core@^3.5.0: | 6532 | jasmine-core@^3.6.0, jasmine-core@~3.6.0: |
6692 | version "3.6.0" | 6533 | version "3.6.0" |
6693 | resolved "https://registry.yarnpkg.com/jasmine-core/-/jasmine-core-3.6.0.tgz#491f3bb23941799c353ceb7a45b38a950ebc5a20" | 6534 | resolved "https://registry.yarnpkg.com/jasmine-core/-/jasmine-core-3.6.0.tgz#491f3bb23941799c353ceb7a45b38a950ebc5a20" |
6694 | integrity sha512-8uQYa7zJN8hq9z+g8z1bqCfdC8eoDAeVnM5sfqs7KHv9/ifoJ500m018fpFc7RDaO6SWCLCXwo/wPSNcdYTgcw== | 6535 | integrity sha512-8uQYa7zJN8hq9z+g8z1bqCfdC8eoDAeVnM5sfqs7KHv9/ifoJ500m018fpFc7RDaO6SWCLCXwo/wPSNcdYTgcw== |
@@ -6698,11 +6539,6 @@ jasmine-core@~2.8.0: | |||
6698 | resolved "https://registry.yarnpkg.com/jasmine-core/-/jasmine-core-2.8.0.tgz#bcc979ae1f9fd05701e45e52e65d3a5d63f1a24e" | 6539 | resolved "https://registry.yarnpkg.com/jasmine-core/-/jasmine-core-2.8.0.tgz#bcc979ae1f9fd05701e45e52e65d3a5d63f1a24e" |
6699 | integrity sha1-vMl5rh+f0FcB5F5S5l06XWPxok4= | 6540 | integrity sha1-vMl5rh+f0FcB5F5S5l06XWPxok4= |
6700 | 6541 | ||
6701 | jasmine-core@~3.5.0: | ||
6702 | version "3.5.0" | ||
6703 | resolved "https://registry.yarnpkg.com/jasmine-core/-/jasmine-core-3.5.0.tgz#132c23e645af96d85c8bca13c8758b18429fc1e4" | ||
6704 | integrity sha512-nCeAiw37MIMA9w9IXso7bRaLl+c/ef3wnxsoSAlYrzS+Ot0zTG6nU8G/cIfGkqpkjX2wNaIW9RFG0TwIFnG6bA== | ||
6705 | |||
6706 | jasmine-spec-reporter@~5.0.0: | 6542 | jasmine-spec-reporter@~5.0.0: |
6707 | version "5.0.2" | 6543 | version "5.0.2" |
6708 | resolved "https://registry.yarnpkg.com/jasmine-spec-reporter/-/jasmine-spec-reporter-5.0.2.tgz#b61288ab074ad440dc2477c4d42840b0e74a6b95" | 6544 | resolved "https://registry.yarnpkg.com/jasmine-spec-reporter/-/jasmine-spec-reporter-5.0.2.tgz#b61288ab074ad440dc2477c4d42840b0e74a6b95" |
@@ -6724,27 +6560,19 @@ jasminewd2@^2.1.0: | |||
6724 | resolved "https://registry.yarnpkg.com/jasminewd2/-/jasminewd2-2.2.0.tgz#e37cf0b17f199cce23bea71b2039395246b4ec4e" | 6560 | resolved "https://registry.yarnpkg.com/jasminewd2/-/jasminewd2-2.2.0.tgz#e37cf0b17f199cce23bea71b2039395246b4ec4e" |
6725 | integrity sha1-43zwsX8ZnM4jvqcbIDk5Uka07E4= | 6561 | integrity sha1-43zwsX8ZnM4jvqcbIDk5Uka07E4= |
6726 | 6562 | ||
6727 | jest-worker@26.2.1, jest-worker@^26.2.1: | 6563 | jest-worker@26.3.0, jest-worker@^26.2.1, jest-worker@^26.3.0: |
6728 | version "26.2.1" | 6564 | version "26.3.0" |
6729 | resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-26.2.1.tgz#5d630ab93f666b53f911615bc13e662b382bd513" | 6565 | resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-26.3.0.tgz#7c8a97e4f4364b4f05ed8bca8ca0c24de091871f" |
6730 | integrity sha512-+XcGMMJDTeEGncRb5M5Zq9P7K4sQ1sirhjdOxsN1462h6lFo9w59bl2LVQmdGEEeU3m+maZCkS2Tcc9SfCHO4A== | 6566 | integrity sha512-Vmpn2F6IASefL+DVBhPzI2J9/GJUsqzomdeN+P+dK8/jKxbh8R3BtFnx3FIta7wYlPU62cpJMJQo4kuOowcMnw== |
6731 | dependencies: | 6567 | dependencies: |
6732 | "@types/node" "*" | 6568 | "@types/node" "*" |
6733 | merge-stream "^2.0.0" | 6569 | merge-stream "^2.0.0" |
6734 | supports-color "^7.0.0" | 6570 | supports-color "^7.0.0" |
6735 | 6571 | ||
6736 | jest-worker@^26.1.0: | ||
6737 | version "26.1.0" | ||
6738 | resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-26.1.0.tgz#65d5641af74e08ccd561c240e7db61284f82f33d" | ||
6739 | integrity sha512-Z9P5pZ6UC+kakMbNJn+tA2RdVdNX5WH1x+5UCBZ9MxIK24pjYtFt96fK+UwBTrjLYm232g1xz0L3eTh51OW+yQ== | ||
6740 | dependencies: | ||
6741 | merge-stream "^2.0.0" | ||
6742 | supports-color "^7.0.0" | ||
6743 | |||
6744 | js-base64@^2.1.8: | 6572 | js-base64@^2.1.8: |
6745 | version "2.6.3" | 6573 | version "2.6.4" |
6746 | resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.6.3.tgz#7afdb9b57aa7717e15d370b66e8f36a9cb835dc3" | 6574 | resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.6.4.tgz#f4e686c5de1ea1f867dbcad3d46d969428df98c4" |
6747 | integrity sha512-fiUvdfCaAXoQTHdKMgTvg6IkecXDcVz6V5rlftUTclF9IKBjMizvSdQaCl/z/6TApDeby5NL+axYou3i0mu1Pg== | 6575 | integrity sha512-pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ== |
6748 | 6576 | ||
6749 | "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: | 6577 | "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: |
6750 | version "4.0.0" | 6578 | version "4.0.0" |
@@ -6784,6 +6612,11 @@ json-parse-better-errors@^1.0.0, json-parse-better-errors@^1.0.1, json-parse-bet | |||
6784 | resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" | 6612 | resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" |
6785 | integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== | 6613 | integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== |
6786 | 6614 | ||
6615 | json-parse-even-better-errors@^2.3.0: | ||
6616 | version "2.3.0" | ||
6617 | resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.0.tgz#371873c5ffa44304a6ba12419bcfa95f404ae081" | ||
6618 | integrity sha512-o3aP+RsWDJZayj1SbHNQAI8x0v3T3SKiGoZlNYfbUP1S3omJQ6i9CnqADqkSPaOAxwua4/1YWx5CM7oiChJt2Q== | ||
6619 | |||
6787 | json-schema-traverse@^0.4.1: | 6620 | json-schema-traverse@^0.4.1: |
6788 | version "0.4.1" | 6621 | version "0.4.1" |
6789 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" | 6622 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" |
@@ -6933,12 +6766,12 @@ karma-jasmine-html-reporter@^1.5.0: | |||
6933 | resolved "https://registry.yarnpkg.com/karma-jasmine-html-reporter/-/karma-jasmine-html-reporter-1.5.4.tgz#669f33d694d88fce1b0ccfda57111de716cb0192" | 6766 | resolved "https://registry.yarnpkg.com/karma-jasmine-html-reporter/-/karma-jasmine-html-reporter-1.5.4.tgz#669f33d694d88fce1b0ccfda57111de716cb0192" |
6934 | integrity sha512-PtilRLno5O6wH3lDihRnz0Ba8oSn0YUJqKjjux1peoYGwo0AQqrWRbdWk/RLzcGlb+onTyXAnHl6M+Hu3UxG/Q== | 6767 | integrity sha512-PtilRLno5O6wH3lDihRnz0Ba8oSn0YUJqKjjux1peoYGwo0AQqrWRbdWk/RLzcGlb+onTyXAnHl6M+Hu3UxG/Q== |
6935 | 6768 | ||
6936 | karma-jasmine@~3.3.0: | 6769 | karma-jasmine@~4.0.1: |
6937 | version "3.3.1" | 6770 | version "4.0.1" |
6938 | resolved "https://registry.yarnpkg.com/karma-jasmine/-/karma-jasmine-3.3.1.tgz#c01b1a2ec973e1531c1f6535e1d7d66b8e4275c2" | 6771 | resolved "https://registry.yarnpkg.com/karma-jasmine/-/karma-jasmine-4.0.1.tgz#b99e073b6d99a5196fc4bffc121b89313b0abd82" |
6939 | integrity sha512-Nxh7eX9mOQMyK0VSsMxdod+bcqrR/ikrmEiWj5M6fwuQ7oI+YEF1FckaDsWfs6TIpULm9f0fTKMjF7XcrvWyqQ== | 6772 | integrity sha512-h8XDAhTiZjJKzfkoO1laMH+zfNlra+dEQHUAjpn5JV1zCPtOIVWGQjLBrqhnzQa/hrU2XrZwSyBa6XjEBzfXzw== |
6940 | dependencies: | 6773 | dependencies: |
6941 | jasmine-core "^3.5.0" | 6774 | jasmine-core "^3.6.0" |
6942 | 6775 | ||
6943 | karma-source-map-support@1.4.0: | 6776 | karma-source-map-support@1.4.0: |
6944 | version "1.4.0" | 6777 | version "1.4.0" |
@@ -6948,9 +6781,9 @@ karma-source-map-support@1.4.0: | |||
6948 | source-map-support "^0.5.5" | 6781 | source-map-support "^0.5.5" |
6949 | 6782 | ||
6950 | karma@~5.1.0: | 6783 | karma@~5.1.0: |
6951 | version "5.1.0" | 6784 | version "5.1.1" |
6952 | resolved "https://registry.yarnpkg.com/karma/-/karma-5.1.0.tgz#deaa5f3939f75d7d78ded33283fa5f9bb67e9a05" | 6785 | resolved "https://registry.yarnpkg.com/karma/-/karma-5.1.1.tgz#4e472c1e5352d73edbd2090726afdb01d7869d72" |
6953 | integrity sha512-I3aPbkuIbwuBo6wSog97P5WnnhCgUTsWTu/bEw1vZVQFbXmKO3PK+cfFhZioOgVtJAuQxoyauGNjnwXNHMCxbw== | 6786 | integrity sha512-xAlOr5PMqUbiKXSv5PCniHWV3aiwj6wIZ0gUVcwpTCPVQm/qH2WAMFWxtnpM6KJqhkRWrIpovR4Rb0rn8GtJzQ== |
6954 | dependencies: | 6787 | dependencies: |
6955 | body-parser "^1.19.0" | 6788 | body-parser "^1.19.0" |
6956 | braces "^3.0.2" | 6789 | braces "^3.0.2" |
@@ -7011,7 +6844,7 @@ kind-of@^6.0.0, kind-of@^6.0.2: | |||
7011 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" | 6844 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" |
7012 | integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== | 6845 | integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== |
7013 | 6846 | ||
7014 | klona@^1.1.1: | 6847 | klona@^1.1.2: |
7015 | version "1.1.2" | 6848 | version "1.1.2" |
7016 | resolved "https://registry.yarnpkg.com/klona/-/klona-1.1.2.tgz#a79e292518a5a5412ec8d097964bff1571a64db0" | 6849 | resolved "https://registry.yarnpkg.com/klona/-/klona-1.1.2.tgz#a79e292518a5a5412ec8d097964bff1571a64db0" |
7017 | integrity sha512-xf88rTeHiXk+XE2Vhi6yj8Wm3gMZrygGdKjJqN8HkV+PwF/t50/LdAKHoHpPcxFAlmQszTZ1CugrK25S7qDRLA== | 6850 | integrity sha512-xf88rTeHiXk+XE2Vhi6yj8Wm3gMZrygGdKjJqN8HkV+PwF/t50/LdAKHoHpPcxFAlmQszTZ1CugrK25S7qDRLA== |
@@ -7160,7 +6993,7 @@ loader-utils@2.0.0, loader-utils@^2.0.0: | |||
7160 | emojis-list "^3.0.0" | 6993 | emojis-list "^3.0.0" |
7161 | json5 "^2.1.2" | 6994 | json5 "^2.1.2" |
7162 | 6995 | ||
7163 | loader-utils@^1.0.2, loader-utils@^1.0.4, loader-utils@^1.1.0, loader-utils@^1.2.3, loader-utils@^1.4.0: | 6996 | loader-utils@^1.0.2, loader-utils@^1.1.0, loader-utils@^1.2.3, loader-utils@^1.4.0: |
7164 | version "1.4.0" | 6997 | version "1.4.0" |
7165 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.4.0.tgz#c579b5e34cb34b1a74edc6c1fb36bfa371d5a613" | 6998 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.4.0.tgz#c579b5e34cb34b1a74edc6c1fb36bfa371d5a613" |
7166 | integrity sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA== | 6999 | integrity sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA== |
@@ -7228,16 +7061,16 @@ lodash.uniq@^4.5.0: | |||
7228 | integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M= | 7061 | integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M= |
7229 | 7062 | ||
7230 | lodash@^4.0.0, lodash@^4.17.11, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.3.0, lodash@~4.17.10: | 7063 | lodash@^4.0.0, lodash@^4.17.11, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.3.0, lodash@~4.17.10: |
7231 | version "4.17.19" | 7064 | version "4.17.20" |
7232 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.19.tgz#e48ddedbe30b3321783c5b4301fbd353bc1e4a4b" | 7065 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.20.tgz#b44a9b6297bcb698f1c51a3545a2b3b368d59c52" |
7233 | integrity sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ== | 7066 | integrity sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA== |
7234 | 7067 | ||
7235 | log-symbols@^3.0.0: | 7068 | log-symbols@^4.0.0: |
7236 | version "3.0.0" | 7069 | version "4.0.0" |
7237 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-3.0.0.tgz#f3a08516a5dea893336a7dee14d18a1cfdab77c4" | 7070 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.0.0.tgz#69b3cc46d20f448eccdb75ea1fa733d9e821c920" |
7238 | integrity sha512-dSkNGuI7iG3mfvDzUuYZyvk5dD9ocYCYzNU6CYDE6+Xqd+gwme6Z00NS3dUh8mq/73HaEtT7m6W+yUPtU6BZnQ== | 7071 | integrity sha512-FN8JBzLx6CzeMrB0tg6pqlGU1wCrXW+ZXGH481kfsBqer0hToTIiHdjH4Mq8xJUbvATujKCvaREGWpGUionraA== |
7239 | dependencies: | 7072 | dependencies: |
7240 | chalk "^2.4.2" | 7073 | chalk "^4.0.0" |
7241 | 7074 | ||
7242 | log4js@^6.2.1: | 7075 | log4js@^6.2.1: |
7243 | version "6.3.0" | 7076 | version "6.3.0" |
@@ -7306,13 +7139,22 @@ lru@^3.1.0: | |||
7306 | dependencies: | 7139 | dependencies: |
7307 | inherits "^2.0.1" | 7140 | inherits "^2.0.1" |
7308 | 7141 | ||
7309 | m3u8-parser@4.4.0, m3u8-parser@^4.4.0: | 7142 | m3u8-parser@4.4.0: |
7310 | version "4.4.0" | 7143 | version "4.4.0" |
7311 | resolved "https://registry.yarnpkg.com/m3u8-parser/-/m3u8-parser-4.4.0.tgz#adf606c0af6d97f6750095a42006c2ae03dde177" | 7144 | resolved "https://registry.yarnpkg.com/m3u8-parser/-/m3u8-parser-4.4.0.tgz#adf606c0af6d97f6750095a42006c2ae03dde177" |
7312 | integrity sha512-iH2AygTFILtato+XAgnoPYzLHM4R3DjATj7Ozbk7EHdB2XoLF2oyOUguM7Kc4UVHbQHHL/QPaw98r7PbWzG0gg== | 7145 | integrity sha512-iH2AygTFILtato+XAgnoPYzLHM4R3DjATj7Ozbk7EHdB2XoLF2oyOUguM7Kc4UVHbQHHL/QPaw98r7PbWzG0gg== |
7313 | dependencies: | 7146 | dependencies: |
7314 | global "^4.3.2" | 7147 | global "^4.3.2" |
7315 | 7148 | ||
7149 | m3u8-parser@^4.4.0: | ||
7150 | version "4.4.3" | ||
7151 | resolved "https://registry.yarnpkg.com/m3u8-parser/-/m3u8-parser-4.4.3.tgz#b4a516d98a61bc040e56a10b5ea917cc8d8ea5d9" | ||
7152 | integrity sha512-o6Z2I0lVeL95gE3BHPB5mSACAA6PTubYCFKlbdQmGNH+Ij0A0oEW8N4V5kqTPgYVnuLcb5UdqNiP7V+xEORhYA== | ||
7153 | dependencies: | ||
7154 | "@babel/runtime" "^7.5.5" | ||
7155 | "@videojs/vhs-utils" "^1.1.0" | ||
7156 | global "^4.3.2" | ||
7157 | |||
7316 | magic-string@0.25.7, magic-string@^0.25.0: | 7158 | magic-string@0.25.7, magic-string@^0.25.0: |
7317 | version "0.25.7" | 7159 | version "0.25.7" |
7318 | resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.25.7.tgz#3f497d6fd34c669c6798dcb821f2ef31f5445051" | 7160 | resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.25.7.tgz#3f497d6fd34c669c6798dcb821f2ef31f5445051" |
@@ -7376,11 +7218,6 @@ map-visit@^1.0.0: | |||
7376 | dependencies: | 7218 | dependencies: |
7377 | object-visit "^1.0.0" | 7219 | object-visit "^1.0.0" |
7378 | 7220 | ||
7379 | markdown-it-emoji@^1.4.0: | ||
7380 | version "1.4.0" | ||
7381 | resolved "https://registry.yarnpkg.com/markdown-it-emoji/-/markdown-it-emoji-1.4.0.tgz#9bee0e9a990a963ba96df6980c4fddb05dfb4dcc" | ||
7382 | integrity sha1-m+4OmpkKljupbfaYDE/dsF37Tcw= | ||
7383 | |||
7384 | markdown-it@^11.0.0: | 7221 | markdown-it@^11.0.0: |
7385 | version "11.0.0" | 7222 | version "11.0.0" |
7386 | resolved "https://registry.yarnpkg.com/markdown-it/-/markdown-it-11.0.0.tgz#dbfc30363e43d756ebc52c38586b91b90046b876" | 7223 | resolved "https://registry.yarnpkg.com/markdown-it/-/markdown-it-11.0.0.tgz#dbfc30363e43d756ebc52c38586b91b90046b876" |
@@ -7590,10 +7427,10 @@ min-document@^2.19.0: | |||
7590 | dependencies: | 7427 | dependencies: |
7591 | dom-walk "^0.1.0" | 7428 | dom-walk "^0.1.0" |
7592 | 7429 | ||
7593 | mini-css-extract-plugin@0.9.0: | 7430 | mini-css-extract-plugin@0.10.0: |
7594 | version "0.9.0" | 7431 | version "0.10.0" |
7595 | resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-0.9.0.tgz#47f2cf07aa165ab35733b1fc97d4c46c0564339e" | 7432 | resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-0.10.0.tgz#a0e6bfcad22a9c73f6c882a3c7557a98e2d3d27d" |
7596 | integrity sha512-lp3GeY7ygcgAmVIcRPBVhIkf8Us7FZjA+ILpal44qLdSu11wmjKQ3d9k15lfD7pO4esu9eUIAW7qiYIBppv40A== | 7433 | integrity sha512-QgKgJBjaJhxVPwrLNqqwNS0AGkuQQ31Hp4xGXEK/P7wehEg6qmNtReHKai3zRXqY60wGVWLYcOMJK2b98aGc3A== |
7597 | dependencies: | 7434 | dependencies: |
7598 | loader-utils "^1.1.0" | 7435 | loader-utils "^1.1.0" |
7599 | normalize-url "1.9.1" | 7436 | normalize-url "1.9.1" |
@@ -7642,9 +7479,9 @@ minipass-flush@^1.0.5: | |||
7642 | minipass "^3.0.0" | 7479 | minipass "^3.0.0" |
7643 | 7480 | ||
7644 | minipass-pipeline@^1.2.2: | 7481 | minipass-pipeline@^1.2.2: |
7645 | version "1.2.3" | 7482 | version "1.2.4" |
7646 | resolved "https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.3.tgz#55f7839307d74859d6e8ada9c3ebe72cec216a34" | 7483 | resolved "https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz#68472f79711c084657c067c5c6ad93cddea8214c" |
7647 | integrity sha512-cFOknTvng5vqnwOpDsZTWhNll6Jf8o2x+/diplafmxpuIymAjzoOolZG0VvQf3V2HgqzJNhnuKHYp2BqDgz8IQ== | 7484 | integrity sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A== |
7648 | dependencies: | 7485 | dependencies: |
7649 | minipass "^3.0.0" | 7486 | minipass "^3.0.0" |
7650 | 7487 | ||
@@ -7670,10 +7507,10 @@ minizlib@^1.2.1: | |||
7670 | dependencies: | 7507 | dependencies: |
7671 | minipass "^2.9.0" | 7508 | minipass "^2.9.0" |
7672 | 7509 | ||
7673 | minizlib@^2.1.0: | 7510 | minizlib@^2.1.1: |
7674 | version "2.1.0" | 7511 | version "2.1.2" |
7675 | resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.0.tgz#fd52c645301ef09a63a2c209697c294c6ce02cf3" | 7512 | resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931" |
7676 | integrity sha512-EzTZN/fjSvifSX0SlqUERCN39o6T40AMarPbv0MrarSFtIITCBh7bi+dU8nxGFHuqs9jdIAeoYoKuQAAASsPPA== | 7513 | integrity sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg== |
7677 | dependencies: | 7514 | dependencies: |
7678 | minipass "^3.0.0" | 7515 | minipass "^3.0.0" |
7679 | yallist "^4.0.0" | 7516 | yallist "^4.0.0" |
@@ -7707,7 +7544,7 @@ mkdirp-classic@^0.5.2: | |||
7707 | resolved "https://registry.yarnpkg.com/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz#fa10c9115cc6d8865be221ba47ee9bed78601113" | 7544 | resolved "https://registry.yarnpkg.com/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz#fa10c9115cc6d8865be221ba47ee9bed78601113" |
7708 | integrity sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A== | 7545 | integrity sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A== |
7709 | 7546 | ||
7710 | "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@^0.5.3, mkdirp@~0.5.1: | 7547 | "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@^0.5.3, mkdirp@^0.5.5, mkdirp@~0.5.1: |
7711 | version "0.5.5" | 7548 | version "0.5.5" |
7712 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def" | 7549 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def" |
7713 | integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ== | 7550 | integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ== |
@@ -7849,7 +7686,7 @@ negotiator@0.6.2: | |||
7849 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb" | 7686 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb" |
7850 | integrity sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw== | 7687 | integrity sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw== |
7851 | 7688 | ||
7852 | neo-async@^2.5.0, neo-async@^2.6.1: | 7689 | neo-async@^2.5.0, neo-async@^2.6.1, neo-async@^2.6.2: |
7853 | version "2.6.2" | 7690 | version "2.6.2" |
7854 | resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" | 7691 | resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" |
7855 | integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== | 7692 | integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== |
@@ -7948,7 +7785,7 @@ node-libs-browser@^2.2.1: | |||
7948 | util "^0.11.0" | 7785 | util "^0.11.0" |
7949 | vm-browserify "^1.0.1" | 7786 | vm-browserify "^1.0.1" |
7950 | 7787 | ||
7951 | node-releases@^1.1.58: | 7788 | node-releases@^1.1.60: |
7952 | version "1.1.60" | 7789 | version "1.1.60" |
7953 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.60.tgz#6948bdfce8286f0b5d0e5a88e8384e954dfe7084" | 7790 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.60.tgz#6948bdfce8286f0b5d0e5a88e8384e954dfe7084" |
7954 | integrity sha512-gsO4vjEdQaTusZAEebUWp2a5d7dF5DYoIpDG7WySnk7BuZDW+GPpHXoXXuYawRBr/9t5q54tirPz79kFIWg4dA== | 7791 | integrity sha512-gsO4vjEdQaTusZAEebUWp2a5d7dF5DYoIpDG7WySnk7BuZDW+GPpHXoXXuYawRBr/9t5q54tirPz79kFIWg4dA== |
@@ -8096,9 +7933,9 @@ npm-pick-manifest@^3.0.0: | |||
8096 | semver "^5.4.1" | 7933 | semver "^5.4.1" |
8097 | 7934 | ||
8098 | npm-registry-fetch@^4.0.0: | 7935 | npm-registry-fetch@^4.0.0: |
8099 | version "4.0.5" | 7936 | version "4.0.7" |
8100 | resolved "https://registry.yarnpkg.com/npm-registry-fetch/-/npm-registry-fetch-4.0.5.tgz#cb87cf7f25bfb048d6c3ee19d115bebf93ea5bfa" | 7937 | resolved "https://registry.yarnpkg.com/npm-registry-fetch/-/npm-registry-fetch-4.0.7.tgz#57951bf6541e0246b34c9f9a38ab73607c9449d7" |
8101 | integrity sha512-yQ0/U4fYpCCqmueB2g8sc+89ckQ3eXpmU4+Yi2j5o/r0WkKvE2+Y0tK3DEILAtn2UaQTkjTHxIXe2/CSdit+/Q== | 7938 | integrity sha512-cny9v0+Mq6Tjz+e0erFAB+RYJ/AVGzkjnISiobqP8OWj9c9FLoZZu8/SPSKJWE17F1tk4018wfjV+ZbIbqC7fQ== |
8102 | dependencies: | 7939 | dependencies: |
8103 | JSONStream "^1.3.4" | 7940 | JSONStream "^1.3.4" |
8104 | bluebird "^3.5.1" | 7941 | bluebird "^3.5.1" |
@@ -8261,9 +8098,9 @@ onetime@^1.0.0: | |||
8261 | integrity sha1-ofeDj4MUxRbwXs78vEzP4EtO14k= | 8098 | integrity sha1-ofeDj4MUxRbwXs78vEzP4EtO14k= |
8262 | 8099 | ||
8263 | onetime@^5.1.0: | 8100 | onetime@^5.1.0: |
8264 | version "5.1.0" | 8101 | version "5.1.2" |
8265 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.0.tgz#fff0f3c91617fe62bb50189636e99ac8a6df7be5" | 8102 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" |
8266 | integrity sha512-5NcSkPHhwTVFIQN+TUqXoS5+dlElHXdpAWu9I0HP20YOtIi+aZ0Ct82jdlILDxjLEAWwvm+qj1m6aEtsDVmm6Q== | 8103 | integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== |
8267 | dependencies: | 8104 | dependencies: |
8268 | mimic-fn "^2.1.0" | 8105 | mimic-fn "^2.1.0" |
8269 | 8106 | ||
@@ -8299,16 +8136,16 @@ optionator@^0.8.1: | |||
8299 | type-check "~0.3.2" | 8136 | type-check "~0.3.2" |
8300 | word-wrap "~1.2.3" | 8137 | word-wrap "~1.2.3" |
8301 | 8138 | ||
8302 | ora@4.0.5: | 8139 | ora@5.0.0: |
8303 | version "4.0.5" | 8140 | version "5.0.0" |
8304 | resolved "https://registry.yarnpkg.com/ora/-/ora-4.0.5.tgz#7410b5cc2d99fa637fd5099bbb9f02bfbb5a361e" | 8141 | resolved "https://registry.yarnpkg.com/ora/-/ora-5.0.0.tgz#4f0b34f2994877b49b452a707245ab1e9f6afccb" |
8305 | integrity sha512-jCDgm9DqvRcNIAEv2wZPrh7E5PcQiDUnbnWbAfu4NGAE2ZNqPFbDixmWldy1YG2QfLeQhuiu6/h5VRrk6cG50w== | 8142 | integrity sha512-s26qdWqke2kjN/wC4dy+IQPBIMWBJlSU/0JZhk30ZDBLelW25rv66yutUWARMigpGPzcXHb+Nac5pNhN/WsARw== |
8306 | dependencies: | 8143 | dependencies: |
8307 | chalk "^3.0.0" | 8144 | chalk "^4.1.0" |
8308 | cli-cursor "^3.1.0" | 8145 | cli-cursor "^3.1.0" |
8309 | cli-spinners "^2.2.0" | 8146 | cli-spinners "^2.4.0" |
8310 | is-interactive "^1.0.0" | 8147 | is-interactive "^1.0.0" |
8311 | log-symbols "^3.0.0" | 8148 | log-symbols "^4.0.0" |
8312 | mute-stream "0.0.8" | 8149 | mute-stream "0.0.8" |
8313 | strip-ansi "^6.0.0" | 8150 | strip-ansi "^6.0.0" |
8314 | wcwidth "^1.0.1" | 8151 | wcwidth "^1.0.1" |
@@ -8515,13 +8352,12 @@ param-case@^3.0.3: | |||
8515 | tslib "^1.10.0" | 8352 | tslib "^1.10.0" |
8516 | 8353 | ||
8517 | parse-asn1@^5.0.0, parse-asn1@^5.1.5: | 8354 | parse-asn1@^5.0.0, parse-asn1@^5.1.5: |
8518 | version "5.1.5" | 8355 | version "5.1.6" |
8519 | resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.5.tgz#003271343da58dc94cace494faef3d2147ecea0e" | 8356 | resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.6.tgz#385080a3ec13cb62a62d39409cb3e88844cdaed4" |
8520 | integrity sha512-jkMYn1dcJqF6d5CpU689bq7w/b5ALS9ROVSpQDPrZsqqesUJii9qutvoT5ltGedNXMO2e16YUWIghG9KxaViTQ== | 8357 | integrity sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw== |
8521 | dependencies: | 8358 | dependencies: |
8522 | asn1.js "^4.0.0" | 8359 | asn1.js "^5.2.0" |
8523 | browserify-aes "^1.0.0" | 8360 | browserify-aes "^1.0.0" |
8524 | create-hash "^1.1.0" | ||
8525 | evp_bytestokey "^1.0.0" | 8361 | evp_bytestokey "^1.0.0" |
8526 | pbkdf2 "^3.0.3" | 8362 | pbkdf2 "^3.0.3" |
8527 | safe-buffer "^5.1.1" | 8363 | safe-buffer "^5.1.1" |
@@ -8780,13 +8616,13 @@ pnp-webpack-plugin@1.6.4: | |||
8780 | ts-pnp "^1.1.6" | 8616 | ts-pnp "^1.1.6" |
8781 | 8617 | ||
8782 | portfinder@^1.0.26: | 8618 | portfinder@^1.0.26: |
8783 | version "1.0.27" | 8619 | version "1.0.28" |
8784 | resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.27.tgz#a41333c116b5e5f3d380f9745ac2f35084c4c758" | 8620 | resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.28.tgz#67c4622852bd5374dd1dd900f779f53462fac778" |
8785 | integrity sha512-bJ3U3MThKnyJ9Dx1Idtm5pQmxXqw08+XOHhi/Lie8OF1OlhVaBFhsntAIhkZYjfDcCzszSr0w1yCbccThhzgxQ== | 8621 | integrity sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA== |
8786 | dependencies: | 8622 | dependencies: |
8787 | async "^2.6.2" | 8623 | async "^2.6.2" |
8788 | debug "^3.1.1" | 8624 | debug "^3.1.1" |
8789 | mkdirp "^0.5.1" | 8625 | mkdirp "^0.5.5" |
8790 | 8626 | ||
8791 | posix-character-classes@^0.1.0: | 8627 | posix-character-classes@^0.1.0: |
8792 | version "0.1.1" | 8628 | version "0.1.1" |
@@ -8794,9 +8630,9 @@ posix-character-classes@^0.1.0: | |||
8794 | integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs= | 8630 | integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs= |
8795 | 8631 | ||
8796 | postcss-calc@^7.0.1: | 8632 | postcss-calc@^7.0.1: |
8797 | version "7.0.2" | 8633 | version "7.0.3" |
8798 | resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-7.0.2.tgz#504efcd008ca0273120568b0792b16cdcde8aac1" | 8634 | resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-7.0.3.tgz#d65cca92a3c52bf27ad37a5f732e0587b74f1623" |
8799 | integrity sha512-rofZFHUg6ZIrvRwPeFktv06GdbDYLcGqh9EwiMutZg+a0oePCCw1zHOEiji6LCpyRcjTREtPASuUqeAvYlEVvQ== | 8635 | integrity sha512-IB/EAEmZhIMEIhG7Ov4x+l47UaXOS1n2f4FBUk/aKllQhtSCxWhTzn0nJgkqN7fo/jcWySvWTSB6Syk9L+31bA== |
8800 | dependencies: | 8636 | dependencies: |
8801 | postcss "^7.0.27" | 8637 | postcss "^7.0.27" |
8802 | postcss-selector-parser "^6.0.2" | 8638 | postcss-selector-parser "^6.0.2" |
@@ -9379,9 +9215,9 @@ querystring@0.2.0: | |||
9379 | integrity sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA= | 9215 | integrity sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA= |
9380 | 9216 | ||
9381 | querystringify@^2.1.1: | 9217 | querystringify@^2.1.1: |
9382 | version "2.1.1" | 9218 | version "2.2.0" |
9383 | resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-2.1.1.tgz#60e5a5fd64a7f8bfa4d2ab2ed6fdf4c85bad154e" | 9219 | resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-2.2.0.tgz#3345941b4153cb9d082d8eee4cda2016a9aef7f6" |
9384 | integrity sha512-w7fLxIRCRT7U8Qu53jQnJyPkYZIaR4n5151KMfcJlO/A9397Wxb1amJvROTK6TOnp7PfoAmg/qXiNHI+08jRfA== | 9220 | integrity sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ== |
9385 | 9221 | ||
9386 | queue-microtask@^1.1.0, queue-microtask@^1.1.2: | 9222 | queue-microtask@^1.1.0, queue-microtask@^1.1.2: |
9387 | version "1.1.4" | 9223 | version "1.1.4" |
@@ -9461,16 +9297,14 @@ read-cache@^1.0.0: | |||
9461 | pify "^2.3.0" | 9297 | pify "^2.3.0" |
9462 | 9298 | ||
9463 | read-package-json@^2.0.0: | 9299 | read-package-json@^2.0.0: |
9464 | version "2.1.1" | 9300 | version "2.1.2" |
9465 | resolved "https://registry.yarnpkg.com/read-package-json/-/read-package-json-2.1.1.tgz#16aa66c59e7d4dad6288f179dd9295fd59bb98f1" | 9301 | resolved "https://registry.yarnpkg.com/read-package-json/-/read-package-json-2.1.2.tgz#6992b2b66c7177259feb8eaac73c3acd28b9222a" |
9466 | integrity sha512-dAiqGtVc/q5doFz6096CcnXhpYk0ZN8dEKVkGLU0CsASt8SrgF6SF7OTKAYubfvFhWaqofl+Y8HK19GR8jwW+A== | 9302 | integrity sha512-D1KmuLQr6ZSJS0tW8hf3WGpRlwszJOXZ3E8Yd/DNRaM5d+1wVRZdHlpGBLAuovjr28LbWvjpWkBHMxpRGGjzNA== |
9467 | dependencies: | 9303 | dependencies: |
9468 | glob "^7.1.1" | 9304 | glob "^7.1.1" |
9469 | json-parse-better-errors "^1.0.1" | 9305 | json-parse-even-better-errors "^2.3.0" |
9470 | normalize-package-data "^2.0.0" | 9306 | normalize-package-data "^2.0.0" |
9471 | npm-normalize-package-bin "^1.0.0" | 9307 | npm-normalize-package-bin "^1.0.0" |
9472 | optionalDependencies: | ||
9473 | graceful-fs "^4.1.2" | ||
9474 | 9308 | ||
9475 | read-package-tree@5.3.1: | 9309 | read-package-tree@5.3.1: |
9476 | version "5.3.1" | 9310 | version "5.3.1" |
@@ -9908,10 +9742,10 @@ ripemd160@^2.0.0, ripemd160@^2.0.1: | |||
9908 | hash-base "^3.0.0" | 9742 | hash-base "^3.0.0" |
9909 | inherits "^2.0.1" | 9743 | inherits "^2.0.1" |
9910 | 9744 | ||
9911 | rollup@2.23.0: | 9745 | rollup@2.26.4: |
9912 | version "2.23.0" | 9746 | version "2.26.4" |
9913 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.23.0.tgz#b7ab1fee0c0e60132fd0553c4df1e9cdacfada9d" | 9747 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.26.4.tgz#a8350fd6bd56fce9873a7db2bd9547d40de3992b" |
9914 | integrity sha512-vLNmZFUGVwrnqNAJ/BvuLk1MtWzu4IuoqsH9UWK5AIdO3rt8/CSiJNvPvCIvfzrbNsqKbNzPAG1V2O4eTe2XZg== | 9748 | integrity sha512-6+qsGuP0MXGd7vlYmk72utm1MrgZj5GfXibGL+cRkKQ9+ZL/BnFThDl0D5bcl7AqlzMjAQXRAwZX1HVm22M/4Q== |
9915 | optionalDependencies: | 9749 | optionalDependencies: |
9916 | fsevents "~2.1.2" | 9750 | fsevents "~2.1.2" |
9917 | 9751 | ||
@@ -9966,20 +9800,13 @@ rx-lite@^3.1.2: | |||
9966 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" | 9800 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" |
9967 | integrity sha1-Gc5QLKVyZl87ZHsQk5+X/RYV8QI= | 9801 | integrity sha1-Gc5QLKVyZl87ZHsQk5+X/RYV8QI= |
9968 | 9802 | ||
9969 | rxjs@6.6.2, rxjs@^6.6.0: | 9803 | rxjs@6.6.2, rxjs@^6.5.2, rxjs@^6.5.3, rxjs@^6.6.0: |
9970 | version "6.6.2" | 9804 | version "6.6.2" |
9971 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.2.tgz#8096a7ac03f2cc4fe5860ef6e572810d9e01c0d2" | 9805 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.2.tgz#8096a7ac03f2cc4fe5860ef6e572810d9e01c0d2" |
9972 | integrity sha512-BHdBMVoWC2sL26w//BCu3YzKT4s2jip/WhwsGEDmeKYBhKDZeYezVUnHatYB7L85v5xs0BAQmg6BEYJEKxBabg== | 9806 | integrity sha512-BHdBMVoWC2sL26w//BCu3YzKT4s2jip/WhwsGEDmeKYBhKDZeYezVUnHatYB7L85v5xs0BAQmg6BEYJEKxBabg== |
9973 | dependencies: | 9807 | dependencies: |
9974 | tslib "^1.9.0" | 9808 | tslib "^1.9.0" |
9975 | 9809 | ||
9976 | rxjs@^6.5.2: | ||
9977 | version "6.6.0" | ||
9978 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.0.tgz#af2901eedf02e3a83ffa7f886240ff9018bbec84" | ||
9979 | integrity sha512-3HMA8z/Oz61DUHe+SdOiQyzIf4tOx5oQHmMir7IZEu6TMqCLHT4LRcmNaUS0NwOz8VLvmmBduMsoaUvMaIiqzg== | ||
9980 | dependencies: | ||
9981 | tslib "^1.9.0" | ||
9982 | |||
9983 | safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: | 9810 | safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: |
9984 | version "5.1.2" | 9811 | version "5.1.2" |
9985 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" | 9812 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" |
@@ -10010,14 +9837,14 @@ safe-regex@^1.1.0: | |||
10010 | integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== | 9837 | integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== |
10011 | 9838 | ||
10012 | sanitize-html@^1.18.4: | 9839 | sanitize-html@^1.18.4: |
10013 | version "1.27.1" | 9840 | version "1.27.3" |
10014 | resolved "https://registry.yarnpkg.com/sanitize-html/-/sanitize-html-1.27.1.tgz#ce147951aa3defba13448e2ca8a4e18d8f2e2cd7" | 9841 | resolved "https://registry.yarnpkg.com/sanitize-html/-/sanitize-html-1.27.3.tgz#dc7419b075f96737055c98764aea40c42d978df9" |
10015 | integrity sha512-C+N7E+7ikYaLHdb9lEkQaFOgmj+9ddZ311Ixs/QsBsoLD411/vdLweiFyGqrswUVgLqagOS5NCDxcEPH7trObQ== | 9842 | integrity sha512-79tcPlgJ3fuK0/TtUCIBdPeQSvktTSTJP9O/dzrteaO98qw5UV6CATh3ZyPjUzv1LtNjHDlhbq9XOXiKf0zA1w== |
10016 | dependencies: | 9843 | dependencies: |
10017 | htmlparser2 "^4.1.0" | 9844 | htmlparser2 "^4.1.0" |
10018 | lodash "^4.17.15" | 9845 | lodash "^4.17.15" |
9846 | parse-srcset "^1.0.2" | ||
10019 | postcss "^7.0.27" | 9847 | postcss "^7.0.27" |
10020 | srcset "^2.0.1" | ||
10021 | 9848 | ||
10022 | sass-graph@2.2.5: | 9849 | sass-graph@2.2.5: |
10023 | version "2.2.5" | 9850 | version "2.2.5" |
@@ -10060,29 +9887,29 @@ sass-loader@8.0.2: | |||
10060 | schema-utils "^2.6.1" | 9887 | schema-utils "^2.6.1" |
10061 | semver "^6.3.0" | 9888 | semver "^6.3.0" |
10062 | 9889 | ||
10063 | sass-loader@9.0.2: | 9890 | sass-loader@9.0.3: |
10064 | version "9.0.2" | 9891 | version "9.0.3" |
10065 | resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-9.0.2.tgz#847c9b4c95328ddc8c7d35cf28c9d6e54e59a90b" | 9892 | resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-9.0.3.tgz#086adcf0bfdcc9d920413e2cdc3ba3321373d547" |
10066 | integrity sha512-nphcum3jNI442njnrZ5wJgSNX5lfEOHOKHCLf+PrTIaleploKqAMUuT9CVKjf+lyi6c2MCGPHh1vb9nGsjnZJA== | 9893 | integrity sha512-fOwsP98ac1VMme+V3+o0HaaMHp8Q/C9P+MUazLFVi3Jl7ORGHQXL1XeRZt3zLSGZQQPC8xE42Y2WptItvGjDQg== |
10067 | dependencies: | 9894 | dependencies: |
10068 | klona "^1.1.1" | 9895 | klona "^1.1.2" |
10069 | loader-utils "^2.0.0" | 9896 | loader-utils "^2.0.0" |
10070 | neo-async "^2.6.1" | 9897 | neo-async "^2.6.2" |
10071 | schema-utils "^2.7.0" | 9898 | schema-utils "^2.7.0" |
10072 | semver "^7.3.2" | 9899 | semver "^7.3.2" |
10073 | 9900 | ||
10074 | sass-resources-loader@^2.0.0: | 9901 | sass-resources-loader@^2.0.0: |
10075 | version "2.0.3" | 9902 | version "2.1.0" |
10076 | resolved "https://registry.yarnpkg.com/sass-resources-loader/-/sass-resources-loader-2.0.3.tgz#585636b357d9c27d02fa359c175fafe3e3d66ce4" | 9903 | resolved "https://registry.yarnpkg.com/sass-resources-loader/-/sass-resources-loader-2.1.0.tgz#7b78eca011f099c460ce68123c224d470e5d6d1e" |
10077 | integrity sha512-kYujKXFPZvh5QUT+0DO35P93G6GeIRMP4c941Ilbvey5lo+iICFs2H4hP2CFHl68Llg7h2iXqe0RQpDoUzjUSw== | 9904 | integrity sha512-rPs9E/slQgpam3Mm864XzH4mYpLBBfXyIG4yzcmtoIFRj0sE1oXuImFe4UqcqbknzFVb6w7Fd7AuOXp0Pg1gSg== |
10078 | dependencies: | 9905 | dependencies: |
10079 | "@babel/cli" "^7.4.4" | 9906 | "@babel/cli" "^7.10.5" |
10080 | "@babel/preset-env" "^7.4.5" | 9907 | "@babel/preset-env" "^7.11.0" |
10081 | async "^3.0.1" | 9908 | async "^3.2.0" |
10082 | babel-eslint "^10.0.2" | 9909 | babel-eslint "^10.1.0" |
10083 | chalk "^2.4.2" | 9910 | chalk "^4.1.0" |
10084 | glob "^7.1.1" | 9911 | glob "^7.1.6" |
10085 | loader-utils "^1.0.4" | 9912 | loader-utils "^2.0.0" |
10086 | 9913 | ||
10087 | sass@1.26.10: | 9914 | sass@1.26.10: |
10088 | version "1.26.10" | 9915 | version "1.26.10" |
@@ -10217,13 +10044,6 @@ send@0.17.1: | |||
10217 | range-parser "~1.2.1" | 10044 | range-parser "~1.2.1" |
10218 | statuses "~1.5.0" | 10045 | statuses "~1.5.0" |
10219 | 10046 | ||
10220 | serialize-javascript@^3.1.0: | ||
10221 | version "3.1.0" | ||
10222 | resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-3.1.0.tgz#8bf3a9170712664ef2561b44b691eafe399214ea" | ||
10223 | integrity sha512-JIJT1DGiWmIKhzRsG91aS6Ze4sFUrYbltlkg2onR5OrnNM02Kl/hnY/T4FN2omvyeBbQmMJv+K4cPOpGzOTFBg== | ||
10224 | dependencies: | ||
10225 | randombytes "^2.1.0" | ||
10226 | |||
10227 | serialize-javascript@^4.0.0: | 10047 | serialize-javascript@^4.0.0: |
10228 | version "4.0.0" | 10048 | version "4.0.0" |
10229 | resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-4.0.0.tgz#b525e1238489a5ecfc42afacc3fe99e666f4b1aa" | 10049 | resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-4.0.0.tgz#b525e1238489a5ecfc42afacc3fe99e666f4b1aa" |
@@ -10545,16 +10365,16 @@ source-list-map@~0.1.7: | |||
10545 | resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-0.1.8.tgz#c550b2ab5427f6b3f21f5afead88c4f5587b2106" | 10365 | resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-0.1.8.tgz#c550b2ab5427f6b3f21f5afead88c4f5587b2106" |
10546 | integrity sha1-xVCyq1Qn9rPyH1r+rYjE9Vh7IQY= | 10366 | integrity sha1-xVCyq1Qn9rPyH1r+rYjE9Vh7IQY= |
10547 | 10367 | ||
10548 | source-map-loader@1.0.1: | 10368 | source-map-loader@1.0.2: |
10549 | version "1.0.1" | 10369 | version "1.0.2" |
10550 | resolved "https://registry.yarnpkg.com/source-map-loader/-/source-map-loader-1.0.1.tgz#703df5345b0816734f0336c1ccee8af66e082061" | 10370 | resolved "https://registry.yarnpkg.com/source-map-loader/-/source-map-loader-1.0.2.tgz#b0a6582b2eaa387ede1ecf8061ae0b93c23f9eb0" |
10551 | integrity sha512-DE4CJyfCVoxFLsHyuVE9Sjcib8cs5qdmOq3wcev1Un/r6F2AfQJDhag4rzpPPA48A2QZyV3CTbc+NGoFMfKIOQ== | 10371 | integrity sha512-oX8d6ndRjN+tVyjj6PlXSyFPhDdVAPsZA30nD3/II8g4uOv8fCz0DMn5sy8KtVbDfKQxOpGwGJnK3xIW3tauDw== |
10552 | dependencies: | 10372 | dependencies: |
10553 | data-urls "^2.0.0" | 10373 | data-urls "^2.0.0" |
10554 | iconv-lite "^0.5.1" | 10374 | iconv-lite "^0.6.2" |
10555 | loader-utils "^2.0.0" | 10375 | loader-utils "^2.0.0" |
10556 | schema-utils "^2.6.6" | 10376 | schema-utils "^2.7.0" |
10557 | source-map "^0.6.0" | 10377 | source-map "^0.6.1" |
10558 | 10378 | ||
10559 | source-map-resolve@^0.5.0, source-map-resolve@^0.5.2: | 10379 | source-map-resolve@^0.5.0, source-map-resolve@^0.5.2: |
10560 | version "0.5.3" | 10380 | version "0.5.3" |
@@ -10699,11 +10519,6 @@ sprintf-js@~1.0.2: | |||
10699 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" | 10519 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" |
10700 | integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= | 10520 | integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= |
10701 | 10521 | ||
10702 | srcset@^2.0.1: | ||
10703 | version "2.0.1" | ||
10704 | resolved "https://registry.yarnpkg.com/srcset/-/srcset-2.0.1.tgz#8f842d357487eb797f413d9c309de7a5149df5ac" | ||
10705 | integrity sha512-00kZI87TdRKwt+P8jj8UZxbfp7mK2ufxcIMWvhAOZNJTRROimpHeruWrGvCZneiuVDLqdyHefVp748ECTnyUBQ== | ||
10706 | |||
10707 | sshpk@^1.7.0: | 10522 | sshpk@^1.7.0: |
10708 | version "1.16.1" | 10523 | version "1.16.1" |
10709 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.1.tgz#fb661c0bef29b39db40769ee39fa70093d6f6877" | 10524 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.1.tgz#fb661c0bef29b39db40769ee39fa70093d6f6877" |
@@ -11101,25 +10916,25 @@ tar@^4.4.10: | |||
11101 | yallist "^3.0.3" | 10916 | yallist "^3.0.3" |
11102 | 10917 | ||
11103 | tar@^6.0.2: | 10918 | tar@^6.0.2: |
11104 | version "6.0.2" | 10919 | version "6.0.5" |
11105 | resolved "https://registry.yarnpkg.com/tar/-/tar-6.0.2.tgz#5df17813468a6264ff14f766886c622b84ae2f39" | 10920 | resolved "https://registry.yarnpkg.com/tar/-/tar-6.0.5.tgz#bde815086e10b39f1dcd298e89d596e1535e200f" |
11106 | integrity sha512-Glo3jkRtPcvpDlAs/0+hozav78yoXKFr+c4wgw62NNMO3oo4AaJdCo21Uu7lcwr55h39W2XD1LMERc64wtbItg== | 10921 | integrity sha512-0b4HOimQHj9nXNEAA7zWwMM91Zhhba3pspja6sQbgTpynOJf+bkjBnfybNYzbpLbnwXnbyB4LOREvlyXLkCHSg== |
11107 | dependencies: | 10922 | dependencies: |
11108 | chownr "^2.0.0" | 10923 | chownr "^2.0.0" |
11109 | fs-minipass "^2.0.0" | 10924 | fs-minipass "^2.0.0" |
11110 | minipass "^3.0.0" | 10925 | minipass "^3.0.0" |
11111 | minizlib "^2.1.0" | 10926 | minizlib "^2.1.1" |
11112 | mkdirp "^1.0.3" | 10927 | mkdirp "^1.0.3" |
11113 | yallist "^4.0.0" | 10928 | yallist "^4.0.0" |
11114 | 10929 | ||
11115 | terser-webpack-plugin@4.0.0: | 10930 | terser-webpack-plugin@4.1.0: |
11116 | version "4.0.0" | 10931 | version "4.1.0" |
11117 | resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-4.0.0.tgz#d371fe78312c47d33452e465a1096db893613e78" | 10932 | resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-4.1.0.tgz#6e9d6ae4e1a900d88ddce8da6a47507ea61f44bc" |
11118 | integrity sha512-Gb/bmPMavJsDTYiIocakp9OJhrIBnYrWa5VM0Bb2RngWmszeQUN1xFNh2E8Re+9Cj3/sPrA50Jj/q0nzgLAUuw== | 10933 | integrity sha512-0ZWDPIP8BtEDZdChbufcXUigOYk6dOX/P/X0hWxqDDcVAQLb8Yy/0FAaemSfax3PAA67+DJR778oz8qVbmy4hA== |
11119 | dependencies: | 10934 | dependencies: |
11120 | cacache "^15.0.5" | 10935 | cacache "^15.0.5" |
11121 | find-cache-dir "^3.3.1" | 10936 | find-cache-dir "^3.3.1" |
11122 | jest-worker "^26.2.1" | 10937 | jest-worker "^26.3.0" |
11123 | p-limit "^3.0.2" | 10938 | p-limit "^3.0.2" |
11124 | schema-utils "^2.6.6" | 10939 | schema-utils "^2.6.6" |
11125 | serialize-javascript "^4.0.0" | 10940 | serialize-javascript "^4.0.0" |
@@ -11128,28 +10943,28 @@ terser-webpack-plugin@4.0.0: | |||
11128 | webpack-sources "^1.4.3" | 10943 | webpack-sources "^1.4.3" |
11129 | 10944 | ||
11130 | terser-webpack-plugin@^1.4.3: | 10945 | terser-webpack-plugin@^1.4.3: |
11131 | version "1.4.4" | 10946 | version "1.4.5" |
11132 | resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.4.4.tgz#2c63544347324baafa9a56baaddf1634c8abfc2f" | 10947 | resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz#a217aefaea330e734ffacb6120ec1fa312d6040b" |
11133 | integrity sha512-U4mACBHIegmfoEe5fdongHESNJWqsGU+W0S/9+BmYGVQDw1+c2Ow05TpMhxjPK1sRb7cuYq1BPl1e5YHJMTCqA== | 10948 | integrity sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw== |
11134 | dependencies: | 10949 | dependencies: |
11135 | cacache "^12.0.2" | 10950 | cacache "^12.0.2" |
11136 | find-cache-dir "^2.1.0" | 10951 | find-cache-dir "^2.1.0" |
11137 | is-wsl "^1.1.0" | 10952 | is-wsl "^1.1.0" |
11138 | schema-utils "^1.0.0" | 10953 | schema-utils "^1.0.0" |
11139 | serialize-javascript "^3.1.0" | 10954 | serialize-javascript "^4.0.0" |
11140 | source-map "^0.6.1" | 10955 | source-map "^0.6.1" |
11141 | terser "^4.1.2" | 10956 | terser "^4.1.2" |
11142 | webpack-sources "^1.4.0" | 10957 | webpack-sources "^1.4.0" |
11143 | worker-farm "^1.7.0" | 10958 | worker-farm "^1.7.0" |
11144 | 10959 | ||
11145 | terser-webpack-plugin@^3.0.0: | 10960 | terser-webpack-plugin@^3.0.0: |
11146 | version "3.0.8" | 10961 | version "3.1.0" |
11147 | resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-3.0.8.tgz#d1a53442a143e09e00c880e8d77c1e79cb05318b" | 10962 | resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-3.1.0.tgz#91e6d39571460ed240c0cf69d295bcf30ebf98cb" |
11148 | integrity sha512-ygwK8TYMRTYtSyLB2Mhnt90guQh989CIq/mL/2apwi6rA15Xys4ydNUiH4ah6EZCfQxSk26ZFQilZ4IQ6IZw6A== | 10963 | integrity sha512-cjdZte66fYkZ65rQ2oJfrdCAkkhJA7YLYk5eGOcGCSGlq0ieZupRdjedSQXYknMPo2IveQL+tPdrxUkERENCFA== |
11149 | dependencies: | 10964 | dependencies: |
11150 | cacache "^15.0.5" | 10965 | cacache "^15.0.5" |
11151 | find-cache-dir "^3.3.1" | 10966 | find-cache-dir "^3.3.1" |
11152 | jest-worker "^26.1.0" | 10967 | jest-worker "^26.2.1" |
11153 | p-limit "^3.0.2" | 10968 | p-limit "^3.0.2" |
11154 | schema-utils "^2.6.6" | 10969 | schema-utils "^2.6.6" |
11155 | serialize-javascript "^4.0.0" | 10970 | serialize-javascript "^4.0.0" |
@@ -11157,10 +10972,10 @@ terser-webpack-plugin@^3.0.0: | |||
11157 | terser "^4.8.0" | 10972 | terser "^4.8.0" |
11158 | webpack-sources "^1.4.3" | 10973 | webpack-sources "^1.4.3" |
11159 | 10974 | ||
11160 | terser@5.0.0, terser@^5.0.0: | 10975 | terser@5.2.0: |
11161 | version "5.0.0" | 10976 | version "5.2.0" |
11162 | resolved "https://registry.yarnpkg.com/terser/-/terser-5.0.0.tgz#269640e4e92f15d628de1e5f01c4c61e1ba3d765" | 10977 | resolved "https://registry.yarnpkg.com/terser/-/terser-5.2.0.tgz#e547d0b20926b321d3e524bf9e5bc1b10ba2f360" |
11163 | integrity sha512-olH2DwGINoSuEpSGd+BsPuAQaA3OrHnHnFL/rDB2TVNc3srUbz/rq/j2BlF4zDXI+JqAvGr86bIm1R2cJgZ3FA== | 10978 | integrity sha512-nZ9TWhBznZdlww3borgJyfQDrxzpgd0RlRNoxR63tMVry01lIH/zKQDTTiaWRMGowydfvSHMgyiGyn6A9PSkCQ== |
11164 | dependencies: | 10979 | dependencies: |
11165 | commander "^2.20.0" | 10980 | commander "^2.20.0" |
11166 | source-map "~0.6.1" | 10981 | source-map "~0.6.1" |
@@ -11175,6 +10990,15 @@ terser@^4.1.2, terser@^4.6.3, terser@^4.8.0: | |||
11175 | source-map "~0.6.1" | 10990 | source-map "~0.6.1" |
11176 | source-map-support "~0.5.12" | 10991 | source-map-support "~0.5.12" |
11177 | 10992 | ||
10993 | terser@^5.0.0: | ||
10994 | version "5.2.1" | ||
10995 | resolved "https://registry.yarnpkg.com/terser/-/terser-5.2.1.tgz#40b971b8d28b4fe98c9e8c0d073ab48e7bb96cd8" | ||
10996 | integrity sha512-/AOtjRtAMNGO0fIF6m8HfcvXTw/2AKpsOzDn36tA5RfhRdeXyb4RvHxJ5Pah7iL6dFkLk+gOnCaNHGwJPl6TrQ== | ||
10997 | dependencies: | ||
10998 | commander "^2.20.0" | ||
10999 | source-map "~0.6.1" | ||
11000 | source-map-support "~0.5.12" | ||
11001 | |||
11178 | text-table@~0.2.0: | 11002 | text-table@~0.2.0: |
11179 | version "0.2.0" | 11003 | version "0.2.0" |
11180 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" | 11004 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" |
@@ -11346,9 +11170,9 @@ tryer@^1.0.1: | |||
11346 | integrity sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA== | 11170 | integrity sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA== |
11347 | 11171 | ||
11348 | ts-loader@^8.0.2: | 11172 | ts-loader@^8.0.2: |
11349 | version "8.0.2" | 11173 | version "8.0.3" |
11350 | resolved "https://registry.yarnpkg.com/ts-loader/-/ts-loader-8.0.2.tgz#ee73ca9350f745799396fff8578ba29b1e95616b" | 11174 | resolved "https://registry.yarnpkg.com/ts-loader/-/ts-loader-8.0.3.tgz#56858f4296edf1ed55e01f8520552984d3f0911c" |
11351 | integrity sha512-oYT7wOTUawYXQ8XIDsRhziyW0KUEV38jISYlE+9adP6tDtG+O5GkRe4QKQXrHVH4mJJ88DysvEtvGP65wMLlhg== | 11175 | integrity sha512-wsqfnVdB7xQiqhqbz2ZPLGHLPZbHVV5Qn/MNFZkCFxRU1miDyxKORucDGxKtsQJ63Rfza0udiUxWF5nHY6bpdQ== |
11352 | dependencies: | 11176 | dependencies: |
11353 | chalk "^2.3.0" | 11177 | chalk "^2.3.0" |
11354 | enhanced-resolve "^4.0.0" | 11178 | enhanced-resolve "^4.0.0" |
@@ -11366,20 +11190,20 @@ tslib@1.9.0: | |||
11366 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.9.0.tgz#e37a86fda8cbbaf23a057f473c9f4dc64e5fc2e8" | 11190 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.9.0.tgz#e37a86fda8cbbaf23a057f473c9f4dc64e5fc2e8" |
11367 | integrity sha512-f/qGG2tUkrISBlQZEjEqoZ3B2+npJjIf04H1wuAv9iA8i04Icp+61KRXxFdha22670NJopsZCIjhC3SnjPRKrQ== | 11191 | integrity sha512-f/qGG2tUkrISBlQZEjEqoZ3B2+npJjIf04H1wuAv9iA8i04Icp+61KRXxFdha22670NJopsZCIjhC3SnjPRKrQ== |
11368 | 11192 | ||
11369 | tslib@2.0.0, tslib@^2.0.0: | 11193 | tslib@2.0.1, tslib@^2.0.0: |
11370 | version "2.0.0" | 11194 | version "2.0.1" |
11371 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.0.0.tgz#18d13fc2dce04051e20f074cc8387fd8089ce4f3" | 11195 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.0.1.tgz#410eb0d113e5b6356490eec749603725b021b43e" |
11372 | integrity sha512-lTqkx847PI7xEDYJntxZH89L2/aXInsyF2luSafe/+0fHOMjlBNXdH6th7f70qxLDhul7KZK0zC8V5ZIyHl0/g== | 11196 | integrity sha512-SgIkNheinmEBgx1IUNirK0TUD4X9yjjBRTqqjggWCU3pUEqIk3/Uwl3yRixYKT6WjQuGiwDv4NomL3wqRCj+CQ== |
11373 | 11197 | ||
11374 | tslib@^1.10.0, tslib@^1.7.1, tslib@^1.8.1, tslib@^1.9.0: | 11198 | tslib@^1.10.0, tslib@^1.13.0, tslib@^1.7.1, tslib@^1.8.1, tslib@^1.9.0: |
11375 | version "1.13.0" | 11199 | version "1.13.0" |
11376 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.13.0.tgz#c881e13cc7015894ed914862d276436fa9a47043" | 11200 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.13.0.tgz#c881e13cc7015894ed914862d276436fa9a47043" |
11377 | integrity sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q== | 11201 | integrity sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q== |
11378 | 11202 | ||
11379 | tslint-angular@^3.0.2: | 11203 | tslint-angular@^3.0.2: |
11380 | version "3.0.2" | 11204 | version "3.0.3" |
11381 | resolved "https://registry.yarnpkg.com/tslint-angular/-/tslint-angular-3.0.2.tgz#6f7480cc34f26fcc03df18d7ec3d5ce364b65064" | 11205 | resolved "https://registry.yarnpkg.com/tslint-angular/-/tslint-angular-3.0.3.tgz#872d4fe36497d20582dbe4b8ed3338ff0c922c30" |
11382 | integrity sha512-UgeGO776Z7VvzCnW6pOsbL3qs7PwzZatKkk2OzQO45H9Zf4T+bNBz87nFkB96W/swyCHmpK2M0vl61n0biFVTQ== | 11206 | integrity sha512-5xD1gLE89lBExfSbMslDw/ZfOZM0t0CJsoJa4svsgF7tlwVS3IpXjzNcNRN0RZqDBj+cdTlbeel6GpZ3PqpPiw== |
11383 | 11207 | ||
11384 | tslint-config-standard@^9.0.0: | 11208 | tslint-config-standard@^9.0.0: |
11385 | version "9.0.0" | 11209 | version "9.0.0" |
@@ -11398,9 +11222,9 @@ tslint-eslint-rules@^5.3.1: | |||
11398 | tsutils "^3.0.0" | 11222 | tsutils "^3.0.0" |
11399 | 11223 | ||
11400 | tslint@~6.1.0: | 11224 | tslint@~6.1.0: |
11401 | version "6.1.2" | 11225 | version "6.1.3" |
11402 | resolved "https://registry.yarnpkg.com/tslint/-/tslint-6.1.2.tgz#2433c248512cc5a7b2ab88ad44a6b1b34c6911cf" | 11226 | resolved "https://registry.yarnpkg.com/tslint/-/tslint-6.1.3.tgz#5c23b2eccc32487d5523bd3a470e9aa31789d904" |
11403 | integrity sha512-UyNrLdK3E0fQG/xWNqAFAC5ugtFyPO4JJR1KyyfQAyzR8W0fTRrC91A8Wej4BntFzcvETdCSDa/4PnNYJQLYiA== | 11227 | integrity sha512-IbR4nkT96EQOvKE2PW/djGz8iGNeJ4rF2mBfiYaR/nvUWYKJhLwimoJKgjIFEIDibBtOevj7BqCRL4oHeWWUCg== |
11404 | dependencies: | 11228 | dependencies: |
11405 | "@babel/code-frame" "^7.0.0" | 11229 | "@babel/code-frame" "^7.0.0" |
11406 | builtin-modules "^1.1.1" | 11230 | builtin-modules "^1.1.1" |
@@ -11413,7 +11237,7 @@ tslint@~6.1.0: | |||
11413 | mkdirp "^0.5.3" | 11237 | mkdirp "^0.5.3" |
11414 | resolve "^1.3.2" | 11238 | resolve "^1.3.2" |
11415 | semver "^5.3.0" | 11239 | semver "^5.3.0" |
11416 | tslib "^1.10.0" | 11240 | tslib "^1.13.0" |
11417 | tsutils "^2.29.0" | 11241 | tsutils "^2.29.0" |
11418 | 11242 | ||
11419 | tsutils@^2.29.0: | 11243 | tsutils@^2.29.0: |
@@ -11473,9 +11297,9 @@ type@^1.0.1: | |||
11473 | integrity sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg== | 11297 | integrity sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg== |
11474 | 11298 | ||
11475 | type@^2.0.0: | 11299 | type@^2.0.0: |
11476 | version "2.0.0" | 11300 | version "2.1.0" |
11477 | resolved "https://registry.yarnpkg.com/type/-/type-2.0.0.tgz#5f16ff6ef2eb44f260494dae271033b29c09a9c3" | 11301 | resolved "https://registry.yarnpkg.com/type/-/type-2.1.0.tgz#9bdc22c648cf8cf86dd23d32336a41cfb6475e3f" |
11478 | integrity sha512-KBt58xCHry4Cejnc2ISQAF7QY+ORngsWfxezO68+12hKV6lQY8P/psIkcbjeHWn7MqcgciWJyCCevFMJdIXpow== | 11302 | integrity sha512-G9absDWvhAWCV2gmF1zKud3OyC61nZDwWvBL2DApaVFogI07CprggiQAOOjvp2NRjYWFzPyu7vwtDrQFq8jeSA== |
11479 | 11303 | ||
11480 | typedarray-to-buffer@^3.0.0: | 11304 | typedarray-to-buffer@^3.0.0: |
11481 | version "3.1.5" | 11305 | version "3.1.5" |
@@ -11505,9 +11329,9 @@ uc.micro@^1.0.1, uc.micro@^1.0.5: | |||
11505 | integrity sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA== | 11329 | integrity sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA== |
11506 | 11330 | ||
11507 | uglify-js@^3.0.6: | 11331 | uglify-js@^3.0.6: |
11508 | version "3.10.0" | 11332 | version "3.10.2" |
11509 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.10.0.tgz#397a7e6e31ce820bfd1cb55b804ee140c587a9e7" | 11333 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.10.2.tgz#8cfa1209fd04199cc8a7f9930ddedb30b0f1912d" |
11510 | integrity sha512-Esj5HG5WAyrLIdYU74Z3JdG2PxdIusvj6IWHMtlyESxc7kcDz7zYlYjpnSokn1UbpV0d/QX9fan7gkCNd/9BQA== | 11334 | integrity sha512-GXCYNwqoo0MbLARghYjxVBxDCnU0tLqN7IPLdHHbibCb1NI5zBkU2EPcy/GaVxc0BtTjqyGXJCINe6JMR2Dpow== |
11511 | 11335 | ||
11512 | uint64be@^2.0.2: | 11336 | uint64be@^2.0.2: |
11513 | version "2.0.2" | 11337 | version "2.0.2" |
@@ -11930,10 +11754,10 @@ webdriver-manager@^12.1.7: | |||
11930 | semver "^5.3.0" | 11754 | semver "^5.3.0" |
11931 | xml2js "^0.4.17" | 11755 | xml2js "^0.4.17" |
11932 | 11756 | ||
11933 | webidl-conversions@^5.0.0: | 11757 | webidl-conversions@^6.1.0: |
11934 | version "5.0.0" | 11758 | version "6.1.0" |
11935 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-5.0.0.tgz#ae59c8a00b121543a2acc65c0434f57b0fc11aff" | 11759 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-6.1.0.tgz#9111b4d7ea80acd40f5270d666621afa78b69514" |
11936 | integrity sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA== | 11760 | integrity sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w== |
11937 | 11761 | ||
11938 | webpack-bundle-analyzer@^3.0.2: | 11762 | webpack-bundle-analyzer@^3.0.2: |
11939 | version "3.8.0" | 11763 | version "3.8.0" |
@@ -12157,9 +11981,9 @@ webtorrent@^0.108.1: | |||
12157 | ut_pex "^2.0.0" | 11981 | ut_pex "^2.0.0" |
12158 | 11982 | ||
12159 | whatwg-fetch@^3.0.0: | 11983 | whatwg-fetch@^3.0.0: |
12160 | version "3.2.0" | 11984 | version "3.4.0" |
12161 | resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-3.2.0.tgz#8e134f701f0a4ab5fda82626f113e2b647fd16dc" | 11985 | resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-3.4.0.tgz#e11de14f4878f773fbebcde8871b2c0699af8b30" |
12162 | integrity sha512-SdGPoQMMnzVYThUbSrEvqTlkvC1Ux27NehaJ/GUHBfNrh5Mjg+1/uRyFMwVnxO2MrikMWvWAqUGgQOfVU4hT7w== | 11986 | integrity sha512-rsum2ulz2iuZH08mJkT0Yi6JnKhwdw4oeyMjokgxd+mmqYSd9cPpOQf01TIWgjxG/U4+QR+AwKq6lSbXVxkyoQ== |
12163 | 11987 | ||
12164 | whatwg-mimetype@^2.3.0: | 11988 | whatwg-mimetype@^2.3.0: |
12165 | version "2.3.0" | 11989 | version "2.3.0" |
@@ -12167,13 +11991,13 @@ whatwg-mimetype@^2.3.0: | |||
12167 | integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g== | 11991 | integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g== |
12168 | 11992 | ||
12169 | whatwg-url@^8.0.0: | 11993 | whatwg-url@^8.0.0: |
12170 | version "8.1.0" | 11994 | version "8.2.0" |
12171 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-8.1.0.tgz#c628acdcf45b82274ce7281ee31dd3c839791771" | 11995 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-8.2.0.tgz#89383f80ea3888734d1cf29526c135d52e60166d" |
12172 | integrity sha512-vEIkwNi9Hqt4TV9RdnaBPNt+E2Sgmo3gePebCRgZ1R7g6d23+53zCTnuB0amKI4AXq6VM8jj2DUAa0S1vjJxkw== | 11996 | integrity sha512-Sl4svq71j4kzaFD13uxkVl2AIsbj/xwp8NTM1VMhFRyNT1ZMTWaV6+Pva0fQs7y8+cAEPrDGfCAFLvJejhT79g== |
12173 | dependencies: | 11997 | dependencies: |
12174 | lodash.sortby "^4.7.0" | 11998 | lodash.sortby "^4.7.0" |
12175 | tr46 "^2.0.2" | 11999 | tr46 "^2.0.2" |
12176 | webidl-conversions "^5.0.0" | 12000 | webidl-conversions "^6.1.0" |
12177 | 12001 | ||
12178 | when@~3.6.x: | 12002 | when@~3.6.x: |
12179 | version "3.6.4" | 12003 | version "3.6.4" |
@@ -12211,10 +12035,10 @@ worker-farm@^1.7.0: | |||
12211 | dependencies: | 12035 | dependencies: |
12212 | errno "~0.1.7" | 12036 | errno "~0.1.7" |
12213 | 12037 | ||
12214 | worker-plugin@4.0.3: | 12038 | worker-plugin@5.0.0: |
12215 | version "4.0.3" | 12039 | version "5.0.0" |
12216 | resolved "https://registry.yarnpkg.com/worker-plugin/-/worker-plugin-4.0.3.tgz#7c42e600d5931ad154d3d5f187a32446df64db0f" | 12040 | resolved "https://registry.yarnpkg.com/worker-plugin/-/worker-plugin-5.0.0.tgz#113b5fe1f4a5d6a957cecd29915bedafd70bb537" |
12217 | integrity sha512-7hFDYWiKcE3yHZvemsoM9lZis/PzurHAEX1ej8PLCu818Rt6QqUAiDdxHPCKZctzmhqzPpcFSgvMCiPbtooqAg== | 12041 | integrity sha512-AXMUstURCxDD6yGam2r4E34aJg6kW85IiaeX72hi+I1cxyaMUtrvVY6sbfpGKAj5e7f68Acl62BjQF5aOOx2IQ== |
12218 | dependencies: | 12042 | dependencies: |
12219 | loader-utils "^1.1.0" | 12043 | loader-utils "^1.1.0" |
12220 | 12044 | ||
@@ -12425,7 +12249,7 @@ yeast@0.1.2: | |||
12425 | resolved "https://registry.yarnpkg.com/yeast/-/yeast-0.1.2.tgz#008e06d8094320c372dbc2f8ed76a0ca6c8ac419" | 12249 | resolved "https://registry.yarnpkg.com/yeast/-/yeast-0.1.2.tgz#008e06d8094320c372dbc2f8ed76a0ca6c8ac419" |
12426 | integrity sha1-AI4G2AlDIMNy28L47XagymyKxBk= | 12250 | integrity sha1-AI4G2AlDIMNy28L47XagymyKxBk= |
12427 | 12251 | ||
12428 | zone.js@~0.10.2: | 12252 | zone.js@~0.10.2, zone.js@~0.10.3: |
12429 | version "0.10.3" | 12253 | version "0.10.3" |
12430 | resolved "https://registry.yarnpkg.com/zone.js/-/zone.js-0.10.3.tgz#3e5e4da03c607c9dcd92e37dd35687a14a140c16" | 12254 | resolved "https://registry.yarnpkg.com/zone.js/-/zone.js-0.10.3.tgz#3e5e4da03c607c9dcd92e37dd35687a14a140c16" |
12431 | integrity sha512-LXVLVEq0NNOqK/fLJo3d0kfzd4sxwn2/h67/02pjCjfKDxgx1i9QqpvtHD8CrBnSSwMw5+dy11O7FRX5mkO7Cg== | 12255 | integrity sha512-LXVLVEq0NNOqK/fLJo3d0kfzd4sxwn2/h67/02pjCjfKDxgx1i9QqpvtHD8CrBnSSwMw5+dy11O7FRX5mkO7Cg== |
diff --git a/package.json b/package.json index 946b53018..a39e25a57 100644 --- a/package.json +++ b/package.json | |||
@@ -79,7 +79,7 @@ | |||
79 | "sass-lint": "sass-lint" | 79 | "sass-lint": "sass-lint" |
80 | }, | 80 | }, |
81 | "resolutions": { | 81 | "resolutions": { |
82 | "oauth2-server": "^3.1.0-beta.1", | 82 | "oauth2-server": "3.1.0-beta.1", |
83 | "http-signature": "1.3.4" | 83 | "http-signature": "1.3.4" |
84 | }, | 84 | }, |
85 | "dependencies": { | 85 | "dependencies": { |
@@ -92,7 +92,7 @@ | |||
92 | "body-parser": "^1.12.4", | 92 | "body-parser": "^1.12.4", |
93 | "bull": "^3.4.2", | 93 | "bull": "^3.4.2", |
94 | "bytes": "^3.0.0", | 94 | "bytes": "^3.0.0", |
95 | "commander": "^5.0.0", | 95 | "commander": "^6.0.0", |
96 | "config": "^3.0.0", | 96 | "config": "^3.0.0", |
97 | "cookie-parser": "^1.4.3", | 97 | "cookie-parser": "^1.4.3", |
98 | "cors": "^2.8.1", | 98 | "cors": "^2.8.1", |
@@ -106,17 +106,17 @@ | |||
106 | "flat": "^5.0.0", | 106 | "flat": "^5.0.0", |
107 | "fluent-ffmpeg": "^2.1.0", | 107 | "fluent-ffmpeg": "^2.1.0", |
108 | "fs-extra": "^9.0.0", | 108 | "fs-extra": "^9.0.0", |
109 | "helmet": "^3.12.1", | 109 | "helmet": "^4.1.0", |
110 | "http-signature": "1.3.4", | 110 | "http-signature": "1.3.4", |
111 | "ip-anonymize": "^0.1.0", | 111 | "ip-anonymize": "^0.1.0", |
112 | "ipaddr.js": "1.9.1", | 112 | "ipaddr.js": "2.0.0", |
113 | "is-cidr": "^4.0.0", | 113 | "is-cidr": "^4.0.0", |
114 | "iso-639-3": "^2.0.0", | 114 | "iso-639-3": "^2.0.0", |
115 | "jimp": "^0.13.0", | 115 | "jimp": "^0.16.0", |
116 | "js-yaml": "^3.5.4", | 116 | "js-yaml": "^3.5.4", |
117 | "jsonld": "~3.1.1", | 117 | "jsonld": "~3.1.1", |
118 | "lodash": "^4.17.10", | 118 | "lodash": "^4.17.10", |
119 | "lru-cache": "^5.1.1", | 119 | "lru-cache": "^6.0.0", |
120 | "magnet-uri": "^5.1.4", | 120 | "magnet-uri": "^5.1.4", |
121 | "memoizee": "^0.4.14", | 121 | "memoizee": "^0.4.14", |
122 | "morgan": "^1.5.3", | 122 | "morgan": "^1.5.3", |
@@ -146,19 +146,19 @@ | |||
146 | "validator": "^13.0.0", | 146 | "validator": "^13.0.0", |
147 | "webfinger.js": "^2.6.6", | 147 | "webfinger.js": "^2.6.6", |
148 | "webtorrent": "^0.108.6", | 148 | "webtorrent": "^0.108.6", |
149 | "winston": "3.2.1", | 149 | "winston": "3.3.3", |
150 | "ws": "^7.0.0", | 150 | "ws": "^7.0.0", |
151 | "youtube-dl": "^3.0.2" | 151 | "youtube-dl": "^3.0.2" |
152 | }, | 152 | }, |
153 | "devDependencies": { | 153 | "devDependencies": { |
154 | "@openapitools/openapi-generator-cli": "^1.0.13-4.3.1", | 154 | "@openapitools/openapi-generator-cli": "^1.0.15-4.3.1", |
155 | "@types/apicache": "^1.2.0", | 155 | "@types/apicache": "^1.2.0", |
156 | "@types/async": "^3.0.0", | 156 | "@types/async": "^3.0.0", |
157 | "@types/async-lock": "^1.1.0", | 157 | "@types/async-lock": "^1.1.0", |
158 | "@types/bcrypt": "^3.0.0", | 158 | "@types/bcrypt": "^3.0.0", |
159 | "@types/bluebird": "3.5.32", | 159 | "@types/bluebird": "3.5.32", |
160 | "@types/body-parser": "^1.16.3", | 160 | "@types/body-parser": "^1.16.3", |
161 | "@types/bull": "3.14.0", | 161 | "@types/bull": "3.14.2", |
162 | "@types/bytes": "^3.0.0", | 162 | "@types/bytes": "^3.0.0", |
163 | "@types/chai": "^4.0.4", | 163 | "@types/chai": "^4.0.4", |
164 | "@types/chai-json-schema": "^1.4.3", | 164 | "@types/chai-json-schema": "^1.4.3", |
@@ -175,7 +175,7 @@ | |||
175 | "@types/maildev": "^0.0.1", | 175 | "@types/maildev": "^0.0.1", |
176 | "@types/memoizee": "^0.4.2", | 176 | "@types/memoizee": "^0.4.2", |
177 | "@types/mkdirp": "^1.0.0", | 177 | "@types/mkdirp": "^1.0.0", |
178 | "@types/mocha": "^7.0.1", | 178 | "@types/mocha": "^8.0.3", |
179 | "@types/morgan": "^1.7.32", | 179 | "@types/morgan": "^1.7.32", |
180 | "@types/multer": "^1.3.3", | 180 | "@types/multer": "^1.3.3", |
181 | "@types/node": "^14.0.13", | 181 | "@types/node": "^14.0.13", |
@@ -210,7 +210,7 @@ | |||
210 | "source-map-support": "^0.5.0", | 210 | "source-map-support": "^0.5.0", |
211 | "supertest": "^4.0.2", | 211 | "supertest": "^4.0.2", |
212 | "swagger-cli": "^4.0.2", | 212 | "swagger-cli": "^4.0.2", |
213 | "ts-node": "8.10.2", | 213 | "ts-node": "9.0.0", |
214 | "typescript": "^3.7.2" | 214 | "typescript": "^3.7.2" |
215 | }, | 215 | }, |
216 | "scripty": { | 216 | "scripty": { |
diff --git a/scripts/i18n/update.sh b/scripts/i18n/update.sh index 916918f84..f42d8d38a 100755 --- a/scripts/i18n/update.sh +++ b/scripts/i18n/update.sh | |||
@@ -9,9 +9,6 @@ npm run build -- --i18n | |||
9 | cd client | 9 | cd client |
10 | ./node_modules/.bin/localize-extract -r . -f xliff --locale "en-US" -s 'dist/en-US/*.js' -o src/locale/angular.xlf | 10 | ./node_modules/.bin/localize-extract -r . -f xliff --locale "en-US" -s 'dist/en-US/*.js' -o src/locale/angular.xlf |
11 | 11 | ||
12 | # Workaround of https://github.com/angular/angular/issues/38437 | ||
13 | sed -i 's/other {{INTERPOLATION}/other {<x id="INTERPOLATION"\/>/g' src/locale/angular.xlf | ||
14 | |||
15 | # Merge new translations in other language files | 12 | # Merge new translations in other language files |
16 | npm run ng run -- PeerTube:xliffmerge | 13 | npm run ng run -- PeerTube:xliffmerge |
17 | 14 | ||
diff --git a/server/initializers/config.ts b/server/initializers/config.ts index 04ba605b6..b40e525a5 100644 --- a/server/initializers/config.ts +++ b/server/initializers/config.ts | |||
@@ -125,7 +125,7 @@ const CONFIG = { | |||
125 | CSP: { | 125 | CSP: { |
126 | ENABLED: config.get<boolean>('csp.enabled'), | 126 | ENABLED: config.get<boolean>('csp.enabled'), |
127 | REPORT_ONLY: config.get<boolean>('csp.report_only'), | 127 | REPORT_ONLY: config.get<boolean>('csp.report_only'), |
128 | REPORT_URI: config.get<boolean>('csp.report_uri') | 128 | REPORT_URI: config.get<string>('csp.report_uri') |
129 | }, | 129 | }, |
130 | TRACKER: { | 130 | TRACKER: { |
131 | ENABLED: config.get<boolean>('tracker.enabled'), | 131 | ENABLED: config.get<boolean>('tracker.enabled'), |
diff --git a/server/initializers/constants.ts b/server/initializers/constants.ts index c26c3a88c..171e9e9c2 100644 --- a/server/initializers/constants.ts +++ b/server/initializers/constants.ts | |||
@@ -545,8 +545,8 @@ const STATIC_DOWNLOAD_PATHS = { | |||
545 | } | 545 | } |
546 | const LAZY_STATIC_PATHS = { | 546 | const LAZY_STATIC_PATHS = { |
547 | AVATARS: '/lazy-static/avatars/', | 547 | AVATARS: '/lazy-static/avatars/', |
548 | PREVIEWS: '/static/previews/', | 548 | PREVIEWS: '/lazy-static/previews/', |
549 | VIDEO_CAPTIONS: '/static/video-captions/' | 549 | VIDEO_CAPTIONS: '/lazy-static/video-captions/' |
550 | } | 550 | } |
551 | 551 | ||
552 | // Cache control | 552 | // Cache control |
diff --git a/server/lib/client-html.ts b/server/lib/client-html.ts index 9f668dedb..926d6e93f 100644 --- a/server/lib/client-html.ts +++ b/server/lib/client-html.ts | |||
@@ -173,8 +173,6 @@ export class ClientHtml { | |||
173 | 173 | ||
174 | static async getEmbedHTML () { | 174 | static async getEmbedHTML () { |
175 | const path = ClientHtml.getEmbedPath() | 175 | const path = ClientHtml.getEmbedPath() |
176 | console.log('coucu') | ||
177 | console.log(path) | ||
178 | 176 | ||
179 | if (ClientHtml.htmlCache[path]) return ClientHtml.htmlCache[path] | 177 | if (ClientHtml.htmlCache[path]) return ClientHtml.htmlCache[path] |
180 | 178 | ||
diff --git a/server/middlewares/csp.ts b/server/middlewares/csp.ts index f5de69603..0ee44bf47 100644 --- a/server/middlewares/csp.ts +++ b/server/middlewares/csp.ts | |||
@@ -19,18 +19,16 @@ const baseDirectives = Object.assign({}, | |||
19 | workerSrc: [ '\'self\'', 'blob:' ] // instead of deprecated child-src | 19 | workerSrc: [ '\'self\'', 'blob:' ] // instead of deprecated child-src |
20 | }, | 20 | }, |
21 | CONFIG.CSP.REPORT_URI ? { reportUri: CONFIG.CSP.REPORT_URI } : {}, | 21 | CONFIG.CSP.REPORT_URI ? { reportUri: CONFIG.CSP.REPORT_URI } : {}, |
22 | CONFIG.WEBSERVER.SCHEME === 'https' ? { upgradeInsecureRequests: true } : {} | 22 | CONFIG.WEBSERVER.SCHEME === 'https' ? { upgradeInsecureRequests: [] } : {} |
23 | ) | 23 | ) |
24 | 24 | ||
25 | const baseCSP = helmet.contentSecurityPolicy({ | 25 | const baseCSP = helmet.contentSecurityPolicy({ |
26 | directives: baseDirectives, | 26 | directives: baseDirectives, |
27 | browserSniff: false, | ||
28 | reportOnly: CONFIG.CSP.REPORT_ONLY | 27 | reportOnly: CONFIG.CSP.REPORT_ONLY |
29 | }) | 28 | }) |
30 | 29 | ||
31 | const embedCSP = helmet.contentSecurityPolicy({ | 30 | const embedCSP = helmet.contentSecurityPolicy({ |
32 | directives: Object.assign({}, baseDirectives, { frameAncestors: [ '*' ] }), | 31 | directives: Object.assign({}, baseDirectives, { frameAncestors: [ '*' ] }), |
33 | browserSniff: false, // assumes a modern browser, but allows CDN in front | ||
34 | reportOnly: CONFIG.CSP.REPORT_ONLY | 32 | reportOnly: CONFIG.CSP.REPORT_ONLY |
35 | }) | 33 | }) |
36 | 34 | ||
diff --git a/server/middlewares/validators/videos/videos.ts b/server/middlewares/validators/videos/videos.ts index 40a34d3b8..b022b2c23 100644 --- a/server/middlewares/validators/videos/videos.ts +++ b/server/middlewares/validators/videos/videos.ts | |||
@@ -1,6 +1,9 @@ | |||
1 | import * as express from 'express' | 1 | import * as express from 'express' |
2 | import { body, param, query, ValidationChain } from 'express-validator' | 2 | import { body, param, query, ValidationChain } from 'express-validator' |
3 | import { UserRight, VideoChangeOwnershipStatus, VideoPrivacy } from '../../../../shared' | 3 | import { getServerActor } from '@server/models/application/application' |
4 | import { MVideoFullLight } from '@server/types/models' | ||
5 | import { ServerErrorCode, UserRight, VideoChangeOwnershipStatus, VideoPrivacy } from '../../../../shared' | ||
6 | import { VideoChangeOwnershipAccept } from '../../../../shared/models/videos/video-change-ownership-accept.model' | ||
4 | import { | 7 | import { |
5 | isBooleanValid, | 8 | isBooleanValid, |
6 | isDateValid, | 9 | isDateValid, |
@@ -12,6 +15,8 @@ import { | |||
12 | toIntOrNull, | 15 | toIntOrNull, |
13 | toValueOrNull | 16 | toValueOrNull |
14 | } from '../../../helpers/custom-validators/misc' | 17 | } from '../../../helpers/custom-validators/misc' |
18 | import { isNSFWQueryValid, isNumberArray, isStringArray } from '../../../helpers/custom-validators/search' | ||
19 | import { checkUserCanTerminateOwnershipChange, doesChangeVideoOwnershipExist } from '../../../helpers/custom-validators/video-ownership' | ||
15 | import { | 20 | import { |
16 | isScheduleVideoUpdatePrivacyValid, | 21 | isScheduleVideoUpdatePrivacyValid, |
17 | isVideoCategoryValid, | 22 | isVideoCategoryValid, |
@@ -27,29 +32,24 @@ import { | |||
27 | isVideoSupportValid, | 32 | isVideoSupportValid, |
28 | isVideoTagsValid | 33 | isVideoTagsValid |
29 | } from '../../../helpers/custom-validators/videos' | 34 | } from '../../../helpers/custom-validators/videos' |
35 | import { cleanUpReqFiles } from '../../../helpers/express-utils' | ||
30 | import { getDurationFromVideoFile } from '../../../helpers/ffmpeg-utils' | 36 | import { getDurationFromVideoFile } from '../../../helpers/ffmpeg-utils' |
31 | import { logger } from '../../../helpers/logger' | 37 | import { logger } from '../../../helpers/logger' |
32 | import { CONSTRAINTS_FIELDS, OVERVIEWS } from '../../../initializers/constants' | ||
33 | import { authenticatePromiseIfNeeded } from '../../oauth' | ||
34 | import { areValidationErrors } from '../utils' | ||
35 | import { cleanUpReqFiles } from '../../../helpers/express-utils' | ||
36 | import { VideoModel } from '../../../models/video/video' | ||
37 | import { checkUserCanTerminateOwnershipChange, doesChangeVideoOwnershipExist } from '../../../helpers/custom-validators/video-ownership' | ||
38 | import { VideoChangeOwnershipAccept } from '../../../../shared/models/videos/video-change-ownership-accept.model' | ||
39 | import { AccountModel } from '../../../models/account/account' | ||
40 | import { isNSFWQueryValid, isNumberArray, isStringArray } from '../../../helpers/custom-validators/search' | ||
41 | import { CONFIG } from '../../../initializers/config' | ||
42 | import { isLocalVideoAccepted } from '../../../lib/moderation' | ||
43 | import { Hooks } from '../../../lib/plugins/hooks' | ||
44 | import { | 38 | import { |
45 | checkUserCanManageVideo, | 39 | checkUserCanManageVideo, |
46 | doesVideoChannelOfAccountExist, | 40 | doesVideoChannelOfAccountExist, |
47 | doesVideoExist, | 41 | doesVideoExist, |
48 | doesVideoFileOfVideoExist | 42 | doesVideoFileOfVideoExist |
49 | } from '../../../helpers/middlewares' | 43 | } from '../../../helpers/middlewares' |
50 | import { MVideoFullLight } from '@server/types/models' | ||
51 | import { getVideoWithAttributes } from '../../../helpers/video' | 44 | import { getVideoWithAttributes } from '../../../helpers/video' |
52 | import { getServerActor } from '@server/models/application/application' | 45 | import { CONFIG } from '../../../initializers/config' |
46 | import { CONSTRAINTS_FIELDS, OVERVIEWS } from '../../../initializers/constants' | ||
47 | import { isLocalVideoAccepted } from '../../../lib/moderation' | ||
48 | import { Hooks } from '../../../lib/plugins/hooks' | ||
49 | import { AccountModel } from '../../../models/account/account' | ||
50 | import { VideoModel } from '../../../models/video/video' | ||
51 | import { authenticatePromiseIfNeeded } from '../../oauth' | ||
52 | import { areValidationErrors } from '../utils' | ||
53 | 53 | ||
54 | const videosAddValidator = getCommonVideoEditAttributes().concat([ | 54 | const videosAddValidator = getCommonVideoEditAttributes().concat([ |
55 | body('videofile') | 55 | body('videofile') |
@@ -148,7 +148,9 @@ async function checkVideoFollowConstraints (req: express.Request, res: express.R | |||
148 | 148 | ||
149 | return res.status(403) | 149 | return res.status(403) |
150 | .json({ | 150 | .json({ |
151 | error: 'Cannot get this video regarding follow constraints.' | 151 | errorCode: ServerErrorCode.DOES_NOT_RESPECT_FOLLOW_CONSTRAINTS, |
152 | error: 'Cannot get this video regarding follow constraints.', | ||
153 | originUrl: video.url | ||
152 | }) | 154 | }) |
153 | } | 155 | } |
154 | 156 | ||
diff --git a/server/tests/api/server/follows.ts b/server/tests/api/server/follows.ts index 1ae1adb2d..9233a210b 100644 --- a/server/tests/api/server/follows.ts +++ b/server/tests/api/server/follows.ts | |||
@@ -558,7 +558,7 @@ describe('Test follows', function () { | |||
558 | const caption1: VideoCaption = res.body.data[0] | 558 | const caption1: VideoCaption = res.body.data[0] |
559 | expect(caption1.language.id).to.equal('ar') | 559 | expect(caption1.language.id).to.equal('ar') |
560 | expect(caption1.language.label).to.equal('Arabic') | 560 | expect(caption1.language.label).to.equal('Arabic') |
561 | expect(caption1.captionPath).to.equal('/static/video-captions/' + video4.uuid + '-ar.vtt') | 561 | expect(caption1.captionPath).to.equal('/lazy-static/video-captions/' + video4.uuid + '-ar.vtt') |
562 | await testCaptionFile(servers[0].url, caption1.captionPath, 'Subtitle good 2.') | 562 | await testCaptionFile(servers[0].url, caption1.captionPath, 'Subtitle good 2.') |
563 | }) | 563 | }) |
564 | 564 | ||
diff --git a/server/tests/api/server/services.ts b/server/tests/api/server/services.ts index 897f37c04..680e7a817 100644 --- a/server/tests/api/server/services.ts +++ b/server/tests/api/server/services.ts | |||
@@ -70,7 +70,7 @@ describe('Test services', function () { | |||
70 | const expectedHtml = '<iframe width="560" height="315" sandbox="allow-same-origin allow-scripts" ' + | 70 | const expectedHtml = '<iframe width="560" height="315" sandbox="allow-same-origin allow-scripts" ' + |
71 | `src="http://localhost:${server.port}/videos/embed/${server.video.uuid}" ` + | 71 | `src="http://localhost:${server.port}/videos/embed/${server.video.uuid}" ` + |
72 | 'frameborder="0" allowfullscreen></iframe>' | 72 | 'frameborder="0" allowfullscreen></iframe>' |
73 | const expectedThumbnailUrl = 'http://localhost:' + server.port + '/static/previews/' + server.video.uuid + '.jpg' | 73 | const expectedThumbnailUrl = 'http://localhost:' + server.port + '/lazy-static/previews/' + server.video.uuid + '.jpg' |
74 | 74 | ||
75 | expect(res.body.html).to.equal(expectedHtml) | 75 | expect(res.body.html).to.equal(expectedHtml) |
76 | expect(res.body.title).to.equal(server.video.name) | 76 | expect(res.body.title).to.equal(server.video.name) |
diff --git a/server/tests/api/videos/video-captions.ts b/server/tests/api/videos/video-captions.ts index b4ecb39f4..00e04d69d 100644 --- a/server/tests/api/videos/video-captions.ts +++ b/server/tests/api/videos/video-captions.ts | |||
@@ -83,13 +83,13 @@ describe('Test video captions', function () { | |||
83 | const caption1: VideoCaption = res.body.data[0] | 83 | const caption1: VideoCaption = res.body.data[0] |
84 | expect(caption1.language.id).to.equal('ar') | 84 | expect(caption1.language.id).to.equal('ar') |
85 | expect(caption1.language.label).to.equal('Arabic') | 85 | expect(caption1.language.label).to.equal('Arabic') |
86 | expect(caption1.captionPath).to.equal('/static/video-captions/' + videoUUID + '-ar.vtt') | 86 | expect(caption1.captionPath).to.equal('/lazy-static/video-captions/' + videoUUID + '-ar.vtt') |
87 | await testCaptionFile(server.url, caption1.captionPath, 'Subtitle good 1.') | 87 | await testCaptionFile(server.url, caption1.captionPath, 'Subtitle good 1.') |
88 | 88 | ||
89 | const caption2: VideoCaption = res.body.data[1] | 89 | const caption2: VideoCaption = res.body.data[1] |
90 | expect(caption2.language.id).to.equal('zh') | 90 | expect(caption2.language.id).to.equal('zh') |
91 | expect(caption2.language.label).to.equal('Chinese') | 91 | expect(caption2.language.label).to.equal('Chinese') |
92 | expect(caption2.captionPath).to.equal('/static/video-captions/' + videoUUID + '-zh.vtt') | 92 | expect(caption2.captionPath).to.equal('/lazy-static/video-captions/' + videoUUID + '-zh.vtt') |
93 | await testCaptionFile(server.url, caption2.captionPath, 'Subtitle good 2.') | 93 | await testCaptionFile(server.url, caption2.captionPath, 'Subtitle good 2.') |
94 | } | 94 | } |
95 | }) | 95 | }) |
@@ -117,7 +117,7 @@ describe('Test video captions', function () { | |||
117 | const caption1: VideoCaption = res.body.data[0] | 117 | const caption1: VideoCaption = res.body.data[0] |
118 | expect(caption1.language.id).to.equal('ar') | 118 | expect(caption1.language.id).to.equal('ar') |
119 | expect(caption1.language.label).to.equal('Arabic') | 119 | expect(caption1.language.label).to.equal('Arabic') |
120 | expect(caption1.captionPath).to.equal('/static/video-captions/' + videoUUID + '-ar.vtt') | 120 | expect(caption1.captionPath).to.equal('/lazy-static/video-captions/' + videoUUID + '-ar.vtt') |
121 | await testCaptionFile(server.url, caption1.captionPath, 'Subtitle good 2.') | 121 | await testCaptionFile(server.url, caption1.captionPath, 'Subtitle good 2.') |
122 | } | 122 | } |
123 | }) | 123 | }) |
@@ -148,7 +148,7 @@ describe('Test video captions', function () { | |||
148 | const caption1: VideoCaption = res.body.data[0] | 148 | const caption1: VideoCaption = res.body.data[0] |
149 | expect(caption1.language.id).to.equal('ar') | 149 | expect(caption1.language.id).to.equal('ar') |
150 | expect(caption1.language.label).to.equal('Arabic') | 150 | expect(caption1.language.label).to.equal('Arabic') |
151 | expect(caption1.captionPath).to.equal('/static/video-captions/' + videoUUID + '-ar.vtt') | 151 | expect(caption1.captionPath).to.equal('/lazy-static/video-captions/' + videoUUID + '-ar.vtt') |
152 | 152 | ||
153 | const expected = 'WEBVTT FILE\r\n' + | 153 | const expected = 'WEBVTT FILE\r\n' + |
154 | '\r\n' + | 154 | '\r\n' + |
@@ -185,7 +185,7 @@ describe('Test video captions', function () { | |||
185 | 185 | ||
186 | expect(caption.language.id).to.equal('zh') | 186 | expect(caption.language.id).to.equal('zh') |
187 | expect(caption.language.label).to.equal('Chinese') | 187 | expect(caption.language.label).to.equal('Chinese') |
188 | expect(caption.captionPath).to.equal('/static/video-captions/' + videoUUID + '-zh.vtt') | 188 | expect(caption.captionPath).to.equal('/lazy-static/video-captions/' + videoUUID + '-zh.vtt') |
189 | await testCaptionFile(server.url, caption.captionPath, 'Subtitle good 2.') | 189 | await testCaptionFile(server.url, caption.captionPath, 'Subtitle good 2.') |
190 | } | 190 | } |
191 | }) | 191 | }) |
diff --git a/server/tests/api/videos/video-imports.ts b/server/tests/api/videos/video-imports.ts index efda4fc7b..8d19a4274 100644 --- a/server/tests/api/videos/video-imports.ts +++ b/server/tests/api/videos/video-imports.ts | |||
@@ -123,7 +123,7 @@ describe('Test video imports', function () { | |||
123 | const res = await importVideo(servers[0].url, servers[0].accessToken, attributes) | 123 | const res = await importVideo(servers[0].url, servers[0].accessToken, attributes) |
124 | expect(res.body.video.name).to.equal('small video - youtube') | 124 | expect(res.body.video.name).to.equal('small video - youtube') |
125 | expect(res.body.video.thumbnailPath).to.equal(`/static/thumbnails/${res.body.video.uuid}.jpg`) | 125 | expect(res.body.video.thumbnailPath).to.equal(`/static/thumbnails/${res.body.video.uuid}.jpg`) |
126 | expect(res.body.video.previewPath).to.equal(`/static/previews/${res.body.video.uuid}.jpg`) | 126 | expect(res.body.video.previewPath).to.equal(`/lazy-static/previews/${res.body.video.uuid}.jpg`) |
127 | await testImage(servers[0].url, 'video_import_thumbnail', res.body.video.thumbnailPath) | 127 | await testImage(servers[0].url, 'video_import_thumbnail', res.body.video.thumbnailPath) |
128 | await testImage(servers[0].url, 'video_import_preview', res.body.video.previewPath) | 128 | await testImage(servers[0].url, 'video_import_preview', res.body.video.previewPath) |
129 | 129 | ||
@@ -134,7 +134,7 @@ describe('Test video imports', function () { | |||
134 | const enCaption = videoCaptions.find(caption => caption.language.id === 'en') | 134 | const enCaption = videoCaptions.find(caption => caption.language.id === 'en') |
135 | expect(enCaption).to.exist | 135 | expect(enCaption).to.exist |
136 | expect(enCaption.language.label).to.equal('English') | 136 | expect(enCaption.language.label).to.equal('English') |
137 | expect(enCaption.captionPath).to.equal(`/static/video-captions/${res.body.video.uuid}-en.vtt`) | 137 | expect(enCaption.captionPath).to.equal(`/lazy-static/video-captions/${res.body.video.uuid}-en.vtt`) |
138 | await testCaptionFile(servers[0].url, enCaption.captionPath, `WEBVTT | 138 | await testCaptionFile(servers[0].url, enCaption.captionPath, `WEBVTT |
139 | Kind: captions | 139 | Kind: captions |
140 | Language: en | 140 | Language: en |
@@ -151,7 +151,7 @@ Adding subtitles is very easy to do`) | |||
151 | const frCaption = videoCaptions.find(caption => caption.language.id === 'fr') | 151 | const frCaption = videoCaptions.find(caption => caption.language.id === 'fr') |
152 | expect(frCaption).to.exist | 152 | expect(frCaption).to.exist |
153 | expect(frCaption.language.label).to.equal('French') | 153 | expect(frCaption.language.label).to.equal('French') |
154 | expect(frCaption.captionPath).to.equal(`/static/video-captions/${res.body.video.uuid}-fr.vtt`) | 154 | expect(frCaption.captionPath).to.equal(`/lazy-static/video-captions/${res.body.video.uuid}-fr.vtt`) |
155 | await testCaptionFile(servers[0].url, frCaption.captionPath, `WEBVTT | 155 | await testCaptionFile(servers[0].url, frCaption.captionPath, `WEBVTT |
156 | Kind: captions | 156 | Kind: captions |
157 | Language: fr | 157 | Language: fr |
diff --git a/shared/models/server/index.ts b/shared/models/server/index.ts index b079bc9a0..f253a3a79 100644 --- a/shared/models/server/index.ts +++ b/shared/models/server/index.ts | |||
@@ -7,4 +7,5 @@ export * from './emailer.model' | |||
7 | export * from './job.model' | 7 | export * from './job.model' |
8 | export * from './log-level.type' | 8 | export * from './log-level.type' |
9 | export * from './server-config.model' | 9 | export * from './server-config.model' |
10 | export * from './server-error-code.enum' | ||
10 | export * from './server-stats.model' | 11 | export * from './server-stats.model' |
diff --git a/shared/models/server/server-error-code.enum.ts b/shared/models/server/server-error-code.enum.ts new file mode 100644 index 000000000..0bfb2c470 --- /dev/null +++ b/shared/models/server/server-error-code.enum.ts | |||
@@ -0,0 +1,3 @@ | |||
1 | export const enum ServerErrorCode { | ||
2 | DOES_NOT_RESPECT_FOLLOW_CONSTRAINTS = 1 | ||
3 | } | ||
diff --git a/support/doc/api/openapi.yaml b/support/doc/api/openapi.yaml index 9922a3216..464dcfbce 100644 --- a/support/doc/api/openapi.yaml +++ b/support/doc/api/openapi.yaml | |||
@@ -3822,6 +3822,7 @@ components: | |||
3822 | format: url | 3822 | format: url |
3823 | files: | 3823 | files: |
3824 | type: array | 3824 | type: array |
3825 | description: 'Video files associated to this playlist. The difference with the root "files" property is that these files are fragmented, so they can be used in this streaming playlist (HLS etc)' | ||
3825 | items: | 3826 | items: |
3826 | $ref: '#/components/schemas/VideoFile' | 3827 | $ref: '#/components/schemas/VideoFile' |
3827 | redundancies: | 3828 | redundancies: |
@@ -3886,7 +3887,7 @@ components: | |||
3886 | example: /static/thumbnails/a65bc12f-9383-462e-81ae-8207e8b434ee.jpg | 3887 | example: /static/thumbnails/a65bc12f-9383-462e-81ae-8207e8b434ee.jpg |
3887 | previewPath: | 3888 | previewPath: |
3888 | type: string | 3889 | type: string |
3889 | example: /static/previews/a65bc12f-9383-462e-81ae-8207e8b434ee.jpg | 3890 | example: /lazy-static/previews/a65bc12f-9383-462e-81ae-8207e8b434ee.jpg |
3890 | embedPath: | 3891 | embedPath: |
3891 | type: string | 3892 | type: string |
3892 | example: /videos/embed/a65bc12f-9383-462e-81ae-8207e8b434ee | 3893 | example: /videos/embed/a65bc12f-9383-462e-81ae-8207e8b434ee |
@@ -3948,6 +3949,7 @@ components: | |||
3948 | example: [flowers, gardening] | 3949 | example: [flowers, gardening] |
3949 | files: | 3950 | files: |
3950 | type: array | 3951 | type: array |
3952 | description: 'WebTorrent/raw video files. Can be empty if WebTorrent is disabled on the server. In this case, video files will be in the "streamingPlaylists[].files" property' | ||
3951 | items: | 3953 | items: |
3952 | $ref: '#/components/schemas/VideoFile' | 3954 | $ref: '#/components/schemas/VideoFile' |
3953 | commentsEnabled: | 3955 | commentsEnabled: |
diff --git a/support/doc/production.md b/support/doc/production.md index effbb0cb2..5476a0522 100644 --- a/support/doc/production.md +++ b/support/doc/production.md | |||
@@ -160,7 +160,7 @@ If your OS uses systemd, copy the configuration template: | |||
160 | $ sudo cp /var/www/peertube/peertube-latest/support/systemd/peertube.service /etc/systemd/system/ | 160 | $ sudo cp /var/www/peertube/peertube-latest/support/systemd/peertube.service /etc/systemd/system/ |
161 | ``` | 161 | ``` |
162 | 162 | ||
163 | Update the service file: | 163 | Check the service file (PeerTube paths and security directives): |
164 | 164 | ||
165 | ``` | 165 | ``` |
166 | $ sudo vim /etc/systemd/system/peertube.service | 166 | $ sudo vim /etc/systemd/system/peertube.service |
@@ -2,90 +2,99 @@ | |||
2 | # yarn lockfile v1 | 2 | # yarn lockfile v1 |
3 | 3 | ||
4 | 4 | ||
5 | "@apidevtools/json-schema-ref-parser@^8.0.0": | 5 | "@apidevtools/json-schema-ref-parser@^9.0.5": |
6 | version "8.0.0" | 6 | version "9.0.6" |
7 | resolved "https://registry.yarnpkg.com/@apidevtools/json-schema-ref-parser/-/json-schema-ref-parser-8.0.0.tgz#9eb749499b3f8d919e90bb141e4b6f67aee4692d" | 7 | resolved "https://registry.yarnpkg.com/@apidevtools/json-schema-ref-parser/-/json-schema-ref-parser-9.0.6.tgz#5d9000a3ac1fd25404da886da6b266adcd99cf1c" |
8 | integrity sha512-n4YBtwQhdpLto1BaUCyAeflizmIbaloGShsPyRtFf5qdFJxfssj+GgLavczgKJFa3Bq+3St2CKcpRJdjtB4EBw== | 8 | integrity sha512-M3YgsLjI0lZxvrpeGVk9Ap032W6TPQkH6pRAZz81Ac3WUNF79VQooAFnp8umjvVzUmD93NkogxEwbSce7qMsUg== |
9 | dependencies: | 9 | dependencies: |
10 | "@jsdevtools/ono" "^7.1.0" | 10 | "@jsdevtools/ono" "^7.1.3" |
11 | call-me-maybe "^1.0.1" | 11 | call-me-maybe "^1.0.1" |
12 | js-yaml "^3.13.1" | 12 | js-yaml "^3.13.1" |
13 | 13 | ||
14 | "@apidevtools/openapi-schemas@^2.0.2": | 14 | "@apidevtools/openapi-schemas@^2.0.4": |
15 | version "2.0.3" | 15 | version "2.0.4" |
16 | resolved "https://registry.yarnpkg.com/@apidevtools/openapi-schemas/-/openapi-schemas-2.0.3.tgz#c21f198b445bc8b8a90cd4f97534b96deefdfcb4" | 16 | resolved "https://registry.yarnpkg.com/@apidevtools/openapi-schemas/-/openapi-schemas-2.0.4.tgz#bae1cef77ebb2b3705c7cc6911281da5153c1ab3" |
17 | integrity sha512-QoPaxGXfgqgGpK1p21FJ400z56hV681a8DOcZt3J5z0WIHgFeaIZ4+6bX5ATqmOoCpRCsH4ITEwKaOyFMz7wOA== | 17 | integrity sha512-ob5c4UiaMYkb24pNhvfSABShAwpREvUGCkqjiz/BX9gKZ32y/S22M+ALIHftTAuv9KsFVSpVdIDzi9ZzFh5TCA== |
18 | 18 | ||
19 | "@apidevtools/swagger-cli@4.0.3": | 19 | "@apidevtools/swagger-cli@4.0.4": |
20 | version "4.0.3" | 20 | version "4.0.4" |
21 | resolved "https://registry.yarnpkg.com/@apidevtools/swagger-cli/-/swagger-cli-4.0.3.tgz#9691019589a20c210479d3e0e32f5d8b313b264c" | 21 | resolved "https://registry.yarnpkg.com/@apidevtools/swagger-cli/-/swagger-cli-4.0.4.tgz#c645c291f56e4add583111aca9edeee23d60fa10" |
22 | integrity sha512-HAs7WAZZVf6YvPlWFXSjhAE+x5TJS/EzoNqygEX9xBB509GEdvcLmahapql/1ng0iIEgj44tJU6kirCKMhDAzw== | 22 | integrity sha512-hdDT3B6GLVovCsRZYDi3+wMcB1HfetTU20l2DC8zD3iFRNMC6QNAZG5fo/6PYeHWBEv7ri4MvnlKodhNB0nt7g== |
23 | dependencies: | 23 | dependencies: |
24 | "@apidevtools/swagger-parser" "^9.0.1" | 24 | "@apidevtools/swagger-parser" "^10.0.1" |
25 | chalk "^4.0.0" | 25 | chalk "^4.1.0" |
26 | js-yaml "^3.14.0" | 26 | js-yaml "^3.14.0" |
27 | yargs "^15.3.1" | 27 | yargs "^15.4.1" |
28 | 28 | ||
29 | "@apidevtools/swagger-methods@^3.0.0": | 29 | "@apidevtools/swagger-methods@^3.0.2": |
30 | version "3.0.1" | 30 | version "3.0.2" |
31 | resolved "https://registry.yarnpkg.com/@apidevtools/swagger-methods/-/swagger-methods-3.0.1.tgz#cf3b1c6b92f811d3f14d51645d277fb54ddd5211" | 31 | resolved "https://registry.yarnpkg.com/@apidevtools/swagger-methods/-/swagger-methods-3.0.2.tgz#b789a362e055b0340d04712eafe7027ddc1ac267" |
32 | integrity sha512-1Vlm18XYW6Yg7uHunroXeunWz5FShPFAdxBbPy8H6niB2Elz9QQsCoYHMbcc11EL1pTxaIr9HXz2An/mHXlX1Q== | 32 | integrity sha512-QAkD5kK2b1WfjDS/UQn/qQkbwF31uqRjPTrsCs5ZG9BQGAkjwvqGFjjPqAuzac/IYzpPtRzjCP1WrTuAIjMrXg== |
33 | 33 | ||
34 | "@apidevtools/swagger-parser@^9.0.1": | 34 | "@apidevtools/swagger-parser@^10.0.1": |
35 | version "9.0.1" | 35 | version "10.0.1" |
36 | resolved "https://registry.yarnpkg.com/@apidevtools/swagger-parser/-/swagger-parser-9.0.1.tgz#592e39dc412452ac4b34507a765e4d74ff6eda14" | 36 | resolved "https://registry.yarnpkg.com/@apidevtools/swagger-parser/-/swagger-parser-10.0.1.tgz#af3a02de99bcd4f76aa04d27721e56502d735c88" |
37 | integrity sha512-Irqybg4dQrcHhZcxJc/UM4vO7Ksoj1Id5e+K94XUOzllqX1n47HEA50EKiXTCQbykxuJ4cYGIivjx/MRSTC5OA== | 37 | integrity sha512-P5nva6hpXCK5NByGXbIJnFxd5FhQI9LGs+If0SMgKV+/5qlZnHH/B/6GtfnSPwSViRPL+7ARSzMcYIfGwjkW5Q== |
38 | dependencies: | 38 | dependencies: |
39 | "@apidevtools/json-schema-ref-parser" "^8.0.0" | 39 | "@apidevtools/json-schema-ref-parser" "^9.0.5" |
40 | "@apidevtools/openapi-schemas" "^2.0.2" | 40 | "@apidevtools/openapi-schemas" "^2.0.4" |
41 | "@apidevtools/swagger-methods" "^3.0.0" | 41 | "@apidevtools/swagger-methods" "^3.0.2" |
42 | "@jsdevtools/ono" "^7.1.0" | 42 | "@jsdevtools/ono" "^7.1.3" |
43 | call-me-maybe "^1.0.1" | 43 | call-me-maybe "^1.0.1" |
44 | openapi-types "^1.3.5" | 44 | openapi-types "^1.3.5" |
45 | z-schema "^4.2.2" | 45 | z-schema "^4.2.3" |
46 | 46 | ||
47 | "@babel/code-frame@^7.0.0": | 47 | "@babel/code-frame@^7.0.0": |
48 | version "7.10.1" | 48 | version "7.10.4" |
49 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.1.tgz#d5481c5095daa1c57e16e54c6f9198443afb49ff" | 49 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.4.tgz#168da1a36e90da68ae8d49c0f1b48c7c6249213a" |
50 | integrity sha512-IGhtTmpjGbYzcEDOw7DcQtbQSXcG9ftmAXtWTu9V936vDye4xjjekktFAtgZsWpzTj/X01jocB46mTywm/4SZw== | 50 | integrity sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg== |
51 | dependencies: | 51 | dependencies: |
52 | "@babel/highlight" "^7.10.1" | 52 | "@babel/highlight" "^7.10.4" |
53 | 53 | ||
54 | "@babel/helper-validator-identifier@^7.10.1": | 54 | "@babel/helper-validator-identifier@^7.10.4": |
55 | version "7.10.1" | 55 | version "7.10.4" |
56 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.1.tgz#5770b0c1a826c4f53f5ede5e153163e0318e94b5" | 56 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz#a78c7a7251e01f616512d31b10adcf52ada5e0d2" |
57 | integrity sha512-5vW/JXLALhczRCWP0PnFDMCJAchlBvM7f4uk/jXritBnIa6E1KmqmtrS3yn1LAnxFBypQ3eneLuXjsnfQsgILw== | 57 | integrity sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw== |
58 | 58 | ||
59 | "@babel/highlight@^7.10.1": | 59 | "@babel/highlight@^7.10.4": |
60 | version "7.10.1" | 60 | version "7.10.4" |
61 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.10.1.tgz#841d098ba613ba1a427a2b383d79e35552c38ae0" | 61 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.10.4.tgz#7d1bdfd65753538fabe6c38596cdb76d9ac60143" |
62 | integrity sha512-8rMof+gVP8mxYZApLF/JgNDAkdKa+aJt3ZYxF8z6+j/hpeXL7iMsKCPHa2jNMHu/qqBwzQF4OHNoYi8dMA/rYg== | 62 | integrity sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA== |
63 | dependencies: | 63 | dependencies: |
64 | "@babel/helper-validator-identifier" "^7.10.1" | 64 | "@babel/helper-validator-identifier" "^7.10.4" |
65 | chalk "^2.0.0" | 65 | chalk "^2.0.0" |
66 | js-tokens "^4.0.0" | 66 | js-tokens "^4.0.0" |
67 | 67 | ||
68 | "@babel/parser@^7.6.0", "@babel/parser@^7.9.6": | 68 | "@babel/parser@^7.6.0", "@babel/parser@^7.9.6": |
69 | version "7.10.2" | 69 | version "7.11.4" |
70 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.10.2.tgz#871807f10442b92ff97e4783b9b54f6a0ca812d0" | 70 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.11.4.tgz#6fa1a118b8b0d80d0267b719213dc947e88cc0ca" |
71 | integrity sha512-PApSXlNMJyB4JiGVhCOlzKIif+TKFTvu0aQAhnTvfP/z3vVSN6ZypH5bfUNwFXXjRQtUEBNFd2PtmCmG2Py3qQ== | 71 | integrity sha512-MggwidiH+E9j5Sh8pbrX5sJvMcsqS5o+7iB42M9/k0CD63MjYbdP4nhSh7uB5wnv2/RVzTZFTxzF/kIa5mrCqA== |
72 | 72 | ||
73 | "@babel/runtime@^7.6.3", "@babel/runtime@^7.7.2": | 73 | "@babel/runtime@^7.6.3", "@babel/runtime@^7.7.2": |
74 | version "7.10.2" | 74 | version "7.11.2" |
75 | resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.10.2.tgz#d103f21f2602497d38348a32e008637d506db839" | 75 | resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.11.2.tgz#f549c13c754cc40b87644b9fa9f09a6a95fe0736" |
76 | integrity sha512-6sF3uQw2ivImfVIl62RZ7MXhO2tap69WeWK57vAaimT6AZbE4FbqjdEJIN1UqoD6wI6B+1n9UiagafH1sxjOtg== | 76 | integrity sha512-TeWkU52so0mPtDcaCTxNBI/IHiz0pZgr8VEFqXFtZWpYD08ZB6FaSwVAS8MKRQAP3bYKiVjwysOJgMFY28o6Tw== |
77 | dependencies: | 77 | dependencies: |
78 | regenerator-runtime "^0.13.4" | 78 | regenerator-runtime "^0.13.4" |
79 | 79 | ||
80 | "@babel/types@^7.6.1", "@babel/types@^7.9.6": | 80 | "@babel/types@^7.6.1", "@babel/types@^7.9.6": |
81 | version "7.10.2" | 81 | version "7.11.0" |
82 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.10.2.tgz#30283be31cad0dbf6fb00bd40641ca0ea675172d" | 82 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.11.0.tgz#2ae6bf1ba9ae8c3c43824e5861269871b206e90d" |
83 | integrity sha512-AD3AwWBSz0AWF0AkCN9VPiWrvldXq+/e3cHa4J89vo4ymjz1XwrBFFVZmkJTsQIPNk+ZVomPSXUJqq8yyjZsng== | 83 | integrity sha512-O53yME4ZZI0jO1EVGtF1ePGl0LHirG4P1ibcD80XyzZcKhcMFeCXmh4Xb1ifGBIV233Qg12x4rBfQgA+tmOukA== |
84 | dependencies: | 84 | dependencies: |
85 | "@babel/helper-validator-identifier" "^7.10.1" | 85 | "@babel/helper-validator-identifier" "^7.10.4" |
86 | lodash "^4.17.13" | 86 | lodash "^4.17.19" |
87 | to-fast-properties "^2.0.0" | 87 | to-fast-properties "^2.0.0" |
88 | 88 | ||
89 | "@dabh/diagnostics@^2.0.2": | ||
90 | version "2.0.2" | ||
91 | resolved "https://registry.yarnpkg.com/@dabh/diagnostics/-/diagnostics-2.0.2.tgz#290d08f7b381b8f94607dc8f471a12c675f9db31" | ||
92 | integrity sha512-+A1YivoVDNNVCdfozHSR8v/jyuuLTMXwjWuxPFlFlUapXoGc+Gj9mDlTDDfrwl7rXCl2tNZ0kE8sIBO6YOn96Q== | ||
93 | dependencies: | ||
94 | colorspace "1.1.x" | ||
95 | enabled "2.0.x" | ||
96 | kuler "^2.0.0" | ||
97 | |||
89 | "@hapi/boom@^9.1.0": | 98 | "@hapi/boom@^9.1.0": |
90 | version "9.1.0" | 99 | version "9.1.0" |
91 | resolved "https://registry.yarnpkg.com/@hapi/boom/-/boom-9.1.0.tgz#0d9517657a56ff1e0b42d0aca9da1b37706fec56" | 100 | resolved "https://registry.yarnpkg.com/@hapi/boom/-/boom-9.1.0.tgz#0d9517657a56ff1e0b42d0aca9da1b37706fec56" |
@@ -98,22 +107,22 @@ | |||
98 | resolved "https://registry.yarnpkg.com/@hapi/hoek/-/hoek-9.0.4.tgz#e80ad4e8e8d2adc6c77d985f698447e8628b6010" | 107 | resolved "https://registry.yarnpkg.com/@hapi/hoek/-/hoek-9.0.4.tgz#e80ad4e8e8d2adc6c77d985f698447e8628b6010" |
99 | integrity sha512-EwaJS7RjoXUZ2cXXKZZxZqieGtc7RbvQhUy8FwDoMQtxWVi14tFjeFCYPZAM1mBCpOpiBpyaZbb9NeHc7eGKgw== | 108 | integrity sha512-EwaJS7RjoXUZ2cXXKZZxZqieGtc7RbvQhUy8FwDoMQtxWVi14tFjeFCYPZAM1mBCpOpiBpyaZbb9NeHc7eGKgw== |
100 | 109 | ||
101 | "@jimp/bmp@^0.13.0": | 110 | "@jimp/bmp@^0.16.0": |
102 | version "0.13.0" | 111 | version "0.16.0" |
103 | resolved "https://registry.yarnpkg.com/@jimp/bmp/-/bmp-0.13.0.tgz#cca2301e56231e7dc20d5aba757fb237b94e2013" | 112 | resolved "https://registry.yarnpkg.com/@jimp/bmp/-/bmp-0.16.0.tgz#8d96854b3f2dd64ffe11d46f73fd62b54e037d40" |
104 | integrity sha512-7i/XZLoK5JETBKO0VL7qjnr6WDVl1X8mmaUk6Lzq06/veMPC5IwUIZi1JRVAXPEwTf5uUegq0WFnmUS0lVYzFw== | 113 | integrity sha512-lc4Ecyys6mRpKHLjFefkS1irCeIBTCpDBjKvNkU/6cIeIMXrFhv290MDT0WCL4UNFjJC/oU2PPraq+M+RkAcpA== |
105 | dependencies: | 114 | dependencies: |
106 | "@babel/runtime" "^7.7.2" | 115 | "@babel/runtime" "^7.7.2" |
107 | "@jimp/utils" "^0.13.0" | 116 | "@jimp/utils" "^0.16.0" |
108 | bmp-js "^0.1.0" | 117 | bmp-js "^0.1.0" |
109 | 118 | ||
110 | "@jimp/core@^0.13.0": | 119 | "@jimp/core@^0.16.0": |
111 | version "0.13.0" | 120 | version "0.16.0" |
112 | resolved "https://registry.yarnpkg.com/@jimp/core/-/core-0.13.0.tgz#6ec104d69cd7bf32bd5748f5d6106133e2ee3205" | 121 | resolved "https://registry.yarnpkg.com/@jimp/core/-/core-0.16.0.tgz#cad38113293bd711e00710c755c4d14aa977d6ff" |
113 | integrity sha512-BMFEUm5HbRP4yCo4Q23CJFx/v6Yr3trw7rERmS1GKUEooDq9ktApZWWTvWq/vggKyysKX0nQ+KT+FaFD/75Q+Q== | 122 | integrity sha512-7WBYr3BX84fc9tuA86EDhAKNyT9QLcbVYk4whwvshxKtODPxlF1hmZU6Xmx2shoJ62JJtiWLsPsXAHKfEuERtQ== |
114 | dependencies: | 123 | dependencies: |
115 | "@babel/runtime" "^7.7.2" | 124 | "@babel/runtime" "^7.7.2" |
116 | "@jimp/utils" "^0.13.0" | 125 | "@jimp/utils" "^0.16.0" |
117 | any-base "^1.1.0" | 126 | any-base "^1.1.0" |
118 | buffer "^5.2.0" | 127 | buffer "^5.2.0" |
119 | exif-parser "^0.1.12" | 128 | exif-parser "^0.1.12" |
@@ -124,279 +133,279 @@ | |||
124 | pixelmatch "^4.0.2" | 133 | pixelmatch "^4.0.2" |
125 | tinycolor2 "^1.4.1" | 134 | tinycolor2 "^1.4.1" |
126 | 135 | ||
127 | "@jimp/custom@^0.13.0": | 136 | "@jimp/custom@^0.16.0": |
128 | version "0.13.0" | 137 | version "0.16.0" |
129 | resolved "https://registry.yarnpkg.com/@jimp/custom/-/custom-0.13.0.tgz#bc7b2568e73eea1e1c15260b7283d7d099630881" | 138 | resolved "https://registry.yarnpkg.com/@jimp/custom/-/custom-0.16.0.tgz#08489092e35425c8b3964efcf6172a08d5a93556" |
130 | integrity sha512-Zir/CHoLRhQDGfPWueCIQbVjVUlayNIUch9fulq4M9V2S+ynHx9BqRn58z8wy+mk8jm1WlpRVhvZ8QUenbL0vg== | 139 | integrity sha512-xN9WHeW2RP3gLdXdehCgnzKq8l9ezMsfWpkZP0HYtGqwGDSRXx+LNGR2Da1J/tV0pB+qbt67gAXtaxkJwdQ3cA== |
131 | dependencies: | 140 | dependencies: |
132 | "@babel/runtime" "^7.7.2" | 141 | "@babel/runtime" "^7.7.2" |
133 | "@jimp/core" "^0.13.0" | 142 | "@jimp/core" "^0.16.0" |
134 | 143 | ||
135 | "@jimp/gif@^0.13.0": | 144 | "@jimp/gif@^0.16.0": |
136 | version "0.13.0" | 145 | version "0.16.0" |
137 | resolved "https://registry.yarnpkg.com/@jimp/gif/-/gif-0.13.0.tgz#09f208f616d83acc8f8e1f1f6df784bafea46062" | 146 | resolved "https://registry.yarnpkg.com/@jimp/gif/-/gif-0.16.0.tgz#241cb429cfaeec8843e63db0a1f3d4148c26950f" |
138 | integrity sha512-7FO2Fa9FZluqGt1MM/L8s6P5UEedxrIQT2eBAxzB8Z82YTTSWQXw4bdrZWCwiQjBFZwKTIaULIfw6+TxA/Q2XA== | 147 | integrity sha512-thc3C6/dvGKEVTMxiX82ruRAitIx7EstThqzrd0qk7Yf2O3qbrRZuENl6KNn2PXpmkr6fjcfFLWVM39bP4MG1Q== |
139 | dependencies: | 148 | dependencies: |
140 | "@babel/runtime" "^7.7.2" | 149 | "@babel/runtime" "^7.7.2" |
141 | "@jimp/utils" "^0.13.0" | 150 | "@jimp/utils" "^0.16.0" |
142 | gifwrap "^0.9.2" | 151 | gifwrap "^0.9.2" |
143 | omggif "^1.0.9" | 152 | omggif "^1.0.9" |
144 | 153 | ||
145 | "@jimp/jpeg@^0.13.0": | 154 | "@jimp/jpeg@^0.16.0": |
146 | version "0.13.0" | 155 | version "0.16.0" |
147 | resolved "https://registry.yarnpkg.com/@jimp/jpeg/-/jpeg-0.13.0.tgz#e7609a932cb0b795c422b6ad25882277a9db029d" | 156 | resolved "https://registry.yarnpkg.com/@jimp/jpeg/-/jpeg-0.16.0.tgz#fc668d4a28a16abb57531783a4a9f6ab4408ad15" |
148 | integrity sha512-Fol/DxA1lnIzCsNx/CckIEoyWImQHiWPgFAWL5s7VIVaJrEFnnbRqfOxmvr8yWg8mh3hWLeXNcxqA82CKXgg+Q== | 157 | integrity sha512-pzlv92YZi7ySvIICNkB0eMphLztBcTAMH2kl5lxFMzF1FDv2FR2d/FI1ph6DSzBV8VYFDu4AM1lJRq3hFJurgQ== |
149 | dependencies: | 158 | dependencies: |
150 | "@babel/runtime" "^7.7.2" | 159 | "@babel/runtime" "^7.7.2" |
151 | "@jimp/utils" "^0.13.0" | 160 | "@jimp/utils" "^0.16.0" |
152 | jpeg-js "^0.4.0" | 161 | jpeg-js "^0.4.0" |
153 | 162 | ||
154 | "@jimp/plugin-blit@^0.13.0": | 163 | "@jimp/plugin-blit@^0.16.0": |
155 | version "0.13.0" | 164 | version "0.16.0" |
156 | resolved "https://registry.yarnpkg.com/@jimp/plugin-blit/-/plugin-blit-0.13.0.tgz#31d8744a2fe79abe0ffd1af3f385953fb9e3b4d5" | 165 | resolved "https://registry.yarnpkg.com/@jimp/plugin-blit/-/plugin-blit-0.16.0.tgz#215435d253710614c080082c209a030da939d140" |
157 | integrity sha512-roCShFZosJgRMLCLzuOT1pRZysQF/p3avQieZiu9pfg2F9X09f91OauU2Lf3/yOp0TZCWbheqbem9MPlhyED8w== | 166 | integrity sha512-CrakcEvr2ztOwECKpuwmwhXArbtDP2SB44WV0wrFXtuss2mkBbL/hIkUmTnLyJGpwIflj4Vww9m5yIreG5lgUQ== |
158 | dependencies: | 167 | dependencies: |
159 | "@babel/runtime" "^7.7.2" | 168 | "@babel/runtime" "^7.7.2" |
160 | "@jimp/utils" "^0.13.0" | 169 | "@jimp/utils" "^0.16.0" |
161 | 170 | ||
162 | "@jimp/plugin-blur@^0.13.0": | 171 | "@jimp/plugin-blur@^0.16.0": |
163 | version "0.13.0" | 172 | version "0.16.0" |
164 | resolved "https://registry.yarnpkg.com/@jimp/plugin-blur/-/plugin-blur-0.13.0.tgz#35c57830391da331fc28f847742c2ea822d8641f" | 173 | resolved "https://registry.yarnpkg.com/@jimp/plugin-blur/-/plugin-blur-0.16.0.tgz#d1630b95b247069e921bf80bd288d8acdf65eed9" |
165 | integrity sha512-LeBhQe72bRk2fe2AftcqcDaWgSu6vFD0fxiAYYMy3pHa8pnPAwnw2W3u4bV/gc5XJt6AJzoRyc7WVG2pE4A3gg== | 174 | integrity sha512-CfTrQR4JY+DGtGbdAbdZgbUpjOqtcF+kmGOoa1uh3NF16tn1glbE8/0SA9YkgvHxNTmekwuT7Lu0nRq09MKVJw== |
166 | dependencies: | 175 | dependencies: |
167 | "@babel/runtime" "^7.7.2" | 176 | "@babel/runtime" "^7.7.2" |
168 | "@jimp/utils" "^0.13.0" | 177 | "@jimp/utils" "^0.16.0" |
169 | 178 | ||
170 | "@jimp/plugin-circle@^0.13.0": | 179 | "@jimp/plugin-circle@^0.16.0": |
171 | version "0.13.0" | 180 | version "0.16.0" |
172 | resolved "https://registry.yarnpkg.com/@jimp/plugin-circle/-/plugin-circle-0.13.0.tgz#2df8783e7e648ed1135d9197a3927543c0e340de" | 181 | resolved "https://registry.yarnpkg.com/@jimp/plugin-circle/-/plugin-circle-0.16.0.tgz#3b9bc2f3a93b7bec16f067e1ad03ee11c3ab43f0" |
173 | integrity sha512-INwIl8zgWnJYXxYkNhIjG8TXg2Q1nh008SDKyC+Pug4ce/XRJC8w/Gk6HS+U9Z2tIO2/zXv473k/JaiwvDMu1w== | 182 | integrity sha512-O79288GKwUIxpHR3qyYg0paH/Iegz+Bdo2ePIvD/M3MigEzVdj5dJ/CQXz2cUnJx87rc0k1N5cTI4floIgv0tg== |
174 | dependencies: | 183 | dependencies: |
175 | "@babel/runtime" "^7.7.2" | 184 | "@babel/runtime" "^7.7.2" |
176 | "@jimp/utils" "^0.13.0" | 185 | "@jimp/utils" "^0.16.0" |
177 | 186 | ||
178 | "@jimp/plugin-color@^0.13.0": | 187 | "@jimp/plugin-color@^0.16.0": |
179 | version "0.13.0" | 188 | version "0.16.0" |
180 | resolved "https://registry.yarnpkg.com/@jimp/plugin-color/-/plugin-color-0.13.0.tgz#6f5683bb1e02bc1576867b5b79b7736a1249faec" | 189 | resolved "https://registry.yarnpkg.com/@jimp/plugin-color/-/plugin-color-0.16.0.tgz#9fd6e5f60c2c8451486ce3b2b96f4eefd662397a" |
181 | integrity sha512-e71UDivZdZGOhQRLjDo4a0BKgrH858HJ7zFk7/Yti58LwgeIGjYHhuYc+xQOdnBWPzGSD47TuFX5GXmf/x1nmg== | 190 | integrity sha512-S4CbN1r5+VjUF9OBIyWxWBTXRNutLQqAAOkq7QX//lS4HY76eOAafgWWwZR7ci9WWZT8uyyw4tfd4ePoBvoYhw== |
182 | dependencies: | 191 | dependencies: |
183 | "@babel/runtime" "^7.7.2" | 192 | "@babel/runtime" "^7.7.2" |
184 | "@jimp/utils" "^0.13.0" | 193 | "@jimp/utils" "^0.16.0" |
185 | tinycolor2 "^1.4.1" | 194 | tinycolor2 "^1.4.1" |
186 | 195 | ||
187 | "@jimp/plugin-contain@^0.13.0": | 196 | "@jimp/plugin-contain@^0.16.0": |
188 | version "0.13.0" | 197 | version "0.16.0" |
189 | resolved "https://registry.yarnpkg.com/@jimp/plugin-contain/-/plugin-contain-0.13.0.tgz#d87408f078d3f9438b5d04045cba5d1f185d8fc2" | 198 | resolved "https://registry.yarnpkg.com/@jimp/plugin-contain/-/plugin-contain-0.16.0.tgz#26116ec8c3520e0e659f460c2ab88c443445bff4" |
190 | integrity sha512-qPYS+ccMP4mEnf7BB0bcaszUTth8OxeRX0MdMvU6PDEI0nIvVVNwmuI6YtNqqs12PwuYxgPkq6AFenyLyoNP1g== | 199 | integrity sha512-ZAVe9ad0/TDLSPutIP/8Z+jXXOv638w/FZeA3avTAI5GfWV7ZBT6BB7kDI3iZTl+SHUjv/MlzHCS99WCnpc1hg== |
191 | dependencies: | 200 | dependencies: |
192 | "@babel/runtime" "^7.7.2" | 201 | "@babel/runtime" "^7.7.2" |
193 | "@jimp/utils" "^0.13.0" | 202 | "@jimp/utils" "^0.16.0" |
194 | 203 | ||
195 | "@jimp/plugin-cover@^0.13.0": | 204 | "@jimp/plugin-cover@^0.16.0": |
196 | version "0.13.0" | 205 | version "0.16.0" |
197 | resolved "https://registry.yarnpkg.com/@jimp/plugin-cover/-/plugin-cover-0.13.0.tgz#bf7e82df3857b374ece24cfb0f524c0cc6e03a6e" | 206 | resolved "https://registry.yarnpkg.com/@jimp/plugin-cover/-/plugin-cover-0.16.0.tgz#1cfa9327ae81c1dfa57ca91120e653ea582cfb46" |
198 | integrity sha512-S2GkbXNgIb0afof/NLLq9IJDZPOcFtu1mc32ngt9S8HzXsNHgRAzONW7cg56bwQ6p0+sz/dS5tB4ctOW/pu/Dw== | 207 | integrity sha512-gJGorvc4HOeSR0dNR29mYLLXtrWvgj8da0B/lUJSb0R2AvUrb+VgLKSfFPyf+nL/jtcm9/CJzYhAPcz13zmRKA== |
199 | dependencies: | 208 | dependencies: |
200 | "@babel/runtime" "^7.7.2" | 209 | "@babel/runtime" "^7.7.2" |
201 | "@jimp/utils" "^0.13.0" | 210 | "@jimp/utils" "^0.16.0" |
202 | 211 | ||
203 | "@jimp/plugin-crop@^0.13.0": | 212 | "@jimp/plugin-crop@^0.16.0": |
204 | version "0.13.0" | 213 | version "0.16.0" |
205 | resolved "https://registry.yarnpkg.com/@jimp/plugin-crop/-/plugin-crop-0.13.0.tgz#2215923db11694796a40a294faf373454a0af3f8" | 214 | resolved "https://registry.yarnpkg.com/@jimp/plugin-crop/-/plugin-crop-0.16.0.tgz#901052a0984f9259d082caab0560044fe43bcccd" |
206 | integrity sha512-Y1Ug3kOzsq72EjLiWQlwkHuvUvdSmFUDtxpyOXh3RxeWF7wmdjH8FvdhPj8hWvFLsDYFgWGaLI4Z6SXOr+N8nA== | 215 | integrity sha512-I5McmdrNodg0iU815qOsuI8CjkwiRsFRTY4/LBOsLGHZasvxhzFxGcwD3SgnohdIkhRc3tX8jfvKg2pdPbD2AA== |
207 | dependencies: | 216 | dependencies: |
208 | "@babel/runtime" "^7.7.2" | 217 | "@babel/runtime" "^7.7.2" |
209 | "@jimp/utils" "^0.13.0" | 218 | "@jimp/utils" "^0.16.0" |
210 | 219 | ||
211 | "@jimp/plugin-displace@^0.13.0": | 220 | "@jimp/plugin-displace@^0.16.0": |
212 | version "0.13.0" | 221 | version "0.16.0" |
213 | resolved "https://registry.yarnpkg.com/@jimp/plugin-displace/-/plugin-displace-0.13.0.tgz#ace748989133322cc1da94f7699ab393904fc306" | 222 | resolved "https://registry.yarnpkg.com/@jimp/plugin-displace/-/plugin-displace-0.16.0.tgz#7dc9e57171b579d82945abc8a0259c2dbe38f601" |
214 | integrity sha512-c80VIUjIqQoavafthLpYRZdzANCxbOCHzqkFVbZ0kNKJnDDk6fW55mvVW4TJLDToDU81WMlttCmNV0oXcX93gQ== | 223 | integrity sha512-+c5n5jDiN/neAuAxAAy55Gpycgmyay1PwUy8qKM1fgfBE874mrF5C4u1ThFz4OiDkRirKLpncRmrUMHa9boZtA== |
215 | dependencies: | 224 | dependencies: |
216 | "@babel/runtime" "^7.7.2" | 225 | "@babel/runtime" "^7.7.2" |
217 | "@jimp/utils" "^0.13.0" | 226 | "@jimp/utils" "^0.16.0" |
218 | 227 | ||
219 | "@jimp/plugin-dither@^0.13.0": | 228 | "@jimp/plugin-dither@^0.16.0": |
220 | version "0.13.0" | 229 | version "0.16.0" |
221 | resolved "https://registry.yarnpkg.com/@jimp/plugin-dither/-/plugin-dither-0.13.0.tgz#c5a917955b9b5690e9cece2ee10e072ff9cfe82e" | 230 | resolved "https://registry.yarnpkg.com/@jimp/plugin-dither/-/plugin-dither-0.16.0.tgz#753bfaf9f9d9da61954310e7e02da3cae0d929cd" |
222 | integrity sha512-EUz/y/AaQ00TnaiVLVAXLz8n8Nx7S36lKi4VXPeYy5a5FyzBimxNiKxdITVe9zooN7+H4FP++/xGFGFMpfWtRg== | 231 | integrity sha512-rsLHSGnpWniQXoughYXRCbK/8KKXi+avV5z5mHIKzAKS4areXW03XlLqmy9o26q2h0g/YV5Hkxo9jwIw0v2Fpg== |
223 | dependencies: | 232 | dependencies: |
224 | "@babel/runtime" "^7.7.2" | 233 | "@babel/runtime" "^7.7.2" |
225 | "@jimp/utils" "^0.13.0" | 234 | "@jimp/utils" "^0.16.0" |
226 | 235 | ||
227 | "@jimp/plugin-fisheye@^0.13.0": | 236 | "@jimp/plugin-fisheye@^0.16.0": |
228 | version "0.13.0" | 237 | version "0.16.0" |
229 | resolved "https://registry.yarnpkg.com/@jimp/plugin-fisheye/-/plugin-fisheye-0.13.0.tgz#d300564c30ae1513268680b5ced4de87d6719aee" | 238 | resolved "https://registry.yarnpkg.com/@jimp/plugin-fisheye/-/plugin-fisheye-0.16.0.tgz#cd7f148751834c61da8ec2015ac12eeb4ec4a008" |
230 | integrity sha512-O7h5pNTk2sYcTKxLvV6+zzUpLx8qzdNl6qiP9x1S0CKy64oZ9IwtK1eR1eLom0YA8tUR7rX5Ra4pB8bhq8Oyqw== | 239 | integrity sha512-P6KsHQHUOWyDprxKl4chPTwKIJNbXB7LGDQH6Bq/q8zZ9XwYXGnTmkHA/BwGKI6HGCj/+R2WoP3Cnhwm6XaIpg== |
231 | dependencies: | 240 | dependencies: |
232 | "@babel/runtime" "^7.7.2" | 241 | "@babel/runtime" "^7.7.2" |
233 | "@jimp/utils" "^0.13.0" | 242 | "@jimp/utils" "^0.16.0" |
234 | 243 | ||
235 | "@jimp/plugin-flip@^0.13.0": | 244 | "@jimp/plugin-flip@^0.16.0": |
236 | version "0.13.0" | 245 | version "0.16.0" |
237 | resolved "https://registry.yarnpkg.com/@jimp/plugin-flip/-/plugin-flip-0.13.0.tgz#502c07fbefddbe045a1a8d691f3918651bb0f349" | 246 | resolved "https://registry.yarnpkg.com/@jimp/plugin-flip/-/plugin-flip-0.16.0.tgz#43101e504082092042ea499686db2a86f168a2f7" |
238 | integrity sha512-gWk+Q0LmCvupUuWRfoGyETmH/+lJKZuPCeA9K6UHJldq5Cdg/3MrlKUNS1HcPCDXjw+dWDGC8QnNslvMTaY5VQ== | 247 | integrity sha512-5MlqM1RJohk0NU0Z3ZtviI0DqHXDB0OuRk3dimUIquePz1OocFCt9Z4bBbDRIczGZFOrDrCrpHMfMxPjwm7eXw== |
239 | dependencies: | 248 | dependencies: |
240 | "@babel/runtime" "^7.7.2" | 249 | "@babel/runtime" "^7.7.2" |
241 | "@jimp/utils" "^0.13.0" | 250 | "@jimp/utils" "^0.16.0" |
242 | 251 | ||
243 | "@jimp/plugin-gaussian@^0.13.0": | 252 | "@jimp/plugin-gaussian@^0.16.0": |
244 | version "0.13.0" | 253 | version "0.16.0" |
245 | resolved "https://registry.yarnpkg.com/@jimp/plugin-gaussian/-/plugin-gaussian-0.13.0.tgz#9ae00f6080b3ed777eb837d94d9d0a071aa1246b" | 254 | resolved "https://registry.yarnpkg.com/@jimp/plugin-gaussian/-/plugin-gaussian-0.16.0.tgz#c0b5998dec529f55a8a16d1d53ca80f9c39302a4" |
246 | integrity sha512-0ctRqbCcLdy8y9IrSIH2McWNPLnEwjoe8qxtqoi51zRsM3z3mwjiTC2q8AWeF0SdIdWwV+YV/eP0494AJqjTsg== | 255 | integrity sha512-oP2Hg4gR4uq9id1gF+SfTvPrzqZc3fVY+t6gwxPXPgpnb9S5UVuSQbwtixY1EEBC9XRdX2XFko9eUul8dTnUpQ== |
247 | dependencies: | 256 | dependencies: |
248 | "@babel/runtime" "^7.7.2" | 257 | "@babel/runtime" "^7.7.2" |
249 | "@jimp/utils" "^0.13.0" | 258 | "@jimp/utils" "^0.16.0" |
250 | 259 | ||
251 | "@jimp/plugin-invert@^0.13.0": | 260 | "@jimp/plugin-invert@^0.16.0": |
252 | version "0.13.0" | 261 | version "0.16.0" |
253 | resolved "https://registry.yarnpkg.com/@jimp/plugin-invert/-/plugin-invert-0.13.0.tgz#f06ba0eed19225f45d1b87fcc84ed8a233e32d1e" | 262 | resolved "https://registry.yarnpkg.com/@jimp/plugin-invert/-/plugin-invert-0.16.0.tgz#a8a342e463b22ae44205550785e1c4e1a0acc246" |
254 | integrity sha512-k7TWx/la0MrTcT1dMtncV6I9IuGToRm9Q0ekzfb3k8bHzWRYX4SUtt/WrZ/I+/znD/fGorLtFI057v7mcLJc5A== | 263 | integrity sha512-RFsES55G7po6rv35A/3jz7IA1BOr8krX4H0zmtKUprcrhFl+El9iZojVCpJQRJ5QKQVS3iXi5H6EGN7AT1HykQ== |
255 | dependencies: | 264 | dependencies: |
256 | "@babel/runtime" "^7.7.2" | 265 | "@babel/runtime" "^7.7.2" |
257 | "@jimp/utils" "^0.13.0" | 266 | "@jimp/utils" "^0.16.0" |
258 | 267 | ||
259 | "@jimp/plugin-mask@^0.13.0": | 268 | "@jimp/plugin-mask@^0.16.0": |
260 | version "0.13.0" | 269 | version "0.16.0" |
261 | resolved "https://registry.yarnpkg.com/@jimp/plugin-mask/-/plugin-mask-0.13.0.tgz#42492be551c7d1eeb52f13d369476301b51cea7e" | 270 | resolved "https://registry.yarnpkg.com/@jimp/plugin-mask/-/plugin-mask-0.16.0.tgz#188566556ff0ddb85b9b0fc987f06bf7eee19ee8" |
262 | integrity sha512-U3OdsgtMNpbCYc1lzzu96zdSgyz7BK9eD8IoFHdw4Ma8gCuM8kp9gdBJlKnzOh8eyYvssdCMZOWz9Xbxc5xH9A== | 271 | integrity sha512-inJweZgTNYZQdF0m5f/or5/LCLhpz4ccSDsK9HveuFQ82ITfJcvFaUlvlo11pHRl2r+Q92Er7B5g7icMIzXHZw== |
263 | dependencies: | 272 | dependencies: |
264 | "@babel/runtime" "^7.7.2" | 273 | "@babel/runtime" "^7.7.2" |
265 | "@jimp/utils" "^0.13.0" | 274 | "@jimp/utils" "^0.16.0" |
266 | 275 | ||
267 | "@jimp/plugin-normalize@^0.13.0": | 276 | "@jimp/plugin-normalize@^0.16.0": |
268 | version "0.13.0" | 277 | version "0.16.0" |
269 | resolved "https://registry.yarnpkg.com/@jimp/plugin-normalize/-/plugin-normalize-0.13.0.tgz#e1f4de7f8caef061c2dc093f3a8251d278b837e5" | 278 | resolved "https://registry.yarnpkg.com/@jimp/plugin-normalize/-/plugin-normalize-0.16.0.tgz#668d3ac26fe77069cc1c4ed1089f271abe2784fc" |
270 | integrity sha512-yKOgZSvOxSHNlh+U9NOQH4Drgca0Dwb7DQRk3vj67gvHQC96JafIpGwN+9V4fP89lA3rkItbw6xgN6C/28HEUQ== | 279 | integrity sha512-sfqhHDGks0ccqIaTCG/dFJ772eGi8bewxIvrQkeLw5TizzPZ3S+C4GXKwlkX2z5dyQr30cHM5Mv6+XhNNLEHWw== |
271 | dependencies: | 280 | dependencies: |
272 | "@babel/runtime" "^7.7.2" | 281 | "@babel/runtime" "^7.7.2" |
273 | "@jimp/utils" "^0.13.0" | 282 | "@jimp/utils" "^0.16.0" |
274 | 283 | ||
275 | "@jimp/plugin-print@^0.13.0": | 284 | "@jimp/plugin-print@^0.16.0": |
276 | version "0.13.0" | 285 | version "0.16.0" |
277 | resolved "https://registry.yarnpkg.com/@jimp/plugin-print/-/plugin-print-0.13.0.tgz#32a1e9c30dbf38564956eb326b138b729b6067f1" | 286 | resolved "https://registry.yarnpkg.com/@jimp/plugin-print/-/plugin-print-0.16.0.tgz#537b9ade9b0b21b876013f17c908cb466afd8b03" |
278 | integrity sha512-Tv7r/1t7z63oLeRuEWw9xbm0G5uuBE54986+BOu8OFaHBpV/BbVHrE7ouApA0mKVZqMZCVjhO6Ph8+uFzRjdOw== | 287 | integrity sha512-tQJfSOTf+las/PJpdUK9Aw9EdComQ50zl29TgMrAULuae1lh+e/A188ZhNQzTCpAAc/PEku8xoke+rYUU1AVig== |
279 | dependencies: | 288 | dependencies: |
280 | "@babel/runtime" "^7.7.2" | 289 | "@babel/runtime" "^7.7.2" |
281 | "@jimp/utils" "^0.13.0" | 290 | "@jimp/utils" "^0.16.0" |
282 | load-bmfont "^1.4.0" | 291 | load-bmfont "^1.4.0" |
283 | 292 | ||
284 | "@jimp/plugin-resize@^0.13.0": | 293 | "@jimp/plugin-resize@^0.16.0": |
285 | version "0.13.0" | 294 | version "0.16.0" |
286 | resolved "https://registry.yarnpkg.com/@jimp/plugin-resize/-/plugin-resize-0.13.0.tgz#17eb70bed34054b4b9633a213e1396431e8d682e" | 295 | resolved "https://registry.yarnpkg.com/@jimp/plugin-resize/-/plugin-resize-0.16.0.tgz#91d16bf12e23f43a76e2698725921ba45529ac97" |
287 | integrity sha512-XOo0Skn7aq/aGxV9czFx6EaBUbAsAGCVbAS26fMM0AZ4YAWWUEleKTpHunEo92giIPhvlxeFFjQR2jQ9UcB3uQ== | 296 | integrity sha512-aI5H1Xe1fE1phBBI0EgQiVgMEXJ7cy2CXH+H7WSxnrdZJTnt9emzc4LnvKEOPBY6dCPw3P7k/BHp9SDTpUKSOQ== |
288 | dependencies: | 297 | dependencies: |
289 | "@babel/runtime" "^7.7.2" | 298 | "@babel/runtime" "^7.7.2" |
290 | "@jimp/utils" "^0.13.0" | 299 | "@jimp/utils" "^0.16.0" |
291 | 300 | ||
292 | "@jimp/plugin-rotate@^0.13.0": | 301 | "@jimp/plugin-rotate@^0.16.0": |
293 | version "0.13.0" | 302 | version "0.16.0" |
294 | resolved "https://registry.yarnpkg.com/@jimp/plugin-rotate/-/plugin-rotate-0.13.0.tgz#325e799055b748fe1948eb85e7ad6ec46d08bc5b" | 303 | resolved "https://registry.yarnpkg.com/@jimp/plugin-rotate/-/plugin-rotate-0.16.0.tgz#1c6ef9d50f935a4ec4ce72b978333bbc91338a6e" |
295 | integrity sha512-BaNeh655kF9Rz01ZV+Bkc8hLsHpNu3QnzigruVDjGt9Paoig0EBr+Dgyjje+7eTLu20kyuyxwPUAxLSOiPiraQ== | 304 | integrity sha512-YTKo4LntC2h46H6+De+3ctt8MacC+fTbIdw527BBBIKF44aWYn0uAQlAO+R+Aemnq4YqNnCnrZzPtWYZXA6nNw== |
296 | dependencies: | 305 | dependencies: |
297 | "@babel/runtime" "^7.7.2" | 306 | "@babel/runtime" "^7.7.2" |
298 | "@jimp/utils" "^0.13.0" | 307 | "@jimp/utils" "^0.16.0" |
299 | 308 | ||
300 | "@jimp/plugin-scale@^0.13.0": | 309 | "@jimp/plugin-scale@^0.16.0": |
301 | version "0.13.0" | 310 | version "0.16.0" |
302 | resolved "https://registry.yarnpkg.com/@jimp/plugin-scale/-/plugin-scale-0.13.0.tgz#cf498f6fef97354c5a6f1e37d5c5ef940a963297" | 311 | resolved "https://registry.yarnpkg.com/@jimp/plugin-scale/-/plugin-scale-0.16.0.tgz#4a4519058a390033ee5d274822e55c7565354498" |
303 | integrity sha512-e/f7lvii+DmRMgYF+uBKQy437f+J66WbL0FcFEataCF/W9UkTIQGeXdECwJSPfqr81SxC5mGbSBbsdbMKChzAQ== | 312 | integrity sha512-AfDnTIjBzGdvJ1K7MkUexgkGGAYDzpNzkYoCpfaRNKl/txoivaA6iKfvCiE7i1IDXq5mRCLkjQjMF43l8kwv5g== |
304 | dependencies: | 313 | dependencies: |
305 | "@babel/runtime" "^7.7.2" | 314 | "@babel/runtime" "^7.7.2" |
306 | "@jimp/utils" "^0.13.0" | 315 | "@jimp/utils" "^0.16.0" |
307 | 316 | ||
308 | "@jimp/plugin-shadow@^0.13.0": | 317 | "@jimp/plugin-shadow@^0.16.0": |
309 | version "0.13.0" | 318 | version "0.16.0" |
310 | resolved "https://registry.yarnpkg.com/@jimp/plugin-shadow/-/plugin-shadow-0.13.0.tgz#dd35819800e7375f2a8eb13a02bf1b8829a3e47e" | 319 | resolved "https://registry.yarnpkg.com/@jimp/plugin-shadow/-/plugin-shadow-0.16.0.tgz#3ca117ce1dd90756dfb8fcda57f7e56e45240188" |
311 | integrity sha512-qObtH63dmfPLze5wE8XDRjDsBOUnAfEWib4YbjPXGBZVxeKD7+2oPGemsK56HqC/+rYzIynkbi4MUIV1Q0dGjA== | 320 | integrity sha512-8O1CKwvSnrrAIuAM3BEDTwt4U5oRVB5pXxnRegYXDuFFLDPIp2N4ILQqC2NaN+PBaVvj1JuLYuxmNzja0uRQKQ== |
312 | dependencies: | 321 | dependencies: |
313 | "@babel/runtime" "^7.7.2" | 322 | "@babel/runtime" "^7.7.2" |
314 | "@jimp/utils" "^0.13.0" | 323 | "@jimp/utils" "^0.16.0" |
315 | 324 | ||
316 | "@jimp/plugin-threshold@^0.13.0": | 325 | "@jimp/plugin-threshold@^0.16.0": |
317 | version "0.13.0" | 326 | version "0.16.0" |
318 | resolved "https://registry.yarnpkg.com/@jimp/plugin-threshold/-/plugin-threshold-0.13.0.tgz#d92febd59f72d44e3afd60d74e1232ab1645b3a4" | 327 | resolved "https://registry.yarnpkg.com/@jimp/plugin-threshold/-/plugin-threshold-0.16.0.tgz#98bf41f89c0bd371cc950e222eab45035819d237" |
319 | integrity sha512-ACF7jk0ogso+2RK+0EsvBupVfE3IMq39wGFQWgpnHR9Tj12mSO279f6i/H8bcj1ZXmHot22nwLOG0wO4AlAaRg== | 328 | integrity sha512-PNrB6IIF7kDGu7A/cyNAy3pchWtXbJGdpowkW6hcEzXOR+FwBRMuo5LS+q/eedo86qQ2F1vw5dm/nWYJxNxvkg== |
320 | dependencies: | 329 | dependencies: |
321 | "@babel/runtime" "^7.7.2" | 330 | "@babel/runtime" "^7.7.2" |
322 | "@jimp/utils" "^0.13.0" | 331 | "@jimp/utils" "^0.16.0" |
323 | 332 | ||
324 | "@jimp/plugins@^0.13.0": | 333 | "@jimp/plugins@^0.16.0": |
325 | version "0.13.0" | 334 | version "0.16.0" |
326 | resolved "https://registry.yarnpkg.com/@jimp/plugins/-/plugins-0.13.0.tgz#d1f2aed6ce4b7de7e3d683daf723d887aa4a826f" | 335 | resolved "https://registry.yarnpkg.com/@jimp/plugins/-/plugins-0.16.0.tgz#d0d140675978110ccc3c4d0b13bb129c93b23638" |
327 | integrity sha512-onu8GnSnFjLFuFVFq8+aTYFIDfH8kwZuBHeGaDyScPFFn6QMKsPl4TeLzQ5vwIPvcpkADuFFfuAshE4peutjjA== | 336 | integrity sha512-aiyn/9MrSqVJwsnBmkbHD4DWTowULdP4NEes8Vt738KxZMw1UawKbEbj3/CzHIeEIQKjDECTi+jNd5HIbDq9LQ== |
328 | dependencies: | 337 | dependencies: |
329 | "@babel/runtime" "^7.7.2" | 338 | "@babel/runtime" "^7.7.2" |
330 | "@jimp/plugin-blit" "^0.13.0" | 339 | "@jimp/plugin-blit" "^0.16.0" |
331 | "@jimp/plugin-blur" "^0.13.0" | 340 | "@jimp/plugin-blur" "^0.16.0" |
332 | "@jimp/plugin-circle" "^0.13.0" | 341 | "@jimp/plugin-circle" "^0.16.0" |
333 | "@jimp/plugin-color" "^0.13.0" | 342 | "@jimp/plugin-color" "^0.16.0" |
334 | "@jimp/plugin-contain" "^0.13.0" | 343 | "@jimp/plugin-contain" "^0.16.0" |
335 | "@jimp/plugin-cover" "^0.13.0" | 344 | "@jimp/plugin-cover" "^0.16.0" |
336 | "@jimp/plugin-crop" "^0.13.0" | 345 | "@jimp/plugin-crop" "^0.16.0" |
337 | "@jimp/plugin-displace" "^0.13.0" | 346 | "@jimp/plugin-displace" "^0.16.0" |
338 | "@jimp/plugin-dither" "^0.13.0" | 347 | "@jimp/plugin-dither" "^0.16.0" |
339 | "@jimp/plugin-fisheye" "^0.13.0" | 348 | "@jimp/plugin-fisheye" "^0.16.0" |
340 | "@jimp/plugin-flip" "^0.13.0" | 349 | "@jimp/plugin-flip" "^0.16.0" |
341 | "@jimp/plugin-gaussian" "^0.13.0" | 350 | "@jimp/plugin-gaussian" "^0.16.0" |
342 | "@jimp/plugin-invert" "^0.13.0" | 351 | "@jimp/plugin-invert" "^0.16.0" |
343 | "@jimp/plugin-mask" "^0.13.0" | 352 | "@jimp/plugin-mask" "^0.16.0" |
344 | "@jimp/plugin-normalize" "^0.13.0" | 353 | "@jimp/plugin-normalize" "^0.16.0" |
345 | "@jimp/plugin-print" "^0.13.0" | 354 | "@jimp/plugin-print" "^0.16.0" |
346 | "@jimp/plugin-resize" "^0.13.0" | 355 | "@jimp/plugin-resize" "^0.16.0" |
347 | "@jimp/plugin-rotate" "^0.13.0" | 356 | "@jimp/plugin-rotate" "^0.16.0" |
348 | "@jimp/plugin-scale" "^0.13.0" | 357 | "@jimp/plugin-scale" "^0.16.0" |
349 | "@jimp/plugin-shadow" "^0.13.0" | 358 | "@jimp/plugin-shadow" "^0.16.0" |
350 | "@jimp/plugin-threshold" "^0.13.0" | 359 | "@jimp/plugin-threshold" "^0.16.0" |
351 | timm "^1.6.1" | 360 | timm "^1.6.1" |
352 | 361 | ||
353 | "@jimp/png@^0.13.0": | 362 | "@jimp/png@^0.16.0": |
354 | version "0.13.0" | 363 | version "0.16.0" |
355 | resolved "https://registry.yarnpkg.com/@jimp/png/-/png-0.13.0.tgz#f4d9b6f7843908b081dbace984f0d45e45f1ffda" | 364 | resolved "https://registry.yarnpkg.com/@jimp/png/-/png-0.16.0.tgz#d18f16ca8037ebfabab6e1c62b516329fbd356d8" |
356 | integrity sha512-9MVU0BLMQKJ6Kaiwjrq6dLDnDktZzeHtxz4qthRHaGOyHLx3RpxmbhaDuK9dDg6NASX3JuXznEhaOP4lqQODpQ== | 365 | integrity sha512-3uDwCeZRaHTq6Jqjav37n73IGL4vrDkoHLzkC+dAGcSdaKnUnRxD/sO4CBTK1cHttJhsf5Xk/+0dO+qaqIEvNA== |
357 | dependencies: | 366 | dependencies: |
358 | "@babel/runtime" "^7.7.2" | 367 | "@babel/runtime" "^7.7.2" |
359 | "@jimp/utils" "^0.13.0" | 368 | "@jimp/utils" "^0.16.0" |
360 | pngjs "^3.3.3" | 369 | pngjs "^3.3.3" |
361 | 370 | ||
362 | "@jimp/tiff@^0.13.0": | 371 | "@jimp/tiff@^0.16.0": |
363 | version "0.13.0" | 372 | version "0.16.0" |
364 | resolved "https://registry.yarnpkg.com/@jimp/tiff/-/tiff-0.13.0.tgz#2795a35073fe296dc09ac2fa693fe5b3558386f6" | 373 | resolved "https://registry.yarnpkg.com/@jimp/tiff/-/tiff-0.16.0.tgz#4c549b3bb0adebbddf0a0315b1893584b5520b70" |
365 | integrity sha512-8lLGgEmhVRRjzZfn/QgpM3+mijq5ORYqRHtLcqDgcQaUY/q/OU1CxLYX777pozyQ3KIq1O+jyyHZm2xu3RZkPA== | 374 | integrity sha512-wiGgIKGtUwR7vUi+PHv7qzEKhlnqT/k78qtOgsF6PiGhXGevJWBIniD4LksbQaW+Ph1Jwl3ovvYEdS89Db46Bw== |
366 | dependencies: | 375 | dependencies: |
367 | "@babel/runtime" "^7.7.2" | 376 | "@babel/runtime" "^7.7.2" |
368 | utif "^2.0.1" | 377 | utif "^2.0.1" |
369 | 378 | ||
370 | "@jimp/types@^0.13.0": | 379 | "@jimp/types@^0.16.0": |
371 | version "0.13.0" | 380 | version "0.16.0" |
372 | resolved "https://registry.yarnpkg.com/@jimp/types/-/types-0.13.0.tgz#e397bc848ee9a01e0fe8e266efcc045f23c36f79" | 381 | resolved "https://registry.yarnpkg.com/@jimp/types/-/types-0.16.0.tgz#cc07b42ccc9e227a1adb6cb742befcf29d538e5e" |
373 | integrity sha512-qGq9qVHiRTgtIy061FSBr9l7OFrSiFLkKyQVnOBndEjwls2XLBKXkMmSD2U3oiHcNuf3ACsDSTIzK3KX/hDHvg== | 382 | integrity sha512-T0VBF1HFXZ+Ez48zQ0sxrOpcFbfSzCulaVONWeEi/CqcNv2B7UmiaA81bw9uLGZ40VIOrFYHB20ma0m1asYBvw== |
374 | dependencies: | 383 | dependencies: |
375 | "@babel/runtime" "^7.7.2" | 384 | "@babel/runtime" "^7.7.2" |
376 | "@jimp/bmp" "^0.13.0" | 385 | "@jimp/bmp" "^0.16.0" |
377 | "@jimp/gif" "^0.13.0" | 386 | "@jimp/gif" "^0.16.0" |
378 | "@jimp/jpeg" "^0.13.0" | 387 | "@jimp/jpeg" "^0.16.0" |
379 | "@jimp/png" "^0.13.0" | 388 | "@jimp/png" "^0.16.0" |
380 | "@jimp/tiff" "^0.13.0" | 389 | "@jimp/tiff" "^0.16.0" |
381 | timm "^1.6.1" | 390 | timm "^1.6.1" |
382 | 391 | ||
383 | "@jimp/utils@^0.13.0": | 392 | "@jimp/utils@^0.16.0": |
384 | version "0.13.0" | 393 | version "0.16.0" |
385 | resolved "https://registry.yarnpkg.com/@jimp/utils/-/utils-0.13.0.tgz#4cde8039a70a1c94baa33e4d8074e174ba895b74" | 394 | resolved "https://registry.yarnpkg.com/@jimp/utils/-/utils-0.16.0.tgz#5a5f2755b468fa2afe024a81455905a038b88391" |
386 | integrity sha512-zA4573jE4FIpBKiYpPGo66JOAGdv/FS/N9fW9GpkbwJeTu12fV+r4R1ARSyt8UEKdE4DMBatBmQC0U2FGZijOA== | 395 | integrity sha512-dZJd5Rq4yOjPtqN/bArNy0v03nnaiHCf/Qct2wdiqK0k4wsfDL2Lle9XmswNcPPFuoL/LNnYY2E5ruAnatF/4A== |
387 | dependencies: | 396 | dependencies: |
388 | "@babel/runtime" "^7.7.2" | 397 | "@babel/runtime" "^7.7.2" |
389 | regenerator-runtime "^0.13.3" | 398 | regenerator-runtime "^0.13.3" |
390 | 399 | ||
391 | "@jsdevtools/ono@^7.1.0": | 400 | "@jsdevtools/ono@^7.1.3": |
392 | version "7.1.2" | 401 | version "7.1.3" |
393 | resolved "https://registry.yarnpkg.com/@jsdevtools/ono/-/ono-7.1.2.tgz#373995bb40a6686589a7fcfec06b0e6e304ef6c6" | 402 | resolved "https://registry.yarnpkg.com/@jsdevtools/ono/-/ono-7.1.3.tgz#9df03bbd7c696a5c58885c34aa06da41c8543796" |
394 | integrity sha512-qS/a24RA5FEoiJS9wiv6Pwg2c/kiUo3IVUQcfeM9JvsR6pM8Yx+yl/6xWYLckZCT5jpLNhslgjiA8p/XcGyMRQ== | 403 | integrity sha512-4JQNk+3mVzK3xh2rqd6RB4J46qUR19azEHBneZyTZM+c456qOrbbM/5xcR8huNCCcbVt7+UmizG6GuUvPvKUYg== |
395 | 404 | ||
396 | "@ladjs/i18n@^3.0.10": | 405 | "@ladjs/i18n@^3.0.10": |
397 | version "3.0.12" | 406 | version "3.0.13" |
398 | resolved "https://registry.yarnpkg.com/@ladjs/i18n/-/i18n-3.0.12.tgz#70a684eec7ce48e37baf4b5ab47ed3df0bb64239" | 407 | resolved "https://registry.yarnpkg.com/@ladjs/i18n/-/i18n-3.0.13.tgz#62ec19c94bccef91aaf3f064e0ed9913e35a4ac9" |
399 | integrity sha512-+jCZq0la/25VndOLYs0oi1hDnDFznfMCPEYDS8NPfLbw7aaJ0YSwi/rlB/GI/fHw87UgtvZ/rhSVADs0/c3hEQ== | 408 | integrity sha512-V4Y2xw/u7lQrOXqnmBUKTFRAuA6Hw6eJheddhbHvjGUav0XD57gUH6gNzuzqaHeZvyFll08YENVjcV7MuO4zOQ== |
400 | dependencies: | 409 | dependencies: |
401 | "@hapi/boom" "^9.1.0" | 410 | "@hapi/boom" "^9.1.0" |
402 | boolean "3.0.1" | 411 | boolean "3.0.1" |
@@ -410,10 +419,10 @@ | |||
410 | qs "^6.9.4" | 419 | qs "^6.9.4" |
411 | titleize "^2.1.0" | 420 | titleize "^2.1.0" |
412 | 421 | ||
413 | "@openapitools/openapi-generator-cli@^1.0.13-4.3.1": | 422 | "@openapitools/openapi-generator-cli@^1.0.15-4.3.1": |
414 | version "1.0.13-4.3.1" | 423 | version "1.0.15-4.3.1" |
415 | resolved "https://registry.yarnpkg.com/@openapitools/openapi-generator-cli/-/openapi-generator-cli-1.0.13-4.3.1.tgz#3360698a6b34a33dd46eaf7cdf1a6a9027b1183f" | 424 | resolved "https://registry.yarnpkg.com/@openapitools/openapi-generator-cli/-/openapi-generator-cli-1.0.15-4.3.1.tgz#25ef943eba3c82e82379b30f858bb05ed97dae0b" |
416 | integrity sha512-hUbSHCXak8vujMpTgH5dDACq0mynya37xgPFD3JbmnwRrPrgrZ4mr3+w7QZJ5aLMCIfb2j3s96d1sWaOZYZzxA== | 425 | integrity sha512-U+sanspDmeBElVNjYHQ4U7BbSEJUQzjNKmiTzXpcEw/r93sgxmzS2Sew5t+Zj6kyN1YTvjhRjJikNcW9/bmTKA== |
417 | 426 | ||
418 | "@sindresorhus/is@^0.14.0": | 427 | "@sindresorhus/is@^0.14.0": |
419 | version "0.14.0" | 428 | version "0.14.0" |
@@ -450,9 +459,9 @@ | |||
450 | integrity sha512-deXFjLZc1h6SOh3hicVgD+S2EAkhSBGX/vdlD4nTzCjjOFQ+bfNiXocQ21xJjFAUwqaCeyvOQMgrnbg4QEV63A== | 459 | integrity sha512-deXFjLZc1h6SOh3hicVgD+S2EAkhSBGX/vdlD4nTzCjjOFQ+bfNiXocQ21xJjFAUwqaCeyvOQMgrnbg4QEV63A== |
451 | 460 | ||
452 | "@types/babel-types@*", "@types/babel-types@^7.0.0": | 461 | "@types/babel-types@*", "@types/babel-types@^7.0.0": |
453 | version "7.0.7" | 462 | version "7.0.8" |
454 | resolved "https://registry.yarnpkg.com/@types/babel-types/-/babel-types-7.0.7.tgz#667eb1640e8039436028055737d2b9986ee336e3" | 463 | resolved "https://registry.yarnpkg.com/@types/babel-types/-/babel-types-7.0.8.tgz#267f405bda841ffae731e7714166b88254cc3e19" |
455 | integrity sha512-dBtBbrc+qTHy1WdfHYjBwRln4+LWqASWakLHsWHR2NWHIFkv4W3O070IGoGLEBrJBvct3r0L1BUPuvURi7kYUQ== | 464 | integrity sha512-jvu8g4LR7+p6ao30RhTREnEhHxmP4/R9D9/rOR/Kq14FztORty9SKgtOZUNZNMB9CXLxZ54EWu4dArUE8WdTsw== |
456 | 465 | ||
457 | "@types/babylon@^6.16.2": | 466 | "@types/babylon@^6.16.2": |
458 | version "6.16.5" | 467 | version "6.16.5" |
@@ -467,9 +476,9 @@ | |||
467 | integrity sha512-nohgNyv+1ViVcubKBh0+XiNJ3dO8nYu///9aJ4cgSqv70gBL+94SNy/iC2NLzKPT2Zt/QavrOkBVbZRLZmw6NQ== | 476 | integrity sha512-nohgNyv+1ViVcubKBh0+XiNJ3dO8nYu///9aJ4cgSqv70gBL+94SNy/iC2NLzKPT2Zt/QavrOkBVbZRLZmw6NQ== |
468 | 477 | ||
469 | "@types/bittorrent-protocol@*": | 478 | "@types/bittorrent-protocol@*": |
470 | version "3.1.0" | 479 | version "3.1.1" |
471 | resolved "https://registry.yarnpkg.com/@types/bittorrent-protocol/-/bittorrent-protocol-3.1.0.tgz#87638a5da5cd909a8646a1d5e164b76a56af64f7" | 480 | resolved "https://registry.yarnpkg.com/@types/bittorrent-protocol/-/bittorrent-protocol-3.1.1.tgz#76bfd5903d0f7c7b23289763f39aca9337b3b723" |
472 | integrity sha512-kx8FPnIIHBFdx6rAo4yfLROFAUAEXoU+zQxvEveZWOIXd9I/v5Uttb0NTa9cyXB0HG1FtE/nrZLKVJ/QhIlsaA== | 481 | integrity sha512-YY3j5aJNTjAt5SA1P+4mK4cU4QuxSN79T1mzdQMLeQL1eTrruU5AxKcgxKZOuatPET3wCDx5JQnq+4XWpFEb/A== |
473 | dependencies: | 482 | dependencies: |
474 | "@types/node" "*" | 483 | "@types/node" "*" |
475 | 484 | ||
@@ -486,10 +495,10 @@ | |||
486 | "@types/connect" "*" | 495 | "@types/connect" "*" |
487 | "@types/node" "*" | 496 | "@types/node" "*" |
488 | 497 | ||
489 | "@types/bull@3.14.0": | 498 | "@types/bull@3.14.2": |
490 | version "3.14.0" | 499 | version "3.14.2" |
491 | resolved "https://registry.yarnpkg.com/@types/bull/-/bull-3.14.0.tgz#60741d3f5006bd4e17b02ff036e6ecef7ac47a6e" | 500 | resolved "https://registry.yarnpkg.com/@types/bull/-/bull-3.14.2.tgz#18c1d9a9dd079ca63971b4d0fac16fc9f5777491" |
492 | integrity sha512-9MKWQ4Q+GFIEA3/SdSc128mAccCKni2YVMKPEdQY5qooN+3gl0Po+f7kaKukgn5s6YXj5xbvc/zTaMsHZL9GvA== | 501 | integrity sha512-+g3Qha7ObdadnM4v/Sz9WDx8eKEaRL4usQmkeUEC25uAltFLioDbAaLnUggfWHONVzW2AxOgzS19ekMmx6zLzA== |
493 | dependencies: | 502 | dependencies: |
494 | "@types/ioredis" "*" | 503 | "@types/ioredis" "*" |
495 | 504 | ||
@@ -518,9 +527,9 @@ | |||
518 | "@types/chai" "*" | 527 | "@types/chai" "*" |
519 | 528 | ||
520 | "@types/chai@*", "@types/chai@^4.0.4": | 529 | "@types/chai@*", "@types/chai@^4.0.4": |
521 | version "4.2.11" | 530 | version "4.2.12" |
522 | resolved "https://registry.yarnpkg.com/@types/chai/-/chai-4.2.11.tgz#d3614d6c5f500142358e6ed24e1bf16657536c50" | 531 | resolved "https://registry.yarnpkg.com/@types/chai/-/chai-4.2.12.tgz#6160ae454cd89dae05adc3bb97997f488b608201" |
523 | integrity sha512-t7uW6eFafjO+qJ3BIV2gGUyZs27egcNRkUdalkud+Qa3+kg//f129iuOFivHDXQ+vnU3fDXuwgv0cqMCbcE8sw== | 532 | integrity sha512-aN5IAC8QNtSUdQzxu7lGBgYAOuU1tmRU4c9dIq5OKGf/SBVjXo+ffM2wEjudAWbgpOhy60nLoAGH1xm8fpCKFQ== |
524 | 533 | ||
525 | "@types/color-name@^1.1.1": | 534 | "@types/color-name@^1.1.1": |
526 | version "1.1.1" | 535 | version "1.1.1" |
@@ -557,25 +566,25 @@ | |||
557 | integrity sha512-OCutwjDZ4aFS6PB1UZ988C4YgwlBHJd6wCeQqaLdmadZ/7e+w79+hbMUFC1QXDNCmdyoRfAFdm0RypzwR+Qpag== | 566 | integrity sha512-OCutwjDZ4aFS6PB1UZ988C4YgwlBHJd6wCeQqaLdmadZ/7e+w79+hbMUFC1QXDNCmdyoRfAFdm0RypzwR+Qpag== |
558 | 567 | ||
559 | "@types/express-rate-limit@^5.0.0": | 568 | "@types/express-rate-limit@^5.0.0": |
560 | version "5.0.0" | 569 | version "5.1.0" |
561 | resolved "https://registry.yarnpkg.com/@types/express-rate-limit/-/express-rate-limit-5.0.0.tgz#46b0dbae748a53347a5e1c3bdbb5a54e3f5c34f9" | 570 | resolved "https://registry.yarnpkg.com/@types/express-rate-limit/-/express-rate-limit-5.1.0.tgz#c08e9b4957989fbe5ff8d5224f392359a264a597" |
562 | integrity sha512-tVRtvshGIYTNiUET3XJaONn1Li0V9mhi9Tb23Kf3rJ19hsgbCywkZBOf5Xhd9OXBO0Ssw7B+qAHL77xe/TiqUw== | 571 | integrity sha512-vmg7S3hUnfFmp06V01DrTB41mbQYXMV/F4aF5KKnfCIeSlnizatXaqO9UgR6LvNEEd3eMpuUTLxR6nv3d4hZ6g== |
563 | dependencies: | 572 | dependencies: |
564 | "@types/express" "*" | 573 | "@types/express" "*" |
565 | 574 | ||
566 | "@types/express-serve-static-core@*": | 575 | "@types/express-serve-static-core@*": |
567 | version "4.17.7" | 576 | version "4.17.9" |
568 | resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.7.tgz#dfe61f870eb549dc6d7e12050901847c7d7e915b" | 577 | resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.9.tgz#2d7b34dcfd25ec663c25c85d76608f8b249667f1" |
569 | integrity sha512-EMgTj/DF9qpgLXyc+Btimg+XoH7A2liE8uKul8qSmMTHCeNYzydDKFdsJskDvw42UsesCnhO63dO0Grbj8J4Dw== | 578 | integrity sha512-DG0BYg6yO+ePW+XoDENYz8zhNGC3jDDEpComMYn7WJc4mY1Us8Rw9ax2YhJXxpyk2SF47PQAoQ0YyVT1a0bEkA== |
570 | dependencies: | 579 | dependencies: |
571 | "@types/node" "*" | 580 | "@types/node" "*" |
572 | "@types/qs" "*" | 581 | "@types/qs" "*" |
573 | "@types/range-parser" "*" | 582 | "@types/range-parser" "*" |
574 | 583 | ||
575 | "@types/express@*", "@types/express@^4.0.35": | 584 | "@types/express@*", "@types/express@^4.0.35": |
576 | version "4.17.6" | 585 | version "4.17.7" |
577 | resolved "https://registry.yarnpkg.com/@types/express/-/express-4.17.6.tgz#6bce49e49570507b86ea1b07b806f04697fac45e" | 586 | resolved "https://registry.yarnpkg.com/@types/express/-/express-4.17.7.tgz#42045be6475636d9801369cd4418ef65cdb0dd59" |
578 | integrity sha512-n/mr9tZI83kd4azlPG5y997C/M4DNABK9yErhFM6hKdym4kkmd9j0vtsJyjFIwfRBxtrxZtAfGZCNRIBMFLK5w== | 587 | integrity sha512-dCOT5lcmV/uC2J9k0rPafATeeyz+99xTt54ReX11/LObZgfzJqZNcW27zGhYyX+9iSEGXGt5qLPwRSvBZcLvtQ== |
579 | dependencies: | 588 | dependencies: |
580 | "@types/body-parser" "*" | 589 | "@types/body-parser" "*" |
581 | "@types/express-serve-static-core" "*" | 590 | "@types/express-serve-static-core" "*" |
@@ -597,9 +606,9 @@ | |||
597 | "@types/node" "*" | 606 | "@types/node" "*" |
598 | 607 | ||
599 | "@types/ioredis@*": | 608 | "@types/ioredis@*": |
600 | version "4.16.5" | 609 | version "4.17.3" |
601 | resolved "https://registry.yarnpkg.com/@types/ioredis/-/ioredis-4.16.5.tgz#861384f39974a9d1b70bbad48e967e11fdb591a5" | 610 | resolved "https://registry.yarnpkg.com/@types/ioredis/-/ioredis-4.17.3.tgz#65ba8b9344576ecb229c57ec1db92be3fe830ee9" |
602 | integrity sha512-jU60KcKiyFfNIz+rXbqm1tx+FqKOg8LnlSH+3o+j92IP1SQ2U9a2OZn/UkjzPoWgn0K7DtorraDsdpFgLyc9FQ== | 611 | integrity sha512-G0pN/WZb7OBMFksZOBcqATBUeBII00IZ7C9OW0bm7VG3XMXBI75stTXWLBxm6iNLQxdjFZgzThRbc3gBXBhZGw== |
603 | dependencies: | 612 | dependencies: |
604 | "@types/node" "*" | 613 | "@types/node" "*" |
605 | 614 | ||
@@ -621,9 +630,9 @@ | |||
621 | "@types/node" "*" | 630 | "@types/node" "*" |
622 | 631 | ||
623 | "@types/lodash@^4.14.64": | 632 | "@types/lodash@^4.14.64": |
624 | version "4.14.155" | 633 | version "4.14.160" |
625 | resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.155.tgz#e2b4514f46a261fd11542e47519c20ebce7bc23a" | 634 | resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.160.tgz#2f1bba6500bc3cb9a732c6d66a083378fb0b0b29" |
626 | integrity sha512-vEcX7S7aPhsBCivxMwAANQburHBtfN9RdyXFk84IJmu2Z4Hkg1tOFgaslRiEqqvoLtbCBi6ika1EMspE+NZ9Lg== | 635 | integrity sha512-aP03BShJoO+WVndoVj/WNcB/YBPt+CIU1mvaao2GRAHy2yg4pT/XS4XnVHEQBjPJGycWf/9seKEO9vopTJGkvA== |
627 | 636 | ||
628 | "@types/lru-cache@^5.1.0": | 637 | "@types/lru-cache@^5.1.0": |
629 | version "5.1.0" | 638 | version "5.1.0" |
@@ -650,9 +659,9 @@ | |||
650 | integrity sha512-c9+1g6+6vEqcw5UuM0RbfQV0mssmZcoG9+hNC5ptDCsv4G+XJW1Z4pE13wV5zbc9e0+YrDydALBTiD3nWG1a3g== | 659 | integrity sha512-c9+1g6+6vEqcw5UuM0RbfQV0mssmZcoG9+hNC5ptDCsv4G+XJW1Z4pE13wV5zbc9e0+YrDydALBTiD3nWG1a3g== |
651 | 660 | ||
652 | "@types/mime@*": | 661 | "@types/mime@*": |
653 | version "2.0.2" | 662 | version "2.0.3" |
654 | resolved "https://registry.yarnpkg.com/@types/mime/-/mime-2.0.2.tgz#857a118d8634c84bba7ae14088e4508490cd5da5" | 663 | resolved "https://registry.yarnpkg.com/@types/mime/-/mime-2.0.3.tgz#c893b73721db73699943bfc3653b1deb7faa4a3a" |
655 | integrity sha512-4kPlzbljFcsttWEq6aBW0OZe6BDajAmyvr2xknBG92tejQnvdGtT9+kXSZ580DqpxY9qG2xeQVF9Dq0ymUTo5Q== | 664 | integrity sha512-Jus9s4CDbqwocc5pOAnh8ShfrnMcPHuJYzVcSUU7lrh8Ni5HuIqX3oilL86p3dlTrk0LzHRCgA/GQ7uNCw6l2Q== |
656 | 665 | ||
657 | "@types/minimatch@^3.0.3": | 666 | "@types/minimatch@^3.0.3": |
658 | version "3.0.3" | 667 | version "3.0.3" |
@@ -666,10 +675,10 @@ | |||
666 | dependencies: | 675 | dependencies: |
667 | "@types/node" "*" | 676 | "@types/node" "*" |
668 | 677 | ||
669 | "@types/mocha@^7.0.1": | 678 | "@types/mocha@^8.0.3": |
670 | version "7.0.2" | 679 | version "8.0.3" |
671 | resolved "https://registry.yarnpkg.com/@types/mocha/-/mocha-7.0.2.tgz#b17f16cf933597e10d6d78eae3251e692ce8b0ce" | 680 | resolved "https://registry.yarnpkg.com/@types/mocha/-/mocha-8.0.3.tgz#51b21b6acb6d1b923bbdc7725c38f9f455166402" |
672 | integrity sha512-ZvO2tAcjmMi8V/5Z3JsyofMe3hasRcaw88cto5etSVMwVQfeivGAlEYmaQgceUSVYFofVjT+ioHsATjdWcFt1w== | 681 | integrity sha512-vyxR57nv8NfcU0GZu8EUXZLTbCMupIUwy95LJ6lllN+JRPG25CwMHoB1q5xKh8YKhQnHYRAn4yW2yuHbf/5xgg== |
673 | 682 | ||
674 | "@types/morgan@^1.7.32": | 683 | "@types/morgan@^1.7.32": |
675 | version "1.9.1" | 684 | version "1.9.1" |
@@ -679,16 +688,16 @@ | |||
679 | "@types/node" "*" | 688 | "@types/node" "*" |
680 | 689 | ||
681 | "@types/multer@^1.3.3": | 690 | "@types/multer@^1.3.3": |
682 | version "1.4.3" | 691 | version "1.4.4" |
683 | resolved "https://registry.yarnpkg.com/@types/multer/-/multer-1.4.3.tgz#bdff74b334c38a8ee1de9fbedb5d1d3dbc377422" | 692 | resolved "https://registry.yarnpkg.com/@types/multer/-/multer-1.4.4.tgz#bb5d9abc410da82726ceca74008bb81813349a88" |
684 | integrity sha512-tWsKbF5LYtXrJ7eOfI0aLBgEv9B7fnJe1JRXTj5+Z6EMfX0yHVsRFsNGnKyN8Bs0gtDv+JR37xAqsPnALyVTqg== | 693 | integrity sha512-wdfkiKBBEMTODNbuF3J+qDDSqJxt50yB9pgDiTcFew7f97Gcc7/sM4HR66ofGgpJPOALWOqKAch4gPyqEXSkeQ== |
685 | dependencies: | 694 | dependencies: |
686 | "@types/express" "*" | 695 | "@types/express" "*" |
687 | 696 | ||
688 | "@types/node@*", "@types/node@^14.0.13", "@types/node@^14.0.5": | 697 | "@types/node@*", "@types/node@^14.0.13", "@types/node@^14.0.18": |
689 | version "14.0.13" | 698 | version "14.6.0" |
690 | resolved "https://registry.yarnpkg.com/@types/node/-/node-14.0.13.tgz#ee1128e881b874c371374c1f72201893616417c9" | 699 | resolved "https://registry.yarnpkg.com/@types/node/-/node-14.6.0.tgz#7d4411bf5157339337d7cff864d9ff45f177b499" |
691 | integrity sha512-rouEWBImiRaSJsVA+ITTFM6ZxibuAlTuNOCyxVbwreu6k6+ujs7DfnU9o+PShFhET78pMBl3eH+AGSI5eOTkPA== | 700 | integrity sha512-mikldZQitV94akrc4sCcSjtJfsTKt4p+e/s0AGscVA6XArQ9kFclP+ZiYUMnq987rc6QlYxXv/EivqlfSLxpKA== |
692 | 701 | ||
693 | "@types/nodemailer@^6.2.0": | 702 | "@types/nodemailer@^6.2.0": |
694 | version "6.4.0" | 703 | version "6.4.0" |
@@ -728,9 +737,9 @@ | |||
728 | "@types/node" "*" | 737 | "@types/node" "*" |
729 | 738 | ||
730 | "@types/qs@*": | 739 | "@types/qs@*": |
731 | version "6.9.3" | 740 | version "6.9.4" |
732 | resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.3.tgz#b755a0934564a200d3efdf88546ec93c369abd03" | 741 | resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.4.tgz#a59e851c1ba16c0513ea123830dd639a0a15cb6a" |
733 | integrity sha512-7s9EQWupR1fTc2pSMtXRQ9w9gLOcrJn+h7HOXw4evxyvVqMi4f+q7d2tnFe3ng3SNHjtK+0EzGMGFUQX4/AQRA== | 742 | integrity sha512-+wYo+L6ZF6BMoEjtf8zB2esQsqdV6WsjRK/GP9WOgLPrq87PbNWgIxS76dS5uvl/QXtHGakZmwTznIfcPXcKlQ== |
734 | 743 | ||
735 | "@types/range-parser@*": | 744 | "@types/range-parser@*": |
736 | version "1.2.3" | 745 | version "1.2.3" |
@@ -738,9 +747,9 @@ | |||
738 | integrity sha512-ewFXqrQHlFsgc09MK5jP5iR7vumV/BYayNC6PgJO2LPe8vrnNFyjQjSppfEngITi0qvfKtzFvgKymGheFM9UOA== | 747 | integrity sha512-ewFXqrQHlFsgc09MK5jP5iR7vumV/BYayNC6PgJO2LPe8vrnNFyjQjSppfEngITi0qvfKtzFvgKymGheFM9UOA== |
739 | 748 | ||
740 | "@types/redis@*", "@types/redis@^2.8.5": | 749 | "@types/redis@*", "@types/redis@^2.8.5": |
741 | version "2.8.22" | 750 | version "2.8.26" |
742 | resolved "https://registry.yarnpkg.com/@types/redis/-/redis-2.8.22.tgz#8935227cbe39080506b625276d64974ddbcb9ea4" | 751 | resolved "https://registry.yarnpkg.com/@types/redis/-/redis-2.8.26.tgz#c7e773cc59b7b8b887fa3e1bc45b5abee2326480" |
743 | integrity sha512-O21YLcAtcSzax8wy4CfxMNjIMNf5X2c1pKTXDWLMa2p77Igvy7wuNjWVv+Db93wTvRvLLev6oq3IE7gxNKFZyg== | 752 | integrity sha512-/Sot3oAGnrHQ9C3HRFXDApzBEugoYFyh4Pd8y1d9x4yCoOejFLbrD5gWQrsdANPpSj8VbucEJrNMJv1nzMptIA== |
744 | dependencies: | 753 | dependencies: |
745 | "@types/node" "*" | 754 | "@types/node" "*" |
746 | 755 | ||
@@ -762,9 +771,9 @@ | |||
762 | "@types/node" "*" | 771 | "@types/node" "*" |
763 | 772 | ||
764 | "@types/serve-static@*": | 773 | "@types/serve-static@*": |
765 | version "1.13.4" | 774 | version "1.13.5" |
766 | resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.13.4.tgz#6662a93583e5a6cabca1b23592eb91e12fa80e7c" | 775 | resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.13.5.tgz#3d25d941a18415d3ab092def846e135a08bbcf53" |
767 | integrity sha512-jTDt0o/YbpNwZbQmE/+2e+lfjJEJJR0I3OFaKQKPWkASkCoW3i6fsUnqudSMcNAfbtmADGu8f4MV4q+GqULmug== | 776 | integrity sha512-6M64P58N+OXjU432WoLLBQxbA0LRGBCRm7aAGQJ+SMC1IMl0dgRVi9EFfoDcS2a7Xogygk/eGN94CfwU9UF7UQ== |
768 | dependencies: | 777 | dependencies: |
769 | "@types/express-serve-static-core" "*" | 778 | "@types/express-serve-static-core" "*" |
770 | "@types/mime" "*" | 779 | "@types/mime" "*" |
@@ -777,25 +786,25 @@ | |||
777 | "@types/node" "*" | 786 | "@types/node" "*" |
778 | 787 | ||
779 | "@types/socket.io@^2.1.2": | 788 | "@types/socket.io@^2.1.2": |
780 | version "2.1.8" | 789 | version "2.1.11" |
781 | resolved "https://registry.yarnpkg.com/@types/socket.io/-/socket.io-2.1.8.tgz#ffc3aac0163a58bf50a463d50b1baabed91638cc" | 790 | resolved "https://registry.yarnpkg.com/@types/socket.io/-/socket.io-2.1.11.tgz#e0d6759880e5f9818d5297a3328b36641bae996b" |
782 | integrity sha512-NIQfh9WwJuJKlgmby4NgwMpoBOmNPCDgaRNPiLYZBtkbHkszK/9R52B5yGkd5a34rbVdAADuo8FhOS/5AZDemw== | 791 | integrity sha512-bVprmqPhJMLb9ZCm8g0Xy8kwBFRbnanOWSxzWkDkkIwxTvud5tKMfAJymXX6LQbizUKCS1yima7JM4BeLqjNqA== |
783 | dependencies: | 792 | dependencies: |
784 | "@types/engine.io" "*" | 793 | "@types/engine.io" "*" |
785 | "@types/node" "*" | 794 | "@types/node" "*" |
786 | 795 | ||
787 | "@types/superagent@*": | 796 | "@types/superagent@*": |
788 | version "4.1.7" | 797 | version "4.1.9" |
789 | resolved "https://registry.yarnpkg.com/@types/superagent/-/superagent-4.1.7.tgz#a7d92d98c490ee0f802a127fdf149b9a114f77a5" | 798 | resolved "https://registry.yarnpkg.com/@types/superagent/-/superagent-4.1.9.tgz#d899d3bc90b17eb298cac18b7aa22f7c3ec88c13" |
790 | integrity sha512-JSwNPgRYjIC4pIeOqLwWwfGj6iP1n5NE6kNBEbGx2V8H78xCPwx7QpNp9plaI30+W3cFEzJO7BIIsXE+dbtaGg== | 799 | integrity sha512-gpIC0p49YHT4VYDbdl0fKjOMWBurJFfYtKUIxOHzOwBtu5VT29FyldFI2vbmZ1K2iH2vS6MVcJZMjHM+652l4Q== |
791 | dependencies: | 800 | dependencies: |
792 | "@types/cookiejar" "*" | 801 | "@types/cookiejar" "*" |
793 | "@types/node" "*" | 802 | "@types/node" "*" |
794 | 803 | ||
795 | "@types/supertest@^2.0.3": | 804 | "@types/supertest@^2.0.3": |
796 | version "2.0.9" | 805 | version "2.0.10" |
797 | resolved "https://registry.yarnpkg.com/@types/supertest/-/supertest-2.0.9.tgz#049bddbcb0ee0d60a9b836ccc977d813a1c32325" | 806 | resolved "https://registry.yarnpkg.com/@types/supertest/-/supertest-2.0.10.tgz#630d79b4d82c73e043e43ff777a9ca98d457cab7" |
798 | integrity sha512-0BTpWWWAO1+uXaP/oA0KW1eOZv4hc0knhrWowV06Gwwz3kqQxNO98fUFM2e15T+PdPRmOouNFrYvaBgdojPJ3g== | 807 | integrity sha512-Xt8TbEyZTnD5Xulw95GLMOkmjGICrOQyJ2jqgkSjAUR3mm7pAIzSR0NFBaMcwlzVvlpCjNwbATcWWwjNiZiFrQ== |
799 | dependencies: | 808 | dependencies: |
800 | "@types/superagent" "*" | 809 | "@types/superagent" "*" |
801 | 810 | ||
@@ -810,9 +819,9 @@ | |||
810 | integrity sha512-NtJmi+XbYocrLb5Au4Q64srX4FlCPDvrSF/OnK3H0QJwrw40tIUoQPDoUHnZ5wpAB2KThtVyeS+kOEQyZabORg== | 819 | integrity sha512-NtJmi+XbYocrLb5Au4Q64srX4FlCPDvrSF/OnK3H0QJwrw40tIUoQPDoUHnZ5wpAB2KThtVyeS+kOEQyZabORg== |
811 | 820 | ||
812 | "@types/validator@^13.0.0": | 821 | "@types/validator@^13.0.0": |
813 | version "13.0.0" | 822 | version "13.1.0" |
814 | resolved "https://registry.yarnpkg.com/@types/validator/-/validator-13.0.0.tgz#365f1bf936aeaddd0856fc41aa1d6f82d88ee5b3" | 823 | resolved "https://registry.yarnpkg.com/@types/validator/-/validator-13.1.0.tgz#3d776127dbce7dd31fc06f86d3428b072e631eba" |
815 | integrity sha512-WAy5txG7aFX8Vw3sloEKp5p/t/Xt8jD3GRD9DacnFv6Vo8ubudAsRTXgxpQwU0mpzY/H8U4db3roDuCMjShBmw== | 824 | integrity sha512-gHUHI6pJaANIO2r6WcbT7+WMgbL9GZooR4tWpuBOETpDIqFNxwaJluE+6rj6VGYe8k6OkfhbHz2Fkm8kl06Igw== |
816 | 825 | ||
817 | "@types/webtorrent@^0.107.0": | 826 | "@types/webtorrent@^0.107.0": |
818 | version "0.107.2" | 827 | version "0.107.2" |
@@ -825,56 +834,72 @@ | |||
825 | "@types/simple-peer" "*" | 834 | "@types/simple-peer" "*" |
826 | 835 | ||
827 | "@types/ws@^7.2.1": | 836 | "@types/ws@^7.2.1": |
828 | version "7.2.5" | 837 | version "7.2.6" |
829 | resolved "https://registry.yarnpkg.com/@types/ws/-/ws-7.2.5.tgz#513f28b04a1ea1aa9dc2cad3f26e8e37c88aae49" | 838 | resolved "https://registry.yarnpkg.com/@types/ws/-/ws-7.2.6.tgz#516cbfb818310f87b43940460e065eb912a4178d" |
830 | integrity sha512-4UEih9BI1nBKii385G9id1oFrSkLcClbwtDfcYj8HJLQqZVAtb/42vXVrYvRWCcufNF/a+rZD3MxNwghA7UmCg== | 839 | integrity sha512-Q07IrQUSNpr+cXU4E4LtkSIBPie5GLZyyMC1QtQYRLWz701+XcoVygGUZgvLqElq1nU4ICldMYPnexlBsg3dqQ== |
831 | dependencies: | 840 | dependencies: |
832 | "@types/node" "*" | 841 | "@types/node" "*" |
833 | 842 | ||
834 | "@typescript-eslint/eslint-plugin@^3.3.0": | 843 | "@typescript-eslint/eslint-plugin@^3.3.0": |
835 | version "3.3.0" | 844 | version "3.10.0" |
836 | resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-3.3.0.tgz#89518e5c5209a349bde161c3489b0ec187ae5d37" | 845 | resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-3.10.0.tgz#40fd53e81639c0d1a515b44e5fdf4c03dfd3cd39" |
837 | integrity sha512-Ybx/wU75Tazz6nU2d7nN6ll0B98odoiYLXwcuwS5WSttGzK46t0n7TPRQ4ozwcTv82UY6TQoIvI+sJfTzqK9dQ== | 846 | integrity sha512-Bbeg9JAnSzZ85Y0gpInZscSpifA6SbEgRryaKdP5ZlUjhTKsvZS4GUIE6xAZCjhNTrf4zXXsySo83ZdHL7it0w== |
838 | dependencies: | 847 | dependencies: |
839 | "@typescript-eslint/experimental-utils" "3.3.0" | 848 | "@typescript-eslint/experimental-utils" "3.10.0" |
849 | debug "^4.1.1" | ||
840 | functional-red-black-tree "^1.0.1" | 850 | functional-red-black-tree "^1.0.1" |
841 | regexpp "^3.0.0" | 851 | regexpp "^3.0.0" |
842 | semver "^7.3.2" | 852 | semver "^7.3.2" |
843 | tsutils "^3.17.1" | 853 | tsutils "^3.17.1" |
844 | 854 | ||
845 | "@typescript-eslint/experimental-utils@3.3.0": | 855 | "@typescript-eslint/experimental-utils@3.10.0": |
846 | version "3.3.0" | 856 | version "3.10.0" |
847 | resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-3.3.0.tgz#d72a946e056a83d4edf97f3411cceb639b0b8c87" | 857 | resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-3.10.0.tgz#f97a669a84a78319ab324cd51169d0c52853a360" |
848 | integrity sha512-d4pGIAbu/tYsrPrdHCQ5xfadJGvlkUxbeBB56nO/VGmEDi/sKmfa5fGty5t5veL1OyJBrUmSiRn1R1qfVDydrg== | 858 | integrity sha512-e5ZLSTuXgqC/Gq3QzK2orjlhTZVXzwxDujQmTBOM1NIVBZgW3wiIZjaXuVutk9R4UltFlwC9UD2+bdxsA7yyNg== |
849 | dependencies: | 859 | dependencies: |
850 | "@types/json-schema" "^7.0.3" | 860 | "@types/json-schema" "^7.0.3" |
851 | "@typescript-eslint/typescript-estree" "3.3.0" | 861 | "@typescript-eslint/types" "3.10.0" |
862 | "@typescript-eslint/typescript-estree" "3.10.0" | ||
852 | eslint-scope "^5.0.0" | 863 | eslint-scope "^5.0.0" |
853 | eslint-utils "^2.0.0" | 864 | eslint-utils "^2.0.0" |
854 | 865 | ||
855 | "@typescript-eslint/parser@^3.0.1": | 866 | "@typescript-eslint/parser@^3.0.1": |
856 | version "3.3.0" | 867 | version "3.10.0" |
857 | resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-3.3.0.tgz#fcae40012ded822aa8b2739a1a03a4e3c5bbb7bb" | 868 | resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-3.10.0.tgz#820322d990a82265a78f4c1fc9aae03ce95b76ac" |
858 | integrity sha512-a7S0Sqn/+RpOOWTcaLw6RD4obsharzxmgMfdK24l364VxuBODXjuJM7ImCkSXEN7oz52aiZbXSbc76+2EsE91w== | 869 | integrity sha512-iJyf3f2HVwscvJR7ySGMXw2DJgIAPKEz8TeU17XVKzgJRV4/VgCeDFcqLzueRe7iFI2gv+Tln4AV88ZOnsCNXg== |
859 | dependencies: | 870 | dependencies: |
860 | "@types/eslint-visitor-keys" "^1.0.0" | 871 | "@types/eslint-visitor-keys" "^1.0.0" |
861 | "@typescript-eslint/experimental-utils" "3.3.0" | 872 | "@typescript-eslint/experimental-utils" "3.10.0" |
862 | "@typescript-eslint/typescript-estree" "3.3.0" | 873 | "@typescript-eslint/types" "3.10.0" |
874 | "@typescript-eslint/typescript-estree" "3.10.0" | ||
863 | eslint-visitor-keys "^1.1.0" | 875 | eslint-visitor-keys "^1.1.0" |
864 | 876 | ||
865 | "@typescript-eslint/typescript-estree@3.3.0": | 877 | "@typescript-eslint/types@3.10.0": |
866 | version "3.3.0" | 878 | version "3.10.0" |
867 | resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-3.3.0.tgz#841ffed25c29b0049ebffb4c2071268a34558a2a" | 879 | resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-3.10.0.tgz#b81906674eca94a884345ba0bc1aaf6cd4da912a" |
868 | integrity sha512-3SqxylENltEvJsjjMSDCUx/edZNSC7wAqifUU1Ywp//0OWEZwMZJfecJud9XxJ/40rAKEbJMKBOQzeOjrLJFzQ== | 880 | integrity sha512-ktUWSa75heQNwH85GRM7qP/UUrXqx9d6yIdw0iLO9/uE1LILW+i+3+B64dUodUS2WFWLzKTlwfi9giqrODibWg== |
881 | |||
882 | "@typescript-eslint/typescript-estree@3.10.0": | ||
883 | version "3.10.0" | ||
884 | resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-3.10.0.tgz#65df13579a5e53c12afb4f1c5309589e3855a5de" | ||
885 | integrity sha512-yjuY6rmVHRhcUKgXaSPNVloRueGWpFNhxR5EQLzxXfiFSl1U/+FBqHhbaGwtPPEgCSt61QNhZgiFjWT27bgAyw== | ||
869 | dependencies: | 886 | dependencies: |
887 | "@typescript-eslint/types" "3.10.0" | ||
888 | "@typescript-eslint/visitor-keys" "3.10.0" | ||
870 | debug "^4.1.1" | 889 | debug "^4.1.1" |
871 | eslint-visitor-keys "^1.1.0" | ||
872 | glob "^7.1.6" | 890 | glob "^7.1.6" |
873 | is-glob "^4.0.1" | 891 | is-glob "^4.0.1" |
874 | lodash "^4.17.15" | 892 | lodash "^4.17.15" |
875 | semver "^7.3.2" | 893 | semver "^7.3.2" |
876 | tsutils "^3.17.1" | 894 | tsutils "^3.17.1" |
877 | 895 | ||
896 | "@typescript-eslint/visitor-keys@3.10.0": | ||
897 | version "3.10.0" | ||
898 | resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-3.10.0.tgz#6c0cac867e705a42e2c71b359bf6a10a88a28985" | ||
899 | integrity sha512-g4qftk8lWb/rHZe9uEp8oZSvsJhUvR2cfp7F7qE6DyUD2SsovEs8JDQTRP1xHzsD+pERsEpYNqkDgQXW6+ob5A== | ||
900 | dependencies: | ||
901 | eslint-visitor-keys "^1.1.0" | ||
902 | |||
878 | abbrev@1: | 903 | abbrev@1: |
879 | version "1.1.1" | 904 | version "1.1.1" |
880 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" | 905 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" |
@@ -910,10 +935,10 @@ acorn@^4.0.4, acorn@~4.0.2: | |||
910 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" | 935 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787" |
911 | integrity sha1-EFSVrlNh1pe9GVyCUZLhrX8lN4c= | 936 | integrity sha1-EFSVrlNh1pe9GVyCUZLhrX8lN4c= |
912 | 937 | ||
913 | acorn@^7.1.1, acorn@^7.2.0: | 938 | acorn@^7.1.1, acorn@^7.4.0: |
914 | version "7.3.1" | 939 | version "7.4.0" |
915 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.3.1.tgz#85010754db53c3fbaf3b9ea3e083aa5c5d147ffd" | 940 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.0.tgz#e1ad486e6c54501634c6c397c5c121daa383607c" |
916 | integrity sha512-tLc0wSnatxAQHVHUapaHdz72pi9KUyHjq5KyHjGg9Y8Ifdc79pTh2XvI6I1/chZbnM7QtNKzh66ooDogPZSleA== | 941 | integrity sha512-+G7P8jJmCHr+S+cLfQxygbWhXy+8YTVGzAkpEbcLo2mLoL7tij/VG41QSHACSf5QgYRhMZYHuNc6drJaO0Da+w== |
917 | 942 | ||
918 | addr-to-ip-port@^1.0.1, addr-to-ip-port@^1.5.1: | 943 | addr-to-ip-port@^1.0.1, addr-to-ip-port@^1.5.1: |
919 | version "1.5.1" | 944 | version "1.5.1" |
@@ -930,10 +955,10 @@ after@0.8.2: | |||
930 | resolved "https://registry.yarnpkg.com/after/-/after-0.8.2.tgz#fedb394f9f0e02aa9768e702bda23b505fae7e1f" | 955 | resolved "https://registry.yarnpkg.com/after/-/after-0.8.2.tgz#fedb394f9f0e02aa9768e702bda23b505fae7e1f" |
931 | integrity sha1-/ts5T58OAqqXaOcCvaI7UF+ufh8= | 956 | integrity sha1-/ts5T58OAqqXaOcCvaI7UF+ufh8= |
932 | 957 | ||
933 | ajv@^6.10.0, ajv@^6.10.2, ajv@^6.5.5: | 958 | ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.3: |
934 | version "6.12.2" | 959 | version "6.12.4" |
935 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.2.tgz#c629c5eced17baf314437918d2da88c99d5958cd" | 960 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.4.tgz#0614facc4522127fa713445c6bfd3ebd376e2234" |
936 | integrity sha512-k+V+hzjm5q/Mr8ef/1Y9goCmlsK4I6Sm74teeyGvFk1XrOsbsKLjEdrvny42CZ+a8sXbk8KWpY/bDwS+FLL2UQ== | 961 | integrity sha512-eienB2c9qVQs2KWexhkrdMLVDoIQCz5KSeLxwg9Lzk4DOfBtIK9PQwwufcsn1jjGuf9WZmqPMbGxOzfcuphJCQ== |
937 | dependencies: | 962 | dependencies: |
938 | fast-deep-equal "^3.1.1" | 963 | fast-deep-equal "^3.1.1" |
939 | fast-json-stable-stringify "^2.0.0" | 964 | fast-json-stable-stringify "^2.0.0" |
@@ -956,18 +981,11 @@ ansi-align@^3.0.0: | |||
956 | dependencies: | 981 | dependencies: |
957 | string-width "^3.0.0" | 982 | string-width "^3.0.0" |
958 | 983 | ||
959 | ansi-colors@4.1.1: | 984 | ansi-colors@4.1.1, ansi-colors@^4.1.1: |
960 | version "4.1.1" | 985 | version "4.1.1" |
961 | resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348" | 986 | resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348" |
962 | integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA== | 987 | integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA== |
963 | 988 | ||
964 | ansi-escapes@^4.2.1: | ||
965 | version "4.3.1" | ||
966 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.1.tgz#a5c47cc43181f1f38ffd7076837700d395522a61" | ||
967 | integrity sha512-JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA== | ||
968 | dependencies: | ||
969 | type-fest "^0.11.0" | ||
970 | |||
971 | ansi-regex@^2.0.0: | 989 | ansi-regex@^2.0.0: |
972 | version "2.1.1" | 990 | version "2.1.1" |
973 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" | 991 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" |
@@ -1195,9 +1213,9 @@ aws-sign2@~0.7.0: | |||
1195 | integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg= | 1213 | integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg= |
1196 | 1214 | ||
1197 | aws4@^1.8.0: | 1215 | aws4@^1.8.0: |
1198 | version "1.10.0" | 1216 | version "1.10.1" |
1199 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.10.0.tgz#a17b3a8ea811060e74d47d306122400ad4497ae2" | 1217 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.10.1.tgz#e1e82e4f3e999e2cfd61b161280d16a111f86428" |
1200 | integrity sha512-3YDiu347mtVtjpyV3u5kVqQLP242c06zwDOgpeRnybmXlYYsLbtTrUBUm8i8srONt+FWobl5aibnU1030PeeuA== | 1218 | integrity sha512-zg7Hz2k5lI8kb7U32998pRRFin7zJlkfezGJjUc2heaD4Pw2wObakCDVzkKztTm/Ln7eiVvYsjqak0Ed4LkMDA== |
1201 | 1219 | ||
1202 | babel-runtime@^6.26.0: | 1220 | babel-runtime@^6.26.0: |
1203 | version "6.26.0" | 1221 | version "6.26.0" |
@@ -1301,9 +1319,9 @@ better-assert@~1.0.0: | |||
1301 | callsite "1.0.0" | 1319 | callsite "1.0.0" |
1302 | 1320 | ||
1303 | binary-extensions@^2.0.0: | 1321 | binary-extensions@^2.0.0: |
1304 | version "2.0.0" | 1322 | version "2.1.0" |
1305 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.0.0.tgz#23c0df14f6a88077f5f986c0d167ec03c3d5537c" | 1323 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.1.0.tgz#30fa40c9e7fe07dbc895678cd287024dea241dd9" |
1306 | integrity sha512-Phlt0plgpIIBOGTT/ehfFnbNlfsDEiqmzE2KRXoX1bLIlir4X/MR+zSyBEkL05ffWgnRSf/DXv+WrUAVr93/ow== | 1324 | integrity sha512-1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ== |
1307 | 1325 | ||
1308 | binary-search@^1.3.4: | 1326 | binary-search@^1.3.4: |
1309 | version "1.3.6" | 1327 | version "1.3.6" |
@@ -1336,9 +1354,9 @@ bittorrent-dht@^10.0.0: | |||
1336 | simple-sha1 "^3.0.0" | 1354 | simple-sha1 "^3.0.0" |
1337 | 1355 | ||
1338 | bittorrent-peerid@^1.3.2: | 1356 | bittorrent-peerid@^1.3.2: |
1339 | version "1.3.2" | 1357 | version "1.3.3" |
1340 | resolved "https://registry.yarnpkg.com/bittorrent-peerid/-/bittorrent-peerid-1.3.2.tgz#aca9ff812ec099c882079bec60b5558a3adb56fa" | 1358 | resolved "https://registry.yarnpkg.com/bittorrent-peerid/-/bittorrent-peerid-1.3.3.tgz#b8dc79e421f8136d2ffd0b163a18e9d70da09949" |
1341 | integrity sha512-3xPhNfklf4xzxFVw9Y7W5dnGNhubVF0r8BK3imIsB6E3aDA4d6WhsceK1Yusos0TiiB9QZrdCsVXVqs26sFMxw== | 1359 | integrity sha512-tSh9HdQgwyEAfo1jzoGEis6o/zs4CcdRTchG93XVl5jct+DCAN90M5MVUV76k2vJ9Xg3GAzLB5NLsY/vnVTh6w== |
1342 | 1360 | ||
1343 | bittorrent-protocol@^3.1.1: | 1361 | bittorrent-protocol@^3.1.1: |
1344 | version "3.1.1" | 1362 | version "3.1.1" |
@@ -1415,9 +1433,9 @@ bmp-js@^0.1.0: | |||
1415 | integrity sha1-4Fpj95amwf8l9Hcex62twUjAcjM= | 1433 | integrity sha1-4Fpj95amwf8l9Hcex62twUjAcjM= |
1416 | 1434 | ||
1417 | bn.js@^5.1.1: | 1435 | bn.js@^5.1.1: |
1418 | version "5.1.2" | 1436 | version "5.1.3" |
1419 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.1.2.tgz#c9686902d3c9a27729f43ab10f9d79c2004da7b0" | 1437 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.1.3.tgz#beca005408f642ebebea80b042b4d18d2ac0ee6b" |
1420 | integrity sha512-40rZaf3bUNKTVYu9sIeeEGOg7g14Yvnj9kH7b50EiwX0Q7A6umbvfI5tvHaOERH0XigqKkfLkFQxzb4e6CIXnA== | 1438 | integrity sha512-GkTiFpjFtUzU9CbMeJ5iazkCzGL3jrhzerzZIuqLABjbwRaFt33I9tUdSNryIptM+RxDet6OKm2WnLXzW51KsQ== |
1421 | 1439 | ||
1422 | body-parser@1.19.0, body-parser@^1.12.4: | 1440 | body-parser@1.19.0, body-parser@^1.12.4: |
1423 | version "1.19.0" | 1441 | version "1.19.0" |
@@ -1445,11 +1463,6 @@ boolean@3.0.1: | |||
1445 | resolved "https://registry.yarnpkg.com/boolean/-/boolean-3.0.1.tgz#35ecf2b4a2ee191b0b44986f14eb5f052a5cbb4f" | 1463 | resolved "https://registry.yarnpkg.com/boolean/-/boolean-3.0.1.tgz#35ecf2b4a2ee191b0b44986f14eb5f052a5cbb4f" |
1446 | integrity sha512-HRZPIjPcbwAVQvOTxR4YE3o8Xs98NqbbL1iEZDCz7CL8ql0Lt5iOyJFxfnAB0oFs8Oh02F/lLlg30Mexv46LjA== | 1464 | integrity sha512-HRZPIjPcbwAVQvOTxR4YE3o8Xs98NqbbL1iEZDCz7CL8ql0Lt5iOyJFxfnAB0oFs8Oh02F/lLlg30Mexv46LjA== |
1447 | 1465 | ||
1448 | bowser@2.9.0: | ||
1449 | version "2.9.0" | ||
1450 | resolved "https://registry.yarnpkg.com/bowser/-/bowser-2.9.0.tgz#3bed854233b419b9a7422d9ee3e85504373821c9" | ||
1451 | integrity sha512-2ld76tuLBNFekRgmJfT2+3j5MIrP6bFict8WAIT3beq+srz1gcKNAdNKMqHqauQt63NmAa88HfP1/Ypa9Er3HA== | ||
1452 | |||
1453 | boxen@^4.2.0: | 1466 | boxen@^4.2.0: |
1454 | version "4.2.0" | 1467 | version "4.2.0" |
1455 | resolved "https://registry.yarnpkg.com/boxen/-/boxen-4.2.0.tgz#e411b62357d6d6d36587c8ac3d5d974daa070e64" | 1468 | resolved "https://registry.yarnpkg.com/boxen/-/boxen-4.2.0.tgz#e411b62357d6d6d36587c8ac3d5d974daa070e64" |
@@ -1538,20 +1551,20 @@ bufferutil@^4.0.1: | |||
1538 | node-gyp-build "~3.7.0" | 1551 | node-gyp-build "~3.7.0" |
1539 | 1552 | ||
1540 | bull@^3.4.2: | 1553 | bull@^3.4.2: |
1541 | version "3.14.0" | 1554 | version "3.18.0" |
1542 | resolved "https://registry.yarnpkg.com/bull/-/bull-3.14.0.tgz#75fcfa17e829c860de0d51b79569636845232715" | 1555 | resolved "https://registry.yarnpkg.com/bull/-/bull-3.18.0.tgz#7d7730c8ab0975ea9ee4e74f6f85bd731c3526cb" |
1543 | integrity sha512-qQrytpqbE6Zjl2zkvlqS1kUwWLJHpDOhhuGb34+5atPeZrd8DlxkAbxnLnaMB1XQX1iXPzFVpDOUOIIROYKp6Q== | 1556 | integrity sha512-nE/BKlg1dnJ/AcOy5D1nzthcmpAKqpUVXzQ43mJfnVC8ZM7mi4ZzP3spN7745UuikzmGGsbTe9px2TbEKhR+DQ== |
1544 | dependencies: | 1557 | dependencies: |
1545 | cron-parser "^2.13.0" | 1558 | cron-parser "^2.13.0" |
1546 | debuglog "^1.0.0" | 1559 | debuglog "^1.0.0" |
1547 | get-port "^5.1.1" | 1560 | get-port "^5.1.1" |
1548 | ioredis "^4.14.1" | 1561 | ioredis "^4.14.1" |
1549 | lodash "^4.17.15" | 1562 | lodash "^4.17.19" |
1550 | p-timeout "^3.2.0" | 1563 | p-timeout "^3.2.0" |
1551 | promise.prototype.finally "^3.1.2" | 1564 | promise.prototype.finally "^3.1.2" |
1552 | semver "^6.3.0" | 1565 | semver "^7.3.2" |
1553 | util.promisify "^1.0.1" | 1566 | util.promisify "^1.0.1" |
1554 | uuid "^3.4.0" | 1567 | uuid "^8.3.0" |
1555 | 1568 | ||
1556 | busboy@^0.2.11: | 1569 | busboy@^0.2.11: |
1557 | version "0.2.14" | 1570 | version "0.2.14" |
@@ -1604,15 +1617,10 @@ camelcase@^5.0.0, camelcase@^5.3.1: | |||
1604 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" | 1617 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" |
1605 | integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== | 1618 | integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== |
1606 | 1619 | ||
1607 | camelize@1.0.0: | ||
1608 | version "1.0.0" | ||
1609 | resolved "https://registry.yarnpkg.com/camelize/-/camelize-1.0.0.tgz#164a5483e630fa4321e5af07020e531831b2609b" | ||
1610 | integrity sha1-FkpUg+Yw+kMh5a8HAg5TGDGyYJs= | ||
1611 | |||
1612 | canonicalize@^1.0.1: | 1620 | canonicalize@^1.0.1: |
1613 | version "1.0.1" | 1621 | version "1.0.3" |
1614 | resolved "https://registry.yarnpkg.com/canonicalize/-/canonicalize-1.0.1.tgz#657b4f3fa38a6ecb97a9e5b7b26d7a19cc6e0da9" | 1622 | resolved "https://registry.yarnpkg.com/canonicalize/-/canonicalize-1.0.3.tgz#7c65d89eaf4f8f78a589e3ae23eabb1ce941c563" |
1615 | integrity sha512-N3cmB3QLhS5TJ5smKFf1w42rJXWe6C1qP01z4dxJiI5v269buii4fLHWETDyf7yEd0azGLNC63VxNMiPd2u0Cg== | 1623 | integrity sha512-QWAGweNicWIXzcl7skvUZQ/ArdecS8fOeudnjIU0LYqSdTOSBSap+0VPMas4u11cW3a9sN5AN/aJHQUGfdWLCw== |
1616 | 1624 | ||
1617 | caseless@~0.12.0: | 1625 | caseless@~0.12.0: |
1618 | version "0.12.0" | 1626 | version "0.12.0" |
@@ -1680,7 +1688,7 @@ chalk@^3.0.0: | |||
1680 | ansi-styles "^4.1.0" | 1688 | ansi-styles "^4.1.0" |
1681 | supports-color "^7.1.0" | 1689 | supports-color "^7.1.0" |
1682 | 1690 | ||
1683 | chalk@^4.0.0: | 1691 | chalk@^4.0.0, chalk@^4.1.0: |
1684 | version "4.1.0" | 1692 | version "4.1.0" |
1685 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a" | 1693 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a" |
1686 | integrity sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A== | 1694 | integrity sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A== |
@@ -1695,12 +1703,7 @@ character-parser@^2.1.1, character-parser@^2.2.0: | |||
1695 | dependencies: | 1703 | dependencies: |
1696 | is-regex "^1.0.3" | 1704 | is-regex "^1.0.3" |
1697 | 1705 | ||
1698 | chardet@^0.7.0: | 1706 | charenc@0.0.2: |
1699 | version "0.7.0" | ||
1700 | resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" | ||
1701 | integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== | ||
1702 | |||
1703 | charenc@~0.0.1: | ||
1704 | version "0.0.2" | 1707 | version "0.0.2" |
1705 | resolved "https://registry.yarnpkg.com/charenc/-/charenc-0.0.2.tgz#c0a1d2f3a7092e03774bfa83f14c0fc5790a8667" | 1708 | resolved "https://registry.yarnpkg.com/charenc/-/charenc-0.0.2.tgz#c0a1d2f3a7092e03774bfa83f14c0fc5790a8667" |
1706 | integrity sha1-wKHS86cJLgN3S/qD8UwPxXkKhmc= | 1709 | integrity sha1-wKHS86cJLgN3S/qD8UwPxXkKhmc= |
@@ -1753,9 +1756,9 @@ chokidar@3.3.1: | |||
1753 | fsevents "~2.1.2" | 1756 | fsevents "~2.1.2" |
1754 | 1757 | ||
1755 | chokidar@^3.2.2: | 1758 | chokidar@^3.2.2: |
1756 | version "3.4.0" | 1759 | version "3.4.2" |
1757 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.4.0.tgz#b30611423ce376357c765b9b8f904b9fba3c0be8" | 1760 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.4.2.tgz#38dc8e658dec3809741eb3ef7bb0a47fe424232d" |
1758 | integrity sha512-aXAaho2VJtisB/1fg1+3nlLJqGOuewTzQpd/Tz0yTg2R0e4IGtshYvtjowyEumcBv2z+y4+kc75Mz7j5xJskcQ== | 1761 | integrity sha512-IZHaDeBeI+sZJRX7lGcXsdzgvZqKv6sECqsbErJA4mHWfpRrD8B97kSFN4cQz6nGBGiuFia1MKR4d6c1o8Cv7A== |
1759 | dependencies: | 1762 | dependencies: |
1760 | anymatch "~3.1.1" | 1763 | anymatch "~3.1.1" |
1761 | braces "~3.0.2" | 1764 | braces "~3.0.2" |
@@ -1795,12 +1798,12 @@ chrome-net@^3.3.2, chrome-net@^3.3.3, chrome-net@^3.3.4: | |||
1795 | inherits "^2.0.1" | 1798 | inherits "^2.0.1" |
1796 | 1799 | ||
1797 | chunk-store-stream@^4.1.0: | 1800 | chunk-store-stream@^4.1.0: |
1798 | version "4.1.0" | 1801 | version "4.1.1" |
1799 | resolved "https://registry.yarnpkg.com/chunk-store-stream/-/chunk-store-stream-4.1.0.tgz#5e135cfb0c77a02657a27783c985b328ad09ae29" | 1802 | resolved "https://registry.yarnpkg.com/chunk-store-stream/-/chunk-store-stream-4.1.1.tgz#7c86a50f789c90b3eb3bb752f67eea1d16738b8e" |
1800 | integrity sha512-GjkZ16bFKMFnb8LrGZXAPeRoLXZTLu9ges6LCErJe28bMp6zKLxjWuJ7TYzR0jWq9nwo58hXG3BXZYy66Vze0Q== | 1803 | integrity sha512-2nVS+VLMCHNW+S1Y3bOlCtUL4ABPA4zeAcP8E/m15AAc+8fw1elEKIhs/Wg5EZNSfqIk24kUd9rvewmGNPehGQ== |
1801 | dependencies: | 1804 | dependencies: |
1802 | block-stream2 "^2.0.0" | 1805 | block-stream2 "^2.0.0" |
1803 | readable-stream "^3.4.0" | 1806 | readable-stream "^3.6.0" |
1804 | 1807 | ||
1805 | ci-info@^2.0.0: | 1808 | ci-info@^2.0.0: |
1806 | version "2.0.0" | 1809 | version "2.0.0" |
@@ -1826,18 +1829,6 @@ cli-boxes@^2.2.0: | |||
1826 | resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-2.2.0.tgz#538ecae8f9c6ca508e3c3c95b453fe93cb4c168d" | 1829 | resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-2.2.0.tgz#538ecae8f9c6ca508e3c3c95b453fe93cb4c168d" |
1827 | integrity sha512-gpaBrMAizVEANOpfZp/EEUixTXDyGt7DFzdK5hU+UbWt/J0lB0w20ncZj59Z9a93xHb9u12zF5BS6i9RKbtg4w== | 1830 | integrity sha512-gpaBrMAizVEANOpfZp/EEUixTXDyGt7DFzdK5hU+UbWt/J0lB0w20ncZj59Z9a93xHb9u12zF5BS6i9RKbtg4w== |
1828 | 1831 | ||
1829 | cli-cursor@^3.1.0: | ||
1830 | version "3.1.0" | ||
1831 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307" | ||
1832 | integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw== | ||
1833 | dependencies: | ||
1834 | restore-cursor "^3.1.0" | ||
1835 | |||
1836 | cli-width@^2.0.0: | ||
1837 | version "2.2.1" | ||
1838 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.1.tgz#b0433d0b4e9c847ef18868a4ef16fd5fc8271c48" | ||
1839 | integrity sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw== | ||
1840 | |||
1841 | cliui@^2.1.0: | 1832 | cliui@^2.1.0: |
1842 | version "2.1.0" | 1833 | version "2.1.0" |
1843 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" | 1834 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" |
@@ -1943,11 +1934,6 @@ color@3.0.x: | |||
1943 | color-convert "^1.9.1" | 1934 | color-convert "^1.9.1" |
1944 | color-string "^1.5.2" | 1935 | color-string "^1.5.2" |
1945 | 1936 | ||
1946 | colornames@^1.1.1: | ||
1947 | version "1.1.1" | ||
1948 | resolved "https://registry.yarnpkg.com/colornames/-/colornames-1.1.1.tgz#f8889030685c7c4ff9e2a559f5077eb76a816f96" | ||
1949 | integrity sha1-+IiQMGhcfE/54qVZ9Qd+t2qBb5Y= | ||
1950 | |||
1951 | colors@1.0.x: | 1937 | colors@1.0.x: |
1952 | version "1.0.3" | 1938 | version "1.0.3" |
1953 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.0.3.tgz#0433f44d809680fdeb60ed260f1b0c262e82a40b" | 1939 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.0.3.tgz#0433f44d809680fdeb60ed260f1b0c262e82a40b" |
@@ -1978,10 +1964,10 @@ commander@^2.15.1, commander@^2.20.0, commander@^2.7.1: | |||
1978 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" | 1964 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" |
1979 | integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== | 1965 | integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== |
1980 | 1966 | ||
1981 | commander@^5.0.0: | 1967 | commander@^6.0.0: |
1982 | version "5.1.0" | 1968 | version "6.0.0" |
1983 | resolved "https://registry.yarnpkg.com/commander/-/commander-5.1.0.tgz#46abbd1652f8e059bddaef99bbdcb2ad9cf179ae" | 1969 | resolved "https://registry.yarnpkg.com/commander/-/commander-6.0.0.tgz#2b270da94f8fb9014455312f829a1129dbf8887e" |
1984 | integrity sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg== | 1970 | integrity sha512-s7EA+hDtTYNhuXkTlhqew4txMZVdszBmKWSPEMxGr8ru8JXR7bLUFIAtPhcSuFdJQ0ILMxnJi8GkQL0yvDy/YA== |
1985 | 1971 | ||
1986 | compact2string@^1.2.0, compact2string@^1.4.1: | 1972 | compact2string@^1.2.0, compact2string@^1.4.1: |
1987 | version "1.4.1" | 1973 | version "1.4.1" |
@@ -2026,9 +2012,9 @@ concat-stream@^1.5.2: | |||
2026 | typedarray "^0.0.6" | 2012 | typedarray "^0.0.6" |
2027 | 2013 | ||
2028 | concurrently@^5.0.0: | 2014 | concurrently@^5.0.0: |
2029 | version "5.2.0" | 2015 | version "5.3.0" |
2030 | resolved "https://registry.yarnpkg.com/concurrently/-/concurrently-5.2.0.tgz#ead55121d08a0fc817085584c123cedec2e08975" | 2016 | resolved "https://registry.yarnpkg.com/concurrently/-/concurrently-5.3.0.tgz#7500de6410d043c912b2da27de3202cb489b1e7b" |
2031 | integrity sha512-XxcDbQ4/43d6CxR7+iV8IZXhur4KbmEJk1CetVMUqCy34z9l0DkszbY+/9wvmSnToTej0SYomc2WSRH+L0zVJw== | 2017 | integrity sha512-8MhqOB6PWlBfA2vJ8a0bSFKATOdWlHiQlk11IfmQBPaHVP8oP2gsh2MObE6UR3hqDHqvaIvLTyceNW6obVuFHQ== |
2032 | dependencies: | 2018 | dependencies: |
2033 | chalk "^2.4.2" | 2019 | chalk "^2.4.2" |
2034 | date-fns "^2.0.1" | 2020 | date-fns "^2.0.1" |
@@ -2101,11 +2087,6 @@ content-disposition@0.5.3: | |||
2101 | dependencies: | 2087 | dependencies: |
2102 | safe-buffer "5.1.2" | 2088 | safe-buffer "5.1.2" |
2103 | 2089 | ||
2104 | content-security-policy-builder@2.1.0: | ||
2105 | version "2.1.0" | ||
2106 | resolved "https://registry.yarnpkg.com/content-security-policy-builder/-/content-security-policy-builder-2.1.0.tgz#0a2364d769a3d7014eec79ff7699804deb8cfcbb" | ||
2107 | integrity sha512-/MtLWhJVvJNkA9dVLAp6fg9LxD2gfI6R2Fi1hPmfjYXSahJJzcfvoeDOxSyp4NvxMuwWv3WMssE9o31DoULHrQ== | ||
2108 | |||
2109 | content-type@~1.0.4: | 2090 | content-type@~1.0.4: |
2110 | version "1.0.4" | 2091 | version "1.0.4" |
2111 | resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" | 2092 | resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" |
@@ -2184,9 +2165,9 @@ create-torrent@^4.0.0, create-torrent@^4.4.2: | |||
2184 | simple-sha1 "^3.0.0" | 2165 | simple-sha1 "^3.0.0" |
2185 | 2166 | ||
2186 | cron-parser@^2.13.0: | 2167 | cron-parser@^2.13.0: |
2187 | version "2.15.0" | 2168 | version "2.16.3" |
2188 | resolved "https://registry.yarnpkg.com/cron-parser/-/cron-parser-2.15.0.tgz#04803cd51d8efcfcc6f83ac08e60f3f8c40c7ec5" | 2169 | resolved "https://registry.yarnpkg.com/cron-parser/-/cron-parser-2.16.3.tgz#acb8e405eed1733aac542fdf604cb7c1daf0204a" |
2189 | integrity sha512-rMFkrQw8+oG5OuwjiXesup4KeIlEG/IU82YtG4xyAHbO5jhKmYaHPp/ZNhq9+7TjSJ65E3zV3kQPUbmXSff2/g== | 2170 | integrity sha512-XNJBD1QLFeAMUkZtZQuncAAOgJFWNhBdIbwgD22hZxrcWOImBFMKgPC66GzaXpyoJs7UvYLLgPH/8BRk/7gbZg== |
2190 | dependencies: | 2171 | dependencies: |
2191 | is-nan "^1.3.0" | 2172 | is-nan "^1.3.0" |
2192 | moment-timezone "^0.5.31" | 2173 | moment-timezone "^0.5.31" |
@@ -2211,7 +2192,7 @@ cross-spawn@^7.0.0, cross-spawn@^7.0.2: | |||
2211 | shebang-command "^2.0.0" | 2192 | shebang-command "^2.0.0" |
2212 | which "^2.0.1" | 2193 | which "^2.0.1" |
2213 | 2194 | ||
2214 | crypt@~0.0.1: | 2195 | crypt@0.0.2: |
2215 | version "0.0.2" | 2196 | version "0.0.2" |
2216 | resolved "https://registry.yarnpkg.com/crypt/-/crypt-0.0.2.tgz#88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b" | 2197 | resolved "https://registry.yarnpkg.com/crypt/-/crypt-0.0.2.tgz#88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b" |
2217 | integrity sha1-iNf/fsDfuG9xPch7u0LQRNPmxBs= | 2198 | integrity sha1-iNf/fsDfuG9xPch7u0LQRNPmxBs= |
@@ -2256,11 +2237,6 @@ dashdash@^1.12.0: | |||
2256 | dependencies: | 2237 | dependencies: |
2257 | assert-plus "^1.0.0" | 2238 | assert-plus "^1.0.0" |
2258 | 2239 | ||
2259 | dasherize@2.0.0: | ||
2260 | version "2.0.0" | ||
2261 | resolved "https://registry.yarnpkg.com/dasherize/-/dasherize-2.0.0.tgz#6d809c9cd0cf7bb8952d80fc84fa13d47ddb1308" | ||
2262 | integrity sha1-bYCcnNDPe7iVLYD8hPoT1H3bEwg= | ||
2263 | |||
2264 | datauri@^2.0.0: | 2240 | datauri@^2.0.0: |
2265 | version "2.0.0" | 2241 | version "2.0.0" |
2266 | resolved "https://registry.yarnpkg.com/datauri/-/datauri-2.0.0.tgz#ff0ee23729935a6bcc81f301621bed3e692bf3c7" | 2242 | resolved "https://registry.yarnpkg.com/datauri/-/datauri-2.0.0.tgz#ff0ee23729935a6bcc81f301621bed3e692bf3c7" |
@@ -2270,14 +2246,14 @@ datauri@^2.0.0: | |||
2270 | mimer "^1.0.0" | 2246 | mimer "^1.0.0" |
2271 | 2247 | ||
2272 | date-fns@^2.0.1: | 2248 | date-fns@^2.0.1: |
2273 | version "2.14.0" | 2249 | version "2.15.0" |
2274 | resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-2.14.0.tgz#359a87a265bb34ef2e38f93ecf63ac453f9bc7ba" | 2250 | resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-2.15.0.tgz#424de6b3778e4e69d3ff27046ec136af58ae5d5f" |
2275 | integrity sha512-1zD+68jhFgDIM0rF05rcwYO8cExdNqxjq4xP1QKM60Q45mnO6zaMWB4tOzrIr4M4GSLntsKeE4c9Bdl2jhL/yw== | 2251 | integrity sha512-ZCPzAMJZn3rNUvvQIMlXhDr4A+Ar07eLeGsGREoWU19a3Pqf5oYa+ccd+B3F6XVtQY6HANMFdOQ8A+ipFnvJdQ== |
2276 | 2252 | ||
2277 | dayjs@^1.8.16: | 2253 | dayjs@^1.8.16: |
2278 | version "1.8.28" | 2254 | version "1.8.34" |
2279 | resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.8.28.tgz#37aa6201df483d089645cb6c8f6cef6f0c4dbc07" | 2255 | resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.8.34.tgz#d3ad33cc43d6b0f24cb8686b90aad2c653708069" |
2280 | integrity sha512-ccnYgKC0/hPSGXxj7Ju6AV/BP4HUkXC2u15mikXT5mX9YorEaoi1bEKOmAqdkJHN4EEkmAf97SpH66Try5Mbeg== | 2256 | integrity sha512-Olb+E6EoMvdPmAMq2QoucuyZycKHjTlBXmRx8Ada+wGtq4SIXuDCdtoaX4KkK0yjf1fJLnwXQURr8gQKWKaybw== |
2281 | 2257 | ||
2282 | debug@*, debug@^4.0.0, debug@^4.0.1, debug@^4.1.1, debug@~4.1.0, debug@~4.1.1: | 2258 | debug@*, debug@^4.0.0, debug@^4.0.1, debug@^4.1.1, debug@~4.1.0, debug@~4.1.1: |
2283 | version "4.1.1" | 2259 | version "4.1.1" |
@@ -2399,16 +2375,16 @@ denque@^1.1.0, denque@^1.4.1: | |||
2399 | resolved "https://registry.yarnpkg.com/denque/-/denque-1.4.1.tgz#6744ff7641c148c3f8a69c307e51235c1f4a37cf" | 2375 | resolved "https://registry.yarnpkg.com/denque/-/denque-1.4.1.tgz#6744ff7641c148c3f8a69c307e51235c1f4a37cf" |
2400 | integrity sha512-OfzPuSZKGcgr96rf1oODnfjqBFmr1DVoc/TrItj3Ohe0Ah1C5WX5Baquw/9U9KovnQ88EqmJbD66rKYUQYN1tQ== | 2376 | integrity sha512-OfzPuSZKGcgr96rf1oODnfjqBFmr1DVoc/TrItj3Ohe0Ah1C5WX5Baquw/9U9KovnQ88EqmJbD66rKYUQYN1tQ== |
2401 | 2377 | ||
2402 | depd@2.0.0, depd@~2.0.0: | ||
2403 | version "2.0.0" | ||
2404 | resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df" | ||
2405 | integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== | ||
2406 | |||
2407 | depd@~1.1.2: | 2378 | depd@~1.1.2: |
2408 | version "1.1.2" | 2379 | version "1.1.2" |
2409 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" | 2380 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" |
2410 | integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak= | 2381 | integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak= |
2411 | 2382 | ||
2383 | depd@~2.0.0: | ||
2384 | version "2.0.0" | ||
2385 | resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df" | ||
2386 | integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== | ||
2387 | |||
2412 | destroy@~1.0.4: | 2388 | destroy@~1.0.4: |
2413 | version "1.0.4" | 2389 | version "1.0.4" |
2414 | resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" | 2390 | resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" |
@@ -2419,15 +2395,6 @@ detect-libc@^1.0.2: | |||
2419 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" | 2395 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" |
2420 | integrity sha1-+hN8S9aY7fVc1c0CrFWfkaTEups= | 2396 | integrity sha1-+hN8S9aY7fVc1c0CrFWfkaTEups= |
2421 | 2397 | ||
2422 | diagnostics@^1.1.1: | ||
2423 | version "1.1.1" | ||
2424 | resolved "https://registry.yarnpkg.com/diagnostics/-/diagnostics-1.1.1.tgz#cab6ac33df70c9d9a727490ae43ac995a769b22a" | ||
2425 | integrity sha512-8wn1PmdunLJ9Tqbx+Fx/ZEuHfJf4NKSN2ZBj7SJC/OWRWha843+WsTjqMe1B5E3p28jqBlp+mJ2fPVxPyNgYKQ== | ||
2426 | dependencies: | ||
2427 | colorspace "1.1.x" | ||
2428 | enabled "1.0.x" | ||
2429 | kuler "1.0.x" | ||
2430 | |||
2431 | dicer@0.2.5: | 2398 | dicer@0.2.5: |
2432 | version "0.2.5" | 2399 | version "0.2.5" |
2433 | resolved "https://registry.yarnpkg.com/dicer/-/dicer-0.2.5.tgz#5996c086bb33218c812c090bddc09cd12facb70f" | 2400 | resolved "https://registry.yarnpkg.com/dicer/-/dicer-0.2.5.tgz#5996c086bb33218c812c090bddc09cd12facb70f" |
@@ -2441,11 +2408,6 @@ diff@4.0.2, diff@^4.0.1: | |||
2441 | resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d" | 2408 | resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d" |
2442 | integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A== | 2409 | integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A== |
2443 | 2410 | ||
2444 | dns-prefetch-control@0.2.0: | ||
2445 | version "0.2.0" | ||
2446 | resolved "https://registry.yarnpkg.com/dns-prefetch-control/-/dns-prefetch-control-0.2.0.tgz#73988161841f3dcc81f47686d539a2c702c88624" | ||
2447 | integrity sha512-hvSnros73+qyZXhHFjx2CMLwoj3Fe7eR9EJsFsqmcI1bB2OBWL/+0YzaEaKssCHnj/6crawNnUyw74Gm2EKe+Q== | ||
2448 | |||
2449 | doctrine@1.5.0: | 2411 | doctrine@1.5.0: |
2450 | version "1.5.0" | 2412 | version "1.5.0" |
2451 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" | 2413 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" |
@@ -2466,7 +2428,7 @@ doctypes@^1.1.0: | |||
2466 | resolved "https://registry.yarnpkg.com/doctypes/-/doctypes-1.1.0.tgz#ea80b106a87538774e8a3a4a5afe293de489e0a9" | 2428 | resolved "https://registry.yarnpkg.com/doctypes/-/doctypes-1.1.0.tgz#ea80b106a87538774e8a3a4a5afe293de489e0a9" |
2467 | integrity sha1-6oCxBqh1OHdOijpKWv4pPeSJ4Kk= | 2429 | integrity sha1-6oCxBqh1OHdOijpKWv4pPeSJ4Kk= |
2468 | 2430 | ||
2469 | dom-serializer@0, dom-serializer@^0.2.1: | 2431 | dom-serializer@0: |
2470 | version "0.2.2" | 2432 | version "0.2.2" |
2471 | resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.2.2.tgz#1afb81f533717175d478655debc5e332d9f9bb51" | 2433 | resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.2.2.tgz#1afb81f533717175d478655debc5e332d9f9bb51" |
2472 | integrity sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g== | 2434 | integrity sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g== |
@@ -2474,6 +2436,15 @@ dom-serializer@0, dom-serializer@^0.2.1: | |||
2474 | domelementtype "^2.0.1" | 2436 | domelementtype "^2.0.1" |
2475 | entities "^2.0.0" | 2437 | entities "^2.0.0" |
2476 | 2438 | ||
2439 | dom-serializer@^1.0.1: | ||
2440 | version "1.0.1" | ||
2441 | resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-1.0.1.tgz#79695eb49af3cd8abc8d93a73da382deb1ca0795" | ||
2442 | integrity sha512-1Aj1Qy3YLbdslkI75QEOfdp9TkQ3o8LRISAzxOibjBs/xWwr1WxZFOQphFkZuepHFGo+kB8e5FVJSS0faAJ4Rw== | ||
2443 | dependencies: | ||
2444 | domelementtype "^2.0.1" | ||
2445 | domhandler "^3.0.0" | ||
2446 | entities "^2.0.0" | ||
2447 | |||
2477 | dom-serializer@~0.1.0: | 2448 | dom-serializer@~0.1.0: |
2478 | version "0.1.1" | 2449 | version "0.1.1" |
2479 | resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.1.tgz#1ec4059e284babed36eec2941d4a970a189ce7c0" | 2450 | resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.1.tgz#1ec4059e284babed36eec2941d4a970a189ce7c0" |
@@ -2528,19 +2499,14 @@ domutils@^1.5.1: | |||
2528 | domelementtype "1" | 2499 | domelementtype "1" |
2529 | 2500 | ||
2530 | domutils@^2.0.0: | 2501 | domutils@^2.0.0: |
2531 | version "2.1.0" | 2502 | version "2.2.0" |
2532 | resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.1.0.tgz#7ade3201af43703fde154952e3a868eb4b635f16" | 2503 | resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.2.0.tgz#f3ce1610af5c30280bde1b71f84b018b958f32cf" |
2533 | integrity sha512-CD9M0Dm1iaHfQ1R/TI+z3/JWp/pgub0j4jIQKH89ARR4ATAV2nbaOQS5XxU9maJP5jHaPdDDQSEHuE2UmpUTKg== | 2504 | integrity sha512-0haAxVr1PR0SqYwCH7mxMpHZUwjih9oPPedqpR/KufsnxPyZ9dyVw1R5093qnJF3WXSbjBkdzRWLw/knJV/fAg== |
2534 | dependencies: | 2505 | dependencies: |
2535 | dom-serializer "^0.2.1" | 2506 | dom-serializer "^1.0.1" |
2536 | domelementtype "^2.0.1" | 2507 | domelementtype "^2.0.1" |
2537 | domhandler "^3.0.0" | 2508 | domhandler "^3.0.0" |
2538 | 2509 | ||
2539 | dont-sniff-mimetype@1.1.0: | ||
2540 | version "1.1.0" | ||
2541 | resolved "https://registry.yarnpkg.com/dont-sniff-mimetype/-/dont-sniff-mimetype-1.1.0.tgz#c7d0427f8bcb095762751252af59d148b0a623b2" | ||
2542 | integrity sha512-ZjI4zqTaxveH2/tTlzS1wFp+7ncxNZaIEWYg3lzZRHkKf5zPT/MnEG6WL0BhHMJUabkh8GeU5NL5j+rEUCb7Ug== | ||
2543 | |||
2544 | dot-prop@^5.2.0: | 2510 | dot-prop@^5.2.0: |
2545 | version "5.2.0" | 2511 | version "5.2.0" |
2546 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.2.0.tgz#c34ecc29556dc45f1f4c22697b6f4904e0cc4fcb" | 2512 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.2.0.tgz#c34ecc29556dc45f1f4c22697b6f4904e0cc4fcb" |
@@ -2582,9 +2548,9 @@ ee-first@1.1.1: | |||
2582 | integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0= | 2548 | integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0= |
2583 | 2549 | ||
2584 | email-templates@^7.0.4: | 2550 | email-templates@^7.0.4: |
2585 | version "7.0.5" | 2551 | version "7.1.0" |
2586 | resolved "https://registry.yarnpkg.com/email-templates/-/email-templates-7.0.5.tgz#0b31918d97edca2b6ae6526ddf9eedfb7ff000c4" | 2552 | resolved "https://registry.yarnpkg.com/email-templates/-/email-templates-7.1.0.tgz#d10dad8ae673e06eaf1bdff2c179ae39dc31ae82" |
2587 | integrity sha512-fkq/J7gW/+IU1PIl2R2udGaLYrTz7LKCpFkfCEYIzYRHP7e8LYfFYY1+kw/7YEPEvkizBEHEDIl+o3QJddBUug== | 2553 | integrity sha512-cO+6RgrFk1CPqm1y8UbSRyjZ4mrtk3FleT7IR7l82EbXfwnP2qSo94KDIeacklR4+oFktep2Z6ulkUp5Cf+UNw== |
2588 | dependencies: | 2554 | dependencies: |
2589 | "@ladjs/i18n" "^3.0.10" | 2555 | "@ladjs/i18n" "^3.0.10" |
2590 | "@sindresorhus/is" "^2.1.1" | 2556 | "@sindresorhus/is" "^2.1.1" |
@@ -2608,12 +2574,10 @@ emoji-regex@^8.0.0: | |||
2608 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" | 2574 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" |
2609 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== | 2575 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== |
2610 | 2576 | ||
2611 | enabled@1.0.x: | 2577 | enabled@2.0.x: |
2612 | version "1.0.2" | 2578 | version "2.0.0" |
2613 | resolved "https://registry.yarnpkg.com/enabled/-/enabled-1.0.2.tgz#965f6513d2c2d1c5f4652b64a2e3396467fc2f93" | 2579 | resolved "https://registry.yarnpkg.com/enabled/-/enabled-2.0.0.tgz#f9dd92ec2d6f4bbc0d5d1e64e21d61cd4665e7c2" |
2614 | integrity sha1-ll9lE9LC0cX0ZStkouM5ZGf8L5M= | 2580 | integrity sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ== |
2615 | dependencies: | ||
2616 | env-variable "0.0.x" | ||
2617 | 2581 | ||
2618 | encodeurl@~1.0.2: | 2582 | encodeurl@~1.0.2: |
2619 | version "1.0.2" | 2583 | version "1.0.2" |
@@ -2719,6 +2683,13 @@ engine.io@~3.4.0: | |||
2719 | engine.io-parser "~2.2.0" | 2683 | engine.io-parser "~2.2.0" |
2720 | ws "^7.1.2" | 2684 | ws "^7.1.2" |
2721 | 2685 | ||
2686 | enquirer@^2.3.5: | ||
2687 | version "2.3.6" | ||
2688 | resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d" | ||
2689 | integrity sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg== | ||
2690 | dependencies: | ||
2691 | ansi-colors "^4.1.1" | ||
2692 | |||
2722 | entities@^1.1.1, entities@~1.1.1: | 2693 | entities@^1.1.1, entities@~1.1.1: |
2723 | version "1.1.2" | 2694 | version "1.1.2" |
2724 | resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.2.tgz#bdfa735299664dfafd34529ed4f8522a275fea56" | 2695 | resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.2.tgz#bdfa735299664dfafd34529ed4f8522a275fea56" |
@@ -2729,11 +2700,6 @@ entities@^2.0.0: | |||
2729 | resolved "https://registry.yarnpkg.com/entities/-/entities-2.0.3.tgz#5c487e5742ab93c15abb5da22759b8590ec03b7f" | 2700 | resolved "https://registry.yarnpkg.com/entities/-/entities-2.0.3.tgz#5c487e5742ab93c15abb5da22759b8590ec03b7f" |
2730 | integrity sha512-MyoZ0jgnLvB2X3Lg5HqpFmn1kybDiIfEQmKzTb5apr51Rb+T3KdmMiqa70T+bhGnyv7bQ6WMj2QMHpGMmlrUYQ== | 2701 | integrity sha512-MyoZ0jgnLvB2X3Lg5HqpFmn1kybDiIfEQmKzTb5apr51Rb+T3KdmMiqa70T+bhGnyv7bQ6WMj2QMHpGMmlrUYQ== |
2731 | 2702 | ||
2732 | env-variable@0.0.x: | ||
2733 | version "0.0.6" | ||
2734 | resolved "https://registry.yarnpkg.com/env-variable/-/env-variable-0.0.6.tgz#74ab20b3786c545b62b4a4813ab8cf22726c9808" | ||
2735 | integrity sha512-bHz59NlBbtS0NhftmR8+ExBEekE7br0e01jw+kk0NDro7TtZzBYZ5ScGPs3OmwnpyfHTHOtr1Y6uedCdrIldtg== | ||
2736 | |||
2737 | error-ex@^1.2.0, error-ex@^1.3.1: | 2703 | error-ex@^1.2.0, error-ex@^1.3.1: |
2738 | version "1.3.2" | 2704 | version "1.3.2" |
2739 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" | 2705 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" |
@@ -2879,9 +2845,9 @@ eslint-plugin-es@^3.0.0: | |||
2879 | regexpp "^3.0.0" | 2845 | regexpp "^3.0.0" |
2880 | 2846 | ||
2881 | eslint-plugin-import@^2.20.1: | 2847 | eslint-plugin-import@^2.20.1: |
2882 | version "2.21.2" | 2848 | version "2.22.0" |
2883 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.21.2.tgz#8fef77475cc5510801bedc95f84b932f7f334a7c" | 2849 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.22.0.tgz#92f7736fe1fde3e2de77623c838dd992ff5ffb7e" |
2884 | integrity sha512-FEmxeGI6yaz+SnEB6YgNHlQK1Bs2DKLM+YF+vuTk5H8J9CLbJLtlPvRFgZZ2+sXiKAlN5dpdlrWOjK8ZoZJpQA== | 2850 | integrity sha512-66Fpf1Ln6aIS5Gr/55ts19eUuoDhAbZgnr6UxK5hbDx6l/QgQgx61AePq+BV4PP2uXQFClgMVzep5zZ94qqsxg== |
2885 | dependencies: | 2851 | dependencies: |
2886 | array-includes "^3.1.1" | 2852 | array-includes "^3.1.1" |
2887 | array.prototype.flat "^1.2.3" | 2853 | array.prototype.flat "^1.2.3" |
@@ -2927,22 +2893,22 @@ eslint-scope@^5.0.0, eslint-scope@^5.1.0: | |||
2927 | esrecurse "^4.1.0" | 2893 | esrecurse "^4.1.0" |
2928 | estraverse "^4.1.1" | 2894 | estraverse "^4.1.1" |
2929 | 2895 | ||
2930 | eslint-utils@^2.0.0: | 2896 | eslint-utils@^2.0.0, eslint-utils@^2.1.0: |
2931 | version "2.1.0" | 2897 | version "2.1.0" |
2932 | resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.1.0.tgz#d2de5e03424e707dc10c74068ddedae708741b27" | 2898 | resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.1.0.tgz#d2de5e03424e707dc10c74068ddedae708741b27" |
2933 | integrity sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg== | 2899 | integrity sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg== |
2934 | dependencies: | 2900 | dependencies: |
2935 | eslint-visitor-keys "^1.1.0" | 2901 | eslint-visitor-keys "^1.1.0" |
2936 | 2902 | ||
2937 | eslint-visitor-keys@^1.1.0, eslint-visitor-keys@^1.2.0: | 2903 | eslint-visitor-keys@^1.1.0, eslint-visitor-keys@^1.3.0: |
2938 | version "1.2.0" | 2904 | version "1.3.0" |
2939 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.2.0.tgz#74415ac884874495f78ec2a97349525344c981fa" | 2905 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e" |
2940 | integrity sha512-WFb4ihckKil6hu3Dp798xdzSfddwKKU3+nGniKF6HfeW6OLd2OUDEPP7TcHtB5+QXOKg2s6B2DaMPE1Nn/kxKQ== | 2906 | integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ== |
2941 | 2907 | ||
2942 | eslint@^7.2.0: | 2908 | eslint@^7.2.0: |
2943 | version "7.2.0" | 2909 | version "7.7.0" |
2944 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.2.0.tgz#d41b2e47804b30dbabb093a967fb283d560082e6" | 2910 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.7.0.tgz#18beba51411927c4b64da0a8ceadefe4030d6073" |
2945 | integrity sha512-B3BtEyaDKC5MlfDa2Ha8/D6DsS4fju95zs0hjS3HdGazw+LNayai38A25qMppK37wWGWNYSPOR6oYzlz5MHsRQ== | 2911 | integrity sha512-1KUxLzos0ZVsyL81PnRN335nDtQ8/vZUD6uMtWbF+5zDtjKcsklIi78XoE0MVL93QvWTu+E5y44VyyCsOMBrIg== |
2946 | dependencies: | 2912 | dependencies: |
2947 | "@babel/code-frame" "^7.0.0" | 2913 | "@babel/code-frame" "^7.0.0" |
2948 | ajv "^6.10.0" | 2914 | ajv "^6.10.0" |
@@ -2950,10 +2916,11 @@ eslint@^7.2.0: | |||
2950 | cross-spawn "^7.0.2" | 2916 | cross-spawn "^7.0.2" |
2951 | debug "^4.0.1" | 2917 | debug "^4.0.1" |
2952 | doctrine "^3.0.0" | 2918 | doctrine "^3.0.0" |
2919 | enquirer "^2.3.5" | ||
2953 | eslint-scope "^5.1.0" | 2920 | eslint-scope "^5.1.0" |
2954 | eslint-utils "^2.0.0" | 2921 | eslint-utils "^2.1.0" |
2955 | eslint-visitor-keys "^1.2.0" | 2922 | eslint-visitor-keys "^1.3.0" |
2956 | espree "^7.1.0" | 2923 | espree "^7.2.0" |
2957 | esquery "^1.2.0" | 2924 | esquery "^1.2.0" |
2958 | esutils "^2.0.2" | 2925 | esutils "^2.0.2" |
2959 | file-entry-cache "^5.0.1" | 2926 | file-entry-cache "^5.0.1" |
@@ -2963,12 +2930,11 @@ eslint@^7.2.0: | |||
2963 | ignore "^4.0.6" | 2930 | ignore "^4.0.6" |
2964 | import-fresh "^3.0.0" | 2931 | import-fresh "^3.0.0" |
2965 | imurmurhash "^0.1.4" | 2932 | imurmurhash "^0.1.4" |
2966 | inquirer "^7.0.0" | ||
2967 | is-glob "^4.0.0" | 2933 | is-glob "^4.0.0" |
2968 | js-yaml "^3.13.1" | 2934 | js-yaml "^3.13.1" |
2969 | json-stable-stringify-without-jsonify "^1.0.1" | 2935 | json-stable-stringify-without-jsonify "^1.0.1" |
2970 | levn "^0.4.1" | 2936 | levn "^0.4.1" |
2971 | lodash "^4.17.14" | 2937 | lodash "^4.17.19" |
2972 | minimatch "^3.0.4" | 2938 | minimatch "^3.0.4" |
2973 | natural-compare "^1.4.0" | 2939 | natural-compare "^1.4.0" |
2974 | optionator "^0.9.1" | 2940 | optionator "^0.9.1" |
@@ -2981,14 +2947,14 @@ eslint@^7.2.0: | |||
2981 | text-table "^0.2.0" | 2947 | text-table "^0.2.0" |
2982 | v8-compile-cache "^2.0.3" | 2948 | v8-compile-cache "^2.0.3" |
2983 | 2949 | ||
2984 | espree@^7.1.0: | 2950 | espree@^7.2.0: |
2985 | version "7.1.0" | 2951 | version "7.3.0" |
2986 | resolved "https://registry.yarnpkg.com/espree/-/espree-7.1.0.tgz#a9c7f18a752056735bf1ba14cb1b70adc3a5ce1c" | 2952 | resolved "https://registry.yarnpkg.com/espree/-/espree-7.3.0.tgz#dc30437cf67947cf576121ebd780f15eeac72348" |
2987 | integrity sha512-dcorZSyfmm4WTuTnE5Y7MEN1DyoPYy1ZR783QW1FJoenn7RailyWFsq/UL6ZAAA7uXurN9FIpYyUs3OfiIW+Qw== | 2953 | integrity sha512-dksIWsvKCixn1yrEXO8UosNSxaDoSYpq9reEjZSbHLpT5hpaCAKTLBwq0RHtLrIr+c0ByiYzWT8KTMRzoRCNlw== |
2988 | dependencies: | 2954 | dependencies: |
2989 | acorn "^7.2.0" | 2955 | acorn "^7.4.0" |
2990 | acorn-jsx "^5.2.0" | 2956 | acorn-jsx "^5.2.0" |
2991 | eslint-visitor-keys "^1.2.0" | 2957 | eslint-visitor-keys "^1.3.0" |
2992 | 2958 | ||
2993 | esprima@^4.0.0: | 2959 | esprima@^4.0.0: |
2994 | version "4.0.1" | 2960 | version "4.0.1" |
@@ -3015,9 +2981,9 @@ estraverse@^4.1.0, estraverse@^4.1.1: | |||
3015 | integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== | 2981 | integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== |
3016 | 2982 | ||
3017 | estraverse@^5.1.0: | 2983 | estraverse@^5.1.0: |
3018 | version "5.1.0" | 2984 | version "5.2.0" |
3019 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.1.0.tgz#374309d39fd935ae500e7b92e8a6b4c720e59642" | 2985 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.2.0.tgz#307df42547e6cc7324d3cf03c155d5cdb8c53880" |
3020 | integrity sha512-FyohXK+R0vE+y1nHLoBM7ZTyqRpqAlhdZHCWIWEviFLiGB8b04H6bQs8G+XTthacvT8VuwvteiP7RJSxMs8UEw== | 2986 | integrity sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ== |
3021 | 2987 | ||
3022 | esutils@^2.0.2: | 2988 | esutils@^2.0.2: |
3023 | version "2.0.3" | 2989 | version "2.0.3" |
@@ -3058,11 +3024,6 @@ exif-parser@^0.1.12: | |||
3058 | resolved "https://registry.yarnpkg.com/exif-parser/-/exif-parser-0.1.12.tgz#58a9d2d72c02c1f6f02a0ef4a9166272b7760922" | 3024 | resolved "https://registry.yarnpkg.com/exif-parser/-/exif-parser-0.1.12.tgz#58a9d2d72c02c1f6f02a0ef4a9166272b7760922" |
3059 | integrity sha1-WKnS1ywCwfbwKg70qRZicrd2CSI= | 3025 | integrity sha1-WKnS1ywCwfbwKg70qRZicrd2CSI= |
3060 | 3026 | ||
3061 | expect-ct@0.2.0: | ||
3062 | version "0.2.0" | ||
3063 | resolved "https://registry.yarnpkg.com/expect-ct/-/expect-ct-0.2.0.tgz#3a54741b6ed34cc7a93305c605f63cd268a54a62" | ||
3064 | integrity sha512-6SK3MG/Bbhm8MsgyJAylg+ucIOU71/FzyFalcfu5nY19dH8y/z0tBJU0wrNBXD4B27EoQtqPF/9wqH0iYAd04g== | ||
3065 | |||
3066 | express-oauth-server@^2.0.0: | 3027 | express-oauth-server@^2.0.0: |
3067 | version "2.0.0" | 3028 | version "2.0.0" |
3068 | resolved "https://registry.yarnpkg.com/express-oauth-server/-/express-oauth-server-2.0.0.tgz#57b08665c1201532f52c4c02f19709238b99a48d" | 3029 | resolved "https://registry.yarnpkg.com/express-oauth-server/-/express-oauth-server-2.0.0.tgz#57b08665c1201532f52c4c02f19709238b99a48d" |
@@ -3078,12 +3039,12 @@ express-rate-limit@^5.0.0: | |||
3078 | integrity sha512-TINcxve5510pXj4n9/1AMupkj3iWxl3JuZaWhCdYDlZeoCPqweGZrxbrlqTCFb1CT5wli7s8e2SH/Qz2c9GorA== | 3039 | integrity sha512-TINcxve5510pXj4n9/1AMupkj3iWxl3JuZaWhCdYDlZeoCPqweGZrxbrlqTCFb1CT5wli7s8e2SH/Qz2c9GorA== |
3079 | 3040 | ||
3080 | express-validator@^6.4.0: | 3041 | express-validator@^6.4.0: |
3081 | version "6.5.0" | 3042 | version "6.6.1" |
3082 | resolved "https://registry.yarnpkg.com/express-validator/-/express-validator-6.5.0.tgz#0cfb3a94f902b75c597372ac91c7dfb267c5c221" | 3043 | resolved "https://registry.yarnpkg.com/express-validator/-/express-validator-6.6.1.tgz#c53046f615d27fcb78be786e018dcd60bd9c6c5c" |
3083 | integrity sha512-kXi99TuVeLWkxO0RtDOSj56T7YR0H5KZZyhtzoPSZ5TffBvrJpZPSp/frYcT/zVoLhH8NXDk+T0LCSeI6TbOGA== | 3044 | integrity sha512-+MrZKJ3eGYXkNF9p9Zf7MS7NkPJFg9MDYATU5c80Cf4F62JdLBIjWxy6481tRC0y1NnC9cgOw8FuN364bWaGhA== |
3084 | dependencies: | 3045 | dependencies: |
3085 | lodash "^4.17.15" | 3046 | lodash "^4.17.19" |
3086 | validator "^13.0.0" | 3047 | validator "^13.1.1" |
3087 | 3048 | ||
3088 | express@^4.12.4, express@^4.13.3, express@^4.17.1: | 3049 | express@^4.12.4, express@^4.13.3, express@^4.17.1: |
3089 | version "4.17.1" | 3050 | version "4.17.1" |
@@ -3133,15 +3094,6 @@ extend@^3.0.0, extend@~3.0.0, extend@~3.0.2: | |||
3133 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" | 3094 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" |
3134 | integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== | 3095 | integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== |
3135 | 3096 | ||
3136 | external-editor@^3.0.3: | ||
3137 | version "3.1.0" | ||
3138 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495" | ||
3139 | integrity sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew== | ||
3140 | dependencies: | ||
3141 | chardet "^0.7.0" | ||
3142 | iconv-lite "^0.4.24" | ||
3143 | tmp "^0.0.33" | ||
3144 | |||
3145 | extsprintf@1.3.0: | 3097 | extsprintf@1.3.0: |
3146 | version "1.3.0" | 3098 | version "1.3.0" |
3147 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" | 3099 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" |
@@ -3177,22 +3129,10 @@ fast-safe-stringify@^2.0.4: | |||
3177 | resolved "https://registry.yarnpkg.com/fast-safe-stringify/-/fast-safe-stringify-2.0.7.tgz#124aa885899261f68aedb42a7c080de9da608743" | 3129 | resolved "https://registry.yarnpkg.com/fast-safe-stringify/-/fast-safe-stringify-2.0.7.tgz#124aa885899261f68aedb42a7c080de9da608743" |
3178 | integrity sha512-Utm6CdzT+6xsDk2m8S6uL8VHxNwI6Jub+e9NYTcAms28T84pTa25GJQV9j0CY0N1rM8hK4x6grpF2BQf+2qwVA== | 3130 | integrity sha512-Utm6CdzT+6xsDk2m8S6uL8VHxNwI6Jub+e9NYTcAms28T84pTa25GJQV9j0CY0N1rM8hK4x6grpF2BQf+2qwVA== |
3179 | 3131 | ||
3180 | feature-policy@0.3.0: | 3132 | fecha@^4.2.0: |
3181 | version "0.3.0" | 3133 | version "4.2.0" |
3182 | resolved "https://registry.yarnpkg.com/feature-policy/-/feature-policy-0.3.0.tgz#7430e8e54a40da01156ca30aaec1a381ce536069" | 3134 | resolved "https://registry.yarnpkg.com/fecha/-/fecha-4.2.0.tgz#3ffb6395453e3f3efff850404f0a59b6747f5f41" |
3183 | integrity sha512-ZtijOTFN7TzCujt1fnNhfWPFPSHeZkesff9AXZj+UEjYBynWNUIYpC87Ve4wHzyexQsImicLu7WsC2LHq7/xrQ== | 3135 | integrity sha512-aN3pcx/DSmtyoovUudctc8+6Hl4T+hI9GBBHLjA76jdZl7+b1sgh5g4k+u/GL3dTy1/pnYzKp69FpJ0OicE3Wg== |
3184 | |||
3185 | fecha@^2.3.3: | ||
3186 | version "2.3.3" | ||
3187 | resolved "https://registry.yarnpkg.com/fecha/-/fecha-2.3.3.tgz#948e74157df1a32fd1b12c3a3c3cdcb6ec9d96cd" | ||
3188 | integrity sha512-lUGBnIamTAwk4znq5BcqsDaxSmZ9nDVJaij6NvRt/Tg4R69gERA+otPKbS86ROw9nxVMw2/mp1fnaiWqbs6Sdg== | ||
3189 | |||
3190 | figures@^3.0.0: | ||
3191 | version "3.2.0" | ||
3192 | resolved "https://registry.yarnpkg.com/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af" | ||
3193 | integrity sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg== | ||
3194 | dependencies: | ||
3195 | escape-string-regexp "^1.0.5" | ||
3196 | 3136 | ||
3197 | file-entry-cache@^5.0.1: | 3137 | file-entry-cache@^5.0.1: |
3198 | version "5.0.1" | 3138 | version "5.0.1" |
@@ -3273,11 +3213,9 @@ flat@^4.1.0: | |||
3273 | is-buffer "~2.0.3" | 3213 | is-buffer "~2.0.3" |
3274 | 3214 | ||
3275 | flat@^5.0.0: | 3215 | flat@^5.0.0: |
3276 | version "5.0.0" | 3216 | version "5.0.2" |
3277 | resolved "https://registry.yarnpkg.com/flat/-/flat-5.0.0.tgz#dab7d71d60413becb0ac2de9bf4304495e3af6af" | 3217 | resolved "https://registry.yarnpkg.com/flat/-/flat-5.0.2.tgz#8ca6fe332069ffa9d324c327198c598259ceb241" |
3278 | integrity sha512-6KSMM+cHHzXC/hpldXApL2S8Uz+QZv+tq5o/L0KQYleoG+GcwrnIJhTWC7tCOiKQp8D/fIvryINU1OZCCwevjA== | 3218 | integrity sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ== |
3279 | dependencies: | ||
3280 | is-buffer "~2.0.4" | ||
3281 | 3219 | ||
3282 | flatted@^2.0.0: | 3220 | flatted@^2.0.0: |
3283 | version "2.0.2" | 3221 | version "2.0.2" |
@@ -3292,6 +3230,11 @@ fluent-ffmpeg@^2.1.0: | |||
3292 | async ">=0.2.9" | 3230 | async ">=0.2.9" |
3293 | which "^1.1.1" | 3231 | which "^1.1.1" |
3294 | 3232 | ||
3233 | fn.name@1.x.x: | ||
3234 | version "1.1.0" | ||
3235 | resolved "https://registry.yarnpkg.com/fn.name/-/fn.name-1.1.0.tgz#26cad8017967aea8731bc42961d04a3d5988accc" | ||
3236 | integrity sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw== | ||
3237 | |||
3295 | forever-agent@~0.6.1: | 3238 | forever-agent@~0.6.1: |
3296 | version "0.6.1" | 3239 | version "0.6.1" |
3297 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" | 3240 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" |
@@ -3325,11 +3268,6 @@ forwarded@~0.1.2: | |||
3325 | resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.2.tgz#98c23dab1175657b8c0573e8ceccd91b0ff18c84" | 3268 | resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.2.tgz#98c23dab1175657b8c0573e8ceccd91b0ff18c84" |
3326 | integrity sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ= | 3269 | integrity sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ= |
3327 | 3270 | ||
3328 | frameguard@3.1.0: | ||
3329 | version "3.1.0" | ||
3330 | resolved "https://registry.yarnpkg.com/frameguard/-/frameguard-3.1.0.tgz#bd1442cca1d67dc346a6751559b6d04502103a22" | ||
3331 | integrity sha512-TxgSKM+7LTA6sidjOiSZK9wxY0ffMPY3Wta//MqwmX0nZuEHc8QrkV8Fh3ZhMJeiH+Uyh/tcaarImRy8u77O7g== | ||
3332 | |||
3333 | freelist@^1.0.3: | 3271 | freelist@^1.0.3: |
3334 | version "1.0.3" | 3272 | version "1.0.3" |
3335 | resolved "https://registry.yarnpkg.com/freelist/-/freelist-1.0.3.tgz#006775509f3935701784d3ed2fc9f12c9df1bab2" | 3273 | resolved "https://registry.yarnpkg.com/freelist/-/freelist-1.0.3.tgz#006775509f3935701784d3ed2fc9f12c9df1bab2" |
@@ -3442,9 +3380,9 @@ get-stream@^4.1.0: | |||
3442 | pump "^3.0.0" | 3380 | pump "^3.0.0" |
3443 | 3381 | ||
3444 | get-stream@^5.0.0, get-stream@^5.1.0: | 3382 | get-stream@^5.0.0, get-stream@^5.1.0: |
3445 | version "5.1.0" | 3383 | version "5.2.0" |
3446 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.1.0.tgz#01203cdc92597f9b909067c3e656cc1f4d3c4dc9" | 3384 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz#4966a1795ee5ace65e706c4b7beb71257d6e22d3" |
3447 | integrity sha512-EXr1FOzrzTfGeL0gQdeFEvOMm2mzMOglyiOXSTpPC+iAjAKftbr3jpCMWynogwYnM+eSj9sHGc6wjIcDvYiygw== | 3385 | integrity sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA== |
3448 | dependencies: | 3386 | dependencies: |
3449 | pump "^3.0.0" | 3387 | pump "^3.0.0" |
3450 | 3388 | ||
@@ -3549,11 +3487,11 @@ har-schema@^2.0.0: | |||
3549 | integrity sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI= | 3487 | integrity sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI= |
3550 | 3488 | ||
3551 | har-validator@~5.1.3: | 3489 | har-validator@~5.1.3: |
3552 | version "5.1.3" | 3490 | version "5.1.5" |
3553 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.3.tgz#1ef89ebd3e4996557675eed9893110dc350fa080" | 3491 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.5.tgz#1f0803b9f8cb20c0fa13822df1ecddb36bde1efd" |
3554 | integrity sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g== | 3492 | integrity sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w== |
3555 | dependencies: | 3493 | dependencies: |
3556 | ajv "^6.5.5" | 3494 | ajv "^6.12.3" |
3557 | har-schema "^2.0.0" | 3495 | har-schema "^2.0.0" |
3558 | 3496 | ||
3559 | has-binary2@~1.0.2: | 3497 | has-binary2@~1.0.2: |
@@ -3612,40 +3550,10 @@ he@1.2.0, he@^1.2.0: | |||
3612 | resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" | 3550 | resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" |
3613 | integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== | 3551 | integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== |
3614 | 3552 | ||
3615 | helmet-crossdomain@0.4.0: | 3553 | helmet@^4.1.0: |
3616 | version "0.4.0" | 3554 | version "4.1.0" |
3617 | resolved "https://registry.yarnpkg.com/helmet-crossdomain/-/helmet-crossdomain-0.4.0.tgz#5f1fe5a836d0325f1da0a78eaa5fd8429078894e" | 3555 | resolved "https://registry.yarnpkg.com/helmet/-/helmet-4.1.0.tgz#6f3a34e8f18502d6e52518428b23aa4ddaf84b38" |
3618 | integrity sha512-AB4DTykRw3HCOxovD1nPR16hllrVImeFp5VBV9/twj66lJ2nU75DP8FPL0/Jp4jj79JhTfG+pFI2MD02kWJ+fA== | 3556 | integrity sha512-KWy75fYN8hOG2Rhl8e5B3WhOzb0by1boQum85TiddIE9iu6gV+TXbUjVC17wfej0o/ZUpqB9kxM0NFCZRMzf+Q== |
3619 | |||
3620 | helmet-csp@2.10.0: | ||
3621 | version "2.10.0" | ||
3622 | resolved "https://registry.yarnpkg.com/helmet-csp/-/helmet-csp-2.10.0.tgz#685dde1747bc16c5e28ad9d91e229a69f0a85e84" | ||
3623 | integrity sha512-Rz953ZNEFk8sT2XvewXkYN0Ho4GEZdjAZy4stjiEQV3eN7GDxg1QKmYggH7otDyIA7uGA6XnUMVSgeJwbR5X+w== | ||
3624 | dependencies: | ||
3625 | bowser "2.9.0" | ||
3626 | camelize "1.0.0" | ||
3627 | content-security-policy-builder "2.1.0" | ||
3628 | dasherize "2.0.0" | ||
3629 | |||
3630 | helmet@^3.12.1: | ||
3631 | version "3.23.1" | ||
3632 | resolved "https://registry.yarnpkg.com/helmet/-/helmet-3.23.1.tgz#97067661c678d6c8d730dda001406f1946a6c6d1" | ||
3633 | integrity sha512-e034HHfRK4065BFjYbffn5jXaTWWrhTNgmLIppsGEOjpdDB1MBQkWlAFW/auULXAu6uKk2X76n7a7gvz5sSjkg== | ||
3634 | dependencies: | ||
3635 | depd "2.0.0" | ||
3636 | dns-prefetch-control "0.2.0" | ||
3637 | dont-sniff-mimetype "1.1.0" | ||
3638 | expect-ct "0.2.0" | ||
3639 | feature-policy "0.3.0" | ||
3640 | frameguard "3.1.0" | ||
3641 | helmet-crossdomain "0.4.0" | ||
3642 | helmet-csp "2.10.0" | ||
3643 | hide-powered-by "1.1.0" | ||
3644 | hpkp "2.0.0" | ||
3645 | hsts "2.2.0" | ||
3646 | nocache "2.1.0" | ||
3647 | referrer-policy "1.2.0" | ||
3648 | x-xss-protection "1.3.0" | ||
3649 | 3557 | ||
3650 | hh-mm-ss@~1.2.0: | 3558 | hh-mm-ss@~1.2.0: |
3651 | version "1.2.0" | 3559 | version "1.2.0" |
@@ -3654,28 +3562,11 @@ hh-mm-ss@~1.2.0: | |||
3654 | dependencies: | 3562 | dependencies: |
3655 | zero-fill "^2.2.3" | 3563 | zero-fill "^2.2.3" |
3656 | 3564 | ||
3657 | hide-powered-by@1.1.0: | ||
3658 | version "1.1.0" | ||
3659 | resolved "https://registry.yarnpkg.com/hide-powered-by/-/hide-powered-by-1.1.0.tgz#be3ea9cab4bdb16f8744be873755ca663383fa7a" | ||
3660 | integrity sha512-Io1zA2yOA1YJslkr+AJlWSf2yWFkKjvkcL9Ni1XSUqnGLr/qRQe2UI3Cn/J9MsJht7yEVCe0SscY1HgVMujbgg== | ||
3661 | |||
3662 | hosted-git-info@^2.1.4: | 3565 | hosted-git-info@^2.1.4: |
3663 | version "2.8.8" | 3566 | version "2.8.8" |
3664 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.8.tgz#7539bd4bc1e0e0a895815a2e0262420b12858488" | 3567 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.8.tgz#7539bd4bc1e0e0a895815a2e0262420b12858488" |
3665 | integrity sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg== | 3568 | integrity sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg== |
3666 | 3569 | ||
3667 | hpkp@2.0.0: | ||
3668 | version "2.0.0" | ||
3669 | resolved "https://registry.yarnpkg.com/hpkp/-/hpkp-2.0.0.tgz#10e142264e76215a5d30c44ec43de64dee6d1672" | ||
3670 | integrity sha1-EOFCJk52IVpdMMROxD3mTe5tFnI= | ||
3671 | |||
3672 | hsts@2.2.0: | ||
3673 | version "2.2.0" | ||
3674 | resolved "https://registry.yarnpkg.com/hsts/-/hsts-2.2.0.tgz#09119d42f7a8587035d027dda4522366fe75d964" | ||
3675 | integrity sha512-ToaTnQ2TbJkochoVcdXYm4HOCliNozlviNsg+X2XQLQvZNI/kCHR9rZxVYpJB3UPcHz80PgxRyWQ7PdU1r+VBQ== | ||
3676 | dependencies: | ||
3677 | depd "2.0.0" | ||
3678 | |||
3679 | html-to-text@5.1.1, html-to-text@^5.1.1: | 3570 | html-to-text@5.1.1, html-to-text@^5.1.1: |
3680 | version "5.1.1" | 3571 | version "5.1.1" |
3681 | resolved "https://registry.yarnpkg.com/html-to-text/-/html-to-text-5.1.1.tgz#2d89db7bf34bc7bcb7d546b1b228991a16926e87" | 3572 | resolved "https://registry.yarnpkg.com/html-to-text/-/html-to-text-5.1.1.tgz#2d89db7bf34bc7bcb7d546b1b228991a16926e87" |
@@ -3786,7 +3677,7 @@ i@0.3.x: | |||
3786 | resolved "https://registry.yarnpkg.com/i/-/i-0.3.6.tgz#d96c92732076f072711b6b10fd7d4f65ad8ee23d" | 3677 | resolved "https://registry.yarnpkg.com/i/-/i-0.3.6.tgz#d96c92732076f072711b6b10fd7d4f65ad8ee23d" |
3787 | integrity sha1-2WyScyB28HJxG2sQ/X1PZa2O4j0= | 3678 | integrity sha1-2WyScyB28HJxG2sQ/X1PZa2O4j0= |
3788 | 3679 | ||
3789 | iconv-lite@0.4.24, iconv-lite@^0.4.24, iconv-lite@^0.4.4, iconv-lite@~0.4.24: | 3680 | iconv-lite@0.4.24, iconv-lite@^0.4.4, iconv-lite@~0.4.24: |
3790 | version "0.4.24" | 3681 | version "0.4.24" |
3791 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" | 3682 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" |
3792 | integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== | 3683 | integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== |
@@ -3800,6 +3691,13 @@ iconv-lite@0.5.0: | |||
3800 | dependencies: | 3691 | dependencies: |
3801 | safer-buffer ">= 2.1.2 < 3" | 3692 | safer-buffer ">= 2.1.2 < 3" |
3802 | 3693 | ||
3694 | iconv-lite@0.6.2: | ||
3695 | version "0.6.2" | ||
3696 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.2.tgz#ce13d1875b0c3a674bd6a04b7f76b01b1b6ded01" | ||
3697 | integrity sha512-2y91h5OpQlolefMPmUlivelittSWy0rP+oYVpn6A7GwVHNE8AWzoYOBNmlwks3LobaJxgHCYZAnyNo2GgpNRNQ== | ||
3698 | dependencies: | ||
3699 | safer-buffer ">= 2.1.2 < 3.0.0" | ||
3700 | |||
3803 | ieee754@^1.1.4: | 3701 | ieee754@^1.1.4: |
3804 | version "1.1.13" | 3702 | version "1.1.13" |
3805 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.13.tgz#ec168558e95aa181fd87d37f55c32bbcb6708b84" | 3703 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.13.tgz#ec168558e95aa181fd87d37f55c32bbcb6708b84" |
@@ -3895,25 +3793,6 @@ ini@^1.3.5, ini@~1.3.0: | |||
3895 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" | 3793 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" |
3896 | integrity sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw== | 3794 | integrity sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw== |
3897 | 3795 | ||
3898 | inquirer@^7.0.0: | ||
3899 | version "7.2.0" | ||
3900 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-7.2.0.tgz#63ce99d823090de7eb420e4bb05e6f3449aa389a" | ||
3901 | integrity sha512-E0c4rPwr9ByePfNlTIB8z51kK1s2n6jrHuJeEHENl/sbq2G/S1auvibgEwNR4uSyiU+PiYHqSwsgGiXjG8p5ZQ== | ||
3902 | dependencies: | ||
3903 | ansi-escapes "^4.2.1" | ||
3904 | chalk "^3.0.0" | ||
3905 | cli-cursor "^3.1.0" | ||
3906 | cli-width "^2.0.0" | ||
3907 | external-editor "^3.0.3" | ||
3908 | figures "^3.0.0" | ||
3909 | lodash "^4.17.15" | ||
3910 | mute-stream "0.0.8" | ||
3911 | run-async "^2.4.0" | ||
3912 | rxjs "^6.5.3" | ||
3913 | string-width "^4.1.0" | ||
3914 | strip-ansi "^6.0.0" | ||
3915 | through "^2.3.6" | ||
3916 | |||
3917 | ioredis@^4.14.1: | 3796 | ioredis@^4.14.1: |
3918 | version "4.17.3" | 3797 | version "4.17.3" |
3919 | resolved "https://registry.yarnpkg.com/ioredis/-/ioredis-4.17.3.tgz#9938c60e4ca685f75326337177bdc2e73ae9c9dc" | 3798 | resolved "https://registry.yarnpkg.com/ioredis/-/ioredis-4.17.3.tgz#9938c60e4ca685f75326337177bdc2e73ae9c9dc" |
@@ -3951,11 +3830,16 @@ ip@^1.1.3, ip@^1.1.5: | |||
3951 | resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.5.tgz#bdded70114290828c0a039e72ef25f5aaec4354a" | 3830 | resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.5.tgz#bdded70114290828c0a039e72ef25f5aaec4354a" |
3952 | integrity sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo= | 3831 | integrity sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo= |
3953 | 3832 | ||
3954 | ipaddr.js@1.9.1, "ipaddr.js@>= 0.1.5", ipaddr.js@^1.0.1: | 3833 | ipaddr.js@1.9.1, ipaddr.js@^1.0.1: |
3955 | version "1.9.1" | 3834 | version "1.9.1" |
3956 | resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" | 3835 | resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" |
3957 | integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== | 3836 | integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== |
3958 | 3837 | ||
3838 | ipaddr.js@2.0.0, "ipaddr.js@>= 0.1.5": | ||
3839 | version "2.0.0" | ||
3840 | resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-2.0.0.tgz#77ccccc8063ae71ab65c55f21b090698e763fc6e" | ||
3841 | integrity sha512-S54H9mIj0rbxRIyrDMEuuER86LdlgUg9FSeZ8duQb6CUG2iRrA36MYVQBSprTF/ZeAwvyQ5mDGuNvIPM0BIl3w== | ||
3842 | |||
3959 | ipv6-normalize@1.0.1: | 3843 | ipv6-normalize@1.0.1: |
3960 | version "1.0.1" | 3844 | version "1.0.1" |
3961 | resolved "https://registry.yarnpkg.com/ipv6-normalize/-/ipv6-normalize-1.0.1.tgz#1b3258290d365fa83239e89907dde4592e7620a8" | 3845 | resolved "https://registry.yarnpkg.com/ipv6-normalize/-/ipv6-normalize-1.0.1.tgz#1b3258290d365fa83239e89907dde4592e7620a8" |
@@ -3993,12 +3877,12 @@ is-bluebird@^1.0.2: | |||
3993 | resolved "https://registry.yarnpkg.com/is-bluebird/-/is-bluebird-1.0.2.tgz#096439060f4aa411abee19143a84d6a55346d6e2" | 3877 | resolved "https://registry.yarnpkg.com/is-bluebird/-/is-bluebird-1.0.2.tgz#096439060f4aa411abee19143a84d6a55346d6e2" |
3994 | integrity sha1-CWQ5Bg9KpBGr7hkUOoTWpVNG1uI= | 3878 | integrity sha1-CWQ5Bg9KpBGr7hkUOoTWpVNG1uI= |
3995 | 3879 | ||
3996 | is-buffer@^1.1.5, is-buffer@~1.1.1: | 3880 | is-buffer@^1.1.5, is-buffer@~1.1.6: |
3997 | version "1.1.6" | 3881 | version "1.1.6" |
3998 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" | 3882 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" |
3999 | integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== | 3883 | integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== |
4000 | 3884 | ||
4001 | is-buffer@~2.0.3, is-buffer@~2.0.4: | 3885 | is-buffer@~2.0.3: |
4002 | version "2.0.4" | 3886 | version "2.0.4" |
4003 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.4.tgz#3e572f23c8411a5cfd9557c849e3665e0b290623" | 3887 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.4.tgz#3e572f23c8411a5cfd9557c849e3665e0b290623" |
4004 | integrity sha512-Kq1rokWXOPXWuaMAqZiJW4XxsmD9zGx9q4aePabbn3qCRGedtH7Cm+zV8WETitMfu1wdh+Rvd6w5egwSngUX2A== | 3888 | integrity sha512-Kq1rokWXOPXWuaMAqZiJW4XxsmD9zGx9q4aePabbn3qCRGedtH7Cm+zV8WETitMfu1wdh+Rvd6w5egwSngUX2A== |
@@ -4127,15 +4011,20 @@ is-path-inside@^3.0.1: | |||
4127 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.2.tgz#f5220fc82a3e233757291dddc9c5877f2a1f3017" | 4011 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.2.tgz#f5220fc82a3e233757291dddc9c5877f2a1f3017" |
4128 | integrity sha512-/2UGPSgmtqwo1ktx8NDHjuPwZWmHhO+gj0f93EkhLB5RgW9RZevWYYlIkS6zePc6U2WpOdQYIwHe9YC4DWEBVg== | 4012 | integrity sha512-/2UGPSgmtqwo1ktx8NDHjuPwZWmHhO+gj0f93EkhLB5RgW9RZevWYYlIkS6zePc6U2WpOdQYIwHe9YC4DWEBVg== |
4129 | 4013 | ||
4014 | is-plain-obj@^1.1.0: | ||
4015 | version "1.1.0" | ||
4016 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" | ||
4017 | integrity sha1-caUMhCnfync8kqOQpKA7OfzVHT4= | ||
4018 | |||
4130 | is-promise@^2.0.0, is-promise@^2.1: | 4019 | is-promise@^2.0.0, is-promise@^2.1: |
4131 | version "2.2.2" | 4020 | version "2.2.2" |
4132 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.2.2.tgz#39ab959ccbf9a774cf079f7b40c7a26f763135f1" | 4021 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.2.2.tgz#39ab959ccbf9a774cf079f7b40c7a26f763135f1" |
4133 | integrity sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ== | 4022 | integrity sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ== |
4134 | 4023 | ||
4135 | is-regex@^1.0.3, is-regex@^1.1.0: | 4024 | is-regex@^1.0.3, is-regex@^1.1.0: |
4136 | version "1.1.0" | 4025 | version "1.1.1" |
4137 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.0.tgz#ece38e389e490df0dc21caea2bd596f987f767ff" | 4026 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.1.tgz#c6f98aacc546f6cec5468a07b7b153ab564a57b9" |
4138 | integrity sha512-iI97M8KTWID2la5uYXlkbSDQIg4F6o1sYboZKKTDpnDQMLtUL86zxhgDet3Q2SriaYsyGqZ6Mn2SjbRKeLHdqw== | 4027 | integrity sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg== |
4139 | dependencies: | 4028 | dependencies: |
4140 | has-symbols "^1.0.1" | 4029 | has-symbols "^1.0.1" |
4141 | 4030 | ||
@@ -4144,11 +4033,6 @@ is-set@^2.0.1: | |||
4144 | resolved "https://registry.yarnpkg.com/is-set/-/is-set-2.0.1.tgz#d1604afdab1724986d30091575f54945da7e5f43" | 4033 | resolved "https://registry.yarnpkg.com/is-set/-/is-set-2.0.1.tgz#d1604afdab1724986d30091575f54945da7e5f43" |
4145 | integrity sha512-eJEzOtVyenDs1TMzSQ3kU3K+E0GUS9sno+F0OBT97xsgcJsF9nXMBtkT9/kut5JEpM7oL7X/0qxR17K3mcwIAA== | 4034 | integrity sha512-eJEzOtVyenDs1TMzSQ3kU3K+E0GUS9sno+F0OBT97xsgcJsF9nXMBtkT9/kut5JEpM7oL7X/0qxR17K3mcwIAA== |
4146 | 4035 | ||
4147 | is-stream@^1.1.0: | ||
4148 | version "1.1.0" | ||
4149 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" | ||
4150 | integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ= | ||
4151 | |||
4152 | is-stream@^2.0.0: | 4036 | is-stream@^2.0.0: |
4153 | version "2.0.0" | 4037 | version "2.0.0" |
4154 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.0.tgz#bde9c32680d6fae04129d6ac9d921ce7815f78e3" | 4038 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.0.tgz#bde9c32680d6fae04129d6ac9d921ce7815f78e3" |
@@ -4229,21 +4113,21 @@ iterate-value@^1.0.0: | |||
4229 | es-get-iterator "^1.0.2" | 4113 | es-get-iterator "^1.0.2" |
4230 | iterate-iterator "^1.0.1" | 4114 | iterate-iterator "^1.0.1" |
4231 | 4115 | ||
4232 | jimp@^0.13.0: | 4116 | jimp@^0.16.0: |
4233 | version "0.13.0" | 4117 | version "0.16.0" |
4234 | resolved "https://registry.yarnpkg.com/jimp/-/jimp-0.13.0.tgz#d5497350adaebf5dd32e4b873871fe41297cccf4" | 4118 | resolved "https://registry.yarnpkg.com/jimp/-/jimp-0.16.0.tgz#d01a1709634c22aa113df02076dbe4db7ca55acc" |
4235 | integrity sha512-N/iG8L7Qe+AcHhrgcL0m7PTP/14iybmSIuOqCDvuel9gcIKEzxbbGuPCJVMchwXzusc2E7h9UjO9LZDfXb/09w== | 4119 | integrity sha512-WRfGlXB6/0xY3mSoskfVhWVNSegVZCgmvunJDc41QthTWi5oRG2FeL7eOcX0zz/Z+dYRu6Q0ibO2yltC+EIptA== |
4236 | dependencies: | 4120 | dependencies: |
4237 | "@babel/runtime" "^7.7.2" | 4121 | "@babel/runtime" "^7.7.2" |
4238 | "@jimp/custom" "^0.13.0" | 4122 | "@jimp/custom" "^0.16.0" |
4239 | "@jimp/plugins" "^0.13.0" | 4123 | "@jimp/plugins" "^0.16.0" |
4240 | "@jimp/types" "^0.13.0" | 4124 | "@jimp/types" "^0.16.0" |
4241 | regenerator-runtime "^0.13.3" | 4125 | regenerator-runtime "^0.13.3" |
4242 | 4126 | ||
4243 | jpeg-js@^0.4.0: | 4127 | jpeg-js@^0.4.0: |
4244 | version "0.4.0" | 4128 | version "0.4.2" |
4245 | resolved "https://registry.yarnpkg.com/jpeg-js/-/jpeg-js-0.4.0.tgz#39adab7245b6d11e918ba5d4b49263ff2fc6a2f9" | 4129 | resolved "https://registry.yarnpkg.com/jpeg-js/-/jpeg-js-0.4.2.tgz#8b345b1ae4abde64c2da2fe67ea216a114ac279d" |
4246 | integrity sha512-960VHmtN1vTpasX/1LupLohdP5odwAT7oK/VSm6mW0M58LbrBnowLAPWAZhWGhDAGjzbMnPXZxzB/QYgBwkN0w== | 4130 | integrity sha512-+az2gi/hvex7eLTMTlbRLOhH6P6WFdk2ITI8HJsaH2VqYO0I594zXSYEP+tf4FW+8Cy68ScDXoAsQdyQanv3sw== |
4247 | 4131 | ||
4248 | js-stringify@^1.0.1, js-stringify@^1.0.2: | 4132 | js-stringify@^1.0.1, js-stringify@^1.0.2: |
4249 | version "1.0.2" | 4133 | version "1.0.2" |
@@ -4423,12 +4307,10 @@ kind-of@^3.0.2: | |||
4423 | dependencies: | 4307 | dependencies: |
4424 | is-buffer "^1.1.5" | 4308 | is-buffer "^1.1.5" |
4425 | 4309 | ||
4426 | kuler@1.0.x: | 4310 | kuler@^2.0.0: |
4427 | version "1.0.1" | 4311 | version "2.0.0" |
4428 | resolved "https://registry.yarnpkg.com/kuler/-/kuler-1.0.1.tgz#ef7c784f36c9fb6e16dd3150d152677b2b0228a6" | 4312 | resolved "https://registry.yarnpkg.com/kuler/-/kuler-2.0.0.tgz#e2c570a3800388fb44407e851531c1d670b061b3" |
4429 | integrity sha512-J9nVUucG1p/skKul6DU3PUZrhs0LPulNaeUOox0IyXDi8S4CztTHs1gQphhuZmzXG7VOQSf6NJfKuzteQLv9gQ== | 4313 | integrity sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A== |
4430 | dependencies: | ||
4431 | colornames "^1.1.1" | ||
4432 | 4314 | ||
4433 | last-one-wins@^1.0.4: | 4315 | last-one-wins@^1.0.4: |
4434 | version "1.0.4" | 4316 | version "1.0.4" |
@@ -4470,6 +4352,16 @@ libmime@4.2.1: | |||
4470 | libbase64 "1.2.1" | 4352 | libbase64 "1.2.1" |
4471 | libqp "1.1.0" | 4353 | libqp "1.1.0" |
4472 | 4354 | ||
4355 | libmime@5.0.0: | ||
4356 | version "5.0.0" | ||
4357 | resolved "https://registry.yarnpkg.com/libmime/-/libmime-5.0.0.tgz#4759c76eb219985c5d4057b3a9359922194d9ff7" | ||
4358 | integrity sha512-2Bm96d5ktnE217Ib1FldvUaPAaOst6GtZrsxJCwnJgi9lnsoAKIHyU0sae8rNx6DNYbjdqqh8lv5/b9poD8qOg== | ||
4359 | dependencies: | ||
4360 | encoding-japanese "1.0.30" | ||
4361 | iconv-lite "0.6.2" | ||
4362 | libbase64 "1.2.1" | ||
4363 | libqp "1.1.0" | ||
4364 | |||
4473 | libqp@1.1.0: | 4365 | libqp@1.1.0: |
4474 | version "1.1.0" | 4366 | version "1.1.0" |
4475 | resolved "https://registry.yarnpkg.com/libqp/-/libqp-1.1.0.tgz#f5e6e06ad74b794fb5b5b66988bf728ef1dedbe8" | 4367 | resolved "https://registry.yarnpkg.com/libqp/-/libqp-1.1.0.tgz#f5e6e06ad74b794fb5b5b66988bf728ef1dedbe8" |
@@ -4484,17 +4376,17 @@ libxmljs@0.19.7: | |||
4484 | nan "~2.14.0" | 4376 | nan "~2.14.0" |
4485 | node-pre-gyp "~0.11.0" | 4377 | node-pre-gyp "~0.11.0" |
4486 | 4378 | ||
4487 | linkify-it@2.2.0: | 4379 | linkify-it@3.0.2: |
4488 | version "2.2.0" | 4380 | version "3.0.2" |
4489 | resolved "https://registry.yarnpkg.com/linkify-it/-/linkify-it-2.2.0.tgz#e3b54697e78bf915c70a38acd78fd09e0058b1cf" | 4381 | resolved "https://registry.yarnpkg.com/linkify-it/-/linkify-it-3.0.2.tgz#f55eeb8bc1d3ae754049e124ab3bb56d97797fb8" |
4490 | integrity sha512-GnAl/knGn+i1U/wjBz3akz2stz+HrHLsxMwHQGofCDfPvlf+gDKN58UtfmUquTY4/MXeE2x7k19KQmeoZi94Iw== | 4382 | integrity sha512-gDBO4aHNZS6coiZCKVhSNh43F9ioIL4JwRjLZPkoLIY4yZFwg264Y5lu2x6rb1Js42Gh6Yqm2f6L2AJcnkzinQ== |
4491 | dependencies: | 4383 | dependencies: |
4492 | uc.micro "^1.0.1" | 4384 | uc.micro "^1.0.1" |
4493 | 4385 | ||
4494 | load-bmfont@^1.3.1, load-bmfont@^1.4.0: | 4386 | load-bmfont@^1.3.1, load-bmfont@^1.4.0: |
4495 | version "1.4.0" | 4387 | version "1.4.1" |
4496 | resolved "https://registry.yarnpkg.com/load-bmfont/-/load-bmfont-1.4.0.tgz#75f17070b14a8c785fe7f5bee2e6fd4f98093b6b" | 4388 | resolved "https://registry.yarnpkg.com/load-bmfont/-/load-bmfont-1.4.1.tgz#c0f5f4711a1e2ccff725a7b6078087ccfcddd3e9" |
4497 | integrity sha512-kT63aTAlNhZARowaNYcY29Fn/QYkc52M3l6V1ifRcPewg2lvUZDAj7R6dXjOL9D0sict76op3T5+odumDSF81g== | 4389 | integrity sha512-8UyQoYmdRDy81Brz6aLAUhfZLwr5zV0L3taTQ4hju7m6biuwiWiJXjPhBJxbUQJA8PrkvJ/7Enqmwk2sM14soA== |
4498 | dependencies: | 4390 | dependencies: |
4499 | buffer-equal "0.0.1" | 4391 | buffer-equal "0.0.1" |
4500 | mime "^1.3.4" | 4392 | mime "^1.3.4" |
@@ -4624,10 +4516,10 @@ lodash.unescape@^4.0.1: | |||
4624 | resolved "https://registry.yarnpkg.com/lodash.unescape/-/lodash.unescape-4.0.1.tgz#bf2249886ce514cda112fae9218cdc065211fc9c" | 4516 | resolved "https://registry.yarnpkg.com/lodash.unescape/-/lodash.unescape-4.0.1.tgz#bf2249886ce514cda112fae9218cdc065211fc9c" |
4625 | integrity sha1-vyJJiGzlFM2hEvrpIYzcBlIR/Jw= | 4517 | integrity sha1-vyJJiGzlFM2hEvrpIYzcBlIR/Jw= |
4626 | 4518 | ||
4627 | lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.4: | 4519 | lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.4: |
4628 | version "4.17.15" | 4520 | version "4.17.20" |
4629 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548" | 4521 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.20.tgz#b44a9b6297bcb698f1c51a3545a2b3b368d59c52" |
4630 | integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A== | 4522 | integrity sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA== |
4631 | 4523 | ||
4632 | log-symbols@3.0.0: | 4524 | log-symbols@3.0.0: |
4633 | version "3.0.0" | 4525 | version "3.0.0" |
@@ -4636,14 +4528,14 @@ log-symbols@3.0.0: | |||
4636 | dependencies: | 4528 | dependencies: |
4637 | chalk "^2.4.2" | 4529 | chalk "^2.4.2" |
4638 | 4530 | ||
4639 | logform@^2.1.1: | 4531 | logform@^2.2.0: |
4640 | version "2.1.2" | 4532 | version "2.2.0" |
4641 | resolved "https://registry.yarnpkg.com/logform/-/logform-2.1.2.tgz#957155ebeb67a13164069825ce67ddb5bb2dd360" | 4533 | resolved "https://registry.yarnpkg.com/logform/-/logform-2.2.0.tgz#40f036d19161fc76b68ab50fdc7fe495544492f2" |
4642 | integrity sha512-+lZh4OpERDBLqjiwDLpAWNQu6KMjnlXH2ByZwCuSqVPJletw0kTWJf5CgSNAUKn1KUkv3m2cUz/LK8zyEy7wzQ== | 4534 | integrity sha512-N0qPlqfypFx7UHNn4B3lzS/b0uLqt2hmuoa+PpuXNYgozdJYAyauF5Ky0BWVjrxDlMWiT3qN4zPq3vVAfZy7Yg== |
4643 | dependencies: | 4535 | dependencies: |
4644 | colors "^1.2.1" | 4536 | colors "^1.2.1" |
4645 | fast-safe-stringify "^2.0.4" | 4537 | fast-safe-stringify "^2.0.4" |
4646 | fecha "^2.3.3" | 4538 | fecha "^4.2.0" |
4647 | ms "^2.1.1" | 4539 | ms "^2.1.1" |
4648 | triple-beam "^1.3.0" | 4540 | triple-beam "^1.3.0" |
4649 | 4541 | ||
@@ -4677,6 +4569,13 @@ lru-cache@^5.1.1: | |||
4677 | dependencies: | 4569 | dependencies: |
4678 | yallist "^3.0.2" | 4570 | yallist "^3.0.2" |
4679 | 4571 | ||
4572 | lru-cache@^6.0.0: | ||
4573 | version "6.0.0" | ||
4574 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" | ||
4575 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== | ||
4576 | dependencies: | ||
4577 | yallist "^4.0.0" | ||
4578 | |||
4680 | lru-queue@0.1: | 4579 | lru-queue@0.1: |
4681 | version "0.1.0" | 4580 | version "0.1.0" |
4682 | resolved "https://registry.yarnpkg.com/lru-queue/-/lru-queue-0.1.0.tgz#2738bd9f0d3cf4f84490c5736c48699ac632cda3" | 4581 | resolved "https://registry.yarnpkg.com/lru-queue/-/lru-queue-0.1.0.tgz#2738bd9f0d3cf4f84490c5736c48699ac632cda3" |
@@ -4692,12 +4591,11 @@ lru@^3.1.0: | |||
4692 | inherits "^2.0.1" | 4591 | inherits "^2.0.1" |
4693 | 4592 | ||
4694 | magnet-uri@^5.1.3, magnet-uri@^5.1.4: | 4593 | magnet-uri@^5.1.3, magnet-uri@^5.1.4: |
4695 | version "5.2.4" | 4594 | version "5.3.0" |
4696 | resolved "https://registry.yarnpkg.com/magnet-uri/-/magnet-uri-5.2.4.tgz#7afe5b736af04445aff744c93a890a3710077688" | 4595 | resolved "https://registry.yarnpkg.com/magnet-uri/-/magnet-uri-5.3.0.tgz#5dd2efbfcf44c41ce54fe309030bce4ee120b79b" |
4697 | integrity sha512-VYaJMxhr8B9BrCiNINUsuhaEe40YnG+AQBwcqUKO66lSVaI9I3A1iH/6EmEwRI8OYUg5Gt+4lLE7achg676lrg== | 4596 | integrity sha512-8GuTc9mXYfaKrXz687kzx2YTEhMR/X1Qgt6tkTNwPlb2fUy3QfU+O9zuoB5DKAa/IyVdLGxe9xSFUtaA+ZG5tQ== |
4698 | dependencies: | 4597 | dependencies: |
4699 | thirty-two "^1.0.1" | 4598 | thirty-two "^1.0.2" |
4700 | uniq "^1.0.1" | ||
4701 | 4599 | ||
4702 | maildev@^1.0.0-rc3: | 4600 | maildev@^1.0.0-rc3: |
4703 | version "1.1.0" | 4601 | version "1.1.0" |
@@ -4727,24 +4625,24 @@ mailparser-mit@^1.0.0: | |||
4727 | uue "^3.1.0" | 4625 | uue "^3.1.0" |
4728 | 4626 | ||
4729 | mailparser@^2.7.7: | 4627 | mailparser@^2.7.7: |
4730 | version "2.7.7" | 4628 | version "2.8.1" |
4731 | resolved "https://registry.yarnpkg.com/mailparser/-/mailparser-2.7.7.tgz#7d3fe616797427629c59992a34d84820d550676b" | 4629 | resolved "https://registry.yarnpkg.com/mailparser/-/mailparser-2.8.1.tgz#a95b062e49dcb39051018962504a1a79646c7195" |
4732 | integrity sha512-FcVkXYm+zIg59HNPINGQw99eMTvcAkmQZHmabF8aSeMZ6/vWkx0HdT6FpXApelfe5IKRk6nWEg+YAuuXZl9+Fg== | 4630 | integrity sha512-H/CYAO9dsw6SFNbEGGpZsejVSWDcFlyHjb1OkHUWg0wggUekva1tNc28trB155nSqM8rhtbwTKt//orX0AmJxQ== |
4733 | dependencies: | 4631 | dependencies: |
4734 | encoding-japanese "1.0.30" | 4632 | encoding-japanese "1.0.30" |
4735 | he "1.2.0" | 4633 | he "1.2.0" |
4736 | html-to-text "5.1.1" | 4634 | html-to-text "5.1.1" |
4737 | iconv-lite "0.5.0" | 4635 | iconv-lite "0.6.2" |
4738 | libmime "4.2.1" | 4636 | libmime "5.0.0" |
4739 | linkify-it "2.2.0" | 4637 | linkify-it "3.0.2" |
4740 | mailsplit "4.6.2" | 4638 | mailsplit "5.0.0" |
4741 | nodemailer "6.4.0" | 4639 | nodemailer "6.4.11" |
4742 | tlds "1.207.0" | 4640 | tlds "1.208.0" |
4743 | 4641 | ||
4744 | mailsplit@4.6.2: | 4642 | mailsplit@5.0.0: |
4745 | version "4.6.2" | 4643 | version "5.0.0" |
4746 | resolved "https://registry.yarnpkg.com/mailsplit/-/mailsplit-4.6.2.tgz#ce622cea460406035ff9f7d493ed00ea52a27aaa" | 4644 | resolved "https://registry.yarnpkg.com/mailsplit/-/mailsplit-5.0.0.tgz#0924c89142deadb75ef3825860181e436d7557a1" |
4747 | integrity sha512-7Bw2R0QfORXexGGQCEK64EeShHacUNyU5kV5F5sj4jPQB3ITe2v9KRqxD40wpuue6W/sBJlSNBZ0AypIeTGQMQ== | 4645 | integrity sha512-HeXA0eyCKBtZqbr7uoeb3Nn2L7VV8Vm27x6/YBb0ZiNzRzLoNS2PqRgGYADwh0cBzLYtqddq40bSSirqLO2LGw== |
4748 | dependencies: | 4646 | dependencies: |
4749 | libbase64 "1.2.1" | 4647 | libbase64 "1.2.1" |
4750 | libmime "4.2.1" | 4648 | libmime "4.2.1" |
@@ -4770,9 +4668,9 @@ make-plural@^4.3.0: | |||
4770 | minimist "^1.2.0" | 4668 | minimist "^1.2.0" |
4771 | 4669 | ||
4772 | make-plural@^6.2.1: | 4670 | make-plural@^6.2.1: |
4773 | version "6.2.1" | 4671 | version "6.2.2" |
4774 | resolved "https://registry.yarnpkg.com/make-plural/-/make-plural-6.2.1.tgz#2790af1d05fb2fc35a111ce759ffdb0aca1339a3" | 4672 | resolved "https://registry.yarnpkg.com/make-plural/-/make-plural-6.2.2.tgz#beb5fd751355e72660eeb2218bb98eec92853c6c" |
4775 | integrity sha512-AmkruwJ9EjvyTv6AM8MBMK3TAeOJvhgTv5YQXzF0EP2qawhpvMjDpHvsdOIIT0Vn+BB0+IogmYZ1z+Ulm/m0Fg== | 4673 | integrity sha512-8iTuFioatnTTmb/YJjywkVIHLjcwkFD9Ms0JpxjEm9Mo8eQYkh1z+55dwv4yc1jQ8ftVBxWQbihvZL1DfzGGWA== |
4776 | 4674 | ||
4777 | markdown-it-emoji@^1.4.0: | 4675 | markdown-it-emoji@^1.4.0: |
4778 | version "1.4.0" | 4676 | version "1.4.0" |
@@ -4785,9 +4683,9 @@ marked-man@^0.7.0: | |||
4785 | integrity sha512-zxK5E4jbuARALc+fIUAanM2njVGnrd9YvKrqoDHUg2XwNLJijo39EzMIg59LecHBHsIHNtPqepqnJp4SmL/EVg== | 4683 | integrity sha512-zxK5E4jbuARALc+fIUAanM2njVGnrd9YvKrqoDHUg2XwNLJijo39EzMIg59LecHBHsIHNtPqepqnJp4SmL/EVg== |
4786 | 4684 | ||
4787 | marked@^1.1.0: | 4685 | marked@^1.1.0: |
4788 | version "1.1.0" | 4686 | version "1.1.1" |
4789 | resolved "https://registry.yarnpkg.com/marked/-/marked-1.1.0.tgz#62504ad4d11550c942935ccc5e39d64e5a4c4e50" | 4687 | resolved "https://registry.yarnpkg.com/marked/-/marked-1.1.1.tgz#e5d61b69842210d5df57b05856e0c91572703e6a" |
4790 | integrity sha512-EkE7RW6KcXfMHy2PA7Jg0YJE1l8UPEZE8k45tylzmZM30/r1M1MUXWQfJlrSbsTeh7m/XTwHbWUENvAJZpp1YA== | 4688 | integrity sha512-mJzT8D2yPxoPh7h0UXkB+dBj4FykPJ2OIfxAWeIHrvoHDkFxukV/29QxoFQoPM6RLEwhIFdJpmKBlqVM3s2ZIw== |
4791 | 4689 | ||
4792 | math-interval-parser@^2.0.1: | 4690 | math-interval-parser@^2.0.1: |
4793 | version "2.0.1" | 4691 | version "2.0.1" |
@@ -4795,13 +4693,13 @@ math-interval-parser@^2.0.1: | |||
4795 | integrity sha512-VmlAmb0UJwlvMyx8iPhXUDnVW1F9IrGEd9CIOmv+XL8AErCUUuozoDMrgImvnYt2A+53qVX/tPW6YJurMKYsvA== | 4693 | integrity sha512-VmlAmb0UJwlvMyx8iPhXUDnVW1F9IrGEd9CIOmv+XL8AErCUUuozoDMrgImvnYt2A+53qVX/tPW6YJurMKYsvA== |
4796 | 4694 | ||
4797 | md5@^2.2.1: | 4695 | md5@^2.2.1: |
4798 | version "2.2.1" | 4696 | version "2.3.0" |
4799 | resolved "https://registry.yarnpkg.com/md5/-/md5-2.2.1.tgz#53ab38d5fe3c8891ba465329ea23fac0540126f9" | 4697 | resolved "https://registry.yarnpkg.com/md5/-/md5-2.3.0.tgz#c3da9a6aae3a30b46b7b0c349b87b110dc3bda4f" |
4800 | integrity sha1-U6s41f48iJG6RlMp6iP6wFQBJvk= | 4698 | integrity sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g== |
4801 | dependencies: | 4699 | dependencies: |
4802 | charenc "~0.0.1" | 4700 | charenc "0.0.2" |
4803 | crypt "~0.0.1" | 4701 | crypt "0.0.2" |
4804 | is-buffer "~1.1.1" | 4702 | is-buffer "~1.1.6" |
4805 | 4703 | ||
4806 | media-typer@0.3.0: | 4704 | media-typer@0.3.0: |
4807 | version "0.3.0" | 4705 | version "0.3.0" |
@@ -4969,9 +4867,9 @@ mkdirp@0.x.x, mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@^0.5.3, mkdirp@~0.5.1: | |||
4969 | minimist "^1.2.5" | 4867 | minimist "^1.2.5" |
4970 | 4868 | ||
4971 | mocha@^8.0.1: | 4869 | mocha@^8.0.1: |
4972 | version "8.0.1" | 4870 | version "8.1.1" |
4973 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-8.0.1.tgz#fe01f0530362df271aa8f99510447bc38b88d8ed" | 4871 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-8.1.1.tgz#1de1ba4e9a2c955d96b84e469d7540848223592d" |
4974 | integrity sha512-vefaXfdYI8+Yo8nPZQQi0QO2o+5q9UIMX1jZ1XMmK3+4+CQjc7+B0hPdUeglXiTlr8IHMVRo63IhO9Mzt6fxOg== | 4872 | integrity sha512-p7FuGlYH8t7gaiodlFreseLxEmxTgvyG9RgPHODFPySNhwUehu8NIb0vdSt3WFckSneswZ0Un5typYcWElk7HQ== |
4975 | dependencies: | 4873 | dependencies: |
4976 | ansi-colors "4.1.1" | 4874 | ansi-colors "4.1.1" |
4977 | browser-stdout "1.3.1" | 4875 | browser-stdout "1.3.1" |
@@ -4989,7 +4887,7 @@ mocha@^8.0.1: | |||
4989 | ms "2.1.2" | 4887 | ms "2.1.2" |
4990 | object.assign "4.1.0" | 4888 | object.assign "4.1.0" |
4991 | promise.allsettled "1.0.2" | 4889 | promise.allsettled "1.0.2" |
4992 | serialize-javascript "3.0.0" | 4890 | serialize-javascript "4.0.0" |
4993 | strip-json-comments "3.0.1" | 4891 | strip-json-comments "3.0.1" |
4994 | supports-color "7.1.0" | 4892 | supports-color "7.1.0" |
4995 | which "2.0.2" | 4893 | which "2.0.2" |
@@ -4997,7 +4895,7 @@ mocha@^8.0.1: | |||
4997 | workerpool "6.0.0" | 4895 | workerpool "6.0.0" |
4998 | yargs "13.3.2" | 4896 | yargs "13.3.2" |
4999 | yargs-parser "13.1.2" | 4897 | yargs-parser "13.1.2" |
5000 | yargs-unparser "1.6.0" | 4898 | yargs-unparser "1.6.1" |
5001 | 4899 | ||
5002 | moment-timezone@^0.5.21, moment-timezone@^0.5.31: | 4900 | moment-timezone@^0.5.21, moment-timezone@^0.5.31: |
5003 | version "0.5.31" | 4901 | version "0.5.31" |
@@ -5007,9 +4905,9 @@ moment-timezone@^0.5.21, moment-timezone@^0.5.31: | |||
5007 | moment ">= 2.9.0" | 4905 | moment ">= 2.9.0" |
5008 | 4906 | ||
5009 | "moment@>= 2.9.0", moment@^2.24.0, moment@^2.25.3: | 4907 | "moment@>= 2.9.0", moment@^2.24.0, moment@^2.25.3: |
5010 | version "2.26.0" | 4908 | version "2.27.0" |
5011 | resolved "https://registry.yarnpkg.com/moment/-/moment-2.26.0.tgz#5e1f82c6bafca6e83e808b30c8705eed0dcbd39a" | 4909 | resolved "https://registry.yarnpkg.com/moment/-/moment-2.27.0.tgz#8bff4e3e26a236220dfe3e36de756b6ebaa0105d" |
5012 | integrity sha512-oIixUO+OamkUkwjhAVE18rAMfRJNsNe/Stid/gwHSOfHrOtw9EhAY2AHvdKZ/k/MggcYELFCJz/Sn2pL8b8JMw== | 4910 | integrity sha512-al0MUK7cpIcglMv3YF13qSgdAIqxHTO7brRtaz3DlSULbqfazqkc5kEjNrLDOM7fsjshoFIihnU8snrP7zUvhQ== |
5013 | 4911 | ||
5014 | morgan@^1.5.3: | 4912 | morgan@^1.5.3: |
5015 | version "1.10.0" | 4913 | version "1.10.0" |
@@ -5090,7 +4988,7 @@ mustache@^4.0.1: | |||
5090 | resolved "https://registry.yarnpkg.com/mustache/-/mustache-4.0.1.tgz#d99beb031701ad433338e7ea65e0489416c854a2" | 4988 | resolved "https://registry.yarnpkg.com/mustache/-/mustache-4.0.1.tgz#d99beb031701ad433338e7ea65e0489416c854a2" |
5091 | integrity sha512-yL5VE97+OXn4+Er3THSmTdCFCtx5hHWzrolvH+JObZnUYwuaG7XV+Ch4fR2cIrcYI0tFHxS7iyFYl14bW8y2sA== | 4989 | integrity sha512-yL5VE97+OXn4+Er3THSmTdCFCtx5hHWzrolvH+JObZnUYwuaG7XV+Ch4fR2cIrcYI0tFHxS7iyFYl14bW8y2sA== |
5092 | 4990 | ||
5093 | mute-stream@0.0.8, mute-stream@~0.0.4: | 4991 | mute-stream@~0.0.4: |
5094 | version "0.0.8" | 4992 | version "0.0.8" |
5095 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d" | 4993 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d" |
5096 | integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA== | 4994 | integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA== |
@@ -5149,11 +5047,6 @@ nice-try@^1.0.4: | |||
5149 | resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" | 5047 | resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" |
5150 | integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== | 5048 | integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== |
5151 | 5049 | ||
5152 | nocache@2.1.0: | ||
5153 | version "2.1.0" | ||
5154 | resolved "https://registry.yarnpkg.com/nocache/-/nocache-2.1.0.tgz#120c9ffec43b5729b1d5de88cd71aa75a0ba491f" | ||
5155 | integrity sha512-0L9FvHG3nfnnmaEQPjT9xhfN4ISk0A8/2j4M37Np4mcDesJjHgEUfgPhdCyZuFI954tjokaIj/A3NdpFNdEh4Q== | ||
5156 | |||
5157 | node-addon-api@^3.0.0: | 5050 | node-addon-api@^3.0.0: |
5158 | version "3.0.0" | 5051 | version "3.0.0" |
5159 | resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-3.0.0.tgz#812446a1001a54f71663bed188314bba07e09247" | 5052 | resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-3.0.0.tgz#812446a1001a54f71663bed188314bba07e09247" |
@@ -5206,21 +5099,16 @@ nodemailer@5.0.0: | |||
5206 | resolved "https://registry.yarnpkg.com/nodemailer/-/nodemailer-5.0.0.tgz#bcb409eca613114e85de42646d0ce7f1fa70b716" | 5099 | resolved "https://registry.yarnpkg.com/nodemailer/-/nodemailer-5.0.0.tgz#bcb409eca613114e85de42646d0ce7f1fa70b716" |
5207 | integrity sha512-XI4PI5L7GYcJyHkPcHlvPyRrYohNYBNRNbt1tU8PXNU3E1ADJC84a13V0vbL9AM431OP+ETacaGXAF8fGn1JvA== | 5100 | integrity sha512-XI4PI5L7GYcJyHkPcHlvPyRrYohNYBNRNbt1tU8PXNU3E1ADJC84a13V0vbL9AM431OP+ETacaGXAF8fGn1JvA== |
5208 | 5101 | ||
5209 | nodemailer@6.4.0: | 5102 | nodemailer@6.4.11, nodemailer@^6.0.0, nodemailer@^6.3.1, nodemailer@^6.4.6: |
5210 | version "6.4.0" | 5103 | version "6.4.11" |
5211 | resolved "https://registry.yarnpkg.com/nodemailer/-/nodemailer-6.4.0.tgz#91482ebc09d39156d933eb9e6159642cd27bf02c" | 5104 | resolved "https://registry.yarnpkg.com/nodemailer/-/nodemailer-6.4.11.tgz#1f00b4ffd106403f17c03f3d43d5945b2677046c" |
5212 | integrity sha512-UBqPOfQGD1cM3HnjhuQe+0u3DWx47WWK7lBjG5UtPnGOysr7oDK5lNCzcjK6zzeBSdTk4m1tGx1xNbWFZQmMNA== | 5105 | integrity sha512-BVZBDi+aJV4O38rxsUh164Dk1NCqgh6Cm0rQSb9SK/DHGll/DrCMnycVDD7msJgZCnmVa8ASo8EZzR7jsgTukQ== |
5213 | 5106 | ||
5214 | nodemailer@^3.1.1: | 5107 | nodemailer@^3.1.1: |
5215 | version "3.1.8" | 5108 | version "3.1.8" |
5216 | resolved "https://registry.yarnpkg.com/nodemailer/-/nodemailer-3.1.8.tgz#febfaccb4bd273678473a309c6cb4b4a2f3c48e3" | 5109 | resolved "https://registry.yarnpkg.com/nodemailer/-/nodemailer-3.1.8.tgz#febfaccb4bd273678473a309c6cb4b4a2f3c48e3" |
5217 | integrity sha1-/r+sy0vSc2eEc6MJxstLSi88SOM= | 5110 | integrity sha1-/r+sy0vSc2eEc6MJxstLSi88SOM= |
5218 | 5111 | ||
5219 | nodemailer@^6.0.0, nodemailer@^6.3.1, nodemailer@^6.4.6: | ||
5220 | version "6.4.8" | ||
5221 | resolved "https://registry.yarnpkg.com/nodemailer/-/nodemailer-6.4.8.tgz#aca52886e4e56f71f6b8a65f5ca6b767ca751fc7" | ||
5222 | integrity sha512-UbJD0+g5e2H20bWv7Rpj3B+N3TMMJ0MLoLwaGVJ0k3Vo8upq0UltwHJ5BJfrpST1vFa91JQ8cf7cICK5DSIo1Q== | ||
5223 | |||
5224 | nodemon@^2.0.1: | 5112 | nodemon@^2.0.1: |
5225 | version "2.0.4" | 5113 | version "2.0.4" |
5226 | resolved "https://registry.yarnpkg.com/nodemon/-/nodemon-2.0.4.tgz#55b09319eb488d6394aa9818148c0c2d1c04c416" | 5114 | resolved "https://registry.yarnpkg.com/nodemon/-/nodemon-2.0.4.tgz#55b09319eb488d6394aa9818148c0c2d1c04c416" |
@@ -5327,7 +5215,7 @@ oauth-sign@~0.9.0: | |||
5327 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" | 5215 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" |
5328 | integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ== | 5216 | integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ== |
5329 | 5217 | ||
5330 | oauth2-server@3.0.0, oauth2-server@3.1.0-beta.1, oauth2-server@^3.1.0-beta.1: | 5218 | oauth2-server@3.0.0, oauth2-server@3.1.0-beta.1: |
5331 | version "3.1.0-beta.1" | 5219 | version "3.1.0-beta.1" |
5332 | resolved "https://registry.yarnpkg.com/oauth2-server/-/oauth2-server-3.1.0-beta.1.tgz#159ee4d32d148c2dc7a39f7b1ce872e039b91a41" | 5220 | resolved "https://registry.yarnpkg.com/oauth2-server/-/oauth2-server-3.1.0-beta.1.tgz#159ee4d32d148c2dc7a39f7b1ce872e039b91a41" |
5333 | integrity sha512-FWLl/YC5NGvGzAtclhmlY9fG0nKwDP7xPiPOi5fZ4APO34BmF/vxsEp22spJNuSOrGEsp9W7jKtFCI3UBSvx5w== | 5221 | integrity sha512-FWLl/YC5NGvGzAtclhmlY9fG0nKwDP7xPiPOi5fZ4APO34BmF/vxsEp22spJNuSOrGEsp9W7jKtFCI3UBSvx5w== |
@@ -5350,9 +5238,9 @@ object-component@0.0.3: | |||
5350 | integrity sha1-8MaapQ78lbhmwYb0AKM3acsvEpE= | 5238 | integrity sha1-8MaapQ78lbhmwYb0AKM3acsvEpE= |
5351 | 5239 | ||
5352 | object-inspect@^1.7.0: | 5240 | object-inspect@^1.7.0: |
5353 | version "1.7.0" | 5241 | version "1.8.0" |
5354 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.7.0.tgz#f4f6bd181ad77f006b5ece60bd0b6f398ff74a67" | 5242 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.8.0.tgz#df807e5ecf53a609cc6bfe93eac3cc7be5b3a9d0" |
5355 | integrity sha512-a7pEHdh1xKIAgTySUGgLMx/xwDZskN1Ud6egYYN3EdRW4ZMPNEDUTF+hwy2LUC+Bl+SyLXANnwz/jyh/qutKUw== | 5243 | integrity sha512-jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA== |
5356 | 5244 | ||
5357 | object-keys@^1.0.11, object-keys@^1.0.12, object-keys@^1.1.1: | 5245 | object-keys@^1.0.11, object-keys@^1.0.12, object-keys@^1.1.1: |
5358 | version "1.1.1" | 5246 | version "1.1.1" |
@@ -5414,22 +5302,24 @@ on-headers@~1.0.2: | |||
5414 | resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.2.tgz#772b0ae6aaa525c399e489adfad90c403eb3c28f" | 5302 | resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.2.tgz#772b0ae6aaa525c399e489adfad90c403eb3c28f" |
5415 | integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA== | 5303 | integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA== |
5416 | 5304 | ||
5417 | once@^1.3.0, once@^1.3.1, once@^1.3.3, once@^1.4.0: | 5305 | once@^1.3.0, once@^1.3.1, once@^1.4.0: |
5418 | version "1.4.0" | 5306 | version "1.4.0" |
5419 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" | 5307 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" |
5420 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= | 5308 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= |
5421 | dependencies: | 5309 | dependencies: |
5422 | wrappy "1" | 5310 | wrappy "1" |
5423 | 5311 | ||
5424 | one-time@0.0.4: | 5312 | one-time@^1.0.0: |
5425 | version "0.0.4" | 5313 | version "1.0.0" |
5426 | resolved "https://registry.yarnpkg.com/one-time/-/one-time-0.0.4.tgz#f8cdf77884826fe4dff93e3a9cc37b1e4480742e" | 5314 | resolved "https://registry.yarnpkg.com/one-time/-/one-time-1.0.0.tgz#e06bc174aed214ed58edede573b433bbf827cb45" |
5427 | integrity sha1-+M33eISCb+Tf+T46nMN7HkSAdC4= | 5315 | integrity sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g== |
5316 | dependencies: | ||
5317 | fn.name "1.x.x" | ||
5428 | 5318 | ||
5429 | onetime@^5.1.0: | 5319 | onetime@^5.1.0: |
5430 | version "5.1.0" | 5320 | version "5.1.2" |
5431 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.0.tgz#fff0f3c91617fe62bb50189636e99ac8a6df7be5" | 5321 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" |
5432 | integrity sha512-5NcSkPHhwTVFIQN+TUqXoS5+dlElHXdpAWu9I0HP20YOtIi+aZ0Ct82jdlILDxjLEAWwvm+qj1m6aEtsDVmm6Q== | 5322 | integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== |
5433 | dependencies: | 5323 | dependencies: |
5434 | mimic-fn "^2.1.0" | 5324 | mimic-fn "^2.1.0" |
5435 | 5325 | ||
@@ -5741,10 +5631,10 @@ pfeed@1.1.11: | |||
5741 | lodash "^4.17.15" | 5631 | lodash "^4.17.15" |
5742 | xml "^1.0.1" | 5632 | xml "^1.0.1" |
5743 | 5633 | ||
5744 | pg-connection-string@^2.2.3: | 5634 | pg-connection-string@^2.3.0: |
5745 | version "2.2.3" | 5635 | version "2.3.0" |
5746 | resolved "https://registry.yarnpkg.com/pg-connection-string/-/pg-connection-string-2.2.3.tgz#48e1158ec37eaa82e98dbcb7307103ec303fe0e7" | 5636 | resolved "https://registry.yarnpkg.com/pg-connection-string/-/pg-connection-string-2.3.0.tgz#c13fcb84c298d0bfa9ba12b40dd6c23d946f55d6" |
5747 | integrity sha512-I/KCSQGmOrZx6sMHXkOs2MjddrYcqpza3Dtsy0AjIgBr/bZiPJRK9WhABXN1Uy1UDazRbi9gZEzO2sAhL5EqiQ== | 5637 | integrity sha512-ukMTJXLI7/hZIwTW7hGMZJ0Lj0S2XQBCJ4Shv4y1zgQ/vqVea+FLhzywvPj0ujSuofu+yA4MYHGZPTsgjBgJ+w== |
5748 | 5638 | ||
5749 | pg-int8@1.0.1: | 5639 | pg-int8@1.0.1: |
5750 | version "1.0.1" | 5640 | version "1.0.1" |
@@ -5756,10 +5646,10 @@ pg-pool@^3.2.1: | |||
5756 | resolved "https://registry.yarnpkg.com/pg-pool/-/pg-pool-3.2.1.tgz#5f4afc0f58063659aeefa952d36af49fa28b30e0" | 5646 | resolved "https://registry.yarnpkg.com/pg-pool/-/pg-pool-3.2.1.tgz#5f4afc0f58063659aeefa952d36af49fa28b30e0" |
5757 | integrity sha512-BQDPWUeKenVrMMDN9opfns/kZo4lxmSWhIqo+cSAF7+lfi9ZclQbr9vfnlNaPr8wYF3UYjm5X0yPAhbcgqNOdA== | 5647 | integrity sha512-BQDPWUeKenVrMMDN9opfns/kZo4lxmSWhIqo+cSAF7+lfi9ZclQbr9vfnlNaPr8wYF3UYjm5X0yPAhbcgqNOdA== |
5758 | 5648 | ||
5759 | pg-protocol@^1.2.4: | 5649 | pg-protocol@^1.2.5: |
5760 | version "1.2.4" | 5650 | version "1.2.5" |
5761 | resolved "https://registry.yarnpkg.com/pg-protocol/-/pg-protocol-1.2.4.tgz#3139cac0e51347f1e21e03954b1bb9fe2c20962e" | 5651 | resolved "https://registry.yarnpkg.com/pg-protocol/-/pg-protocol-1.2.5.tgz#28a1492cde11646ff2d2d06bdee42a3ba05f126c" |
5762 | integrity sha512-/8L/G+vW/VhWjTGXpGh8XVkXOFx1ZDY+Yuz//Ab8CfjInzFkreI+fDG3WjCeSra7fIZwAFxzbGptNbm8xSXenw== | 5652 | integrity sha512-1uYCckkuTfzz/FCefvavRywkowa6M5FohNMF5OjKrqo9PSR8gYc8poVmwwYQaBxhmQdBjhtP514eXy9/Us2xKg== |
5763 | 5653 | ||
5764 | pg-types@^2.1.0: | 5654 | pg-types@^2.1.0: |
5765 | version "2.2.0" | 5655 | version "2.2.0" |
@@ -5773,15 +5663,15 @@ pg-types@^2.1.0: | |||
5773 | postgres-interval "^1.1.0" | 5663 | postgres-interval "^1.1.0" |
5774 | 5664 | ||
5775 | pg@^8.2.1: | 5665 | pg@^8.2.1: |
5776 | version "8.2.1" | 5666 | version "8.3.2" |
5777 | resolved "https://registry.yarnpkg.com/pg/-/pg-8.2.1.tgz#f5a81f5e2025182fbe701514d3e1a43e68a616ac" | 5667 | resolved "https://registry.yarnpkg.com/pg/-/pg-8.3.2.tgz#52766e41302f5b878fe1efa10d4cdd486f6dff50" |
5778 | integrity sha512-DKzffhpkWRr9jx7vKxA+ur79KG+SKw+PdjMb1IRhMiKI9zqYUGczwFprqy+5Veh/DCcFs1Y6V8lRLN5I1DlleQ== | 5668 | integrity sha512-hOoRCTriXS+VWwyXHchRjWb9yv3Koq8irlwwXniqhdgK0AbfWvEnybGS2HIUE+UdCSTuYAM4WGPujFpPg9Vcaw== |
5779 | dependencies: | 5669 | dependencies: |
5780 | buffer-writer "2.0.0" | 5670 | buffer-writer "2.0.0" |
5781 | packet-reader "1.0.0" | 5671 | packet-reader "1.0.0" |
5782 | pg-connection-string "^2.2.3" | 5672 | pg-connection-string "^2.3.0" |
5783 | pg-pool "^3.2.1" | 5673 | pg-pool "^3.2.1" |
5784 | pg-protocol "^1.2.4" | 5674 | pg-protocol "^1.2.5" |
5785 | pg-types "^2.1.0" | 5675 | pg-types "^2.1.0" |
5786 | pgpass "1.x" | 5676 | pgpass "1.x" |
5787 | semver "4.3.2" | 5677 | semver "4.3.2" |
@@ -5868,9 +5758,9 @@ postgres-bytea@~1.0.0: | |||
5868 | integrity sha1-AntTPAqokOJtFy1Hz5zOzFIazTU= | 5758 | integrity sha1-AntTPAqokOJtFy1Hz5zOzFIazTU= |
5869 | 5759 | ||
5870 | postgres-date@~1.0.4: | 5760 | postgres-date@~1.0.4: |
5871 | version "1.0.5" | 5761 | version "1.0.6" |
5872 | resolved "https://registry.yarnpkg.com/postgres-date/-/postgres-date-1.0.5.tgz#710b27de5f27d550f6e80b5d34f7ba189213c2ee" | 5762 | resolved "https://registry.yarnpkg.com/postgres-date/-/postgres-date-1.0.6.tgz#4925e8085b30c2ba1a06ac91b9a3473954a2ce2d" |
5873 | integrity sha512-pdau6GRPERdAYUQwkBnGKxEfPyhVZXG/JiS44iZWiNdSOWE09N2lUgN6yshuq6fVSon4Pm0VMXd1srUUkLe9iA== | 5763 | integrity sha512-o2a4gxeFcox+CgB3Ig/kNHBP23PiEXHCXx7pcIIsvzoNz4qv+lKTyiSkjOXIMNUl12MO/mOYl2K6wR9X5K6Plg== |
5874 | 5764 | ||
5875 | postgres-interval@^1.1.0: | 5765 | postgres-interval@^1.1.0: |
5876 | version "1.2.0" | 5766 | version "1.2.0" |
@@ -6251,9 +6141,9 @@ qs@~6.5.2: | |||
6251 | integrity sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA== | 6141 | integrity sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA== |
6252 | 6142 | ||
6253 | queue-microtask@^1.1.0, queue-microtask@^1.1.2: | 6143 | queue-microtask@^1.1.0, queue-microtask@^1.1.2: |
6254 | version "1.1.3" | 6144 | version "1.1.4" |
6255 | resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.1.3.tgz#9188ce1b10f9350330c509982c8b1c640e0592a7" | 6145 | resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.1.4.tgz#40841ace4356b48b35b5ea61a2e1fe0a23c59ce1" |
6256 | integrity sha512-zC1ZDLKFhZSa8vAdFbkOGouHcOUMgUAI/2/3on/KktpY+BaVqABkzDSsCSvJfmLbICOnrEuF9VIMezZf+T0mBA== | 6146 | integrity sha512-eY/4Obve9cE5FK8YvC1cJsm5cr7XvAurul8UtBDJ2PR1p5NmAwHtvAt5ftcLtwYRCUKNhxCneZZlxmUDFoSeKA== |
6257 | 6147 | ||
6258 | random-access-file@^2.0.1: | 6148 | random-access-file@^2.0.1: |
6259 | version "2.1.4" | 6149 | version "2.1.4" |
@@ -6375,7 +6265,7 @@ readable-stream@1.1.x, "readable-stream@>=1.1.13-1 <1.2.0-0", readable-stream@^1 | |||
6375 | isarray "0.0.1" | 6265 | isarray "0.0.1" |
6376 | string_decoder "~0.10.x" | 6266 | string_decoder "~0.10.x" |
6377 | 6267 | ||
6378 | readable-stream@^2.0.0, readable-stream@^2.0.6, readable-stream@^2.2.2, readable-stream@^2.3.5, readable-stream@^2.3.6, readable-stream@~2.3.6: | 6268 | readable-stream@^2.0.0, readable-stream@^2.0.6, readable-stream@^2.2.2, readable-stream@^2.3.5, readable-stream@^2.3.7, readable-stream@~2.3.6: |
6379 | version "2.3.7" | 6269 | version "2.3.7" |
6380 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" | 6270 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" |
6381 | integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== | 6271 | integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== |
@@ -6423,11 +6313,16 @@ record-cache@^1.0.2: | |||
6423 | resolved "https://registry.yarnpkg.com/record-cache/-/record-cache-1.1.0.tgz#f8a467a691a469584b26e88d36b18afdb3932037" | 6313 | resolved "https://registry.yarnpkg.com/record-cache/-/record-cache-1.1.0.tgz#f8a467a691a469584b26e88d36b18afdb3932037" |
6424 | integrity sha512-u8rbtLEJV7HRacl/ZYwSBFD8NFyB3PfTTfGLP37IW3hftQCwu6z4Q2RLyxo1YJUNRTEzJfpLpGwVuEYdaIkG9Q== | 6314 | integrity sha512-u8rbtLEJV7HRacl/ZYwSBFD8NFyB3PfTTfGLP37IW3hftQCwu6z4Q2RLyxo1YJUNRTEzJfpLpGwVuEYdaIkG9Q== |
6425 | 6315 | ||
6426 | redis-commands@1.5.0, redis-commands@^1.5.0: | 6316 | redis-commands@1.5.0: |
6427 | version "1.5.0" | 6317 | version "1.5.0" |
6428 | resolved "https://registry.yarnpkg.com/redis-commands/-/redis-commands-1.5.0.tgz#80d2e20698fe688f227127ff9e5164a7dd17e785" | 6318 | resolved "https://registry.yarnpkg.com/redis-commands/-/redis-commands-1.5.0.tgz#80d2e20698fe688f227127ff9e5164a7dd17e785" |
6429 | integrity sha512-6KxamqpZ468MeQC3bkWmCB1fp56XL64D4Kf0zJSwDZbVLLm7KFkoIcHrgRvQ+sk8dnhySs7+yBg94yIkAK7aJg== | 6319 | integrity sha512-6KxamqpZ468MeQC3bkWmCB1fp56XL64D4Kf0zJSwDZbVLLm7KFkoIcHrgRvQ+sk8dnhySs7+yBg94yIkAK7aJg== |
6430 | 6320 | ||
6321 | redis-commands@^1.5.0: | ||
6322 | version "1.6.0" | ||
6323 | resolved "https://registry.yarnpkg.com/redis-commands/-/redis-commands-1.6.0.tgz#36d4ca42ae9ed29815cdb30ad9f97982eba1ce23" | ||
6324 | integrity sha512-2jnZ0IkjZxvguITjFTrGiLyzQZcTvaw8DAaCXxZq/dsHXz7KfMQ3OUJy7Tz9vnRtZRVz6VRCPDvruvU8Ts44wQ== | ||
6325 | |||
6431 | redis-errors@^1.0.0, redis-errors@^1.2.0: | 6326 | redis-errors@^1.0.0, redis-errors@^1.2.0: |
6432 | version "1.2.0" | 6327 | version "1.2.0" |
6433 | resolved "https://registry.yarnpkg.com/redis-errors/-/redis-errors-1.2.0.tgz#eb62d2adb15e4eaf4610c04afe1529384250abad" | 6328 | resolved "https://registry.yarnpkg.com/redis-errors/-/redis-errors-1.2.0.tgz#eb62d2adb15e4eaf4610c04afe1529384250abad" |
@@ -6450,11 +6345,6 @@ redis@^3.0.2: | |||
6450 | redis-errors "^1.2.0" | 6345 | redis-errors "^1.2.0" |
6451 | redis-parser "^3.0.0" | 6346 | redis-parser "^3.0.0" |
6452 | 6347 | ||
6453 | referrer-policy@1.2.0: | ||
6454 | version "1.2.0" | ||
6455 | resolved "https://registry.yarnpkg.com/referrer-policy/-/referrer-policy-1.2.0.tgz#b99cfb8b57090dc454895ef897a4cc35ef67a98e" | ||
6456 | integrity sha512-LgQJIuS6nAy1Jd88DCQRemyE3mS+ispwlqMk3b0yjZ257fI1v9c+/p6SD5gP5FGyXUIgrNOAfmyioHwZtYv2VA== | ||
6457 | |||
6458 | reflect-metadata@^0.1.12: | 6348 | reflect-metadata@^0.1.12: |
6459 | version "0.1.13" | 6349 | version "0.1.13" |
6460 | resolved "https://registry.yarnpkg.com/reflect-metadata/-/reflect-metadata-0.1.13.tgz#67ae3ca57c972a2aa1642b10fe363fe32d49dc08" | 6350 | resolved "https://registry.yarnpkg.com/reflect-metadata/-/reflect-metadata-0.1.13.tgz#67ae3ca57c972a2aa1642b10fe363fe32d49dc08" |
@@ -6466,9 +6356,9 @@ regenerator-runtime@^0.11.0: | |||
6466 | integrity sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg== | 6356 | integrity sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg== |
6467 | 6357 | ||
6468 | regenerator-runtime@^0.13.3, regenerator-runtime@^0.13.4: | 6358 | regenerator-runtime@^0.13.3, regenerator-runtime@^0.13.4: |
6469 | version "0.13.5" | 6359 | version "0.13.7" |
6470 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.5.tgz#d878a1d094b4306d10b9096484b33ebd55e26697" | 6360 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz#cac2dacc8a1ea675feaabaeb8ae833898ae46f55" |
6471 | integrity sha512-ZS5w8CpKFinUzOwW3c83oPeVXoNsrLsaCoLtJvAClH135j/R77RuymhiSErhm2lKcwSCIpmvIWSbDkIfAqKQlA== | 6361 | integrity sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew== |
6472 | 6362 | ||
6473 | regexpp@^3.0.0, regexpp@^3.1.0: | 6363 | regexpp@^3.0.0, regexpp@^3.1.0: |
6474 | version "3.1.0" | 6364 | version "3.1.0" |
@@ -6476,9 +6366,9 @@ regexpp@^3.0.0, regexpp@^3.1.0: | |||
6476 | integrity sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q== | 6366 | integrity sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q== |
6477 | 6367 | ||
6478 | registry-auth-token@^4.0.0: | 6368 | registry-auth-token@^4.0.0: |
6479 | version "4.1.1" | 6369 | version "4.2.0" |
6480 | resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-4.1.1.tgz#40a33be1e82539460f94328b0f7f0f84c16d9479" | 6370 | resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-4.2.0.tgz#1d37dffda72bbecd0f581e4715540213a65eb7da" |
6481 | integrity sha512-9bKS7nTl9+/A1s7tnPeGrUpRcVY+LUh7bfFgzpndALdPfXQBfQV77rQVtqgUV3ti4vc/Ik81Ex8UJDWDQ12zQA== | 6371 | integrity sha512-P+lWzPrsgfN+UEpDS3U8AQKg/UjZX6mQSJueZj3EK+vNESoqBSpBUD3gmu4sF9lOsjXWjF11dQKUqemf3veq1w== |
6482 | dependencies: | 6372 | dependencies: |
6483 | rc "^1.2.8" | 6373 | rc "^1.2.8" |
6484 | 6374 | ||
@@ -6572,14 +6462,6 @@ responselike@^1.0.2: | |||
6572 | dependencies: | 6462 | dependencies: |
6573 | lowercase-keys "^1.0.0" | 6463 | lowercase-keys "^1.0.0" |
6574 | 6464 | ||
6575 | restore-cursor@^3.1.0: | ||
6576 | version "3.1.0" | ||
6577 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e" | ||
6578 | integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA== | ||
6579 | dependencies: | ||
6580 | onetime "^5.1.0" | ||
6581 | signal-exit "^3.0.2" | ||
6582 | |||
6583 | retry-as-promised@^3.2.0: | 6465 | retry-as-promised@^3.2.0: |
6584 | version "3.2.0" | 6466 | version "3.2.0" |
6585 | resolved "https://registry.yarnpkg.com/retry-as-promised/-/retry-as-promised-3.2.0.tgz#769f63d536bec4783549db0777cb56dadd9d8543" | 6467 | resolved "https://registry.yarnpkg.com/retry-as-promised/-/retry-as-promised-3.2.0.tgz#769f63d536bec4783549db0777cb56dadd9d8543" |
@@ -6620,11 +6502,6 @@ rimraf@^3.0.0: | |||
6620 | dependencies: | 6502 | dependencies: |
6621 | glob "^7.1.3" | 6503 | glob "^7.1.3" |
6622 | 6504 | ||
6623 | run-async@^2.4.0: | ||
6624 | version "2.4.1" | ||
6625 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.4.1.tgz#8440eccf99ea3e70bd409d49aab88e10c189a455" | ||
6626 | integrity sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ== | ||
6627 | |||
6628 | run-parallel-limit@^1.0.5: | 6505 | run-parallel-limit@^1.0.5: |
6629 | version "1.0.5" | 6506 | version "1.0.5" |
6630 | resolved "https://registry.yarnpkg.com/run-parallel-limit/-/run-parallel-limit-1.0.5.tgz#c29a4fd17b4df358cb52a8a697811a63c984f1b7" | 6507 | resolved "https://registry.yarnpkg.com/run-parallel-limit/-/run-parallel-limit-1.0.5.tgz#c29a4fd17b4df358cb52a8a697811a63c984f1b7" |
@@ -6645,10 +6522,10 @@ rusha@^0.8.1: | |||
6645 | resolved "https://registry.yarnpkg.com/rusha/-/rusha-0.8.13.tgz#9a084e7b860b17bff3015b92c67a6a336191513a" | 6522 | resolved "https://registry.yarnpkg.com/rusha/-/rusha-0.8.13.tgz#9a084e7b860b17bff3015b92c67a6a336191513a" |
6646 | integrity sha1-mghOe4YLF7/zAVuSxnpqM2GRUTo= | 6523 | integrity sha1-mghOe4YLF7/zAVuSxnpqM2GRUTo= |
6647 | 6524 | ||
6648 | rxjs@^6.5.2, rxjs@^6.5.3: | 6525 | rxjs@^6.5.2: |
6649 | version "6.5.5" | 6526 | version "6.6.2" |
6650 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.5.5.tgz#c5c884e3094c8cfee31bf27eb87e54ccfc87f9ec" | 6527 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.2.tgz#8096a7ac03f2cc4fe5860ef6e572810d9e01c0d2" |
6651 | integrity sha512-WfQI+1gohdf0Dai/Bbmk5L5ItH5tYqm3ki2c5GdWhKjalzjg93N3avFjVStyZZz+A2Em+ZxKH5bNghw9UeylGQ== | 6528 | integrity sha512-BHdBMVoWC2sL26w//BCu3YzKT4s2jip/WhwsGEDmeKYBhKDZeYezVUnHatYB7L85v5xs0BAQmg6BEYJEKxBabg== |
6652 | dependencies: | 6529 | dependencies: |
6653 | tslib "^1.9.0" | 6530 | tslib "^1.9.0" |
6654 | 6531 | ||
@@ -6662,7 +6539,7 @@ safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, | |||
6662 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" | 6539 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" |
6663 | integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== | 6540 | integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== |
6664 | 6541 | ||
6665 | "safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@^2.1.2, safer-buffer@~2.1.0: | 6542 | "safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@^2.1.2, safer-buffer@~2.1.0: |
6666 | version "2.1.2" | 6543 | version "2.1.2" |
6667 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" | 6544 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" |
6668 | integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== | 6545 | integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== |
@@ -6761,10 +6638,12 @@ sequelize@5.21.13: | |||
6761 | validator "^10.11.0" | 6638 | validator "^10.11.0" |
6762 | wkx "^0.4.8" | 6639 | wkx "^0.4.8" |
6763 | 6640 | ||
6764 | serialize-javascript@3.0.0: | 6641 | serialize-javascript@4.0.0: |
6765 | version "3.0.0" | 6642 | version "4.0.0" |
6766 | resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-3.0.0.tgz#492e489a2d77b7b804ad391a5f5d97870952548e" | 6643 | resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-4.0.0.tgz#b525e1238489a5ecfc42afacc3fe99e666f4b1aa" |
6767 | integrity sha512-skZcHYw2vEX4bw90nAr2iTTsz6x2SrHEnfxgKYmZlvJYBEZrvbKtobJWlQ20zczKb3bsHHXXTYt48zBA7ni9cw== | 6644 | integrity sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw== |
6645 | dependencies: | ||
6646 | randombytes "^2.1.0" | ||
6768 | 6647 | ||
6769 | serve-static@1.14.1: | 6648 | serve-static@1.14.1: |
6770 | version "1.14.1" | 6649 | version "1.14.1" |
@@ -6821,9 +6700,9 @@ signal-exit@^3.0.0, signal-exit@^3.0.2: | |||
6821 | integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA== | 6700 | integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA== |
6822 | 6701 | ||
6823 | simple-concat@^1.0.0: | 6702 | simple-concat@^1.0.0: |
6824 | version "1.0.0" | 6703 | version "1.0.1" |
6825 | resolved "https://registry.yarnpkg.com/simple-concat/-/simple-concat-1.0.0.tgz#7344cbb8b6e26fb27d66b2fc86f9f6d5997521c6" | 6704 | resolved "https://registry.yarnpkg.com/simple-concat/-/simple-concat-1.0.1.tgz#f46976082ba35c2263f1c8ab5edfe26c41c9552f" |
6826 | integrity sha1-c0TLuLbib7J9ZrL8hvn21Zl1IcY= | 6705 | integrity sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q== |
6827 | 6706 | ||
6828 | simple-get@^3.0.0, simple-get@^3.0.1: | 6707 | simple-get@^3.0.0, simple-get@^3.0.1: |
6829 | version "3.1.0" | 6708 | version "3.1.0" |
@@ -6881,11 +6760,11 @@ simple-websocket@^8.1.1: | |||
6881 | ws "^7.0.0" | 6760 | ws "^7.0.0" |
6882 | 6761 | ||
6883 | sitemap@^6.1.0: | 6762 | sitemap@^6.1.0: |
6884 | version "6.1.5" | 6763 | version "6.2.0" |
6885 | resolved "https://registry.yarnpkg.com/sitemap/-/sitemap-6.1.5.tgz#88d6ecf9e5d2a356ed90a9e3474d2d74fdca5c37" | 6764 | resolved "https://registry.yarnpkg.com/sitemap/-/sitemap-6.2.0.tgz#06c8b4f39025389a167e0b6d04347919bf62197f" |
6886 | integrity sha512-yml68gIx0iWmRqxTQhhV7/JcmsnxenH+Q1BDeZtVhvK1QeuZY5piU+c6dMS8vbcVme9k1D3CEIWzSjDKo0hZmQ== | 6765 | integrity sha512-ta9BLo/ZLUNgfGVhknA2IHWuIXfcFPxMvMCY3Xhf141rEZoW8G5nIVCDR0/zeXJCAvWk+UzqxyLBtRBH1OOq6w== |
6887 | dependencies: | 6766 | dependencies: |
6888 | "@types/node" "^14.0.5" | 6767 | "@types/node" "^14.0.18" |
6889 | "@types/sax" "^1.2.1" | 6768 | "@types/sax" "^1.2.1" |
6890 | arg "^4.1.3" | 6769 | arg "^4.1.3" |
6891 | sax "^1.2.4" | 6770 | sax "^1.2.4" |
@@ -7157,11 +7036,11 @@ stream-to-blob@^2.0.0, stream-to-blob@^2.0.1: | |||
7157 | integrity sha512-GXlqXt3svqwIVWoICenix5Poxi4KbCF0BdXXUbpU1X4vq1V8wmjiEIU3aFJzCGNFpKxfbnG0uoowS3nKUgSPYg== | 7036 | integrity sha512-GXlqXt3svqwIVWoICenix5Poxi4KbCF0BdXXUbpU1X4vq1V8wmjiEIU3aFJzCGNFpKxfbnG0uoowS3nKUgSPYg== |
7158 | 7037 | ||
7159 | stream-with-known-length-to-buffer@^1.0.3: | 7038 | stream-with-known-length-to-buffer@^1.0.3: |
7160 | version "1.0.3" | 7039 | version "1.0.4" |
7161 | resolved "https://registry.yarnpkg.com/stream-with-known-length-to-buffer/-/stream-with-known-length-to-buffer-1.0.3.tgz#6bcfcfecc33bd91deda375ca4738f99ec7cd541b" | 7040 | resolved "https://registry.yarnpkg.com/stream-with-known-length-to-buffer/-/stream-with-known-length-to-buffer-1.0.4.tgz#6a8aec53f27b8f481f962337c951aa3916fb60d1" |
7162 | integrity sha512-4Wi2v47HMkNdRWrlFJNlIsrhV6z6nCyVKVAIiq14MAnc7wILEAINmn96IiPWTcXzT8y2S6yfBoX++MUxqiovag== | 7041 | integrity sha512-ztP79ug6S+I7td0Nd2GBeIKCm+vA54c+e60FY87metz5n/l6ydPELd2lxsljz8OpIhsRM9HkIiAwz85+S5G5/A== |
7163 | dependencies: | 7042 | dependencies: |
7164 | once "^1.3.3" | 7043 | once "^1.4.0" |
7165 | 7044 | ||
7166 | streamify@~0.2.9: | 7045 | streamify@~0.2.9: |
7167 | version "0.2.9" | 7046 | version "0.2.9" |
@@ -7297,9 +7176,9 @@ strip-json-comments@3.0.1: | |||
7297 | integrity sha512-VTyMAUfdm047mwKl+u79WIdrZxtFtn+nBxHeb844XBQ9uMNTuTHdx2hc5RiAJYqwTj3wc/xe5HLSdJSkJ+WfZw== | 7176 | integrity sha512-VTyMAUfdm047mwKl+u79WIdrZxtFtn+nBxHeb844XBQ9uMNTuTHdx2hc5RiAJYqwTj3wc/xe5HLSdJSkJ+WfZw== |
7298 | 7177 | ||
7299 | strip-json-comments@^3.1.0: | 7178 | strip-json-comments@^3.1.0: |
7300 | version "3.1.0" | 7179 | version "3.1.1" |
7301 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.0.tgz#7638d31422129ecf4457440009fba03f9f9ac180" | 7180 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" |
7302 | integrity sha512-e6/d0eBu7gHtdCqFt0xJr642LdToM5/cN4Qb9DbHjVx1CP5RyeM+zH7pbecEmDv/lBqb0QH+6Uqq75rxFPkM0w== | 7181 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== |
7303 | 7182 | ||
7304 | strip-json-comments@~2.0.1: | 7183 | strip-json-comments@~2.0.1: |
7305 | version "2.0.1" | 7184 | version "2.0.1" |
@@ -7352,11 +7231,11 @@ supports-color@^6.1.0: | |||
7352 | has-flag "^3.0.0" | 7231 | has-flag "^3.0.0" |
7353 | 7232 | ||
7354 | swagger-cli@^4.0.2: | 7233 | swagger-cli@^4.0.2: |
7355 | version "4.0.3" | 7234 | version "4.0.4" |
7356 | resolved "https://registry.yarnpkg.com/swagger-cli/-/swagger-cli-4.0.3.tgz#754bf34356576add40ac236714d4a81b259bc05f" | 7235 | resolved "https://registry.yarnpkg.com/swagger-cli/-/swagger-cli-4.0.4.tgz#c3f0b94277073c776b9bcc3ae7507b372f3ff414" |
7357 | integrity sha512-FRv5daUKnWdTgo5G3yBNkSRIfpcnc4wzw06cX/aBco9NOHeEJQMpbbq3YjHXXqUbXI7vZzCQDnoQVHgYCGQx7A== | 7236 | integrity sha512-Cp8YYuLny3RJFQ4CvOBTaqmOOgYsem52dPx1xM5S4EUWFblIh2Q8atppMZvXKUr1e9xH5RwipYpmdUzdPcxWcA== |
7358 | dependencies: | 7237 | dependencies: |
7359 | "@apidevtools/swagger-cli" "4.0.3" | 7238 | "@apidevtools/swagger-cli" "4.0.4" |
7360 | 7239 | ||
7361 | table@^5.2.3: | 7240 | table@^5.2.3: |
7362 | version "5.4.6" | 7241 | version "5.4.6" |
@@ -7396,7 +7275,7 @@ text-table@^0.2.0: | |||
7396 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" | 7275 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" |
7397 | integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= | 7276 | integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= |
7398 | 7277 | ||
7399 | thirty-two@^1.0.1: | 7278 | thirty-two@^1.0.2: |
7400 | version "1.0.2" | 7279 | version "1.0.2" |
7401 | resolved "https://registry.yarnpkg.com/thirty-two/-/thirty-two-1.0.2.tgz#4ca2fffc02a51290d2744b9e3f557693ca6b627a" | 7280 | resolved "https://registry.yarnpkg.com/thirty-two/-/thirty-two-1.0.2.tgz#4ca2fffc02a51290d2744b9e3f557693ca6b627a" |
7402 | integrity sha1-TKL//AKlEpDSdEueP1V2k8prYno= | 7281 | integrity sha1-TKL//AKlEpDSdEueP1V2k8prYno= |
@@ -7425,7 +7304,7 @@ through2@^2.0.3: | |||
7425 | readable-stream "~2.3.6" | 7304 | readable-stream "~2.3.6" |
7426 | xtend "~4.0.1" | 7305 | xtend "~4.0.1" |
7427 | 7306 | ||
7428 | through@2, through@^2.3.6: | 7307 | through@2: |
7429 | version "2.3.8" | 7308 | version "2.3.8" |
7430 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" | 7309 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" |
7431 | integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= | 7310 | integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= |
@@ -7458,12 +7337,12 @@ titleize@^2.1.0: | |||
7458 | resolved "https://registry.yarnpkg.com/titleize/-/titleize-2.1.0.tgz#5530de07c22147a0488887172b5bd94f5b30a48f" | 7337 | resolved "https://registry.yarnpkg.com/titleize/-/titleize-2.1.0.tgz#5530de07c22147a0488887172b5bd94f5b30a48f" |
7459 | integrity sha512-m+apkYlfiQTKLW+sI4vqUkwMEzfgEUEYSqljx1voUE3Wz/z1ZsxyzSxvH2X8uKVrOp7QkByWt0rA6+gvhCKy6g== | 7338 | integrity sha512-m+apkYlfiQTKLW+sI4vqUkwMEzfgEUEYSqljx1voUE3Wz/z1ZsxyzSxvH2X8uKVrOp7QkByWt0rA6+gvhCKy6g== |
7460 | 7339 | ||
7461 | tlds@1.207.0: | 7340 | tlds@1.208.0: |
7462 | version "1.207.0" | 7341 | version "1.208.0" |
7463 | resolved "https://registry.yarnpkg.com/tlds/-/tlds-1.207.0.tgz#459264e644cf63ddc0965fece3898913286b1afd" | 7342 | resolved "https://registry.yarnpkg.com/tlds/-/tlds-1.208.0.tgz#f9a85c272aa500e56c92e7d342fbfdfbddaa9757" |
7464 | integrity sha512-k7d7Q1LqjtAvhtEOs3yN14EabsNO8ZCoY6RESSJDB9lst3bTx3as/m1UuAeCKzYxiyhR1qq72ZPhpSf+qlqiwg== | 7343 | integrity sha512-6kbY7GJpRQXwBddSOAbVUZXjObbCGFXliWWN+kOSEoRWIOyRWLB6zdeKC/Tguwwenl/KsUx016XR50EdHYsxZw== |
7465 | 7344 | ||
7466 | tmp@0.0.x, tmp@^0.0.33: | 7345 | tmp@0.0.x: |
7467 | version "0.0.33" | 7346 | version "0.0.33" |
7468 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" | 7347 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" |
7469 | integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== | 7348 | integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== |
@@ -7578,10 +7457,10 @@ triple-beam@^1.2.0, triple-beam@^1.3.0: | |||
7578 | resolved "https://registry.yarnpkg.com/triple-beam/-/triple-beam-1.3.0.tgz#a595214c7298db8339eeeee083e4d10bd8cb8dd9" | 7457 | resolved "https://registry.yarnpkg.com/triple-beam/-/triple-beam-1.3.0.tgz#a595214c7298db8339eeeee083e4d10bd8cb8dd9" |
7579 | integrity sha512-XrHUvV5HpdLmIj4uVMxHggLbFSZYIn7HEWsqePZcI50pco+MPqJ50wMGY794X7AOOhxOBAjbkqfAbEe/QMp2Lw== | 7458 | integrity sha512-XrHUvV5HpdLmIj4uVMxHggLbFSZYIn7HEWsqePZcI50pco+MPqJ50wMGY794X7AOOhxOBAjbkqfAbEe/QMp2Lw== |
7580 | 7459 | ||
7581 | ts-node@8.10.2: | 7460 | ts-node@9.0.0: |
7582 | version "8.10.2" | 7461 | version "9.0.0" |
7583 | resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-8.10.2.tgz#eee03764633b1234ddd37f8db9ec10b75ec7fb8d" | 7462 | resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-9.0.0.tgz#e7699d2a110cc8c0d3b831715e417688683460b3" |
7584 | integrity sha512-ISJJGgkIpDdBhWVu3jufsWpK3Rzo7bdiIXJjQc0ynKxVOVcg2oIrf2H2cejminGrptVc6q6/uynAHNCuWGbpVA== | 7463 | integrity sha512-/TqB4SnererCDR/vb4S/QvSZvzQMJN8daAslg7MeaiHvD8rDZsSfXmNeNumyZZzMned72Xoq/isQljYSt8Ynfg== |
7585 | dependencies: | 7464 | dependencies: |
7586 | arg "^4.1.0" | 7465 | arg "^4.1.0" |
7587 | diff "^4.0.1" | 7466 | diff "^4.0.1" |
@@ -7605,9 +7484,9 @@ tslib@^1.8.1, tslib@^1.9.0: | |||
7605 | integrity sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q== | 7484 | integrity sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q== |
7606 | 7485 | ||
7607 | tslib@^2.0.0: | 7486 | tslib@^2.0.0: |
7608 | version "2.0.0" | 7487 | version "2.0.1" |
7609 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.0.0.tgz#18d13fc2dce04051e20f074cc8387fd8089ce4f3" | 7488 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.0.1.tgz#410eb0d113e5b6356490eec749603725b021b43e" |
7610 | integrity sha512-lTqkx847PI7xEDYJntxZH89L2/aXInsyF2luSafe/+0fHOMjlBNXdH6th7f70qxLDhul7KZK0zC8V5ZIyHl0/g== | 7489 | integrity sha512-SgIkNheinmEBgx1IUNirK0TUD4X9yjjBRTqqjggWCU3pUEqIk3/Uwl3yRixYKT6WjQuGiwDv4NomL3wqRCj+CQ== |
7611 | 7490 | ||
7612 | tsutils@^3.17.1: | 7491 | tsutils@^3.17.1: |
7613 | version "3.17.1" | 7492 | version "3.17.1" |
@@ -7650,11 +7529,6 @@ type-detect@^4.0.0, type-detect@^4.0.5: | |||
7650 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" | 7529 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" |
7651 | integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== | 7530 | integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== |
7652 | 7531 | ||
7653 | type-fest@^0.11.0: | ||
7654 | version "0.11.0" | ||
7655 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.11.0.tgz#97abf0872310fed88a5c466b25681576145e33f1" | ||
7656 | integrity sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ== | ||
7657 | |||
7658 | type-fest@^0.8.1: | 7532 | type-fest@^0.8.1: |
7659 | version "0.8.1" | 7533 | version "0.8.1" |
7660 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" | 7534 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" |
@@ -7674,9 +7548,9 @@ type@^1.0.1: | |||
7674 | integrity sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg== | 7548 | integrity sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg== |
7675 | 7549 | ||
7676 | type@^2.0.0: | 7550 | type@^2.0.0: |
7677 | version "2.0.0" | 7551 | version "2.1.0" |
7678 | resolved "https://registry.yarnpkg.com/type/-/type-2.0.0.tgz#5f16ff6ef2eb44f260494dae271033b29c09a9c3" | 7552 | resolved "https://registry.yarnpkg.com/type/-/type-2.1.0.tgz#9bdc22c648cf8cf86dd23d32336a41cfb6475e3f" |
7679 | integrity sha512-KBt58xCHry4Cejnc2ISQAF7QY+ORngsWfxezO68+12hKV6lQY8P/psIkcbjeHWn7MqcgciWJyCCevFMJdIXpow== | 7553 | integrity sha512-G9absDWvhAWCV2gmF1zKud3OyC61nZDwWvBL2DApaVFogI07CprggiQAOOjvp2NRjYWFzPyu7vwtDrQFq8jeSA== |
7680 | 7554 | ||
7681 | typedarray-to-buffer@^3.0.0, typedarray-to-buffer@^3.1.5: | 7555 | typedarray-to-buffer@^3.0.0, typedarray-to-buffer@^3.1.5: |
7682 | version "3.1.5" | 7556 | version "3.1.5" |
@@ -7691,9 +7565,9 @@ typedarray@^0.0.6: | |||
7691 | integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c= | 7565 | integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c= |
7692 | 7566 | ||
7693 | typescript@^3.7.2: | 7567 | typescript@^3.7.2: |
7694 | version "3.9.5" | 7568 | version "3.9.7" |
7695 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.9.5.tgz#586f0dba300cde8be52dd1ac4f7e1009c1b13f36" | 7569 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.9.7.tgz#98d600a5ebdc38f40cb277522f12dc800e9e25fa" |
7696 | integrity sha512-hSAifV3k+i6lEoCJ2k6R2Z/rp/H3+8sdmcn5NrS3/3kE7+RyZXm9aqvxWqjEXHAd8b0pShatpcdMTvEdvAJltQ== | 7570 | integrity sha512-BLbiRkiBzAwsjut4x/dsibSTB6yWpwT5qWmC2OfuCg3GgVQCSgMs4vEctYPhsaGtd0AeuuHMkjZ2h2WG8MSzRw== |
7697 | 7571 | ||
7698 | uc.micro@^1.0.1: | 7572 | uc.micro@^1.0.1: |
7699 | version "1.0.6" | 7573 | version "1.0.6" |
@@ -7739,11 +7613,6 @@ underscore@~1.7.0: | |||
7739 | resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.7.0.tgz#6bbaf0877500d36be34ecaa584e0db9fef035209" | 7613 | resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.7.0.tgz#6bbaf0877500d36be34ecaa584e0db9fef035209" |
7740 | integrity sha1-a7rwh3UA02vjTsqlhODbn+8DUgk= | 7614 | integrity sha1-a7rwh3UA02vjTsqlhODbn+8DUgk= |
7741 | 7615 | ||
7742 | uniq@^1.0.1: | ||
7743 | version "1.0.1" | ||
7744 | resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" | ||
7745 | integrity sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8= | ||
7746 | |||
7747 | unique-string@^2.0.0: | 7616 | unique-string@^2.0.0: |
7748 | version "2.0.0" | 7617 | version "2.0.0" |
7749 | resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-2.0.0.tgz#39c6451f81afb2749de2b233e3f7c5e8843bd89d" | 7618 | resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-2.0.0.tgz#39c6451f81afb2749de2b233e3f7c5e8843bd89d" |
@@ -7772,9 +7641,9 @@ unpipe@1.0.0, unpipe@~1.0.0: | |||
7772 | integrity sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw= | 7641 | integrity sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw= |
7773 | 7642 | ||
7774 | update-notifier@^4.0.0: | 7643 | update-notifier@^4.0.0: |
7775 | version "4.1.0" | 7644 | version "4.1.1" |
7776 | resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-4.1.0.tgz#4866b98c3bc5b5473c020b1250583628f9a328f3" | 7645 | resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-4.1.1.tgz#895fc8562bbe666179500f9f2cebac4f26323746" |
7777 | integrity sha512-w3doE1qtI0/ZmgeoDoARmI5fjDoT93IfKgEGqm26dGUOh8oNpaSTsGNdYRN/SjOuo10jcJGwkEL3mroKzktkew== | 7646 | integrity sha512-9y+Kds0+LoLG6yN802wVXoIfxYEwh3FlZwzMwpCZp62S2i1/Jzeqb9Eeeju3NSHccGGasfGlK5/vEHbAifYRDg== |
7778 | dependencies: | 7647 | dependencies: |
7779 | boxen "^4.2.0" | 7648 | boxen "^4.2.0" |
7780 | chalk "^3.0.0" | 7649 | chalk "^3.0.0" |
@@ -7813,14 +7682,14 @@ useragent@^2.3.0: | |||
7813 | tmp "0.0.x" | 7682 | tmp "0.0.x" |
7814 | 7683 | ||
7815 | ut_metadata@^3.5.0: | 7684 | ut_metadata@^3.5.0: |
7816 | version "3.5.0" | 7685 | version "3.5.1" |
7817 | resolved "https://registry.yarnpkg.com/ut_metadata/-/ut_metadata-3.5.0.tgz#02d954bbbbf48c8563510ff2dae9f65f6b4f5fa3" | 7686 | resolved "https://registry.yarnpkg.com/ut_metadata/-/ut_metadata-3.5.1.tgz#ed135f0d4e08dae582864fcaea288da10e0339a8" |
7818 | integrity sha512-eqiRaDYiDl94uVB9oR8Yor+xl0rSKUovsqDxMt+hXzJt1yLYAo0HksVLlSiPPwkXBGFpERQADPanCi0EGhixnw== | 7687 | integrity sha512-D98YM9dKGHzNFUuqLHLV1vXqbHNfyvTx/rADtvF9P6D1HYV/0JuArlpnQIHhOuWXQGUVyR5XJGRVLKbeNu0o5A== |
7819 | dependencies: | 7688 | dependencies: |
7820 | bencode "^2.0.0" | 7689 | bencode "^2.0.1" |
7821 | bitfield "^3.0.0" | 7690 | bitfield "^3.0.0" |
7822 | debug "^4.0.0" | 7691 | debug "^4.1.1" |
7823 | simple-sha1 "^3.0.0" | 7692 | simple-sha1 "^3.0.1" |
7824 | 7693 | ||
7825 | ut_pex@^2.0.0: | 7694 | ut_pex@^2.0.0: |
7826 | version "2.0.0" | 7695 | version "2.0.0" |
@@ -7885,15 +7754,15 @@ uue@^3.1.0: | |||
7885 | escape-string-regexp "~1.0.5" | 7754 | escape-string-regexp "~1.0.5" |
7886 | extend "~3.0.0" | 7755 | extend "~3.0.0" |
7887 | 7756 | ||
7888 | uuid@^3.3.2, uuid@^3.3.3, uuid@^3.4.0: | 7757 | uuid@^3.3.2, uuid@^3.3.3: |
7889 | version "3.4.0" | 7758 | version "3.4.0" |
7890 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee" | 7759 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee" |
7891 | integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A== | 7760 | integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A== |
7892 | 7761 | ||
7893 | uuid@^8.1.0: | 7762 | uuid@^8.1.0, uuid@^8.3.0: |
7894 | version "8.1.0" | 7763 | version "8.3.0" |
7895 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.1.0.tgz#6f1536eb43249f473abc6bd58ff983da1ca30d8d" | 7764 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.0.tgz#ab738085ca22dc9a8c92725e459b1d507df5d6ea" |
7896 | integrity sha512-CI18flHDznR0lq54xBycOVmphdCYnQLKn8abKn7PXUiKUGdEd+/l9LWNJmugXel4hXq7S+RMNl34ecyC9TntWg== | 7765 | integrity sha512-fX6Z5o4m6XsXBdli9g7DtWgAx+osMsRRZFKma1mIUsLCz6vRvv+pz5VNbyu9UEDzpMWulZfvpgb/cmDXVulYFQ== |
7897 | 7766 | ||
7898 | v8-compile-cache@^2.0.3: | 7767 | v8-compile-cache@^2.0.3: |
7899 | version "2.1.1" | 7768 | version "2.1.1" |
@@ -7923,7 +7792,7 @@ validator@^12.0.0: | |||
7923 | resolved "https://registry.yarnpkg.com/validator/-/validator-12.2.0.tgz#660d47e96267033fd070096c3b1a6f2db4380a0a" | 7792 | resolved "https://registry.yarnpkg.com/validator/-/validator-12.2.0.tgz#660d47e96267033fd070096c3b1a6f2db4380a0a" |
7924 | integrity sha512-jJfE/DW6tIK1Ek8nCfNFqt8Wb3nzMoAbocBF6/Icgg1ZFSBpObdnwVY2jQj6qUqzhx5jc71fpvBWyLGO7Xl+nQ== | 7793 | integrity sha512-jJfE/DW6tIK1Ek8nCfNFqt8Wb3nzMoAbocBF6/Icgg1ZFSBpObdnwVY2jQj6qUqzhx5jc71fpvBWyLGO7Xl+nQ== |
7925 | 7794 | ||
7926 | validator@^13.0.0: | 7795 | validator@^13.0.0, validator@^13.1.1: |
7927 | version "13.1.1" | 7796 | version "13.1.1" |
7928 | resolved "https://registry.yarnpkg.com/validator/-/validator-13.1.1.tgz#f8811368473d2173a9d8611572b58c5783f223bf" | 7797 | resolved "https://registry.yarnpkg.com/validator/-/validator-13.1.1.tgz#f8811368473d2173a9d8611572b58c5783f223bf" |
7929 | integrity sha512-8GfPiwzzRoWTg7OV1zva1KvrSemuMkv07MA9TTl91hfhe+wKrsrgVN4H2QSFd/U/FhiU3iWPYVgvbsOGwhyFWw== | 7798 | integrity sha512-8GfPiwzzRoWTg7OV1zva1KvrSemuMkv07MA9TTl91hfhe+wKrsrgVN4H2QSFd/U/FhiU3iWPYVgvbsOGwhyFWw== |
@@ -8076,12 +7945,12 @@ window-size@0.1.0: | |||
8076 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" | 7945 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" |
8077 | integrity sha1-VDjNLqk7IC76Ohn+iIeu58lPnJ0= | 7946 | integrity sha1-VDjNLqk7IC76Ohn+iIeu58lPnJ0= |
8078 | 7947 | ||
8079 | winston-transport@^4.3.0: | 7948 | winston-transport@^4.4.0: |
8080 | version "4.3.0" | 7949 | version "4.4.0" |
8081 | resolved "https://registry.yarnpkg.com/winston-transport/-/winston-transport-4.3.0.tgz#df68c0c202482c448d9b47313c07304c2d7c2c66" | 7950 | resolved "https://registry.yarnpkg.com/winston-transport/-/winston-transport-4.4.0.tgz#17af518daa690d5b2ecccaa7acf7b20ca7925e59" |
8082 | integrity sha512-B2wPuwUi3vhzn/51Uukcao4dIduEiPOcOt9HJ3QeaXgkJ5Z7UwpBzxS4ZGNHtrxrUvTwemsQiSys0ihOf8Mp1A== | 7951 | integrity sha512-Lc7/p3GtqtqPBYYtS6KCN3c77/2QCev51DvcJKbkFPQNoj1sinkGwLGFDxkXY9J6p9+EPnYs+D90uwbnaiURTw== |
8083 | dependencies: | 7952 | dependencies: |
8084 | readable-stream "^2.3.6" | 7953 | readable-stream "^2.3.7" |
8085 | triple-beam "^1.2.0" | 7954 | triple-beam "^1.2.0" |
8086 | 7955 | ||
8087 | winston@2.1.x: | 7956 | winston@2.1.x: |
@@ -8097,20 +7966,20 @@ winston@2.1.x: | |||
8097 | pkginfo "0.3.x" | 7966 | pkginfo "0.3.x" |
8098 | stack-trace "0.0.x" | 7967 | stack-trace "0.0.x" |
8099 | 7968 | ||
8100 | winston@3.2.1: | 7969 | winston@3.3.3: |
8101 | version "3.2.1" | 7970 | version "3.3.3" |
8102 | resolved "https://registry.yarnpkg.com/winston/-/winston-3.2.1.tgz#63061377976c73584028be2490a1846055f77f07" | 7971 | resolved "https://registry.yarnpkg.com/winston/-/winston-3.3.3.tgz#ae6172042cafb29786afa3d09c8ff833ab7c9170" |
8103 | integrity sha512-zU6vgnS9dAWCEKg/QYigd6cgMVVNwyTzKs81XZtTFuRwJOcDdBg7AU0mXVyNbs7O5RH2zdv+BdNZUlx7mXPuOw== | 7972 | integrity sha512-oEXTISQnC8VlSAKf1KYSSd7J6IWuRPQqDdo8eoRNaYKLvwSb5+79Z3Yi1lrl6KDpU6/VWaxpakDAtb1oQ4n9aw== |
8104 | dependencies: | 7973 | dependencies: |
8105 | async "^2.6.1" | 7974 | "@dabh/diagnostics" "^2.0.2" |
8106 | diagnostics "^1.1.1" | 7975 | async "^3.1.0" |
8107 | is-stream "^1.1.0" | 7976 | is-stream "^2.0.0" |
8108 | logform "^2.1.1" | 7977 | logform "^2.2.0" |
8109 | one-time "0.0.4" | 7978 | one-time "^1.0.0" |
8110 | readable-stream "^3.1.1" | 7979 | readable-stream "^3.4.0" |
8111 | stack-trace "0.0.x" | 7980 | stack-trace "0.0.x" |
8112 | triple-beam "^1.3.0" | 7981 | triple-beam "^1.3.0" |
8113 | winston-transport "^4.3.0" | 7982 | winston-transport "^4.4.0" |
8114 | 7983 | ||
8115 | with@^5.0.0: | 7984 | with@^5.0.0: |
8116 | version "5.1.1" | 7985 | version "5.1.1" |
@@ -8193,9 +8062,9 @@ write@1.0.3: | |||
8193 | mkdirp "^0.5.1" | 8062 | mkdirp "^0.5.1" |
8194 | 8063 | ||
8195 | ws@^7.0.0, ws@^7.1.2, ws@^7.3.0: | 8064 | ws@^7.0.0, ws@^7.1.2, ws@^7.3.0: |
8196 | version "7.3.0" | 8065 | version "7.3.1" |
8197 | resolved "https://registry.yarnpkg.com/ws/-/ws-7.3.0.tgz#4b2f7f219b3d3737bc1a2fbf145d825b94d38ffd" | 8066 | resolved "https://registry.yarnpkg.com/ws/-/ws-7.3.1.tgz#d0547bf67f7ce4f12a72dfe31262c68d7dc551c8" |
8198 | integrity sha512-iFtXzngZVXPGgpTlP1rBqsUK82p9tKqsWRPg5L56egiljujJT3vGAYnHANvFxBieXrTFavhzhxW52jnaWV+w2w== | 8067 | integrity sha512-D3RuNkynyHmEJIpD2qrgVkc9DQ23OrN/moAwZX4L8DfvszsJxpjQuUq3LMx6HoYji9fbIOBY18XWBsAux1ZZUA== |
8199 | 8068 | ||
8200 | ws@~6.1.0: | 8069 | ws@~6.1.0: |
8201 | version "6.1.4" | 8070 | version "6.1.4" |
@@ -8204,11 +8073,6 @@ ws@~6.1.0: | |||
8204 | dependencies: | 8073 | dependencies: |
8205 | async-limiter "~1.0.0" | 8074 | async-limiter "~1.0.0" |
8206 | 8075 | ||
8207 | x-xss-protection@1.3.0: | ||
8208 | version "1.3.0" | ||
8209 | resolved "https://registry.yarnpkg.com/x-xss-protection/-/x-xss-protection-1.3.0.tgz#3e3a8dd638da80421b0e9fff11a2dbe168f6d52c" | ||
8210 | integrity sha512-kpyBI9TlVipZO4diReZMAHWtS0MMa/7Kgx8hwG/EuZLiA6sg4Ah/4TRdASHhRRN3boobzcYgFRUFSgHRge6Qhg== | ||
8211 | |||
8212 | xdg-basedir@^4.0.0: | 8076 | xdg-basedir@^4.0.0: |
8213 | version "4.0.0" | 8077 | version "4.0.0" |
8214 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-4.0.0.tgz#4bc8d9984403696225ef83a1573cbbcb4e79db13" | 8078 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-4.0.0.tgz#4bc8d9984403696225ef83a1573cbbcb4e79db13" |
@@ -8282,6 +8146,11 @@ yallist@^3.0.0, yallist@^3.0.2, yallist@^3.0.3: | |||
8282 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" | 8146 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" |
8283 | integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== | 8147 | integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== |
8284 | 8148 | ||
8149 | yallist@^4.0.0: | ||
8150 | version "4.0.0" | ||
8151 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" | ||
8152 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== | ||
8153 | |||
8285 | yargs-parser@13.1.2, yargs-parser@^13.1.2: | 8154 | yargs-parser@13.1.2, yargs-parser@^13.1.2: |
8286 | version "13.1.2" | 8155 | version "13.1.2" |
8287 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.1.2.tgz#130f09702ebaeef2650d54ce6e3e5706f7a4fb38" | 8156 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.1.2.tgz#130f09702ebaeef2650d54ce6e3e5706f7a4fb38" |
@@ -8290,7 +8159,15 @@ yargs-parser@13.1.2, yargs-parser@^13.1.2: | |||
8290 | camelcase "^5.0.0" | 8159 | camelcase "^5.0.0" |
8291 | decamelize "^1.2.0" | 8160 | decamelize "^1.2.0" |
8292 | 8161 | ||
8293 | yargs-parser@^18.1.1: | 8162 | yargs-parser@^15.0.1: |
8163 | version "15.0.1" | ||
8164 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-15.0.1.tgz#54786af40b820dcb2fb8025b11b4d659d76323b3" | ||
8165 | integrity sha512-0OAMV2mAZQrs3FkNpDQcBk1x5HXb8X4twADss4S0Iuk+2dGnLOE/fRHrsYm542GduMveyA77OF4wrNJuanRCWw== | ||
8166 | dependencies: | ||
8167 | camelcase "^5.0.0" | ||
8168 | decamelize "^1.2.0" | ||
8169 | |||
8170 | yargs-parser@^18.1.2: | ||
8294 | version "18.1.3" | 8171 | version "18.1.3" |
8295 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0" | 8172 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0" |
8296 | integrity sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ== | 8173 | integrity sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ== |
@@ -8298,14 +8175,16 @@ yargs-parser@^18.1.1: | |||
8298 | camelcase "^5.0.0" | 8175 | camelcase "^5.0.0" |
8299 | decamelize "^1.2.0" | 8176 | decamelize "^1.2.0" |
8300 | 8177 | ||
8301 | yargs-unparser@1.6.0: | 8178 | yargs-unparser@1.6.1: |
8302 | version "1.6.0" | 8179 | version "1.6.1" |
8303 | resolved "https://registry.yarnpkg.com/yargs-unparser/-/yargs-unparser-1.6.0.tgz#ef25c2c769ff6bd09e4b0f9d7c605fb27846ea9f" | 8180 | resolved "https://registry.yarnpkg.com/yargs-unparser/-/yargs-unparser-1.6.1.tgz#bd4b0ee05b4c94d058929c32cb09e3fce71d3c5f" |
8304 | integrity sha512-W9tKgmSn0DpSatfri0nx52Joq5hVXgeLiqR/5G0sZNDoLZFOr/xjBUDcShCOGNsBnEMNo1KAMBkTej1Hm62HTw== | 8181 | integrity sha512-qZV14lK9MWsGCmcr7u5oXGH0dbGqZAIxTDrWXZDo5zUr6b6iUmelNKO6x6R1dQT24AH3LgRxJpr8meWy2unolA== |
8305 | dependencies: | 8182 | dependencies: |
8183 | camelcase "^5.3.1" | ||
8184 | decamelize "^1.2.0" | ||
8306 | flat "^4.1.0" | 8185 | flat "^4.1.0" |
8307 | lodash "^4.17.15" | 8186 | is-plain-obj "^1.1.0" |
8308 | yargs "^13.3.0" | 8187 | yargs "^14.2.3" |
8309 | 8188 | ||
8310 | yargs@13.3.2, yargs@^13.3.0: | 8189 | yargs@13.3.2, yargs@^13.3.0: |
8311 | version "13.3.2" | 8190 | version "13.3.2" |
@@ -8323,10 +8202,27 @@ yargs@13.3.2, yargs@^13.3.0: | |||
8323 | y18n "^4.0.0" | 8202 | y18n "^4.0.0" |
8324 | yargs-parser "^13.1.2" | 8203 | yargs-parser "^13.1.2" |
8325 | 8204 | ||
8326 | yargs@^15.3.1: | 8205 | yargs@^14.2.3: |
8327 | version "15.3.1" | 8206 | version "14.2.3" |
8328 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.3.1.tgz#9505b472763963e54afe60148ad27a330818e98b" | 8207 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-14.2.3.tgz#1a1c3edced1afb2a2fea33604bc6d1d8d688a414" |
8329 | integrity sha512-92O1HWEjw27sBfgmXiixJWT5hRBp2eobqXicLtPBIDBhYB+1HpwZlXmbW2luivBJHBzki+7VyCLRtAkScbTBQA== | 8208 | integrity sha512-ZbotRWhF+lkjijC/VhmOT9wSgyBQ7+zr13+YLkhfsSiTriYsMzkTUFP18pFhWwBeMa5gUc1MzbhrO6/VB7c9Xg== |
8209 | dependencies: | ||
8210 | cliui "^5.0.0" | ||
8211 | decamelize "^1.2.0" | ||
8212 | find-up "^3.0.0" | ||
8213 | get-caller-file "^2.0.1" | ||
8214 | require-directory "^2.1.1" | ||
8215 | require-main-filename "^2.0.0" | ||
8216 | set-blocking "^2.0.0" | ||
8217 | string-width "^3.0.0" | ||
8218 | which-module "^2.0.0" | ||
8219 | y18n "^4.0.0" | ||
8220 | yargs-parser "^15.0.1" | ||
8221 | |||
8222 | yargs@^15.4.1: | ||
8223 | version "15.4.1" | ||
8224 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.4.1.tgz#0d87a16de01aee9d8bec2bfbf74f67851730f4f8" | ||
8225 | integrity sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A== | ||
8330 | dependencies: | 8226 | dependencies: |
8331 | cliui "^6.0.0" | 8227 | cliui "^6.0.0" |
8332 | decamelize "^1.2.0" | 8228 | decamelize "^1.2.0" |
@@ -8338,7 +8234,7 @@ yargs@^15.3.1: | |||
8338 | string-width "^4.2.0" | 8234 | string-width "^4.2.0" |
8339 | which-module "^2.0.0" | 8235 | which-module "^2.0.0" |
8340 | y18n "^4.0.0" | 8236 | y18n "^4.0.0" |
8341 | yargs-parser "^18.1.1" | 8237 | yargs-parser "^18.1.2" |
8342 | 8238 | ||
8343 | yargs@~3.10.0: | 8239 | yargs@~3.10.0: |
8344 | version "3.10.0" | 8240 | version "3.10.0" |
@@ -8373,7 +8269,7 @@ youtube-dl@^3.0.2: | |||
8373 | streamify "~0.2.9" | 8269 | streamify "~0.2.9" |
8374 | universalify "~0.1.2" | 8270 | universalify "~0.1.2" |
8375 | 8271 | ||
8376 | z-schema@^4.2.2: | 8272 | z-schema@^4.2.3: |
8377 | version "4.2.3" | 8273 | version "4.2.3" |
8378 | resolved "https://registry.yarnpkg.com/z-schema/-/z-schema-4.2.3.tgz#85f7eea7e6d4fe59a483462a98f511bd78fe9882" | 8274 | resolved "https://registry.yarnpkg.com/z-schema/-/z-schema-4.2.3.tgz#85f7eea7e6d4fe59a483462a98f511bd78fe9882" |
8379 | integrity sha512-zkvK/9TC6p38IwcrbnT3ul9in1UX4cm1y/VZSs4GHKIiDCrlafc+YQBgQBUdDXLAoZHf2qvQ7gJJOo6yT1LH6A== | 8275 | integrity sha512-zkvK/9TC6p38IwcrbnT3ul9in1UX4cm1y/VZSs4GHKIiDCrlafc+YQBgQBUdDXLAoZHf2qvQ7gJJOo6yT1LH6A== |
@@ -8385,6 +8281,6 @@ z-schema@^4.2.2: | |||
8385 | commander "^2.7.1" | 8281 | commander "^2.7.1" |
8386 | 8282 | ||
8387 | zero-fill@^2.2.3: | 8283 | zero-fill@^2.2.3: |
8388 | version "2.2.3" | 8284 | version "2.2.4" |
8389 | resolved "https://registry.yarnpkg.com/zero-fill/-/zero-fill-2.2.3.tgz#a3def06ba5e39ae644850bb4ca2ad4112b4855e9" | 8285 | resolved "https://registry.yarnpkg.com/zero-fill/-/zero-fill-2.2.4.tgz#b041320973dbcb03cd90193270ac8d4a3da05fc1" |
8390 | integrity sha1-o97wa6XjmuZEhQu0yirUEStIVek= | 8286 | integrity sha512-/N5GEDauLHz2uGnuJXWO1Wfib4EC+q4yp9C1jojM7RubwEKADqIqMcYpETMm1lRop403fi3v1qTOdgDE8DIOdw== |