diff options
192 files changed, 17373 insertions, 5413 deletions
diff --git a/client/src/app/+about/about-instance/contact-admin-modal.component.ts b/client/src/app/+about/about-instance/contact-admin-modal.component.ts index 215e281bb..11e442f6b 100644 --- a/client/src/app/+about/about-instance/contact-admin-modal.component.ts +++ b/client/src/app/+about/about-instance/contact-admin-modal.component.ts | |||
@@ -1,6 +1,12 @@ | |||
1 | import { Component, OnInit, ViewChild } from '@angular/core' | 1 | import { Component, OnInit, ViewChild } from '@angular/core' |
2 | import { Notifier, ServerService } from '@app/core' | 2 | import { Notifier, ServerService } from '@app/core' |
3 | import { FormReactive, FormValidatorService, InstanceValidatorsService } from '@app/shared/shared-forms' | 3 | import { |
4 | BODY_VALIDATOR, | ||
5 | FROM_EMAIL_VALIDATOR, | ||
6 | FROM_NAME_VALIDATOR, | ||
7 | SUBJECT_VALIDATOR | ||
8 | } from '@app/shared/form-validators/instance-validators' | ||
9 | import { FormReactive, FormValidatorService } from '@app/shared/shared-forms' | ||
4 | import { InstanceService } from '@app/shared/shared-instance' | 10 | import { InstanceService } from '@app/shared/shared-instance' |
5 | import { NgbModal } from '@ng-bootstrap/ng-bootstrap' | 11 | import { NgbModal } from '@ng-bootstrap/ng-bootstrap' |
6 | import { NgbModalRef } from '@ng-bootstrap/ng-bootstrap/modal/modal-ref' | 12 | import { NgbModalRef } from '@ng-bootstrap/ng-bootstrap/modal/modal-ref' |
@@ -22,7 +28,6 @@ export class ContactAdminModalComponent extends FormReactive implements OnInit { | |||
22 | constructor ( | 28 | constructor ( |
23 | protected formValidatorService: FormValidatorService, | 29 | protected formValidatorService: FormValidatorService, |
24 | private modalService: NgbModal, | 30 | private modalService: NgbModal, |
25 | private instanceValidatorsService: InstanceValidatorsService, | ||
26 | private instanceService: InstanceService, | 31 | private instanceService: InstanceService, |
27 | private serverService: ServerService, | 32 | private serverService: ServerService, |
28 | private notifier: Notifier | 33 | private notifier: Notifier |
@@ -40,10 +45,10 @@ export class ContactAdminModalComponent extends FormReactive implements OnInit { | |||
40 | .subscribe(config => this.serverConfig = config) | 45 | .subscribe(config => this.serverConfig = config) |
41 | 46 | ||
42 | this.buildForm({ | 47 | this.buildForm({ |
43 | fromName: this.instanceValidatorsService.FROM_NAME, | 48 | fromName: FROM_NAME_VALIDATOR, |
44 | fromEmail: this.instanceValidatorsService.FROM_EMAIL, | 49 | fromEmail: FROM_EMAIL_VALIDATOR, |
45 | subject: this.instanceValidatorsService.SUBJECT, | 50 | subject: SUBJECT_VALIDATOR, |
46 | body: this.instanceValidatorsService.BODY | 51 | body: BODY_VALIDATOR |
47 | }) | 52 | }) |
48 | } | 53 | } |
49 | 54 | ||
diff --git a/client/src/app/+about/about-routing.module.ts b/client/src/app/+about/about-routing.module.ts index 91ccb846f..828b2884c 100644 --- a/client/src/app/+about/about-routing.module.ts +++ b/client/src/app/+about/about-routing.module.ts | |||
@@ -23,7 +23,7 @@ const aboutRoutes: Routes = [ | |||
23 | component: AboutInstanceComponent, | 23 | component: AboutInstanceComponent, |
24 | data: { | 24 | data: { |
25 | meta: { | 25 | meta: { |
26 | title: 'About this instance' | 26 | title: $localize`About this instance` |
27 | } | 27 | } |
28 | }, | 28 | }, |
29 | resolve: { | 29 | resolve: { |
@@ -35,7 +35,7 @@ const aboutRoutes: Routes = [ | |||
35 | component: AboutPeertubeComponent, | 35 | component: AboutPeertubeComponent, |
36 | data: { | 36 | data: { |
37 | meta: { | 37 | meta: { |
38 | title: 'About PeerTube' | 38 | title: $localize`About PeerTube` |
39 | } | 39 | } |
40 | } | 40 | } |
41 | }, | 41 | }, |
@@ -44,7 +44,7 @@ const aboutRoutes: Routes = [ | |||
44 | component: AboutFollowsComponent, | 44 | component: AboutFollowsComponent, |
45 | data: { | 45 | data: { |
46 | meta: { | 46 | meta: { |
47 | title: 'About follows' | 47 | title: $localize`About follows` |
48 | } | 48 | } |
49 | } | 49 | } |
50 | } | 50 | } |
diff --git a/client/src/app/+accounts/accounts-routing.module.ts b/client/src/app/+accounts/accounts-routing.module.ts index 45b24eb55..d2ca784b0 100644 --- a/client/src/app/+accounts/accounts-routing.module.ts +++ b/client/src/app/+accounts/accounts-routing.module.ts | |||
@@ -26,7 +26,7 @@ const accountsRoutes: Routes = [ | |||
26 | component: AccountVideosComponent, | 26 | component: AccountVideosComponent, |
27 | data: { | 27 | data: { |
28 | meta: { | 28 | meta: { |
29 | title: 'Account videos' | 29 | title: $localize`Account videos` |
30 | }, | 30 | }, |
31 | reuse: { | 31 | reuse: { |
32 | enabled: true, | 32 | enabled: true, |
@@ -39,7 +39,7 @@ const accountsRoutes: Routes = [ | |||
39 | component: AccountVideoChannelsComponent, | 39 | component: AccountVideoChannelsComponent, |
40 | data: { | 40 | data: { |
41 | meta: { | 41 | meta: { |
42 | title: 'Account video channels' | 42 | title: $localize`Account video channels` |
43 | } | 43 | } |
44 | } | 44 | } |
45 | }, | 45 | }, |
@@ -48,7 +48,7 @@ const accountsRoutes: Routes = [ | |||
48 | component: AccountAboutComponent, | 48 | component: AccountAboutComponent, |
49 | data: { | 49 | data: { |
50 | meta: { | 50 | meta: { |
51 | title: 'About account' | 51 | title: $localize`About account` |
52 | } | 52 | } |
53 | } | 53 | } |
54 | } | 54 | } |
diff --git a/client/src/app/+admin/config/config.routes.ts b/client/src/app/+admin/config/config.routes.ts index 7c1a1a166..1b76b29cc 100644 --- a/client/src/app/+admin/config/config.routes.ts +++ b/client/src/app/+admin/config/config.routes.ts | |||
@@ -23,7 +23,7 @@ export const ConfigRoutes: Routes = [ | |||
23 | component: EditCustomConfigComponent, | 23 | component: EditCustomConfigComponent, |
24 | data: { | 24 | data: { |
25 | meta: { | 25 | meta: { |
26 | title: 'Edit custom configuration' | 26 | title: $localize`Edit custom configuration` |
27 | } | 27 | } |
28 | } | 28 | } |
29 | } | 29 | } |
diff --git a/client/src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts b/client/src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts index 3a60b144f..78e9dd5e5 100644 --- a/client/src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts +++ b/client/src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts | |||
@@ -5,12 +5,19 @@ import { ConfigService } from '@app/+admin/config/shared/config.service' | |||
5 | import { Notifier } from '@app/core' | 5 | import { Notifier } from '@app/core' |
6 | import { ServerService } from '@app/core/server/server.service' | 6 | import { ServerService } from '@app/core/server/server.service' |
7 | import { | 7 | import { |
8 | CustomConfigValidatorsService, | 8 | ADMIN_EMAIL_VALIDATOR, |
9 | FormReactive, | 9 | CACHE_CAPTIONS_SIZE_VALIDATOR, |
10 | FormValidatorService, | 10 | CACHE_PREVIEWS_SIZE_VALIDATOR, |
11 | SelectOptionsItem, | 11 | INDEX_URL_VALIDATOR, |
12 | UserValidatorsService | 12 | INSTANCE_NAME_VALIDATOR, |
13 | } from '@app/shared/shared-forms' | 13 | INSTANCE_SHORT_DESCRIPTION_VALIDATOR, |
14 | SEARCH_INDEX_URL_VALIDATOR, | ||
15 | SERVICES_TWITTER_USERNAME_VALIDATOR, | ||
16 | SIGNUP_LIMIT_VALIDATOR, | ||
17 | TRANSCODING_THREADS_VALIDATOR | ||
18 | } from '@app/shared/form-validators/custom-config-validators' | ||
19 | import { USER_VIDEO_QUOTA_DAILY_VALIDATOR, USER_VIDEO_QUOTA_VALIDATOR } from '@app/shared/form-validators/user-validators' | ||
20 | import { FormReactive, FormValidatorService, SelectOptionsItem } from '@app/shared/shared-forms' | ||
14 | import { NgbNav } from '@ng-bootstrap/ng-bootstrap' | 21 | import { NgbNav } from '@ng-bootstrap/ng-bootstrap' |
15 | import { CustomConfig, ServerConfig } from '@shared/models' | 22 | import { CustomConfig, ServerConfig } from '@shared/models' |
16 | 23 | ||
@@ -37,8 +44,6 @@ export class EditCustomConfigComponent extends FormReactive implements OnInit, A | |||
37 | constructor ( | 44 | constructor ( |
38 | private viewportScroller: ViewportScroller, | 45 | private viewportScroller: ViewportScroller, |
39 | protected formValidatorService: FormValidatorService, | 46 | protected formValidatorService: FormValidatorService, |
40 | private customConfigValidatorsService: CustomConfigValidatorsService, | ||
41 | private userValidatorsService: UserValidatorsService, | ||
42 | private notifier: Notifier, | 47 | private notifier: Notifier, |
43 | private configService: ConfigService, | 48 | private configService: ConfigService, |
44 | private serverService: ServerService | 49 | private serverService: ServerService |
@@ -110,8 +115,8 @@ export class EditCustomConfigComponent extends FormReactive implements OnInit, A | |||
110 | 115 | ||
111 | const formGroupData: { [key in keyof CustomConfig ]: any } = { | 116 | const formGroupData: { [key in keyof CustomConfig ]: any } = { |
112 | instance: { | 117 | instance: { |
113 | name: this.customConfigValidatorsService.INSTANCE_NAME, | 118 | name: INSTANCE_NAME_VALIDATOR, |
114 | shortDescription: this.customConfigValidatorsService.INSTANCE_SHORT_DESCRIPTION, | 119 | shortDescription: INSTANCE_SHORT_DESCRIPTION_VALIDATOR, |
115 | description: null, | 120 | description: null, |
116 | 121 | ||
117 | isNSFW: false, | 122 | isNSFW: false, |
@@ -143,21 +148,21 @@ export class EditCustomConfigComponent extends FormReactive implements OnInit, A | |||
143 | }, | 148 | }, |
144 | services: { | 149 | services: { |
145 | twitter: { | 150 | twitter: { |
146 | username: this.customConfigValidatorsService.SERVICES_TWITTER_USERNAME, | 151 | username: SERVICES_TWITTER_USERNAME_VALIDATOR, |
147 | whitelisted: null | 152 | whitelisted: null |
148 | } | 153 | } |
149 | }, | 154 | }, |
150 | cache: { | 155 | cache: { |
151 | previews: { | 156 | previews: { |
152 | size: this.customConfigValidatorsService.CACHE_PREVIEWS_SIZE | 157 | size: CACHE_PREVIEWS_SIZE_VALIDATOR |
153 | }, | 158 | }, |
154 | captions: { | 159 | captions: { |
155 | size: this.customConfigValidatorsService.CACHE_CAPTIONS_SIZE | 160 | size: CACHE_CAPTIONS_SIZE_VALIDATOR |
156 | } | 161 | } |
157 | }, | 162 | }, |
158 | signup: { | 163 | signup: { |
159 | enabled: null, | 164 | enabled: null, |
160 | limit: this.customConfigValidatorsService.SIGNUP_LIMIT, | 165 | limit: SIGNUP_LIMIT_VALIDATOR, |
161 | requiresEmailVerification: null | 166 | requiresEmailVerification: null |
162 | }, | 167 | }, |
163 | import: { | 168 | import: { |
@@ -171,18 +176,18 @@ export class EditCustomConfigComponent extends FormReactive implements OnInit, A | |||
171 | } | 176 | } |
172 | }, | 177 | }, |
173 | admin: { | 178 | admin: { |
174 | email: this.customConfigValidatorsService.ADMIN_EMAIL | 179 | email: ADMIN_EMAIL_VALIDATOR |
175 | }, | 180 | }, |
176 | contactForm: { | 181 | contactForm: { |
177 | enabled: null | 182 | enabled: null |
178 | }, | 183 | }, |
179 | user: { | 184 | user: { |
180 | videoQuota: this.userValidatorsService.USER_VIDEO_QUOTA, | 185 | videoQuota: USER_VIDEO_QUOTA_VALIDATOR, |
181 | videoQuotaDaily: this.userValidatorsService.USER_VIDEO_QUOTA_DAILY | 186 | videoQuotaDaily: USER_VIDEO_QUOTA_DAILY_VALIDATOR |
182 | }, | 187 | }, |
183 | transcoding: { | 188 | transcoding: { |
184 | enabled: null, | 189 | enabled: null, |
185 | threads: this.customConfigValidatorsService.TRANSCODING_THREADS, | 190 | threads: TRANSCODING_THREADS_VALIDATOR, |
186 | allowAdditionalExtensions: null, | 191 | allowAdditionalExtensions: null, |
187 | allowAudioFiles: null, | 192 | allowAudioFiles: null, |
188 | resolutions: {}, | 193 | resolutions: {}, |
@@ -213,7 +218,7 @@ export class EditCustomConfigComponent extends FormReactive implements OnInit, A | |||
213 | }, | 218 | }, |
214 | autoFollowIndex: { | 219 | autoFollowIndex: { |
215 | enabled: null, | 220 | enabled: null, |
216 | indexUrl: this.customConfigValidatorsService.INDEX_URL | 221 | indexUrl: INDEX_URL_VALIDATOR |
217 | } | 222 | } |
218 | } | 223 | } |
219 | }, | 224 | }, |
@@ -230,7 +235,7 @@ export class EditCustomConfigComponent extends FormReactive implements OnInit, A | |||
230 | }, | 235 | }, |
231 | searchIndex: { | 236 | searchIndex: { |
232 | enabled: null, | 237 | enabled: null, |
233 | url: this.customConfigValidatorsService.SEARCH_INDEX_URL, | 238 | url: SEARCH_INDEX_URL_VALIDATOR, |
234 | disableLocalSearch: null, | 239 | disableLocalSearch: null, |
235 | isDefaultSearch: null | 240 | isDefaultSearch: null |
236 | } | 241 | } |
diff --git a/client/src/app/+admin/follows/follows.routes.ts b/client/src/app/+admin/follows/follows.routes.ts index 817074536..cd70daf77 100644 --- a/client/src/app/+admin/follows/follows.routes.ts +++ b/client/src/app/+admin/follows/follows.routes.ts | |||
@@ -25,7 +25,7 @@ export const FollowsRoutes: Routes = [ | |||
25 | component: FollowingListComponent, | 25 | component: FollowingListComponent, |
26 | data: { | 26 | data: { |
27 | meta: { | 27 | meta: { |
28 | title: 'Following list' | 28 | title: $localize`Following list` |
29 | } | 29 | } |
30 | } | 30 | } |
31 | }, | 31 | }, |
@@ -34,7 +34,7 @@ export const FollowsRoutes: Routes = [ | |||
34 | component: FollowersListComponent, | 34 | component: FollowersListComponent, |
35 | data: { | 35 | data: { |
36 | meta: { | 36 | meta: { |
37 | title: 'Followers list' | 37 | title: $localize`Followers list` |
38 | } | 38 | } |
39 | } | 39 | } |
40 | }, | 40 | }, |
diff --git a/client/src/app/+admin/moderation/moderation.routes.ts b/client/src/app/+admin/moderation/moderation.routes.ts index 8a31a54dc..b60dd5334 100644 --- a/client/src/app/+admin/moderation/moderation.routes.ts +++ b/client/src/app/+admin/moderation/moderation.routes.ts | |||
@@ -33,7 +33,7 @@ export const ModerationRoutes: Routes = [ | |||
33 | data: { | 33 | data: { |
34 | userRight: UserRight.MANAGE_ABUSES, | 34 | userRight: UserRight.MANAGE_ABUSES, |
35 | meta: { | 35 | meta: { |
36 | title: 'Reports' | 36 | title: $localize`Reports` |
37 | } | 37 | } |
38 | } | 38 | } |
39 | }, | 39 | }, |
@@ -64,7 +64,7 @@ export const ModerationRoutes: Routes = [ | |||
64 | data: { | 64 | data: { |
65 | userRight: UserRight.MANAGE_VIDEO_BLACKLIST, | 65 | userRight: UserRight.MANAGE_VIDEO_BLACKLIST, |
66 | meta: { | 66 | meta: { |
67 | title: 'Videos blocked' | 67 | title: $localize`Videos blocked` |
68 | } | 68 | } |
69 | } | 69 | } |
70 | }, | 70 | }, |
@@ -75,7 +75,7 @@ export const ModerationRoutes: Routes = [ | |||
75 | data: { | 75 | data: { |
76 | userRight: UserRight.MANAGE_ACCOUNTS_BLOCKLIST, | 76 | userRight: UserRight.MANAGE_ACCOUNTS_BLOCKLIST, |
77 | meta: { | 77 | meta: { |
78 | title: 'Muted accounts' | 78 | title: $localize`Muted accounts` |
79 | } | 79 | } |
80 | } | 80 | } |
81 | }, | 81 | }, |
@@ -86,7 +86,7 @@ export const ModerationRoutes: Routes = [ | |||
86 | data: { | 86 | data: { |
87 | userRight: UserRight.MANAGE_SERVERS_BLOCKLIST, | 87 | userRight: UserRight.MANAGE_SERVERS_BLOCKLIST, |
88 | meta: { | 88 | meta: { |
89 | title: 'Muted instances' | 89 | title: $localize`Muted instances` |
90 | } | 90 | } |
91 | } | 91 | } |
92 | } | 92 | } |
diff --git a/client/src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html b/client/src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html index f3fc429ff..cb2894568 100644 --- a/client/src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html +++ b/client/src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.html | |||
@@ -7,38 +7,7 @@ | |||
7 | 7 | ||
8 | <form *ngIf="hasRegisteredSettings()" role="form" (ngSubmit)="formValidated()" [formGroup]="form"> | 8 | <form *ngIf="hasRegisteredSettings()" role="form" (ngSubmit)="formValidated()" [formGroup]="form"> |
9 | <div class="form-group" *ngFor="let setting of registeredSettings"> | 9 | <div class="form-group" *ngFor="let setting of registeredSettings"> |
10 | <label *ngIf="setting.type !== 'input-checkbox'" [attr.for]="setting.name" [innerHTML]="setting.label"></label> | 10 | <my-dynamic-form-field [form]="form" [setting]="setting" [formErrors]="formErrors"></my-dynamic-form-field> |
11 | |||
12 | <input *ngIf="setting.type === 'input'" type="text" [id]="setting.name" [formControlName]="setting.name" /> | ||
13 | |||
14 | <textarea *ngIf="setting.type === 'input-textarea'" type="text" [id]="setting.name" [formControlName]="setting.name"></textarea> | ||
15 | |||
16 | <my-help *ngIf="setting.type === 'markdown-text'" helpType="markdownText"></my-help> | ||
17 | |||
18 | <my-help *ngIf="setting.type === 'markdown-enhanced'" helpType="markdownEnhanced"></my-help> | ||
19 | |||
20 | <my-markdown-textarea | ||
21 | *ngIf="setting.type === 'markdown-text'" | ||
22 | markdownType="text" [id]="setting.name" [formControlName]="setting.name" textareaWidth="500px" | ||
23 | [classes]="{ 'input-error': formErrors['settings.name'] }" | ||
24 | ></my-markdown-textarea> | ||
25 | |||
26 | <my-markdown-textarea | ||
27 | *ngIf="setting.type === 'markdown-enhanced'" | ||
28 | markdownType="enhanced" [id]="setting.name" [formControlName]="setting.name" textareaWidth="500px" | ||
29 | [classes]="{ 'input-error': formErrors['settings.name'] }" | ||
30 | ></my-markdown-textarea> | ||
31 | |||
32 | <my-peertube-checkbox | ||
33 | *ngIf="setting.type === 'input-checkbox'" | ||
34 | [id]="setting.name" | ||
35 | [formControlName]="setting.name" | ||
36 | [labelInnerHTML]="setting.label" | ||
37 | ></my-peertube-checkbox> | ||
38 | |||
39 | <div *ngIf="formErrors[setting.name]" class="form-error"> | ||
40 | {{ formErrors[setting.name] }} | ||
41 | </div> | ||
42 | </div> | 11 | </div> |
43 | 12 | ||
44 | <input type="submit" i18n value="Update plugin settings" [disabled]="!form.valid"> | 13 | <input type="submit" i18n value="Update plugin settings" [disabled]="!form.valid"> |
diff --git a/client/src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.scss b/client/src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.scss index cc35aec57..5ab6e5f1b 100644 --- a/client/src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.scss +++ b/client/src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.scss | |||
@@ -5,22 +5,6 @@ h2 { | |||
5 | margin-bottom: 20px; | 5 | margin-bottom: 20px; |
6 | } | 6 | } |
7 | 7 | ||
8 | input:not([type=submit]) { | ||
9 | @include peertube-input-text(340px); | ||
10 | |||
11 | display: block; | ||
12 | } | ||
13 | |||
14 | textarea { | ||
15 | @include peertube-textarea(340px, 200px); | ||
16 | |||
17 | display: block; | ||
18 | } | ||
19 | |||
20 | .peertube-select-container { | ||
21 | @include peertube-select-container(340px); | ||
22 | } | ||
23 | |||
24 | input[type=submit], button { | 8 | input[type=submit], button { |
25 | @include peertube-button; | 9 | @include peertube-button; |
26 | @include orange-button; | 10 | @include orange-button; |
diff --git a/client/src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.ts b/client/src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.ts index a33f01691..1acaf9674 100644 --- a/client/src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.ts +++ b/client/src/app/+admin/plugins/plugin-show-installed/plugin-show-installed.component.ts | |||
@@ -3,7 +3,8 @@ import { map, switchMap } from 'rxjs/operators' | |||
3 | import { Component, OnDestroy, OnInit } from '@angular/core' | 3 | import { Component, OnDestroy, OnInit } from '@angular/core' |
4 | import { ActivatedRoute } from '@angular/router' | 4 | import { ActivatedRoute } from '@angular/router' |
5 | import { Notifier } from '@app/core' | 5 | import { Notifier } from '@app/core' |
6 | import { BuildFormArgument, FormReactive, FormValidatorService } from '@app/shared/shared-forms' | 6 | import { BuildFormArgument } from '@app/shared/form-validators' |
7 | import { FormReactive, FormValidatorService } from '@app/shared/shared-forms' | ||
7 | import { PeerTubePlugin, RegisterServerSettingOptions } from '@shared/models' | 8 | import { PeerTubePlugin, RegisterServerSettingOptions } from '@shared/models' |
8 | import { PluginApiService } from '../shared/plugin-api.service' | 9 | import { PluginApiService } from '../shared/plugin-api.service' |
9 | 10 | ||
diff --git a/client/src/app/+admin/plugins/plugins.routes.ts b/client/src/app/+admin/plugins/plugins.routes.ts index 4bef27be3..4cf55dda2 100644 --- a/client/src/app/+admin/plugins/plugins.routes.ts +++ b/client/src/app/+admin/plugins/plugins.routes.ts | |||
@@ -25,7 +25,7 @@ export const PluginsRoutes: Routes = [ | |||
25 | component: PluginListInstalledComponent, | 25 | component: PluginListInstalledComponent, |
26 | data: { | 26 | data: { |
27 | meta: { | 27 | meta: { |
28 | title: 'List installed plugins' | 28 | title: $localize`List installed plugins` |
29 | } | 29 | } |
30 | } | 30 | } |
31 | }, | 31 | }, |
@@ -34,7 +34,7 @@ export const PluginsRoutes: Routes = [ | |||
34 | component: PluginSearchComponent, | 34 | component: PluginSearchComponent, |
35 | data: { | 35 | data: { |
36 | meta: { | 36 | meta: { |
37 | title: 'Search plugins' | 37 | title: $localize`Search plugins` |
38 | } | 38 | } |
39 | } | 39 | } |
40 | }, | 40 | }, |
@@ -43,7 +43,7 @@ export const PluginsRoutes: Routes = [ | |||
43 | component: PluginShowInstalledComponent, | 43 | component: PluginShowInstalledComponent, |
44 | data: { | 44 | data: { |
45 | meta: { | 45 | meta: { |
46 | title: 'Show plugin' | 46 | title: $localize`Show plugin` |
47 | } | 47 | } |
48 | } | 48 | } |
49 | } | 49 | } |
diff --git a/client/src/app/+admin/system/system.routes.ts b/client/src/app/+admin/system/system.routes.ts index 0e8d98519..72ab6705a 100644 --- a/client/src/app/+admin/system/system.routes.ts +++ b/client/src/app/+admin/system/system.routes.ts | |||
@@ -10,8 +10,6 @@ export const SystemRoutes: Routes = [ | |||
10 | { | 10 | { |
11 | path: 'system', | 11 | path: 'system', |
12 | component: SystemComponent, | 12 | component: SystemComponent, |
13 | data: { | ||
14 | }, | ||
15 | children: [ | 13 | children: [ |
16 | { | 14 | { |
17 | path: '', | 15 | path: '', |
@@ -25,7 +23,7 @@ export const SystemRoutes: Routes = [ | |||
25 | data: { | 23 | data: { |
26 | meta: { | 24 | meta: { |
27 | userRight: UserRight.MANAGE_JOBS, | 25 | userRight: UserRight.MANAGE_JOBS, |
28 | title: 'Jobs' | 26 | title: $localize`Jobs` |
29 | } | 27 | } |
30 | } | 28 | } |
31 | }, | 29 | }, |
@@ -36,7 +34,7 @@ export const SystemRoutes: Routes = [ | |||
36 | data: { | 34 | data: { |
37 | meta: { | 35 | meta: { |
38 | userRight: UserRight.MANAGE_LOGS, | 36 | userRight: UserRight.MANAGE_LOGS, |
39 | title: 'Logs' | 37 | title: $localize`Logs` |
40 | } | 38 | } |
41 | } | 39 | } |
42 | }, | 40 | }, |
@@ -47,7 +45,7 @@ export const SystemRoutes: Routes = [ | |||
47 | data: { | 45 | data: { |
48 | meta: { | 46 | meta: { |
49 | userRight: UserRight.MANAGE_DEBUG, | 47 | userRight: UserRight.MANAGE_DEBUG, |
50 | title: 'Debug' | 48 | title: $localize`Debug` |
51 | } | 49 | } |
52 | } | 50 | } |
53 | } | 51 | } |
diff --git a/client/src/app/+admin/users/user-edit/user-create.component.ts b/client/src/app/+admin/users/user-edit/user-create.component.ts index 36d71a927..d0aac1cb9 100644 --- a/client/src/app/+admin/users/user-edit/user-create.component.ts +++ b/client/src/app/+admin/users/user-edit/user-create.component.ts | |||
@@ -2,7 +2,17 @@ import { Component, OnInit } from '@angular/core' | |||
2 | import { ActivatedRoute, Router } from '@angular/router' | 2 | import { ActivatedRoute, Router } from '@angular/router' |
3 | import { ConfigService } from '@app/+admin/config/shared/config.service' | 3 | import { ConfigService } from '@app/+admin/config/shared/config.service' |
4 | import { AuthService, Notifier, ScreenService, ServerService, UserService } from '@app/core' | 4 | import { AuthService, Notifier, ScreenService, ServerService, UserService } from '@app/core' |
5 | import { FormValidatorService, UserValidatorsService } from '@app/shared/shared-forms' | 5 | import { |
6 | USER_CHANNEL_NAME_VALIDATOR, | ||
7 | USER_EMAIL_VALIDATOR, | ||
8 | USER_PASSWORD_OPTIONAL_VALIDATOR, | ||
9 | USER_PASSWORD_VALIDATOR, | ||
10 | USER_ROLE_VALIDATOR, | ||
11 | USER_USERNAME_VALIDATOR, | ||
12 | USER_VIDEO_QUOTA_DAILY_VALIDATOR, | ||
13 | USER_VIDEO_QUOTA_VALIDATOR | ||
14 | } from '@app/shared/form-validators/user-validators' | ||
15 | import { FormValidatorService } from '@app/shared/shared-forms' | ||
6 | import { UserCreate, UserRole } from '@shared/models' | 16 | import { UserCreate, UserRole } from '@shared/models' |
7 | import { UserEdit } from './user-edit' | 17 | import { UserEdit } from './user-edit' |
8 | 18 | ||
@@ -20,7 +30,6 @@ export class UserCreateComponent extends UserEdit implements OnInit { | |||
20 | protected configService: ConfigService, | 30 | protected configService: ConfigService, |
21 | protected screenService: ScreenService, | 31 | protected screenService: ScreenService, |
22 | protected auth: AuthService, | 32 | protected auth: AuthService, |
23 | private userValidatorsService: UserValidatorsService, | ||
24 | private route: ActivatedRoute, | 33 | private route: ActivatedRoute, |
25 | private router: Router, | 34 | private router: Router, |
26 | private notifier: Notifier, | 35 | private notifier: Notifier, |
@@ -41,13 +50,13 @@ export class UserCreateComponent extends UserEdit implements OnInit { | |||
41 | } | 50 | } |
42 | 51 | ||
43 | this.buildForm({ | 52 | this.buildForm({ |
44 | username: this.userValidatorsService.USER_USERNAME, | 53 | username: USER_USERNAME_VALIDATOR, |
45 | channelName: this.userValidatorsService.USER_CHANNEL_NAME, | 54 | channelName: USER_CHANNEL_NAME_VALIDATOR, |
46 | email: this.userValidatorsService.USER_EMAIL, | 55 | email: USER_EMAIL_VALIDATOR, |
47 | password: this.isPasswordOptional() ? this.userValidatorsService.USER_PASSWORD_OPTIONAL : this.userValidatorsService.USER_PASSWORD, | 56 | password: this.isPasswordOptional() ? USER_PASSWORD_OPTIONAL_VALIDATOR : USER_PASSWORD_VALIDATOR, |
48 | role: this.userValidatorsService.USER_ROLE, | 57 | role: USER_ROLE_VALIDATOR, |
49 | videoQuota: this.userValidatorsService.USER_VIDEO_QUOTA, | 58 | videoQuota: USER_VIDEO_QUOTA_VALIDATOR, |
50 | videoQuotaDaily: this.userValidatorsService.USER_VIDEO_QUOTA_DAILY, | 59 | videoQuotaDaily: USER_VIDEO_QUOTA_DAILY_VALIDATOR, |
51 | byPassAutoBlock: null | 60 | byPassAutoBlock: null |
52 | }, defaultValues) | 61 | }, defaultValues) |
53 | } | 62 | } |
diff --git a/client/src/app/+admin/users/user-edit/user-password.component.ts b/client/src/app/+admin/users/user-edit/user-password.component.ts index 25f13495a..05d52b17f 100644 --- a/client/src/app/+admin/users/user-edit/user-password.component.ts +++ b/client/src/app/+admin/users/user-edit/user-password.component.ts | |||
@@ -1,6 +1,7 @@ | |||
1 | import { Component, Input, OnInit } from '@angular/core' | 1 | import { Component, Input, OnInit } from '@angular/core' |
2 | import { Notifier, UserService } from '@app/core' | 2 | import { Notifier, UserService } from '@app/core' |
3 | import { FormReactive, FormValidatorService, UserValidatorsService } from '@app/shared/shared-forms' | 3 | import { USER_PASSWORD_VALIDATOR } from '@app/shared/form-validators/user-validators' |
4 | import { FormReactive, FormValidatorService } from '@app/shared/shared-forms' | ||
4 | import { UserUpdate } from '@shared/models' | 5 | import { UserUpdate } from '@shared/models' |
5 | 6 | ||
6 | @Component({ | 7 | @Component({ |
@@ -17,7 +18,6 @@ export class UserPasswordComponent extends FormReactive implements OnInit { | |||
17 | 18 | ||
18 | constructor ( | 19 | constructor ( |
19 | protected formValidatorService: FormValidatorService, | 20 | protected formValidatorService: FormValidatorService, |
20 | private userValidatorsService: UserValidatorsService, | ||
21 | private notifier: Notifier, | 21 | private notifier: Notifier, |
22 | private userService: UserService | 22 | private userService: UserService |
23 | ) { | 23 | ) { |
@@ -26,7 +26,7 @@ export class UserPasswordComponent extends FormReactive implements OnInit { | |||
26 | 26 | ||
27 | ngOnInit () { | 27 | ngOnInit () { |
28 | this.buildForm({ | 28 | this.buildForm({ |
29 | password: this.userValidatorsService.USER_PASSWORD | 29 | password: USER_PASSWORD_VALIDATOR |
30 | }) | 30 | }) |
31 | } | 31 | } |
32 | 32 | ||
diff --git a/client/src/app/+admin/users/user-edit/user-update.component.ts b/client/src/app/+admin/users/user-edit/user-update.component.ts index 55bc7290e..e16f66a2b 100644 --- a/client/src/app/+admin/users/user-edit/user-update.component.ts +++ b/client/src/app/+admin/users/user-edit/user-update.component.ts | |||
@@ -3,7 +3,13 @@ import { Component, OnDestroy, OnInit } from '@angular/core' | |||
3 | import { ActivatedRoute, Router } from '@angular/router' | 3 | import { ActivatedRoute, Router } from '@angular/router' |
4 | import { ConfigService } from '@app/+admin/config/shared/config.service' | 4 | import { ConfigService } from '@app/+admin/config/shared/config.service' |
5 | import { AuthService, Notifier, ScreenService, ServerService, User, UserService } from '@app/core' | 5 | import { AuthService, Notifier, ScreenService, ServerService, User, UserService } from '@app/core' |
6 | import { FormValidatorService, UserValidatorsService } from '@app/shared/shared-forms' | 6 | import { |
7 | USER_EMAIL_VALIDATOR, | ||
8 | USER_ROLE_VALIDATOR, | ||
9 | USER_VIDEO_QUOTA_DAILY_VALIDATOR, | ||
10 | USER_VIDEO_QUOTA_VALIDATOR | ||
11 | } from '@app/shared/form-validators/user-validators' | ||
12 | import { FormValidatorService } from '@app/shared/shared-forms' | ||
7 | import { User as UserType, UserAdminFlag, UserRole, UserUpdate } from '@shared/models' | 13 | import { User as UserType, UserAdminFlag, UserRole, UserUpdate } from '@shared/models' |
8 | import { UserEdit } from './user-edit' | 14 | import { UserEdit } from './user-edit' |
9 | 15 | ||
@@ -23,7 +29,6 @@ export class UserUpdateComponent extends UserEdit implements OnInit, OnDestroy { | |||
23 | protected configService: ConfigService, | 29 | protected configService: ConfigService, |
24 | protected screenService: ScreenService, | 30 | protected screenService: ScreenService, |
25 | protected auth: AuthService, | 31 | protected auth: AuthService, |
26 | private userValidatorsService: UserValidatorsService, | ||
27 | private route: ActivatedRoute, | 32 | private route: ActivatedRoute, |
28 | private router: Router, | 33 | private router: Router, |
29 | private notifier: Notifier, | 34 | private notifier: Notifier, |
@@ -44,10 +49,10 @@ export class UserUpdateComponent extends UserEdit implements OnInit, OnDestroy { | |||
44 | } | 49 | } |
45 | 50 | ||
46 | this.buildForm({ | 51 | this.buildForm({ |
47 | email: this.userValidatorsService.USER_EMAIL, | 52 | email: USER_EMAIL_VALIDATOR, |
48 | role: this.userValidatorsService.USER_ROLE, | 53 | role: USER_ROLE_VALIDATOR, |
49 | videoQuota: this.userValidatorsService.USER_VIDEO_QUOTA, | 54 | videoQuota: USER_VIDEO_QUOTA_VALIDATOR, |
50 | videoQuotaDaily: this.userValidatorsService.USER_VIDEO_QUOTA_DAILY, | 55 | videoQuotaDaily: USER_VIDEO_QUOTA_DAILY_VALIDATOR, |
51 | byPassAutoBlock: null | 56 | byPassAutoBlock: null |
52 | }, defaultValues) | 57 | }, defaultValues) |
53 | 58 | ||
diff --git a/client/src/app/+admin/users/users.routes.ts b/client/src/app/+admin/users/users.routes.ts index 6560f0260..5183498d6 100644 --- a/client/src/app/+admin/users/users.routes.ts +++ b/client/src/app/+admin/users/users.routes.ts | |||
@@ -24,7 +24,7 @@ export const UsersRoutes: Routes = [ | |||
24 | component: UserListComponent, | 24 | component: UserListComponent, |
25 | data: { | 25 | data: { |
26 | meta: { | 26 | meta: { |
27 | title: 'Users list' | 27 | title: $localize`Users list` |
28 | } | 28 | } |
29 | } | 29 | } |
30 | }, | 30 | }, |
@@ -33,7 +33,7 @@ export const UsersRoutes: Routes = [ | |||
33 | component: UserCreateComponent, | 33 | component: UserCreateComponent, |
34 | data: { | 34 | data: { |
35 | meta: { | 35 | meta: { |
36 | title: 'Create a user' | 36 | title: $localize`Create a user` |
37 | } | 37 | } |
38 | }, | 38 | }, |
39 | resolve: { | 39 | resolve: { |
@@ -45,7 +45,7 @@ export const UsersRoutes: Routes = [ | |||
45 | component: UserUpdateComponent, | 45 | component: UserUpdateComponent, |
46 | data: { | 46 | data: { |
47 | meta: { | 47 | meta: { |
48 | title: 'Update a user' | 48 | title: $localize`Update a user` |
49 | } | 49 | } |
50 | } | 50 | } |
51 | } | 51 | } |
diff --git a/client/src/app/+login/login-routing.module.ts b/client/src/app/+login/login-routing.module.ts index aad55eac8..258ddc5c1 100644 --- a/client/src/app/+login/login-routing.module.ts +++ b/client/src/app/+login/login-routing.module.ts | |||
@@ -11,7 +11,7 @@ const loginRoutes: Routes = [ | |||
11 | canActivate: [ MetaGuard ], | 11 | canActivate: [ MetaGuard ], |
12 | data: { | 12 | data: { |
13 | meta: { | 13 | meta: { |
14 | title: 'Login' | 14 | title: $localize`Login` |
15 | } | 15 | } |
16 | }, | 16 | }, |
17 | resolve: { | 17 | resolve: { |
diff --git a/client/src/app/+login/login.component.ts b/client/src/app/+login/login.component.ts index e9336172e..351750453 100644 --- a/client/src/app/+login/login.component.ts +++ b/client/src/app/+login/login.component.ts | |||
@@ -3,7 +3,8 @@ import { AfterViewInit, Component, ElementRef, OnInit, ViewChild } from '@angula | |||
3 | import { ActivatedRoute } from '@angular/router' | 3 | import { ActivatedRoute } from '@angular/router' |
4 | import { AuthService, Notifier, RedirectService, UserService } from '@app/core' | 4 | import { AuthService, Notifier, RedirectService, UserService } from '@app/core' |
5 | import { HooksService } from '@app/core/plugins/hooks.service' | 5 | import { HooksService } from '@app/core/plugins/hooks.service' |
6 | import { FormReactive, FormValidatorService, LoginValidatorsService } from '@app/shared/shared-forms' | 6 | import { LOGIN_PASSWORD_VALIDATOR, LOGIN_USERNAME_VALIDATOR } from '@app/shared/form-validators/login-validators' |
7 | import { FormReactive, FormValidatorService } from '@app/shared/shared-forms' | ||
7 | import { NgbModal, NgbModalRef } from '@ng-bootstrap/ng-bootstrap' | 8 | import { NgbModal, NgbModalRef } from '@ng-bootstrap/ng-bootstrap' |
8 | import { RegisteredExternalAuthConfig, ServerConfig } from '@shared/models' | 9 | import { RegisteredExternalAuthConfig, ServerConfig } from '@shared/models' |
9 | 10 | ||
@@ -31,7 +32,6 @@ export class LoginComponent extends FormReactive implements OnInit, AfterViewIni | |||
31 | protected formValidatorService: FormValidatorService, | 32 | protected formValidatorService: FormValidatorService, |
32 | private route: ActivatedRoute, | 33 | private route: ActivatedRoute, |
33 | private modalService: NgbModal, | 34 | private modalService: NgbModal, |
34 | private loginValidatorsService: LoginValidatorsService, | ||
35 | private authService: AuthService, | 35 | private authService: AuthService, |
36 | private userService: UserService, | 36 | private userService: UserService, |
37 | private redirectService: RedirectService, | 37 | private redirectService: RedirectService, |
@@ -65,8 +65,8 @@ export class LoginComponent extends FormReactive implements OnInit, AfterViewIni | |||
65 | } | 65 | } |
66 | 66 | ||
67 | this.buildForm({ | 67 | this.buildForm({ |
68 | username: this.loginValidatorsService.LOGIN_USERNAME, | 68 | username: LOGIN_USERNAME_VALIDATOR, |
69 | password: this.loginValidatorsService.LOGIN_PASSWORD | 69 | password: LOGIN_PASSWORD_VALIDATOR |
70 | }) | 70 | }) |
71 | } | 71 | } |
72 | 72 | ||
diff --git a/client/src/app/+my-account/+my-account-video-channels/my-account-video-channel-create.component.ts b/client/src/app/+my-account/+my-account-video-channels/my-account-video-channel-create.component.ts index 5c438c3bf..e2ea87fb8 100644 --- a/client/src/app/+my-account/+my-account-video-channels/my-account-video-channel-create.component.ts +++ b/client/src/app/+my-account/+my-account-video-channels/my-account-video-channel-create.component.ts | |||
@@ -1,7 +1,13 @@ | |||
1 | import { Component, OnInit } from '@angular/core' | 1 | import { Component, OnInit } from '@angular/core' |
2 | import { Router } from '@angular/router' | 2 | import { Router } from '@angular/router' |
3 | import { AuthService, Notifier } from '@app/core' | 3 | import { AuthService, Notifier } from '@app/core' |
4 | import { FormValidatorService, VideoChannelValidatorsService } from '@app/shared/shared-forms' | 4 | import { |
5 | VIDEO_CHANNEL_DESCRIPTION_VALIDATOR, | ||
6 | VIDEO_CHANNEL_DISPLAY_NAME_VALIDATOR, | ||
7 | VIDEO_CHANNEL_NAME_VALIDATOR, | ||
8 | VIDEO_CHANNEL_SUPPORT_VALIDATOR | ||
9 | } from '@app/shared/form-validators/video-channel-validators' | ||
10 | import { FormValidatorService } from '@app/shared/shared-forms' | ||
5 | import { VideoChannelService } from '@app/shared/shared-main' | 11 | import { VideoChannelService } from '@app/shared/shared-main' |
6 | import { VideoChannelCreate } from '@shared/models' | 12 | import { VideoChannelCreate } from '@shared/models' |
7 | import { MyAccountVideoChannelEdit } from './my-account-video-channel-edit' | 13 | import { MyAccountVideoChannelEdit } from './my-account-video-channel-edit' |
@@ -17,7 +23,6 @@ export class MyAccountVideoChannelCreateComponent extends MyAccountVideoChannelE | |||
17 | constructor ( | 23 | constructor ( |
18 | protected formValidatorService: FormValidatorService, | 24 | protected formValidatorService: FormValidatorService, |
19 | private authService: AuthService, | 25 | private authService: AuthService, |
20 | private videoChannelValidatorsService: VideoChannelValidatorsService, | ||
21 | private notifier: Notifier, | 26 | private notifier: Notifier, |
22 | private router: Router, | 27 | private router: Router, |
23 | private videoChannelService: VideoChannelService | 28 | private videoChannelService: VideoChannelService |
@@ -31,10 +36,10 @@ export class MyAccountVideoChannelCreateComponent extends MyAccountVideoChannelE | |||
31 | 36 | ||
32 | ngOnInit () { | 37 | ngOnInit () { |
33 | this.buildForm({ | 38 | this.buildForm({ |
34 | name: this.videoChannelValidatorsService.VIDEO_CHANNEL_NAME, | 39 | name: VIDEO_CHANNEL_NAME_VALIDATOR, |
35 | 'display-name': this.videoChannelValidatorsService.VIDEO_CHANNEL_DISPLAY_NAME, | 40 | 'display-name': VIDEO_CHANNEL_DISPLAY_NAME_VALIDATOR, |
36 | description: this.videoChannelValidatorsService.VIDEO_CHANNEL_DESCRIPTION, | 41 | description: VIDEO_CHANNEL_DESCRIPTION_VALIDATOR, |
37 | support: this.videoChannelValidatorsService.VIDEO_CHANNEL_SUPPORT | 42 | support: VIDEO_CHANNEL_SUPPORT_VALIDATOR |
38 | }) | 43 | }) |
39 | } | 44 | } |
40 | 45 | ||
diff --git a/client/src/app/+my-account/+my-account-video-channels/my-account-video-channel-update.component.ts b/client/src/app/+my-account/+my-account-video-channels/my-account-video-channel-update.component.ts index 485521dcc..01659b8da 100644 --- a/client/src/app/+my-account/+my-account-video-channels/my-account-video-channel-update.component.ts +++ b/client/src/app/+my-account/+my-account-video-channels/my-account-video-channel-update.component.ts | |||
@@ -2,7 +2,12 @@ import { Subscription } from 'rxjs' | |||
2 | import { Component, OnDestroy, OnInit } from '@angular/core' | 2 | import { Component, OnDestroy, OnInit } from '@angular/core' |
3 | import { ActivatedRoute, Router } from '@angular/router' | 3 | import { ActivatedRoute, Router } from '@angular/router' |
4 | import { AuthService, Notifier, ServerService } from '@app/core' | 4 | import { AuthService, Notifier, ServerService } from '@app/core' |
5 | import { FormValidatorService, VideoChannelValidatorsService } from '@app/shared/shared-forms' | 5 | import { |
6 | VIDEO_CHANNEL_DESCRIPTION_VALIDATOR, | ||
7 | VIDEO_CHANNEL_DISPLAY_NAME_VALIDATOR, | ||
8 | VIDEO_CHANNEL_SUPPORT_VALIDATOR | ||
9 | } from '@app/shared/form-validators/video-channel-validators' | ||
10 | import { FormValidatorService } from '@app/shared/shared-forms' | ||
6 | import { VideoChannel, VideoChannelService } from '@app/shared/shared-main' | 11 | import { VideoChannel, VideoChannelService } from '@app/shared/shared-main' |
7 | import { ServerConfig, VideoChannelUpdate } from '@shared/models' | 12 | import { ServerConfig, VideoChannelUpdate } from '@shared/models' |
8 | import { MyAccountVideoChannelEdit } from './my-account-video-channel-edit' | 13 | import { MyAccountVideoChannelEdit } from './my-account-video-channel-edit' |
@@ -23,7 +28,6 @@ export class MyAccountVideoChannelUpdateComponent extends MyAccountVideoChannelE | |||
23 | constructor ( | 28 | constructor ( |
24 | protected formValidatorService: FormValidatorService, | 29 | protected formValidatorService: FormValidatorService, |
25 | private authService: AuthService, | 30 | private authService: AuthService, |
26 | private videoChannelValidatorsService: VideoChannelValidatorsService, | ||
27 | private notifier: Notifier, | 31 | private notifier: Notifier, |
28 | private router: Router, | 32 | private router: Router, |
29 | private route: ActivatedRoute, | 33 | private route: ActivatedRoute, |
@@ -39,9 +43,9 @@ export class MyAccountVideoChannelUpdateComponent extends MyAccountVideoChannelE | |||
39 | .subscribe(config => this.serverConfig = config) | 43 | .subscribe(config => this.serverConfig = config) |
40 | 44 | ||
41 | this.buildForm({ | 45 | this.buildForm({ |
42 | 'display-name': this.videoChannelValidatorsService.VIDEO_CHANNEL_DISPLAY_NAME, | 46 | 'display-name': VIDEO_CHANNEL_DISPLAY_NAME_VALIDATOR, |
43 | description: this.videoChannelValidatorsService.VIDEO_CHANNEL_DESCRIPTION, | 47 | description: VIDEO_CHANNEL_DESCRIPTION_VALIDATOR, |
44 | support: this.videoChannelValidatorsService.VIDEO_CHANNEL_SUPPORT, | 48 | support: VIDEO_CHANNEL_SUPPORT_VALIDATOR, |
45 | bulkVideosSupportUpdate: null | 49 | bulkVideosSupportUpdate: null |
46 | }) | 50 | }) |
47 | 51 | ||
diff --git a/client/src/app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts b/client/src/app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts index 94037e18f..3aa3e360f 100644 --- a/client/src/app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts +++ b/client/src/app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts | |||
@@ -10,7 +10,7 @@ const myAccountVideoChannelsRoutes: Routes = [ | |||
10 | component: MyAccountVideoChannelsComponent, | 10 | component: MyAccountVideoChannelsComponent, |
11 | data: { | 11 | data: { |
12 | meta: { | 12 | meta: { |
13 | title: 'Account video channels' | 13 | title: $localize`Account video channels` |
14 | } | 14 | } |
15 | } | 15 | } |
16 | }, | 16 | }, |
@@ -19,7 +19,7 @@ const myAccountVideoChannelsRoutes: Routes = [ | |||
19 | component: MyAccountVideoChannelCreateComponent, | 19 | component: MyAccountVideoChannelCreateComponent, |
20 | data: { | 20 | data: { |
21 | meta: { | 21 | meta: { |
22 | title: 'Create new video channel' | 22 | title: $localize`Create new video channel` |
23 | } | 23 | } |
24 | } | 24 | } |
25 | }, | 25 | }, |
@@ -28,7 +28,7 @@ const myAccountVideoChannelsRoutes: Routes = [ | |||
28 | component: MyAccountVideoChannelUpdateComponent, | 28 | component: MyAccountVideoChannelUpdateComponent, |
29 | data: { | 29 | data: { |
30 | meta: { | 30 | meta: { |
31 | title: 'Update video channel' | 31 | title: $localize`Update video channel` |
32 | } | 32 | } |
33 | } | 33 | } |
34 | } | 34 | } |
diff --git a/client/src/app/+my-account/my-account-ownership/my-account-accept-ownership/my-account-accept-ownership.component.ts b/client/src/app/+my-account/my-account-ownership/my-account-accept-ownership/my-account-accept-ownership.component.ts index 3bfffe2da..4c4436755 100644 --- a/client/src/app/+my-account/my-account-ownership/my-account-accept-ownership/my-account-accept-ownership.component.ts +++ b/client/src/app/+my-account/my-account-ownership/my-account-accept-ownership/my-account-accept-ownership.component.ts | |||
@@ -1,6 +1,7 @@ | |||
1 | import { Component, ElementRef, EventEmitter, OnInit, Output, ViewChild } from '@angular/core' | 1 | import { Component, ElementRef, EventEmitter, OnInit, Output, ViewChild } from '@angular/core' |
2 | import { AuthService, Notifier } from '@app/core' | 2 | import { AuthService, Notifier } from '@app/core' |
3 | import { FormReactive, FormValidatorService, VideoAcceptOwnershipValidatorsService } from '@app/shared/shared-forms' | 3 | import { OWNERSHIP_CHANGE_CHANNEL_VALIDATOR } from '@app/shared/form-validators/video-ownership-change-validators' |
4 | import { FormReactive, FormValidatorService } from '@app/shared/shared-forms' | ||
4 | import { VideoChannelService, VideoOwnershipService } from '@app/shared/shared-main' | 5 | import { VideoChannelService, VideoOwnershipService } from '@app/shared/shared-main' |
5 | import { NgbModal } from '@ng-bootstrap/ng-bootstrap' | 6 | import { NgbModal } from '@ng-bootstrap/ng-bootstrap' |
6 | import { VideoChangeOwnership, VideoChannel } from '@shared/models' | 7 | import { VideoChangeOwnership, VideoChannel } from '@shared/models' |
@@ -23,7 +24,6 @@ export class MyAccountAcceptOwnershipComponent extends FormReactive implements O | |||
23 | 24 | ||
24 | constructor ( | 25 | constructor ( |
25 | protected formValidatorService: FormValidatorService, | 26 | protected formValidatorService: FormValidatorService, |
26 | private videoChangeOwnershipValidatorsService: VideoAcceptOwnershipValidatorsService, | ||
27 | private videoOwnershipService: VideoOwnershipService, | 27 | private videoOwnershipService: VideoOwnershipService, |
28 | private notifier: Notifier, | 28 | private notifier: Notifier, |
29 | private authService: AuthService, | 29 | private authService: AuthService, |
@@ -40,7 +40,7 @@ export class MyAccountAcceptOwnershipComponent extends FormReactive implements O | |||
40 | .subscribe(videoChannels => this.videoChannels = videoChannels.data) | 40 | .subscribe(videoChannels => this.videoChannels = videoChannels.data) |
41 | 41 | ||
42 | this.buildForm({ | 42 | this.buildForm({ |
43 | channel: this.videoChangeOwnershipValidatorsService.CHANNEL | 43 | channel: OWNERSHIP_CHANGE_CHANNEL_VALIDATOR |
44 | }) | 44 | }) |
45 | } | 45 | } |
46 | 46 | ||
diff --git a/client/src/app/+my-account/my-account-routing.module.ts b/client/src/app/+my-account/my-account-routing.module.ts index 48237e133..0bcb38ef5 100644 --- a/client/src/app/+my-account/my-account-routing.module.ts +++ b/client/src/app/+my-account/my-account-routing.module.ts | |||
@@ -34,7 +34,7 @@ const myAccountRoutes: Routes = [ | |||
34 | component: MyAccountSettingsComponent, | 34 | component: MyAccountSettingsComponent, |
35 | data: { | 35 | data: { |
36 | meta: { | 36 | meta: { |
37 | title: 'Account settings' | 37 | title: $localize`Account settings` |
38 | } | 38 | } |
39 | } | 39 | } |
40 | }, | 40 | }, |
@@ -52,7 +52,7 @@ const myAccountRoutes: Routes = [ | |||
52 | component: MyAccountVideoPlaylistsComponent, | 52 | component: MyAccountVideoPlaylistsComponent, |
53 | data: { | 53 | data: { |
54 | meta: { | 54 | meta: { |
55 | title: 'Account playlists' | 55 | title: $localize`Account playlists` |
56 | } | 56 | } |
57 | } | 57 | } |
58 | }, | 58 | }, |
@@ -61,7 +61,7 @@ const myAccountRoutes: Routes = [ | |||
61 | component: MyAccountVideoPlaylistCreateComponent, | 61 | component: MyAccountVideoPlaylistCreateComponent, |
62 | data: { | 62 | data: { |
63 | meta: { | 63 | meta: { |
64 | title: 'Create new playlist' | 64 | title: $localize`Create new playlist` |
65 | } | 65 | } |
66 | } | 66 | } |
67 | }, | 67 | }, |
@@ -70,7 +70,7 @@ const myAccountRoutes: Routes = [ | |||
70 | component: MyAccountVideoPlaylistElementsComponent, | 70 | component: MyAccountVideoPlaylistElementsComponent, |
71 | data: { | 71 | data: { |
72 | meta: { | 72 | meta: { |
73 | title: 'Playlist elements' | 73 | title: $localize`Playlist elements` |
74 | } | 74 | } |
75 | } | 75 | } |
76 | }, | 76 | }, |
@@ -79,7 +79,7 @@ const myAccountRoutes: Routes = [ | |||
79 | component: MyAccountVideoPlaylistUpdateComponent, | 79 | component: MyAccountVideoPlaylistUpdateComponent, |
80 | data: { | 80 | data: { |
81 | meta: { | 81 | meta: { |
82 | title: 'Update playlist' | 82 | title: $localize`Update playlist` |
83 | } | 83 | } |
84 | } | 84 | } |
85 | }, | 85 | }, |
@@ -89,7 +89,7 @@ const myAccountRoutes: Routes = [ | |||
89 | component: MyAccountVideosComponent, | 89 | component: MyAccountVideosComponent, |
90 | data: { | 90 | data: { |
91 | meta: { | 91 | meta: { |
92 | title: 'Account videos' | 92 | title: $localize`Account videos` |
93 | }, | 93 | }, |
94 | reuse: { | 94 | reuse: { |
95 | enabled: true, | 95 | enabled: true, |
@@ -102,7 +102,7 @@ const myAccountRoutes: Routes = [ | |||
102 | component: MyAccountVideoImportsComponent, | 102 | component: MyAccountVideoImportsComponent, |
103 | data: { | 103 | data: { |
104 | meta: { | 104 | meta: { |
105 | title: 'Account video imports' | 105 | title: $localize`Account video imports` |
106 | } | 106 | } |
107 | } | 107 | } |
108 | }, | 108 | }, |
@@ -111,7 +111,7 @@ const myAccountRoutes: Routes = [ | |||
111 | component: MyAccountSubscriptionsComponent, | 111 | component: MyAccountSubscriptionsComponent, |
112 | data: { | 112 | data: { |
113 | meta: { | 113 | meta: { |
114 | title: 'Account subscriptions' | 114 | title: $localize`Account subscriptions` |
115 | } | 115 | } |
116 | } | 116 | } |
117 | }, | 117 | }, |
@@ -120,7 +120,7 @@ const myAccountRoutes: Routes = [ | |||
120 | component: MyAccountOwnershipComponent, | 120 | component: MyAccountOwnershipComponent, |
121 | data: { | 121 | data: { |
122 | meta: { | 122 | meta: { |
123 | title: 'Ownership changes' | 123 | title: $localize`Ownership changes` |
124 | } | 124 | } |
125 | } | 125 | } |
126 | }, | 126 | }, |
@@ -129,7 +129,7 @@ const myAccountRoutes: Routes = [ | |||
129 | component: MyAccountBlocklistComponent, | 129 | component: MyAccountBlocklistComponent, |
130 | data: { | 130 | data: { |
131 | meta: { | 131 | meta: { |
132 | title: 'Muted accounts' | 132 | title: $localize`Muted accounts` |
133 | } | 133 | } |
134 | } | 134 | } |
135 | }, | 135 | }, |
@@ -138,7 +138,7 @@ const myAccountRoutes: Routes = [ | |||
138 | component: MyAccountServerBlocklistComponent, | 138 | component: MyAccountServerBlocklistComponent, |
139 | data: { | 139 | data: { |
140 | meta: { | 140 | meta: { |
141 | title: 'Muted servers' | 141 | title: $localize`Muted servers` |
142 | } | 142 | } |
143 | } | 143 | } |
144 | }, | 144 | }, |
@@ -147,7 +147,7 @@ const myAccountRoutes: Routes = [ | |||
147 | component: MyAccountHistoryComponent, | 147 | component: MyAccountHistoryComponent, |
148 | data: { | 148 | data: { |
149 | meta: { | 149 | meta: { |
150 | title: 'Videos history' | 150 | title: $localize`Videos history` |
151 | }, | 151 | }, |
152 | reuse: { | 152 | reuse: { |
153 | enabled: true, | 153 | enabled: true, |
@@ -160,7 +160,7 @@ const myAccountRoutes: Routes = [ | |||
160 | component: MyAccountNotificationsComponent, | 160 | component: MyAccountNotificationsComponent, |
161 | data: { | 161 | data: { |
162 | meta: { | 162 | meta: { |
163 | title: 'Notifications' | 163 | title: $localize`Notifications` |
164 | } | 164 | } |
165 | } | 165 | } |
166 | }, | 166 | }, |
@@ -169,7 +169,7 @@ const myAccountRoutes: Routes = [ | |||
169 | component: MyAccountAbusesListComponent, | 169 | component: MyAccountAbusesListComponent, |
170 | data: { | 170 | data: { |
171 | meta: { | 171 | meta: { |
172 | title: 'My abuse reports' | 172 | title: $localize`My abuse reports` |
173 | } | 173 | } |
174 | } | 174 | } |
175 | } | 175 | } |
diff --git a/client/src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts b/client/src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts index 396936ef3..b2b7849c2 100644 --- a/client/src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts +++ b/client/src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.ts | |||
@@ -2,7 +2,8 @@ import { forkJoin } from 'rxjs' | |||
2 | import { tap } from 'rxjs/operators' | 2 | import { tap } from 'rxjs/operators' |
3 | import { Component, OnInit } from '@angular/core' | 3 | import { Component, OnInit } from '@angular/core' |
4 | import { AuthService, ServerService, UserService } from '@app/core' | 4 | import { AuthService, ServerService, UserService } from '@app/core' |
5 | import { FormReactive, FormValidatorService, UserValidatorsService } from '@app/shared/shared-forms' | 5 | import { USER_EMAIL_VALIDATOR, USER_PASSWORD_VALIDATOR } from '@app/shared/form-validators/user-validators' |
6 | import { FormReactive, FormValidatorService } from '@app/shared/shared-forms' | ||
6 | import { User } from '@shared/models' | 7 | import { User } from '@shared/models' |
7 | 8 | ||
8 | @Component({ | 9 | @Component({ |
@@ -17,18 +18,17 @@ export class MyAccountChangeEmailComponent extends FormReactive implements OnIni | |||
17 | 18 | ||
18 | constructor ( | 19 | constructor ( |
19 | protected formValidatorService: FormValidatorService, | 20 | protected formValidatorService: FormValidatorService, |
20 | private userValidatorsService: UserValidatorsService, | ||
21 | private authService: AuthService, | 21 | private authService: AuthService, |
22 | private userService: UserService, | 22 | private userService: UserService, |
23 | private serverService: ServerService | 23 | private serverService: ServerService |
24 | ) { | 24 | ) { |
25 | super() | 25 | super() |
26 | } | 26 | } |
27 | 27 | ||
28 | ngOnInit () { | 28 | ngOnInit () { |
29 | this.buildForm({ | 29 | this.buildForm({ |
30 | 'new-email': this.userValidatorsService.USER_EMAIL, | 30 | 'new-email': USER_EMAIL_VALIDATOR, |
31 | 'password': this.userValidatorsService.USER_PASSWORD | 31 | 'password': USER_PASSWORD_VALIDATOR |
32 | }) | 32 | }) |
33 | 33 | ||
34 | this.user = this.authService.getUser() | 34 | this.user = this.authService.getUser() |
diff --git a/client/src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts b/client/src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts index 91fe4ec72..ba68bab32 100644 --- a/client/src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts +++ b/client/src/app/+my-account/my-account-settings/my-account-change-password/my-account-change-password.component.ts | |||
@@ -1,7 +1,8 @@ | |||
1 | import { filter } from 'rxjs/operators' | 1 | import { filter } from 'rxjs/operators' |
2 | import { Component, OnInit } from '@angular/core' | 2 | import { Component, OnInit } from '@angular/core' |
3 | import { AuthService, Notifier, UserService } from '@app/core' | 3 | import { AuthService, Notifier, UserService } from '@app/core' |
4 | import { FormReactive, FormValidatorService, UserValidatorsService } from '@app/shared/shared-forms' | 4 | import { USER_CONFIRM_PASSWORD_VALIDATOR, USER_PASSWORD_VALIDATOR } from '@app/shared/form-validators/user-validators' |
5 | import { FormReactive, FormValidatorService } from '@app/shared/shared-forms' | ||
5 | import { User } from '@shared/models' | 6 | import { User } from '@shared/models' |
6 | 7 | ||
7 | @Component({ | 8 | @Component({ |
@@ -15,7 +16,6 @@ export class MyAccountChangePasswordComponent extends FormReactive implements On | |||
15 | 16 | ||
16 | constructor ( | 17 | constructor ( |
17 | protected formValidatorService: FormValidatorService, | 18 | protected formValidatorService: FormValidatorService, |
18 | private userValidatorsService: UserValidatorsService, | ||
19 | private notifier: Notifier, | 19 | private notifier: Notifier, |
20 | private authService: AuthService, | 20 | private authService: AuthService, |
21 | private userService: UserService | 21 | private userService: UserService |
@@ -25,9 +25,9 @@ export class MyAccountChangePasswordComponent extends FormReactive implements On | |||
25 | 25 | ||
26 | ngOnInit () { | 26 | ngOnInit () { |
27 | this.buildForm({ | 27 | this.buildForm({ |
28 | 'current-password': this.userValidatorsService.USER_PASSWORD, | 28 | 'current-password': USER_PASSWORD_VALIDATOR, |
29 | 'new-password': this.userValidatorsService.USER_PASSWORD, | 29 | 'new-password': USER_PASSWORD_VALIDATOR, |
30 | 'new-confirmed-password': this.userValidatorsService.USER_CONFIRM_PASSWORD | 30 | 'new-confirmed-password': USER_CONFIRM_PASSWORD_VALIDATOR |
31 | }) | 31 | }) |
32 | 32 | ||
33 | this.user = this.authService.getUser() | 33 | this.user = this.authService.getUser() |
diff --git a/client/src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.ts b/client/src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.ts index ed0984bf7..000a2c0ac 100644 --- a/client/src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.ts +++ b/client/src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.ts | |||
@@ -1,7 +1,8 @@ | |||
1 | import { Subject } from 'rxjs' | 1 | import { Subject } from 'rxjs' |
2 | import { Component, Input, OnInit } from '@angular/core' | 2 | import { Component, Input, OnInit } from '@angular/core' |
3 | import { Notifier, User, UserService } from '@app/core' | 3 | import { Notifier, User, UserService } from '@app/core' |
4 | import { FormReactive, FormValidatorService, UserValidatorsService } from '@app/shared/shared-forms' | 4 | import { USER_DESCRIPTION_VALIDATOR, USER_DISPLAY_NAME_REQUIRED_VALIDATOR } from '@app/shared/form-validators/user-validators' |
5 | import { FormReactive, FormValidatorService } from '@app/shared/shared-forms' | ||
5 | 6 | ||
6 | @Component({ | 7 | @Component({ |
7 | selector: 'my-account-profile', | 8 | selector: 'my-account-profile', |
@@ -16,17 +17,16 @@ export class MyAccountProfileComponent extends FormReactive implements OnInit { | |||
16 | 17 | ||
17 | constructor ( | 18 | constructor ( |
18 | protected formValidatorService: FormValidatorService, | 19 | protected formValidatorService: FormValidatorService, |
19 | private userValidatorsService: UserValidatorsService, | ||
20 | private notifier: Notifier, | 20 | private notifier: Notifier, |
21 | private userService: UserService | 21 | private userService: UserService |
22 | ) { | 22 | ) { |
23 | super() | 23 | super() |
24 | } | 24 | } |
25 | 25 | ||
26 | ngOnInit () { | 26 | ngOnInit () { |
27 | this.buildForm({ | 27 | this.buildForm({ |
28 | 'display-name': this.userValidatorsService.USER_DISPLAY_NAME_REQUIRED, | 28 | 'display-name': USER_DISPLAY_NAME_REQUIRED_VALIDATOR, |
29 | description: this.userValidatorsService.USER_DESCRIPTION | 29 | description: USER_DESCRIPTION_VALIDATOR |
30 | }) | 30 | }) |
31 | 31 | ||
32 | this.userInformationLoaded.subscribe(() => { | 32 | this.userInformationLoaded.subscribe(() => { |
diff --git a/client/src/app/+my-account/my-account-video-playlists/my-account-video-playlist-create.component.ts b/client/src/app/+my-account/my-account-video-playlists/my-account-video-playlist-create.component.ts index 5427dc3a0..7a80aaa92 100644 --- a/client/src/app/+my-account/my-account-video-playlists/my-account-video-playlist-create.component.ts +++ b/client/src/app/+my-account/my-account-video-playlists/my-account-video-playlist-create.component.ts | |||
@@ -2,7 +2,14 @@ import { Component, OnInit } from '@angular/core' | |||
2 | import { Router } from '@angular/router' | 2 | import { Router } from '@angular/router' |
3 | import { AuthService, Notifier, ServerService } from '@app/core' | 3 | import { AuthService, Notifier, ServerService } from '@app/core' |
4 | import { populateAsyncUserVideoChannels } from '@app/helpers' | 4 | import { populateAsyncUserVideoChannels } from '@app/helpers' |
5 | import { FormValidatorService, VideoPlaylistValidatorsService } from '@app/shared/shared-forms' | 5 | import { |
6 | setPlaylistChannelValidator, | ||
7 | VIDEO_PLAYLIST_CHANNEL_ID_VALIDATOR, | ||
8 | VIDEO_PLAYLIST_DESCRIPTION_VALIDATOR, | ||
9 | VIDEO_PLAYLIST_DISPLAY_NAME_VALIDATOR, | ||
10 | VIDEO_PLAYLIST_PRIVACY_VALIDATOR | ||
11 | } from '@app/shared/form-validators/video-playlist-validators' | ||
12 | import { FormValidatorService } from '@app/shared/shared-forms' | ||
6 | import { VideoPlaylistService } from '@app/shared/shared-video-playlist' | 13 | import { VideoPlaylistService } from '@app/shared/shared-video-playlist' |
7 | import { VideoPlaylistCreate } from '@shared/models/videos/playlist/video-playlist-create.model' | 14 | import { VideoPlaylistCreate } from '@shared/models/videos/playlist/video-playlist-create.model' |
8 | import { VideoPlaylistPrivacy } from '@shared/models/videos/playlist/video-playlist-privacy.model' | 15 | import { VideoPlaylistPrivacy } from '@shared/models/videos/playlist/video-playlist-privacy.model' |
@@ -19,7 +26,6 @@ export class MyAccountVideoPlaylistCreateComponent extends MyAccountVideoPlaylis | |||
19 | constructor ( | 26 | constructor ( |
20 | protected formValidatorService: FormValidatorService, | 27 | protected formValidatorService: FormValidatorService, |
21 | private authService: AuthService, | 28 | private authService: AuthService, |
22 | private videoPlaylistValidatorsService: VideoPlaylistValidatorsService, | ||
23 | private notifier: Notifier, | 29 | private notifier: Notifier, |
24 | private router: Router, | 30 | private router: Router, |
25 | private videoPlaylistService: VideoPlaylistService, | 31 | private videoPlaylistService: VideoPlaylistService, |
@@ -30,15 +36,15 @@ export class MyAccountVideoPlaylistCreateComponent extends MyAccountVideoPlaylis | |||
30 | 36 | ||
31 | ngOnInit () { | 37 | ngOnInit () { |
32 | this.buildForm({ | 38 | this.buildForm({ |
33 | displayName: this.videoPlaylistValidatorsService.VIDEO_PLAYLIST_DISPLAY_NAME, | 39 | displayName: VIDEO_PLAYLIST_DISPLAY_NAME_VALIDATOR, |
34 | privacy: this.videoPlaylistValidatorsService.VIDEO_PLAYLIST_PRIVACY, | 40 | privacy: VIDEO_PLAYLIST_PRIVACY_VALIDATOR, |
35 | description: this.videoPlaylistValidatorsService.VIDEO_PLAYLIST_DESCRIPTION, | 41 | description: VIDEO_PLAYLIST_DESCRIPTION_VALIDATOR, |
36 | videoChannelId: this.videoPlaylistValidatorsService.VIDEO_PLAYLIST_CHANNEL_ID, | 42 | videoChannelId: VIDEO_PLAYLIST_CHANNEL_ID_VALIDATOR, |
37 | thumbnailfile: null | 43 | thumbnailfile: null |
38 | }) | 44 | }) |
39 | 45 | ||
40 | this.form.get('privacy').valueChanges.subscribe(privacy => { | 46 | this.form.get('privacy').valueChanges.subscribe(privacy => { |
41 | this.videoPlaylistValidatorsService.setChannelValidator(this.form.get('videoChannelId'), privacy) | 47 | setPlaylistChannelValidator(this.form.get('videoChannelId'), privacy) |
42 | }) | 48 | }) |
43 | 49 | ||
44 | populateAsyncUserVideoChannels(this.authService, this.userVideoChannels) | 50 | populateAsyncUserVideoChannels(this.authService, this.userVideoChannels) |
diff --git a/client/src/app/+my-account/my-account-video-playlists/my-account-video-playlist-elements.component.scss b/client/src/app/+my-account/my-account-video-playlists/my-account-video-playlist-elements.component.scss index 3204167ff..de7e1993f 100644 --- a/client/src/app/+my-account/my-account-video-playlists/my-account-video-playlist-elements.component.scss +++ b/client/src/app/+my-account/my-account-video-playlists/my-account-video-playlist-elements.component.scss | |||
@@ -65,12 +65,19 @@ | |||
65 | padding-top: 20px; | 65 | padding-top: 20px; |
66 | margin-left: calc(#{var(--expanded-horizontal-margin-content)} * -1); | 66 | margin-left: calc(#{var(--expanded-horizontal-margin-content)} * -1); |
67 | } | 67 | } |
68 | } | ||
69 | 68 | ||
70 | @media not all and (hover: hover) and (pointer: fine) { | 69 | .playlist-elements { |
71 | .video { | 70 | padding: 0 !important; |
72 | .more { | 71 | } |
73 | opacity: 1; | 72 | |
73 | ::ng-deep my-video-playlist-element-miniature { | ||
74 | |||
75 | .video { | ||
76 | padding: 5px !important; | ||
77 | } | ||
78 | |||
79 | .position { | ||
80 | margin-right: 5px !important; | ||
74 | } | 81 | } |
75 | } | 82 | } |
76 | } | 83 | } |
diff --git a/client/src/app/+my-account/my-account-video-playlists/my-account-video-playlist-update.component.ts b/client/src/app/+my-account/my-account-video-playlists/my-account-video-playlist-update.component.ts index 149d0d94f..fefc6d607 100644 --- a/client/src/app/+my-account/my-account-video-playlists/my-account-video-playlist-update.component.ts +++ b/client/src/app/+my-account/my-account-video-playlists/my-account-video-playlist-update.component.ts | |||
@@ -4,7 +4,14 @@ import { Component, OnDestroy, OnInit } from '@angular/core' | |||
4 | import { ActivatedRoute, Router } from '@angular/router' | 4 | import { ActivatedRoute, Router } from '@angular/router' |
5 | import { AuthService, Notifier, ServerService } from '@app/core' | 5 | import { AuthService, Notifier, ServerService } from '@app/core' |
6 | import { populateAsyncUserVideoChannels } from '@app/helpers' | 6 | import { populateAsyncUserVideoChannels } from '@app/helpers' |
7 | import { FormValidatorService, VideoPlaylistValidatorsService } from '@app/shared/shared-forms' | 7 | import { |
8 | setPlaylistChannelValidator, | ||
9 | VIDEO_PLAYLIST_CHANNEL_ID_VALIDATOR, | ||
10 | VIDEO_PLAYLIST_DESCRIPTION_VALIDATOR, | ||
11 | VIDEO_PLAYLIST_DISPLAY_NAME_VALIDATOR, | ||
12 | VIDEO_PLAYLIST_PRIVACY_VALIDATOR | ||
13 | } from '@app/shared/form-validators/video-playlist-validators' | ||
14 | import { FormValidatorService } from '@app/shared/shared-forms' | ||
8 | import { VideoPlaylist, VideoPlaylistService } from '@app/shared/shared-video-playlist' | 15 | import { VideoPlaylist, VideoPlaylistService } from '@app/shared/shared-video-playlist' |
9 | import { VideoPlaylistUpdate } from '@shared/models' | 16 | import { VideoPlaylistUpdate } from '@shared/models' |
10 | import { MyAccountVideoPlaylistEdit } from './my-account-video-playlist-edit' | 17 | import { MyAccountVideoPlaylistEdit } from './my-account-video-playlist-edit' |
@@ -23,7 +30,6 @@ export class MyAccountVideoPlaylistUpdateComponent extends MyAccountVideoPlaylis | |||
23 | constructor ( | 30 | constructor ( |
24 | protected formValidatorService: FormValidatorService, | 31 | protected formValidatorService: FormValidatorService, |
25 | private authService: AuthService, | 32 | private authService: AuthService, |
26 | private videoPlaylistValidatorsService: VideoPlaylistValidatorsService, | ||
27 | private notifier: Notifier, | 33 | private notifier: Notifier, |
28 | private router: Router, | 34 | private router: Router, |
29 | private route: ActivatedRoute, | 35 | private route: ActivatedRoute, |
@@ -35,15 +41,15 @@ export class MyAccountVideoPlaylistUpdateComponent extends MyAccountVideoPlaylis | |||
35 | 41 | ||
36 | ngOnInit () { | 42 | ngOnInit () { |
37 | this.buildForm({ | 43 | this.buildForm({ |
38 | displayName: this.videoPlaylistValidatorsService.VIDEO_PLAYLIST_DISPLAY_NAME, | 44 | displayName: VIDEO_PLAYLIST_DISPLAY_NAME_VALIDATOR, |
39 | privacy: this.videoPlaylistValidatorsService.VIDEO_PLAYLIST_PRIVACY, | 45 | privacy: VIDEO_PLAYLIST_PRIVACY_VALIDATOR, |
40 | description: this.videoPlaylistValidatorsService.VIDEO_PLAYLIST_DESCRIPTION, | 46 | description: VIDEO_PLAYLIST_DESCRIPTION_VALIDATOR, |
41 | videoChannelId: this.videoPlaylistValidatorsService.VIDEO_PLAYLIST_CHANNEL_ID, | 47 | videoChannelId: VIDEO_PLAYLIST_CHANNEL_ID_VALIDATOR, |
42 | thumbnailfile: null | 48 | thumbnailfile: null |
43 | }) | 49 | }) |
44 | 50 | ||
45 | this.form.get('privacy').valueChanges.subscribe(privacy => { | 51 | this.form.get('privacy').valueChanges.subscribe(privacy => { |
46 | this.videoPlaylistValidatorsService.setChannelValidator(this.form.get('videoChannelId'), privacy) | 52 | setPlaylistChannelValidator(this.form.get('videoChannelId'), privacy) |
47 | }) | 53 | }) |
48 | 54 | ||
49 | populateAsyncUserVideoChannels(this.authService, this.userVideoChannels) | 55 | populateAsyncUserVideoChannels(this.authService, this.userVideoChannels) |
diff --git a/client/src/app/+my-account/my-account-videos/video-change-ownership/video-change-ownership.component.ts b/client/src/app/+my-account/my-account-videos/video-change-ownership/video-change-ownership.component.ts index edd691694..84237dee1 100644 --- a/client/src/app/+my-account/my-account-videos/video-change-ownership/video-change-ownership.component.ts +++ b/client/src/app/+my-account/my-account-videos/video-change-ownership/video-change-ownership.component.ts | |||
@@ -1,6 +1,7 @@ | |||
1 | import { Component, ElementRef, OnInit, ViewChild } from '@angular/core' | 1 | import { Component, ElementRef, OnInit, ViewChild } from '@angular/core' |
2 | import { Notifier, UserService } from '@app/core' | 2 | import { Notifier, UserService } from '@app/core' |
3 | import { FormReactive, FormValidatorService, VideoChangeOwnershipValidatorsService } from '@app/shared/shared-forms' | 3 | import { OWNERSHIP_CHANGE_USERNAME_VALIDATOR } from '@app/shared/form-validators/video-ownership-change-validators' |
4 | import { FormReactive, FormValidatorService } from '@app/shared/shared-forms' | ||
4 | import { Video, VideoOwnershipService } from '@app/shared/shared-main' | 5 | import { Video, VideoOwnershipService } from '@app/shared/shared-main' |
5 | import { NgbModal } from '@ng-bootstrap/ng-bootstrap' | 6 | import { NgbModal } from '@ng-bootstrap/ng-bootstrap' |
6 | 7 | ||
@@ -20,7 +21,6 @@ export class VideoChangeOwnershipComponent extends FormReactive implements OnIni | |||
20 | 21 | ||
21 | constructor ( | 22 | constructor ( |
22 | protected formValidatorService: FormValidatorService, | 23 | protected formValidatorService: FormValidatorService, |
23 | private videoChangeOwnershipValidatorsService: VideoChangeOwnershipValidatorsService, | ||
24 | private videoOwnershipService: VideoOwnershipService, | 24 | private videoOwnershipService: VideoOwnershipService, |
25 | private notifier: Notifier, | 25 | private notifier: Notifier, |
26 | private userService: UserService, | 26 | private userService: UserService, |
@@ -31,7 +31,7 @@ export class VideoChangeOwnershipComponent extends FormReactive implements OnIni | |||
31 | 31 | ||
32 | ngOnInit () { | 32 | ngOnInit () { |
33 | this.buildForm({ | 33 | this.buildForm({ |
34 | username: this.videoChangeOwnershipValidatorsService.USERNAME | 34 | username: OWNERSHIP_CHANGE_USERNAME_VALIDATOR |
35 | }) | 35 | }) |
36 | this.usernamePropositions = [] | 36 | this.usernamePropositions = [] |
37 | } | 37 | } |
diff --git a/client/src/app/+page-not-found/page-not-found-routing.module.ts b/client/src/app/+page-not-found/page-not-found-routing.module.ts index e3407099d..11399fbfd 100644 --- a/client/src/app/+page-not-found/page-not-found-routing.module.ts +++ b/client/src/app/+page-not-found/page-not-found-routing.module.ts | |||
@@ -10,7 +10,7 @@ const pageNotFoundRoutes: Routes = [ | |||
10 | canActivate: [ MetaGuard ], | 10 | canActivate: [ MetaGuard ], |
11 | data: { | 11 | data: { |
12 | meta: { | 12 | meta: { |
13 | title: 'Not found' | 13 | title: $localize`Not found` |
14 | } | 14 | } |
15 | } | 15 | } |
16 | } | 16 | } |
diff --git a/client/src/app/+reset-password/reset-password-routing.module.ts b/client/src/app/+reset-password/reset-password-routing.module.ts index 31bc08709..7f1ba2f68 100644 --- a/client/src/app/+reset-password/reset-password-routing.module.ts +++ b/client/src/app/+reset-password/reset-password-routing.module.ts | |||
@@ -10,7 +10,7 @@ const resetPasswordRoutes: Routes = [ | |||
10 | canActivate: [ MetaGuard ], | 10 | canActivate: [ MetaGuard ], |
11 | data: { | 11 | data: { |
12 | meta: { | 12 | meta: { |
13 | title: 'Reset password' | 13 | title: `Reset password` |
14 | } | 14 | } |
15 | } | 15 | } |
16 | } | 16 | } |
diff --git a/client/src/app/+reset-password/reset-password.component.ts b/client/src/app/+reset-password/reset-password.component.ts index 16e4f4090..ce9144170 100644 --- a/client/src/app/+reset-password/reset-password.component.ts +++ b/client/src/app/+reset-password/reset-password.component.ts | |||
@@ -1,7 +1,9 @@ | |||
1 | import { Component, OnInit } from '@angular/core' | 1 | import { Component, OnInit } from '@angular/core' |
2 | import { ActivatedRoute, Router } from '@angular/router' | 2 | import { ActivatedRoute, Router } from '@angular/router' |
3 | import { Notifier, UserService } from '@app/core' | 3 | import { Notifier, UserService } from '@app/core' |
4 | import { FormReactive, FormValidatorService, ResetPasswordValidatorsService, UserValidatorsService } from '@app/shared/shared-forms' | 4 | import { RESET_PASSWORD_CONFIRM_VALIDATOR } from '@app/shared/form-validators/reset-password-validators' |
5 | import { USER_PASSWORD_VALIDATOR } from '@app/shared/form-validators/user-validators' | ||
6 | import { FormReactive, FormValidatorService } from '@app/shared/shared-forms' | ||
5 | 7 | ||
6 | @Component({ | 8 | @Component({ |
7 | selector: 'my-login', | 9 | selector: 'my-login', |
@@ -15,8 +17,6 @@ export class ResetPasswordComponent extends FormReactive implements OnInit { | |||
15 | 17 | ||
16 | constructor ( | 18 | constructor ( |
17 | protected formValidatorService: FormValidatorService, | 19 | protected formValidatorService: FormValidatorService, |
18 | private resetPasswordValidatorsService: ResetPasswordValidatorsService, | ||
19 | private userValidatorsService: UserValidatorsService, | ||
20 | private userService: UserService, | 20 | private userService: UserService, |
21 | private notifier: Notifier, | 21 | private notifier: Notifier, |
22 | private router: Router, | 22 | private router: Router, |
@@ -27,8 +27,8 @@ export class ResetPasswordComponent extends FormReactive implements OnInit { | |||
27 | 27 | ||
28 | ngOnInit () { | 28 | ngOnInit () { |
29 | this.buildForm({ | 29 | this.buildForm({ |
30 | password: this.userValidatorsService.USER_PASSWORD, | 30 | password: USER_PASSWORD_VALIDATOR, |
31 | 'password-confirm': this.resetPasswordValidatorsService.RESET_PASSWORD_CONFIRM | 31 | 'password-confirm': RESET_PASSWORD_CONFIRM_VALIDATOR |
32 | }) | 32 | }) |
33 | 33 | ||
34 | this.userId = this.route.snapshot.queryParams['userId'] | 34 | this.userId = this.route.snapshot.queryParams['userId'] |
diff --git a/client/src/app/+search/search-routing.module.ts b/client/src/app/+search/search-routing.module.ts index 14a0d0a13..e5d7d1ede 100644 --- a/client/src/app/+search/search-routing.module.ts +++ b/client/src/app/+search/search-routing.module.ts | |||
@@ -12,7 +12,7 @@ const searchRoutes: Routes = [ | |||
12 | canActivate: [ MetaGuard ], | 12 | canActivate: [ MetaGuard ], |
13 | data: { | 13 | data: { |
14 | meta: { | 14 | meta: { |
15 | title: 'Search' | 15 | title: $localize`Search` |
16 | } | 16 | } |
17 | } | 17 | } |
18 | }, | 18 | }, |
diff --git a/client/src/app/+signup/+register/register-routing.module.ts b/client/src/app/+signup/+register/register-routing.module.ts index 0deed8a9b..61a2fa42d 100644 --- a/client/src/app/+signup/+register/register-routing.module.ts +++ b/client/src/app/+signup/+register/register-routing.module.ts | |||
@@ -11,7 +11,7 @@ const registerRoutes: Routes = [ | |||
11 | canActivate: [ MetaGuard, UnloggedGuard ], | 11 | canActivate: [ MetaGuard, UnloggedGuard ], |
12 | data: { | 12 | data: { |
13 | meta: { | 13 | meta: { |
14 | title: 'Register' | 14 | title: $localize`Register` |
15 | } | 15 | } |
16 | }, | 16 | }, |
17 | resolve: { | 17 | resolve: { |
diff --git a/client/src/app/+signup/+register/register-step-channel.component.ts b/client/src/app/+signup/+register/register-step-channel.component.ts index 8a0120840..d965a7865 100644 --- a/client/src/app/+signup/+register/register-step-channel.component.ts +++ b/client/src/app/+signup/+register/register-step-channel.component.ts | |||
@@ -3,7 +3,8 @@ import { pairwise } from 'rxjs/operators' | |||
3 | import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core' | 3 | import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core' |
4 | import { FormGroup } from '@angular/forms' | 4 | import { FormGroup } from '@angular/forms' |
5 | import { UserService } from '@app/core' | 5 | import { UserService } from '@app/core' |
6 | import { FormReactive, FormValidatorService, VideoChannelValidatorsService } from '@app/shared/shared-forms' | 6 | import { VIDEO_CHANNEL_DISPLAY_NAME_VALIDATOR, VIDEO_CHANNEL_NAME_VALIDATOR } from '@app/shared/form-validators/video-channel-validators' |
7 | import { FormReactive, FormValidatorService } from '@app/shared/shared-forms' | ||
7 | 8 | ||
8 | @Component({ | 9 | @Component({ |
9 | selector: 'my-register-step-channel', | 10 | selector: 'my-register-step-channel', |
@@ -16,8 +17,7 @@ export class RegisterStepChannelComponent extends FormReactive implements OnInit | |||
16 | 17 | ||
17 | constructor ( | 18 | constructor ( |
18 | protected formValidatorService: FormValidatorService, | 19 | protected formValidatorService: FormValidatorService, |
19 | private userService: UserService, | 20 | private userService: UserService |
20 | private videoChannelValidatorsService: VideoChannelValidatorsService | ||
21 | ) { | 21 | ) { |
22 | super() | 22 | super() |
23 | } | 23 | } |
@@ -28,8 +28,8 @@ export class RegisterStepChannelComponent extends FormReactive implements OnInit | |||
28 | 28 | ||
29 | ngOnInit () { | 29 | ngOnInit () { |
30 | this.buildForm({ | 30 | this.buildForm({ |
31 | displayName: this.videoChannelValidatorsService.VIDEO_CHANNEL_DISPLAY_NAME, | 31 | displayName: VIDEO_CHANNEL_DISPLAY_NAME_VALIDATOR, |
32 | name: this.videoChannelValidatorsService.VIDEO_CHANNEL_NAME | 32 | name: VIDEO_CHANNEL_NAME_VALIDATOR |
33 | }) | 33 | }) |
34 | 34 | ||
35 | setTimeout(() => this.formBuilt.emit(this.form)) | 35 | setTimeout(() => this.formBuilt.emit(this.form)) |
diff --git a/client/src/app/+signup/+register/register-step-user.component.ts b/client/src/app/+signup/+register/register-step-user.component.ts index 3d9ab8b6b..65536568b 100644 --- a/client/src/app/+signup/+register/register-step-user.component.ts +++ b/client/src/app/+signup/+register/register-step-user.component.ts | |||
@@ -3,7 +3,14 @@ import { pairwise } from 'rxjs/operators' | |||
3 | import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core' | 3 | import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core' |
4 | import { FormGroup } from '@angular/forms' | 4 | import { FormGroup } from '@angular/forms' |
5 | import { UserService } from '@app/core' | 5 | import { UserService } from '@app/core' |
6 | import { FormReactive, FormValidatorService, UserValidatorsService } from '@app/shared/shared-forms' | 6 | import { |
7 | USER_DISPLAY_NAME_REQUIRED_VALIDATOR, | ||
8 | USER_EMAIL_VALIDATOR, | ||
9 | USER_PASSWORD_VALIDATOR, | ||
10 | USER_TERMS_VALIDATOR, | ||
11 | USER_USERNAME_VALIDATOR | ||
12 | } from '@app/shared/form-validators/user-validators' | ||
13 | import { FormReactive, FormValidatorService } from '@app/shared/shared-forms' | ||
7 | 14 | ||
8 | @Component({ | 15 | @Component({ |
9 | selector: 'my-register-step-user', | 16 | selector: 'my-register-step-user', |
@@ -19,8 +26,7 @@ export class RegisterStepUserComponent extends FormReactive implements OnInit { | |||
19 | 26 | ||
20 | constructor ( | 27 | constructor ( |
21 | protected formValidatorService: FormValidatorService, | 28 | protected formValidatorService: FormValidatorService, |
22 | private userService: UserService, | 29 | private userService: UserService |
23 | private userValidatorsService: UserValidatorsService | ||
24 | ) { | 30 | ) { |
25 | super() | 31 | super() |
26 | } | 32 | } |
@@ -31,11 +37,11 @@ export class RegisterStepUserComponent extends FormReactive implements OnInit { | |||
31 | 37 | ||
32 | ngOnInit () { | 38 | ngOnInit () { |
33 | this.buildForm({ | 39 | this.buildForm({ |
34 | displayName: this.userValidatorsService.USER_DISPLAY_NAME_REQUIRED, | 40 | displayName: USER_DISPLAY_NAME_REQUIRED_VALIDATOR, |
35 | username: this.userValidatorsService.USER_USERNAME, | 41 | username: USER_USERNAME_VALIDATOR, |
36 | password: this.userValidatorsService.USER_PASSWORD, | 42 | password: USER_PASSWORD_VALIDATOR, |
37 | email: this.userValidatorsService.USER_EMAIL, | 43 | email: USER_EMAIL_VALIDATOR, |
38 | terms: this.userValidatorsService.USER_TERMS | 44 | terms: USER_TERMS_VALIDATOR |
39 | }) | 45 | }) |
40 | 46 | ||
41 | setTimeout(() => this.formBuilt.emit(this.form)) | 47 | setTimeout(() => this.formBuilt.emit(this.form)) |
diff --git a/client/src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts b/client/src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts index b26581d2b..830dd9962 100644 --- a/client/src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts +++ b/client/src/app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts | |||
@@ -1,6 +1,7 @@ | |||
1 | import { Component, OnInit } from '@angular/core' | 1 | import { Component, OnInit } from '@angular/core' |
2 | import { Notifier, RedirectService, ServerService, UserService } from '@app/core' | 2 | import { Notifier, RedirectService, ServerService, UserService } from '@app/core' |
3 | import { FormReactive, FormValidatorService, UserValidatorsService } from '@app/shared/shared-forms' | 3 | import { USER_EMAIL_VALIDATOR } from '@app/shared/form-validators/user-validators' |
4 | import { FormReactive, FormValidatorService } from '@app/shared/shared-forms' | ||
4 | import { ServerConfig } from '@shared/models' | 5 | import { ServerConfig } from '@shared/models' |
5 | 6 | ||
6 | @Component({ | 7 | @Component({ |
@@ -14,7 +15,6 @@ export class VerifyAccountAskSendEmailComponent extends FormReactive implements | |||
14 | 15 | ||
15 | constructor ( | 16 | constructor ( |
16 | protected formValidatorService: FormValidatorService, | 17 | protected formValidatorService: FormValidatorService, |
17 | private userValidatorsService: UserValidatorsService, | ||
18 | private userService: UserService, | 18 | private userService: UserService, |
19 | private serverService: ServerService, | 19 | private serverService: ServerService, |
20 | private notifier: Notifier, | 20 | private notifier: Notifier, |
@@ -33,7 +33,7 @@ export class VerifyAccountAskSendEmailComponent extends FormReactive implements | |||
33 | .subscribe(config => this.serverConfig = config) | 33 | .subscribe(config => this.serverConfig = config) |
34 | 34 | ||
35 | this.buildForm({ | 35 | this.buildForm({ |
36 | 'verify-email-email': this.userValidatorsService.USER_EMAIL | 36 | 'verify-email-email': USER_EMAIL_VALIDATOR |
37 | }) | 37 | }) |
38 | } | 38 | } |
39 | 39 | ||
diff --git a/client/src/app/+signup/+verify-account/verify-account-routing.module.ts b/client/src/app/+signup/+verify-account/verify-account-routing.module.ts index 16d5fe0d0..c9ac67e4c 100644 --- a/client/src/app/+signup/+verify-account/verify-account-routing.module.ts +++ b/client/src/app/+signup/+verify-account/verify-account-routing.module.ts | |||
@@ -14,7 +14,7 @@ const verifyAccountRoutes: Routes = [ | |||
14 | component: VerifyAccountEmailComponent, | 14 | component: VerifyAccountEmailComponent, |
15 | data: { | 15 | data: { |
16 | meta: { | 16 | meta: { |
17 | title: 'Verify account email' | 17 | title: $localize`Verify account email` |
18 | } | 18 | } |
19 | } | 19 | } |
20 | }, | 20 | }, |
@@ -23,7 +23,7 @@ const verifyAccountRoutes: Routes = [ | |||
23 | component: VerifyAccountAskSendEmailComponent, | 23 | component: VerifyAccountAskSendEmailComponent, |
24 | data: { | 24 | data: { |
25 | meta: { | 25 | meta: { |
26 | title: 'Verify account ask send email' | 26 | title: $localize`Verify account ask send email` |
27 | } | 27 | } |
28 | } | 28 | } |
29 | } | 29 | } |
diff --git a/client/src/app/+video-channels/video-channels-routing.module.ts b/client/src/app/+video-channels/video-channels-routing.module.ts index e79e6a680..f8c32f14e 100644 --- a/client/src/app/+video-channels/video-channels-routing.module.ts +++ b/client/src/app/+video-channels/video-channels-routing.module.ts | |||
@@ -22,7 +22,7 @@ const videoChannelsRoutes: Routes = [ | |||
22 | component: VideoChannelVideosComponent, | 22 | component: VideoChannelVideosComponent, |
23 | data: { | 23 | data: { |
24 | meta: { | 24 | meta: { |
25 | title: 'Video channel videos' | 25 | title: $localize`Video channel videos` |
26 | }, | 26 | }, |
27 | reuse: { | 27 | reuse: { |
28 | enabled: true, | 28 | enabled: true, |
@@ -35,7 +35,7 @@ const videoChannelsRoutes: Routes = [ | |||
35 | component: VideoChannelPlaylistsComponent, | 35 | component: VideoChannelPlaylistsComponent, |
36 | data: { | 36 | data: { |
37 | meta: { | 37 | meta: { |
38 | title: 'Video channel playlists' | 38 | title: $localize`Video channel playlists` |
39 | } | 39 | } |
40 | } | 40 | } |
41 | }, | 41 | }, |
@@ -44,7 +44,7 @@ const videoChannelsRoutes: Routes = [ | |||
44 | component: VideoChannelAboutComponent, | 44 | component: VideoChannelAboutComponent, |
45 | data: { | 45 | data: { |
46 | meta: { | 46 | meta: { |
47 | title: 'About video channel' | 47 | title: $localize`About video channel` |
48 | } | 48 | } |
49 | } | 49 | } |
50 | } | 50 | } |
diff --git a/client/src/app/+videos/+video-edit/shared/video-caption-add-modal.component.ts b/client/src/app/+videos/+video-edit/shared/video-caption-add-modal.component.ts index a90d04ce8..e48d16527 100644 --- a/client/src/app/+videos/+video-edit/shared/video-caption-add-modal.component.ts +++ b/client/src/app/+videos/+video-edit/shared/video-caption-add-modal.component.ts | |||
@@ -1,6 +1,7 @@ | |||
1 | import { Component, ElementRef, EventEmitter, Input, OnInit, Output, ViewChild } from '@angular/core' | 1 | import { Component, ElementRef, EventEmitter, Input, OnInit, Output, ViewChild } from '@angular/core' |
2 | import { ServerService } from '@app/core' | 2 | import { ServerService } from '@app/core' |
3 | import { FormReactive, FormValidatorService, VideoCaptionsValidatorsService } from '@app/shared/shared-forms' | 3 | import { VIDEO_CAPTION_FILE_VALIDATOR, VIDEO_CAPTION_LANGUAGE_VALIDATOR } from '@app/shared/form-validators/video-captions-validators' |
4 | import { FormReactive, FormValidatorService } from '@app/shared/shared-forms' | ||
4 | import { VideoCaptionEdit } from '@app/shared/shared-main' | 5 | import { VideoCaptionEdit } from '@app/shared/shared-main' |
5 | import { NgbModal, NgbModalRef } from '@ng-bootstrap/ng-bootstrap' | 6 | import { NgbModal, NgbModalRef } from '@ng-bootstrap/ng-bootstrap' |
6 | import { ServerConfig, VideoConstant } from '@shared/models' | 7 | import { ServerConfig, VideoConstant } from '@shared/models' |
@@ -27,8 +28,7 @@ export class VideoCaptionAddModalComponent extends FormReactive implements OnIni | |||
27 | constructor ( | 28 | constructor ( |
28 | protected formValidatorService: FormValidatorService, | 29 | protected formValidatorService: FormValidatorService, |
29 | private modalService: NgbModal, | 30 | private modalService: NgbModal, |
30 | private serverService: ServerService, | 31 | private serverService: ServerService |
31 | private videoCaptionsValidatorsService: VideoCaptionsValidatorsService | ||
32 | ) { | 32 | ) { |
33 | super() | 33 | super() |
34 | } | 34 | } |
@@ -46,8 +46,8 @@ export class VideoCaptionAddModalComponent extends FormReactive implements OnIni | |||
46 | .subscribe(languages => this.videoCaptionLanguages = languages) | 46 | .subscribe(languages => this.videoCaptionLanguages = languages) |
47 | 47 | ||
48 | this.buildForm({ | 48 | this.buildForm({ |
49 | language: this.videoCaptionsValidatorsService.VIDEO_CAPTION_LANGUAGE, | 49 | language: VIDEO_CAPTION_LANGUAGE_VALIDATOR, |
50 | captionfile: this.videoCaptionsValidatorsService.VIDEO_CAPTION_FILE | 50 | captionfile: VIDEO_CAPTION_FILE_VALIDATOR |
51 | }) | 51 | }) |
52 | } | 52 | } |
53 | 53 | ||
diff --git a/client/src/app/+videos/+video-edit/shared/video-edit.component.html b/client/src/app/+videos/+video-edit/shared/video-edit.component.html index ae3413e79..842997b20 100644 --- a/client/src/app/+videos/+video-edit/shared/video-edit.component.html +++ b/client/src/app/+videos/+video-edit/shared/video-edit.component.html | |||
@@ -265,6 +265,21 @@ | |||
265 | </ng-template> | 265 | </ng-template> |
266 | </ng-container> | 266 | </ng-container> |
267 | 267 | ||
268 | <ng-container ngbNavItem *ngIf="pluginFields.length !== 0"> | ||
269 | <a ngbNavLink i18n>Plugin settings</a> | ||
270 | |||
271 | <ng-template ngbNavContent> | ||
272 | <div class="row plugin-settings"> | ||
273 | |||
274 | <div class="col-md-12 col-xl-8"> | ||
275 | <div *ngFor="let pluginSetting of pluginFields" class="form-group"> | ||
276 | <my-dynamic-form-field [form]="pluginDataFormGroup" [formErrors]="formErrors" [setting]="pluginSetting.commonOptions"></my-dynamic-form-field> | ||
277 | </div> | ||
278 | </div> | ||
279 | |||
280 | </div> | ||
281 | </ng-template> | ||
282 | </ng-container> | ||
268 | </div> | 283 | </div> |
269 | 284 | ||
270 | <div [ngbNavOutlet]="nav"></div> | 285 | <div [ngbNavOutlet]="nav"></div> |
diff --git a/client/src/app/+videos/+video-edit/shared/video-edit.component.scss b/client/src/app/+videos/+video-edit/shared/video-edit.component.scss index 9caf009c5..3082a4f72 100644 --- a/client/src/app/+videos/+video-edit/shared/video-edit.component.scss +++ b/client/src/app/+videos/+video-edit/shared/video-edit.component.scss | |||
@@ -7,7 +7,8 @@ | |||
7 | @import 'variables'; | 7 | @import 'variables'; |
8 | @import 'mixins'; | 8 | @import 'mixins'; |
9 | 9 | ||
10 | label { | 10 | label, |
11 | my-dynamic-form-field ::ng-deep label { | ||
11 | font-weight: $font-regular; | 12 | font-weight: $font-regular; |
12 | font-size: 100%; | 13 | font-size: 100%; |
13 | } | 14 | } |
diff --git a/client/src/app/+videos/+video-edit/shared/video-edit.component.ts b/client/src/app/+videos/+video-edit/shared/video-edit.component.ts index 050b6d931..f04111e69 100644 --- a/client/src/app/+videos/+video-edit/shared/video-edit.component.ts +++ b/client/src/app/+videos/+video-edit/shared/video-edit.component.ts | |||
@@ -1,13 +1,27 @@ | |||
1 | import { forkJoin } from 'rxjs' | 1 | import { forkJoin } from 'rxjs' |
2 | import { map } from 'rxjs/operators' | 2 | import { map } from 'rxjs/operators' |
3 | import { Component, Input, NgZone, OnDestroy, OnInit, ViewChild } from '@angular/core' | 3 | import { Component, EventEmitter, Input, NgZone, OnDestroy, OnInit, Output, ViewChild } from '@angular/core' |
4 | import { FormArray, FormControl, FormGroup, ValidatorFn, Validators } from '@angular/forms' | 4 | import { FormArray, FormControl, FormGroup, ValidatorFn, Validators } from '@angular/forms' |
5 | import { ServerService } from '@app/core' | 5 | import { HooksService, PluginService, ServerService } from '@app/core' |
6 | import { removeElementFromArray } from '@app/helpers' | 6 | import { removeElementFromArray } from '@app/helpers' |
7 | import { FormReactiveValidationMessages, FormValidatorService, SelectChannelItem, VideoValidatorsService } from '@app/shared/shared-forms' | 7 | import { |
8 | VIDEO_CATEGORY_VALIDATOR, | ||
9 | VIDEO_CHANNEL_VALIDATOR, | ||
10 | VIDEO_DESCRIPTION_VALIDATOR, | ||
11 | VIDEO_LANGUAGE_VALIDATOR, | ||
12 | VIDEO_LICENCE_VALIDATOR, | ||
13 | VIDEO_NAME_VALIDATOR, | ||
14 | VIDEO_ORIGINALLY_PUBLISHED_AT_VALIDATOR, | ||
15 | VIDEO_PRIVACY_VALIDATOR, | ||
16 | VIDEO_SCHEDULE_PUBLICATION_AT_VALIDATOR, | ||
17 | VIDEO_SUPPORT_VALIDATOR, | ||
18 | VIDEO_TAGS_ARRAY_VALIDATOR | ||
19 | } from '@app/shared/form-validators/video-validators' | ||
20 | import { FormReactiveValidationMessages, FormValidatorService, SelectChannelItem } from '@app/shared/shared-forms' | ||
8 | import { InstanceService } from '@app/shared/shared-instance' | 21 | import { InstanceService } from '@app/shared/shared-instance' |
9 | import { VideoCaptionEdit, VideoEdit, VideoService } from '@app/shared/shared-main' | 22 | import { VideoCaptionEdit, VideoEdit, VideoService } from '@app/shared/shared-main' |
10 | import { ServerConfig, VideoConstant, VideoPrivacy } from '@shared/models' | 23 | import { ServerConfig, VideoConstant, VideoPrivacy } from '@shared/models' |
24 | import { RegisterClientFormFieldOptions, RegisterClientVideoFieldOptions } from '@shared/models/plugins/register-client-form-field.model' | ||
11 | import { I18nPrimengCalendarService } from './i18n-primeng-calendar.service' | 25 | import { I18nPrimengCalendarService } from './i18n-primeng-calendar.service' |
12 | import { VideoCaptionAddModalComponent } from './video-caption-add-modal.component' | 26 | import { VideoCaptionAddModalComponent } from './video-caption-add-modal.component' |
13 | 27 | ||
@@ -26,9 +40,12 @@ export class VideoEditComponent implements OnInit, OnDestroy { | |||
26 | @Input() schedulePublicationPossible = true | 40 | @Input() schedulePublicationPossible = true |
27 | @Input() videoCaptions: (VideoCaptionEdit & { captionPath?: string })[] = [] | 41 | @Input() videoCaptions: (VideoCaptionEdit & { captionPath?: string })[] = [] |
28 | @Input() waitTranscodingEnabled = true | 42 | @Input() waitTranscodingEnabled = true |
43 | @Input() type: 'import-url' | 'import-torrent' | 'upload' | 'update' | ||
29 | 44 | ||
30 | @ViewChild('videoCaptionAddModal', { static: true }) videoCaptionAddModal: VideoCaptionAddModalComponent | 45 | @ViewChild('videoCaptionAddModal', { static: true }) videoCaptionAddModal: VideoCaptionAddModalComponent |
31 | 46 | ||
47 | @Output() pluginFieldsAdded = new EventEmitter<void>() | ||
48 | |||
32 | // So that it can be accessed in the template | 49 | // So that it can be accessed in the template |
33 | readonly SPECIAL_SCHEDULED_PRIVACY = VideoEdit.SPECIAL_SCHEDULED_PRIVACY | 50 | readonly SPECIAL_SCHEDULED_PRIVACY = VideoEdit.SPECIAL_SCHEDULED_PRIVACY |
34 | 51 | ||
@@ -40,6 +57,8 @@ export class VideoEditComponent implements OnInit, OnDestroy { | |||
40 | tagValidators: ValidatorFn[] | 57 | tagValidators: ValidatorFn[] |
41 | tagValidatorsMessages: { [ name: string ]: string } | 58 | tagValidatorsMessages: { [ name: string ]: string } |
42 | 59 | ||
60 | pluginDataFormGroup: FormGroup | ||
61 | |||
43 | schedulePublicationEnabled = false | 62 | schedulePublicationEnabled = false |
44 | 63 | ||
45 | calendarLocale: any = {} | 64 | calendarLocale: any = {} |
@@ -51,18 +70,24 @@ export class VideoEditComponent implements OnInit, OnDestroy { | |||
51 | 70 | ||
52 | serverConfig: ServerConfig | 71 | serverConfig: ServerConfig |
53 | 72 | ||
73 | pluginFields: { | ||
74 | commonOptions: RegisterClientFormFieldOptions | ||
75 | videoFormOptions: RegisterClientVideoFieldOptions | ||
76 | }[] = [] | ||
77 | |||
54 | private schedulerInterval: any | 78 | private schedulerInterval: any |
55 | private firstPatchDone = false | 79 | private firstPatchDone = false |
56 | private initialVideoCaptions: string[] = [] | 80 | private initialVideoCaptions: string[] = [] |
57 | 81 | ||
58 | constructor ( | 82 | constructor ( |
59 | private formValidatorService: FormValidatorService, | 83 | private formValidatorService: FormValidatorService, |
60 | private videoValidatorsService: VideoValidatorsService, | ||
61 | private videoService: VideoService, | 84 | private videoService: VideoService, |
62 | private serverService: ServerService, | 85 | private serverService: ServerService, |
86 | private pluginService: PluginService, | ||
63 | private instanceService: InstanceService, | 87 | private instanceService: InstanceService, |
64 | private i18nPrimengCalendarService: I18nPrimengCalendarService, | 88 | private i18nPrimengCalendarService: I18nPrimengCalendarService, |
65 | private ngZone: NgZone | 89 | private ngZone: NgZone, |
90 | private hooks: HooksService | ||
66 | ) { | 91 | ) { |
67 | this.calendarLocale = this.i18nPrimengCalendarService.getCalendarLocale() | 92 | this.calendarLocale = this.i18nPrimengCalendarService.getCalendarLocale() |
68 | this.calendarTimezone = this.i18nPrimengCalendarService.getTimezone() | 93 | this.calendarTimezone = this.i18nPrimengCalendarService.getTimezone() |
@@ -84,22 +109,22 @@ export class VideoEditComponent implements OnInit, OnDestroy { | |||
84 | tags: [] | 109 | tags: [] |
85 | } | 110 | } |
86 | const obj: any = { | 111 | const obj: any = { |
87 | name: this.videoValidatorsService.VIDEO_NAME, | 112 | name: VIDEO_NAME_VALIDATOR, |
88 | privacy: this.videoValidatorsService.VIDEO_PRIVACY, | 113 | privacy: VIDEO_PRIVACY_VALIDATOR, |
89 | channelId: this.videoValidatorsService.VIDEO_CHANNEL, | 114 | channelId: VIDEO_CHANNEL_VALIDATOR, |
90 | nsfw: null, | 115 | nsfw: null, |
91 | commentsEnabled: null, | 116 | commentsEnabled: null, |
92 | downloadEnabled: null, | 117 | downloadEnabled: null, |
93 | waitTranscoding: null, | 118 | waitTranscoding: null, |
94 | category: this.videoValidatorsService.VIDEO_CATEGORY, | 119 | category: VIDEO_CATEGORY_VALIDATOR, |
95 | licence: this.videoValidatorsService.VIDEO_LICENCE, | 120 | licence: VIDEO_LICENCE_VALIDATOR, |
96 | language: this.videoValidatorsService.VIDEO_LANGUAGE, | 121 | language: VIDEO_LANGUAGE_VALIDATOR, |
97 | description: this.videoValidatorsService.VIDEO_DESCRIPTION, | 122 | description: VIDEO_DESCRIPTION_VALIDATOR, |
98 | tags: this.videoValidatorsService.VIDEO_TAGS_ARRAY, | 123 | tags: VIDEO_TAGS_ARRAY_VALIDATOR, |
99 | previewfile: null, | 124 | previewfile: null, |
100 | support: this.videoValidatorsService.VIDEO_SUPPORT, | 125 | support: VIDEO_SUPPORT_VALIDATOR, |
101 | schedulePublicationAt: this.videoValidatorsService.VIDEO_SCHEDULE_PUBLICATION_AT, | 126 | schedulePublicationAt: VIDEO_SCHEDULE_PUBLICATION_AT_VALIDATOR, |
102 | originallyPublishedAt: this.videoValidatorsService.VIDEO_ORIGINALLY_PUBLISHED_AT | 127 | originallyPublishedAt: VIDEO_ORIGINALLY_PUBLISHED_AT_VALIDATOR |
103 | } | 128 | } |
104 | 129 | ||
105 | this.formValidatorService.updateForm( | 130 | this.formValidatorService.updateForm( |
@@ -124,19 +149,26 @@ export class VideoEditComponent implements OnInit, OnDestroy { | |||
124 | ngOnInit () { | 149 | ngOnInit () { |
125 | this.updateForm() | 150 | this.updateForm() |
126 | 151 | ||
152 | this.pluginService.ensurePluginsAreLoaded('video-edit') | ||
153 | .then(() => this.updatePluginFields()) | ||
154 | |||
127 | this.serverService.getVideoCategories() | 155 | this.serverService.getVideoCategories() |
128 | .subscribe(res => this.videoCategories = res) | 156 | .subscribe(res => this.videoCategories = res) |
157 | |||
129 | this.serverService.getVideoLicences() | 158 | this.serverService.getVideoLicences() |
130 | .subscribe(res => this.videoLicences = res) | 159 | .subscribe(res => this.videoLicences = res) |
160 | |||
131 | forkJoin([ | 161 | forkJoin([ |
132 | this.instanceService.getAbout(), | 162 | this.instanceService.getAbout(), |
133 | this.serverService.getVideoLanguages() | 163 | this.serverService.getVideoLanguages() |
134 | ]).pipe(map(([ about, languages ]) => ({ about, languages }))) | 164 | ]).pipe(map(([ about, languages ]) => ({ about, languages }))) |
135 | .subscribe(res => { | 165 | .subscribe(res => { |
136 | this.videoLanguages = res.languages | 166 | this.videoLanguages = res.languages |
137 | .map(l => res.about.instance.languages.includes(l.id) | 167 | .map(l => { |
138 | ? { ...l, group: $localize`Instance languages`, groupOrder: 0 } | 168 | return res.about.instance.languages.includes(l.id) |
139 | : { ...l, group: $localize`All languages`, groupOrder: 1 }) | 169 | ? { ...l, group: $localize`Instance languages`, groupOrder: 0 } |
170 | : { ...l, group: $localize`All languages`, groupOrder: 1 } | ||
171 | }) | ||
140 | .sort((a, b) => a.groupOrder - b.groupOrder) | 172 | .sort((a, b) => a.groupOrder - b.groupOrder) |
141 | }) | 173 | }) |
142 | 174 | ||
@@ -161,6 +193,8 @@ export class VideoEditComponent implements OnInit, OnDestroy { | |||
161 | this.ngZone.runOutsideAngular(() => { | 193 | this.ngZone.runOutsideAngular(() => { |
162 | this.schedulerInterval = setInterval(() => this.minScheduledDate = new Date(), 1000 * 60) // Update every minute | 194 | this.schedulerInterval = setInterval(() => this.minScheduledDate = new Date(), 1000 * 60) // Update every minute |
163 | }) | 195 | }) |
196 | |||
197 | this.hooks.runAction('action:video-edit.init', 'video-edit', { type: this.type }) | ||
164 | } | 198 | } |
165 | 199 | ||
166 | ngOnDestroy () { | 200 | ngOnDestroy () { |
@@ -211,6 +245,23 @@ export class VideoEditComponent implements OnInit, OnDestroy { | |||
211 | }) | 245 | }) |
212 | } | 246 | } |
213 | 247 | ||
248 | private updatePluginFields () { | ||
249 | this.pluginFields = this.pluginService.getRegisteredVideoFormFields(this.type) | ||
250 | |||
251 | if (this.pluginFields.length === 0) return | ||
252 | |||
253 | const obj: any = {} | ||
254 | |||
255 | for (const setting of this.pluginFields) { | ||
256 | obj[setting.commonOptions.name] = new FormControl(setting.commonOptions.default) | ||
257 | } | ||
258 | |||
259 | this.pluginDataFormGroup = new FormGroup(obj) | ||
260 | this.form.addControl('pluginData', this.pluginDataFormGroup) | ||
261 | |||
262 | this.pluginFieldsAdded.emit() | ||
263 | } | ||
264 | |||
214 | private trackPrivacyChange () { | 265 | private trackPrivacyChange () { |
215 | // We will update the schedule input and the wait transcoding checkbox validators | 266 | // We will update the schedule input and the wait transcoding checkbox validators |
216 | this.form.controls[ 'privacy' ] | 267 | this.form.controls[ 'privacy' ] |
diff --git a/client/src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html b/client/src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html index 8db37a293..785514c76 100644 --- a/client/src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html +++ b/client/src/app/+videos/+video-edit/video-add-components/video-import-torrent.component.html | |||
@@ -14,7 +14,7 @@ | |||
14 | <my-help> | 14 | <my-help> |
15 | <ng-template ptTemplate="customHtml"> | 15 | <ng-template ptTemplate="customHtml"> |
16 | <ng-container i18n> | 16 | <ng-container i18n> |
17 | You can import any torrent file that points to a mp4 file. | 17 | You can import any torrent file that points to a media file. |
18 | You should make sure you have diffusion rights over the content it points to, otherwise it could cause legal trouble to yourself and your instance. | 18 | You should make sure you have diffusion rights over the content it points to, otherwise it could cause legal trouble to yourself and your instance. |
19 | </ng-container> | 19 | </ng-container> |
20 | </ng-template> | 20 | </ng-template> |
@@ -58,6 +58,7 @@ | |||
58 | <my-video-edit | 58 | <my-video-edit |
59 | [form]="form" [formErrors]="formErrors" [videoCaptions]="videoCaptions" [schedulePublicationPossible]="false" | 59 | [form]="form" [formErrors]="formErrors" [videoCaptions]="videoCaptions" [schedulePublicationPossible]="false" |
60 | [validationMessages]="validationMessages" [userVideoChannels]="userVideoChannels" | 60 | [validationMessages]="validationMessages" [userVideoChannels]="userVideoChannels" |
61 | type="import-torrent" | ||
61 | ></my-video-edit> | 62 | ></my-video-edit> |
62 | 63 | ||
63 | <div class="submit-container"> | 64 | <div class="submit-container"> |
diff --git a/client/src/app/+videos/+video-edit/video-add-components/video-import-url.component.html b/client/src/app/+videos/+video-edit/video-add-components/video-import-url.component.html index 9b5cc3361..3e4eb5fbc 100644 --- a/client/src/app/+videos/+video-edit/video-add-components/video-import-url.component.html +++ b/client/src/app/+videos/+video-edit/video-add-components/video-import-url.component.html | |||
@@ -9,7 +9,7 @@ | |||
9 | <ng-template ptTemplate="customHtml"> | 9 | <ng-template ptTemplate="customHtml"> |
10 | <ng-container i18n> | 10 | <ng-container i18n> |
11 | You can import any URL <a href='https://rg3.github.io/youtube-dl/supportedsites.html' target='_blank' rel='noopener noreferrer'>supported by youtube-dl</a> | 11 | You can import any URL <a href='https://rg3.github.io/youtube-dl/supportedsites.html' target='_blank' rel='noopener noreferrer'>supported by youtube-dl</a> |
12 | or URL that points to a raw MP4 file. | 12 | or URL that points to a media file. |
13 | You should make sure you have diffusion rights over the content it points to, otherwise it could cause legal trouble to yourself and your instance. | 13 | You should make sure you have diffusion rights over the content it points to, otherwise it could cause legal trouble to yourself and your instance. |
14 | </ng-container> | 14 | </ng-container> |
15 | </ng-template> | 15 | </ng-template> |
@@ -54,6 +54,7 @@ | |||
54 | <my-video-edit | 54 | <my-video-edit |
55 | [form]="form" [formErrors]="formErrors" [videoCaptions]="videoCaptions" [schedulePublicationPossible]="false" | 55 | [form]="form" [formErrors]="formErrors" [videoCaptions]="videoCaptions" [schedulePublicationPossible]="false" |
56 | [validationMessages]="validationMessages" [userVideoChannels]="userVideoChannels" | 56 | [validationMessages]="validationMessages" [userVideoChannels]="userVideoChannels" |
57 | type="import-url" | ||
57 | ></my-video-edit> | 58 | ></my-video-edit> |
58 | 59 | ||
59 | <div class="submit-container"> | 60 | <div class="submit-container"> |
diff --git a/client/src/app/+videos/+video-edit/video-add-components/video-upload.component.html b/client/src/app/+videos/+video-edit/video-add-components/video-upload.component.html index ed697c25b..677fa1197 100644 --- a/client/src/app/+videos/+video-edit/video-add-components/video-upload.component.html +++ b/client/src/app/+videos/+video-edit/video-add-components/video-upload.component.html | |||
@@ -69,6 +69,7 @@ | |||
69 | [form]="form" [formErrors]="formErrors" [videoCaptions]="videoCaptions" | 69 | [form]="form" [formErrors]="formErrors" [videoCaptions]="videoCaptions" |
70 | [validationMessages]="validationMessages" [userVideoChannels]="userVideoChannels" | 70 | [validationMessages]="validationMessages" [userVideoChannels]="userVideoChannels" |
71 | [waitTranscodingEnabled]="waitTranscodingEnabled" | 71 | [waitTranscodingEnabled]="waitTranscodingEnabled" |
72 | type="upload" | ||
72 | ></my-video-edit> | 73 | ></my-video-edit> |
73 | 74 | ||
74 | <div class="submit-container"> | 75 | <div class="submit-container"> |
diff --git a/client/src/app/+videos/+video-edit/video-update.component.html b/client/src/app/+videos/+video-edit/video-update.component.html index 6c1239395..b37596399 100644 --- a/client/src/app/+videos/+video-edit/video-update.component.html +++ b/client/src/app/+videos/+video-edit/video-update.component.html | |||
@@ -10,11 +10,12 @@ | |||
10 | [form]="form" [formErrors]="formErrors" [schedulePublicationPossible]="schedulePublicationPossible" | 10 | [form]="form" [formErrors]="formErrors" [schedulePublicationPossible]="schedulePublicationPossible" |
11 | [validationMessages]="validationMessages" [userVideoChannels]="userVideoChannels" | 11 | [validationMessages]="validationMessages" [userVideoChannels]="userVideoChannels" |
12 | [videoCaptions]="videoCaptions" [waitTranscodingEnabled]="waitTranscodingEnabled" | 12 | [videoCaptions]="videoCaptions" [waitTranscodingEnabled]="waitTranscodingEnabled" |
13 | type="update" (pluginFieldsAdded)="hydratePluginFieldsFromVideo()" | ||
13 | ></my-video-edit> | 14 | ></my-video-edit> |
14 | 15 | ||
15 | <div class="submit-container"> | 16 | <div class="submit-container"> |
16 | <my-button className="orange-button" i18n-label label="Update" icon="circle-tick" | 17 | <my-button className="orange-button" i18n-label label="Update" icon="circle-tick" |
17 | (click)="update()" (keydown.enter)="update()" | 18 | (click)="update()" (keydown.enter)="update()" |
18 | [disabled]="!form.valid || isUpdatingVideo === true" | 19 | [disabled]="!form.valid || isUpdatingVideo === true" |
19 | ></my-button> | 20 | ></my-button> |
20 | </div> | 21 | </div> |
diff --git a/client/src/app/+videos/+video-edit/video-update.component.ts b/client/src/app/+videos/+video-edit/video-update.component.ts index 2e1d0f89d..20438a2d3 100644 --- a/client/src/app/+videos/+video-edit/video-update.component.ts +++ b/client/src/app/+videos/+video-edit/video-update.component.ts | |||
@@ -126,6 +126,14 @@ export class VideoUpdateComponent extends FormReactive implements OnInit { | |||
126 | ) | 126 | ) |
127 | } | 127 | } |
128 | 128 | ||
129 | hydratePluginFieldsFromVideo () { | ||
130 | if (!this.video.pluginData) return | ||
131 | |||
132 | this.form.patchValue({ | ||
133 | pluginData: this.video.pluginData | ||
134 | }) | ||
135 | } | ||
136 | |||
129 | private hydrateFormFromVideo () { | 137 | private hydrateFormFromVideo () { |
130 | this.form.patchValue(this.video.toFormPatch()) | 138 | this.form.patchValue(this.video.toFormPatch()) |
131 | 139 | ||
diff --git a/client/src/app/+videos/+video-watch/comment/video-comment-add.component.ts b/client/src/app/+videos/+video-watch/comment/video-comment-add.component.ts index fa20ec3b9..c1d0032cc 100644 --- a/client/src/app/+videos/+video-watch/comment/video-comment-add.component.ts +++ b/client/src/app/+videos/+video-watch/comment/video-comment-add.component.ts | |||
@@ -2,7 +2,8 @@ import { Observable } from 'rxjs' | |||
2 | import { Component, ElementRef, EventEmitter, Input, OnChanges, OnInit, Output, SimpleChanges, ViewChild } from '@angular/core' | 2 | import { Component, ElementRef, EventEmitter, Input, OnChanges, OnInit, Output, SimpleChanges, ViewChild } from '@angular/core' |
3 | import { Router } from '@angular/router' | 3 | import { Router } from '@angular/router' |
4 | import { Notifier, User } from '@app/core' | 4 | import { Notifier, User } from '@app/core' |
5 | import { FormReactive, FormValidatorService, VideoCommentValidatorsService } from '@app/shared/shared-forms' | 5 | import { VIDEO_COMMENT_TEXT_VALIDATOR } from '@app/shared/form-validators/video-comment-validators' |
6 | import { FormReactive, FormValidatorService } from '@app/shared/shared-forms' | ||
6 | import { Video } from '@app/shared/shared-main' | 7 | import { Video } from '@app/shared/shared-main' |
7 | import { VideoComment, VideoCommentService } from '@app/shared/shared-video-comment' | 8 | import { VideoComment, VideoCommentService } from '@app/shared/shared-video-comment' |
8 | import { NgbModal } from '@ng-bootstrap/ng-bootstrap' | 9 | import { NgbModal } from '@ng-bootstrap/ng-bootstrap' |
@@ -33,7 +34,6 @@ export class VideoCommentAddComponent extends FormReactive implements OnChanges, | |||
33 | 34 | ||
34 | constructor ( | 35 | constructor ( |
35 | protected formValidatorService: FormValidatorService, | 36 | protected formValidatorService: FormValidatorService, |
36 | private videoCommentValidatorsService: VideoCommentValidatorsService, | ||
37 | private notifier: Notifier, | 37 | private notifier: Notifier, |
38 | private videoCommentService: VideoCommentService, | 38 | private videoCommentService: VideoCommentService, |
39 | private modalService: NgbModal, | 39 | private modalService: NgbModal, |
@@ -50,7 +50,7 @@ export class VideoCommentAddComponent extends FormReactive implements OnChanges, | |||
50 | 50 | ||
51 | ngOnInit () { | 51 | ngOnInit () { |
52 | this.buildForm({ | 52 | this.buildForm({ |
53 | text: this.videoCommentValidatorsService.VIDEO_COMMENT_TEXT | 53 | text: VIDEO_COMMENT_TEXT_VALIDATOR |
54 | }) | 54 | }) |
55 | 55 | ||
56 | if (this.user) { | 56 | if (this.user) { |
diff --git a/client/src/app/+videos/+video-watch/video-watch-playlist.component.html b/client/src/app/+videos/+video-watch/video-watch-playlist.component.html index 246ef83cf..c270142a3 100644 --- a/client/src/app/+videos/+video-watch/video-watch-playlist.component.html +++ b/client/src/app/+videos/+video-watch/video-watch-playlist.component.html | |||
@@ -1,4 +1,7 @@ | |||
1 | <div *ngIf="playlist && video" class="playlist" myInfiniteScroller [autoInit]="true" [onItself]="true" (nearOfBottom)="onPlaylistVideosNearOfBottom()"> | 1 | <div |
2 | *ngIf="playlist && currentPlaylistPosition" class="playlist" | ||
3 | myInfiniteScroller [autoInit]="true" [onItself]="true" (nearOfBottom)="onPlaylistVideosNearOfBottom()" | ||
4 | > | ||
2 | <div class="playlist-info"> | 5 | <div class="playlist-info"> |
3 | <div class="playlist-display-name"> | 6 | <div class="playlist-display-name"> |
4 | {{ playlist.displayName }} | 7 | {{ playlist.displayName }} |
@@ -36,7 +39,7 @@ | |||
36 | </div> | 39 | </div> |
37 | </div> | 40 | </div> |
38 | 41 | ||
39 | <div *ngFor="let playlistElement of playlistElements"> | 42 | <div *ngFor="let playlistElement of playlistElements" [ngClass]="'element-' + playlistElement.position"> |
40 | <my-video-playlist-element-miniature | 43 | <my-video-playlist-element-miniature |
41 | [playlistElement]="playlistElement" [playlist]="playlist" [owned]="isPlaylistOwned()" (elementRemoved)="onElementRemoved($event)" | 44 | [playlistElement]="playlistElement" [playlist]="playlist" [owned]="isPlaylistOwned()" (elementRemoved)="onElementRemoved($event)" |
42 | [playing]="currentPlaylistPosition === playlistElement.position" [accountLink]="false" [position]="playlistElement.position" | 45 | [playing]="currentPlaylistPosition === playlistElement.position" [accountLink]="false" [position]="playlistElement.position" |
diff --git a/client/src/app/+videos/+video-watch/video-watch-playlist.component.ts b/client/src/app/+videos/+video-watch/video-watch-playlist.component.ts index c60ca4671..d76d0bbd2 100644 --- a/client/src/app/+videos/+video-watch/video-watch-playlist.component.ts +++ b/client/src/app/+videos/+video-watch/video-watch-playlist.component.ts | |||
@@ -1,9 +1,10 @@ | |||
1 | import { Component, Input } from '@angular/core' | 1 | |
2 | import { Component, EventEmitter, Input, Output } from '@angular/core' | ||
2 | import { Router } from '@angular/router' | 3 | import { Router } from '@angular/router' |
3 | import { AuthService, ComponentPagination, LocalStorageService, Notifier, SessionStorageService, UserService } from '@app/core' | 4 | import { AuthService, ComponentPagination, LocalStorageService, Notifier, SessionStorageService, UserService } from '@app/core' |
4 | import { VideoPlaylist, VideoPlaylistElement, VideoPlaylistService } from '@app/shared/shared-video-playlist' | 5 | import { VideoPlaylist, VideoPlaylistElement, VideoPlaylistService } from '@app/shared/shared-video-playlist' |
5 | import { peertubeLocalStorage, peertubeSessionStorage } from '@root-helpers/peertube-web-storage' | 6 | import { peertubeLocalStorage, peertubeSessionStorage } from '@root-helpers/peertube-web-storage' |
6 | import { VideoDetails, VideoPlaylistPrivacy } from '@shared/models' | 7 | import { VideoPlaylistPrivacy } from '@shared/models' |
7 | 8 | ||
8 | @Component({ | 9 | @Component({ |
9 | selector: 'my-video-watch-playlist', | 10 | selector: 'my-video-watch-playlist', |
@@ -14,9 +15,10 @@ export class VideoWatchPlaylistComponent { | |||
14 | static LOCAL_STORAGE_AUTO_PLAY_NEXT_VIDEO_PLAYLIST = 'auto_play_video_playlist' | 15 | static LOCAL_STORAGE_AUTO_PLAY_NEXT_VIDEO_PLAYLIST = 'auto_play_video_playlist' |
15 | static SESSION_STORAGE_AUTO_PLAY_NEXT_VIDEO_PLAYLIST = 'loop_playlist' | 16 | static SESSION_STORAGE_AUTO_PLAY_NEXT_VIDEO_PLAYLIST = 'loop_playlist' |
16 | 17 | ||
17 | @Input() video: VideoDetails | ||
18 | @Input() playlist: VideoPlaylist | 18 | @Input() playlist: VideoPlaylist |
19 | 19 | ||
20 | @Output() videoFound = new EventEmitter<string>() | ||
21 | |||
20 | playlistElements: VideoPlaylistElement[] = [] | 22 | playlistElements: VideoPlaylistElement[] = [] |
21 | playlistPagination: ComponentPagination = { | 23 | playlistPagination: ComponentPagination = { |
22 | currentPage: 1, | 24 | currentPage: 1, |
@@ -29,7 +31,8 @@ export class VideoWatchPlaylistComponent { | |||
29 | loopPlaylist: boolean | 31 | loopPlaylist: boolean |
30 | loopPlaylistSwitchText = '' | 32 | loopPlaylistSwitchText = '' |
31 | noPlaylistVideos = false | 33 | noPlaylistVideos = false |
32 | currentPlaylistPosition = 1 | 34 | |
35 | currentPlaylistPosition: number | ||
33 | 36 | ||
34 | constructor ( | 37 | constructor ( |
35 | private userService: UserService, | 38 | private userService: UserService, |
@@ -44,6 +47,7 @@ export class VideoWatchPlaylistComponent { | |||
44 | this.autoPlayNextVideoPlaylist = this.auth.isLoggedIn() | 47 | this.autoPlayNextVideoPlaylist = this.auth.isLoggedIn() |
45 | ? this.auth.getUser().autoPlayNextVideoPlaylist | 48 | ? this.auth.getUser().autoPlayNextVideoPlaylist |
46 | : this.localStorageService.getItem(VideoWatchPlaylistComponent.LOCAL_STORAGE_AUTO_PLAY_NEXT_VIDEO_PLAYLIST) !== 'false' | 49 | : this.localStorageService.getItem(VideoWatchPlaylistComponent.LOCAL_STORAGE_AUTO_PLAY_NEXT_VIDEO_PLAYLIST) !== 'false' |
50 | |||
47 | this.setAutoPlayNextVideoPlaylistSwitchText() | 51 | this.setAutoPlayNextVideoPlaylistSwitchText() |
48 | 52 | ||
49 | // defaults to false | 53 | // defaults to false |
@@ -51,12 +55,12 @@ export class VideoWatchPlaylistComponent { | |||
51 | this.setLoopPlaylistSwitchText() | 55 | this.setLoopPlaylistSwitchText() |
52 | } | 56 | } |
53 | 57 | ||
54 | onPlaylistVideosNearOfBottom () { | 58 | onPlaylistVideosNearOfBottom (position?: number) { |
55 | // Last page | 59 | // Last page |
56 | if (this.playlistPagination.totalItems <= (this.playlistPagination.currentPage * this.playlistPagination.itemsPerPage)) return | 60 | if (this.playlistPagination.totalItems <= (this.playlistPagination.currentPage * this.playlistPagination.itemsPerPage)) return |
57 | 61 | ||
58 | this.playlistPagination.currentPage += 1 | 62 | this.playlistPagination.currentPage += 1 |
59 | this.loadPlaylistElements(this.playlist,false) | 63 | this.loadPlaylistElements(this.playlist, false, position) |
60 | } | 64 | } |
61 | 65 | ||
62 | onElementRemoved (playlistElement: VideoPlaylistElement) { | 66 | onElementRemoved (playlistElement: VideoPlaylistElement) { |
@@ -83,26 +87,26 @@ export class VideoWatchPlaylistComponent { | |||
83 | return this.playlist.privacy.id === VideoPlaylistPrivacy.PUBLIC | 87 | return this.playlist.privacy.id === VideoPlaylistPrivacy.PUBLIC |
84 | } | 88 | } |
85 | 89 | ||
86 | loadPlaylistElements (playlist: VideoPlaylist, redirectToFirst = false) { | 90 | loadPlaylistElements (playlist: VideoPlaylist, redirectToFirst = false, position?: number) { |
87 | this.videoPlaylist.getPlaylistVideos(playlist.uuid, this.playlistPagination) | 91 | this.videoPlaylist.getPlaylistVideos(playlist.uuid, this.playlistPagination) |
88 | .subscribe(({ total, data }) => { | 92 | .subscribe(({ total, data }) => { |
89 | this.playlistElements = this.playlistElements.concat(data) | 93 | this.playlistElements = this.playlistElements.concat(data) |
90 | this.playlistPagination.totalItems = total | 94 | this.playlistPagination.totalItems = total |
91 | 95 | ||
92 | const firstAvailableVideos = this.playlistElements.find(e => !!e.video) | 96 | const firstAvailableVideo = this.playlistElements.find(e => !!e.video) |
93 | if (!firstAvailableVideos) { | 97 | if (!firstAvailableVideo) { |
94 | this.noPlaylistVideos = true | 98 | this.noPlaylistVideos = true |
95 | return | 99 | return |
96 | } | 100 | } |
97 | 101 | ||
98 | this.updatePlaylistIndex(this.video) | 102 | if (position) this.updatePlaylistIndex(position) |
99 | 103 | ||
100 | if (redirectToFirst) { | 104 | if (redirectToFirst) { |
101 | const extras = { | 105 | const extras = { |
102 | queryParams: { | 106 | queryParams: { |
103 | start: firstAvailableVideos.startTimestamp, | 107 | start: firstAvailableVideo.startTimestamp, |
104 | stop: firstAvailableVideos.stopTimestamp, | 108 | stop: firstAvailableVideo.stopTimestamp, |
105 | videoId: firstAvailableVideos.video.uuid | 109 | playlistPosition: firstAvailableVideo.position |
106 | }, | 110 | }, |
107 | replaceUrl: true | 111 | replaceUrl: true |
108 | } | 112 | } |
@@ -111,18 +115,26 @@ export class VideoWatchPlaylistComponent { | |||
111 | }) | 115 | }) |
112 | } | 116 | } |
113 | 117 | ||
114 | updatePlaylistIndex (video: VideoDetails) { | 118 | updatePlaylistIndex (position: number) { |
115 | if (this.playlistElements.length === 0 || !video) return | 119 | if (this.playlistElements.length === 0 || !position) return |
116 | 120 | ||
117 | for (const playlistElement of this.playlistElements) { | 121 | for (const playlistElement of this.playlistElements) { |
118 | if (playlistElement.video && playlistElement.video.id === video.id) { | 122 | // >= if the previous videos were not valid |
123 | if (playlistElement.video && playlistElement.position >= position) { | ||
119 | this.currentPlaylistPosition = playlistElement.position | 124 | this.currentPlaylistPosition = playlistElement.position |
125 | |||
126 | this.videoFound.emit(playlistElement.video.uuid) | ||
127 | |||
128 | setTimeout(() => { | ||
129 | document.querySelector('.element-' + this.currentPlaylistPosition).scrollIntoView(false) | ||
130 | }, 0) | ||
131 | |||
120 | return | 132 | return |
121 | } | 133 | } |
122 | } | 134 | } |
123 | 135 | ||
124 | // Load more videos to find our video | 136 | // Load more videos to find our video |
125 | this.onPlaylistVideosNearOfBottom() | 137 | this.onPlaylistVideosNearOfBottom(position) |
126 | } | 138 | } |
127 | 139 | ||
128 | findNextPlaylistVideo (position = this.currentPlaylistPosition): VideoPlaylistElement { | 140 | findNextPlaylistVideo (position = this.currentPlaylistPosition): VideoPlaylistElement { |
@@ -147,9 +159,10 @@ export class VideoWatchPlaylistComponent { | |||
147 | navigateToNextPlaylistVideo () { | 159 | navigateToNextPlaylistVideo () { |
148 | const next = this.findNextPlaylistVideo(this.currentPlaylistPosition + 1) | 160 | const next = this.findNextPlaylistVideo(this.currentPlaylistPosition + 1) |
149 | if (!next) return | 161 | if (!next) return |
162 | |||
150 | const start = next.startTimestamp | 163 | const start = next.startTimestamp |
151 | const stop = next.stopTimestamp | 164 | const stop = next.stopTimestamp |
152 | this.router.navigate([],{ queryParams: { videoId: next.video.uuid, start, stop } }) | 165 | this.router.navigate([],{ queryParams: { playlistPosition: next.position, start, stop } }) |
153 | } | 166 | } |
154 | 167 | ||
155 | switchAutoPlayNextVideoPlaylist () { | 168 | switchAutoPlayNextVideoPlaylist () { |
diff --git a/client/src/app/+videos/+video-watch/video-watch.component.html b/client/src/app/+videos/+video-watch/video-watch.component.html index 4279437d2..076c6205f 100644 --- a/client/src/app/+videos/+video-watch/video-watch.component.html +++ b/client/src/app/+videos/+video-watch/video-watch.component.html | |||
@@ -11,7 +11,8 @@ | |||
11 | 11 | ||
12 | <my-video-watch-playlist | 12 | <my-video-watch-playlist |
13 | #videoWatchPlaylist | 13 | #videoWatchPlaylist |
14 | [video]="video" [playlist]="playlist" class="playlist" | 14 | [playlist]="playlist" class="playlist" |
15 | (videoFound)="onPlaylistVideoFound($event)" | ||
15 | ></my-video-watch-playlist> | 16 | ></my-video-watch-playlist> |
16 | </div> | 17 | </div> |
17 | 18 | ||
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 fb89bf6cd..1b2820810 100644 --- a/client/src/app/+videos/+video-watch/video-watch.component.ts +++ b/client/src/app/+videos/+video-watch/video-watch.component.ts | |||
@@ -53,6 +53,7 @@ export class VideoWatchComponent implements OnInit, OnDestroy { | |||
53 | video: VideoDetails = null | 53 | video: VideoDetails = null |
54 | videoCaptions: VideoCaption[] = [] | 54 | videoCaptions: VideoCaption[] = [] |
55 | 55 | ||
56 | playlistPosition: number | ||
56 | playlist: VideoPlaylist = null | 57 | playlist: VideoPlaylist = null |
57 | 58 | ||
58 | completeDescriptionShown = false | 59 | completeDescriptionShown = false |
@@ -140,9 +141,9 @@ export class VideoWatchComponent implements OnInit, OnDestroy { | |||
140 | if (playlistId) this.loadPlaylist(playlistId) | 141 | if (playlistId) this.loadPlaylist(playlistId) |
141 | }) | 142 | }) |
142 | 143 | ||
143 | this.queryParamsSub = this.route.queryParams.subscribe(async queryParams => { | 144 | this.queryParamsSub = this.route.queryParams.subscribe(queryParams => { |
144 | const videoId = queryParams[ 'videoId' ] | 145 | this.playlistPosition = queryParams[ 'playlistPosition' ] |
145 | if (videoId) this.loadVideo(videoId) | 146 | this.videoWatchPlaylist.updatePlaylistIndex(this.playlistPosition) |
146 | 147 | ||
147 | const start = queryParams[ 'start' ] | 148 | const start = queryParams[ 'start' ] |
148 | if (this.player && start) this.player.currentTime(parseInt(start, 10)) | 149 | if (this.player && start) this.player.currentTime(parseInt(start, 10)) |
@@ -335,6 +336,10 @@ export class VideoWatchComponent implements OnInit, OnDestroy { | |||
335 | return genericChannelDisplayName.includes(this.video.channel.displayName) | 336 | return genericChannelDisplayName.includes(this.video.channel.displayName) |
336 | } | 337 | } |
337 | 338 | ||
339 | onPlaylistVideoFound (videoId: string) { | ||
340 | this.loadVideo(videoId) | ||
341 | } | ||
342 | |||
338 | private loadVideo (videoId: string) { | 343 | private loadVideo (videoId: string) { |
339 | // Video did not change | 344 | // Video did not change |
340 | if (this.video && this.video.uuid === videoId) return | 345 | if (this.video && this.video.uuid === videoId) return |
@@ -362,6 +367,8 @@ export class VideoWatchComponent implements OnInit, OnDestroy { | |||
362 | const queryParams = this.route.snapshot.queryParams | 367 | const queryParams = this.route.snapshot.queryParams |
363 | 368 | ||
364 | const urlOptions = { | 369 | const urlOptions = { |
370 | resume: queryParams.resume, | ||
371 | |||
365 | startTime: queryParams.start, | 372 | startTime: queryParams.start, |
366 | stopTime: queryParams.stop, | 373 | stopTime: queryParams.stop, |
367 | 374 | ||
@@ -390,8 +397,7 @@ export class VideoWatchComponent implements OnInit, OnDestroy { | |||
390 | .subscribe(playlist => { | 397 | .subscribe(playlist => { |
391 | this.playlist = playlist | 398 | this.playlist = playlist |
392 | 399 | ||
393 | const videoId = this.route.snapshot.queryParams['videoId'] | 400 | this.videoWatchPlaylist.loadPlaylistElements(playlist, !this.playlistPosition, this.playlistPosition) |
394 | this.videoWatchPlaylist.loadPlaylistElements(playlist, !videoId) | ||
395 | }) | 401 | }) |
396 | } | 402 | } |
397 | 403 | ||
@@ -456,8 +462,6 @@ export class VideoWatchComponent implements OnInit, OnDestroy { | |||
456 | this.remoteServerDown = false | 462 | this.remoteServerDown = false |
457 | this.currentTime = undefined | 463 | this.currentTime = undefined |
458 | 464 | ||
459 | this.videoWatchPlaylist.updatePlaylistIndex(video) | ||
460 | |||
461 | if (this.isVideoBlur(this.video)) { | 465 | if (this.isVideoBlur(this.video)) { |
462 | const res = await this.confirmService.confirm( | 466 | const res = await this.confirmService.confirm( |
463 | $localize`This video contains mature or explicit content. Are you sure you want to watch it?`, | 467 | $localize`This video contains mature or explicit content. Are you sure you want to watch it?`, |
@@ -544,7 +548,7 @@ export class VideoWatchComponent implements OnInit, OnDestroy { | |||
544 | this.zone.run(() => this.theaterEnabled = enabled) | 548 | this.zone.run(() => this.theaterEnabled = enabled) |
545 | }) | 549 | }) |
546 | 550 | ||
547 | this.hooks.runAction('action:video-watch.player.loaded', 'video-watch', { player: this.player }) | 551 | this.hooks.runAction('action:video-watch.player.loaded', 'video-watch', { player: this.player, videojs, video: this.video }) |
548 | }) | 552 | }) |
549 | 553 | ||
550 | this.setVideoDescriptionHTML() | 554 | this.setVideoDescriptionHTML() |
@@ -657,16 +661,14 @@ export class VideoWatchComponent implements OnInit, OnDestroy { | |||
657 | const byUrl = urlOptions.startTime !== undefined | 661 | const byUrl = urlOptions.startTime !== undefined |
658 | const byHistory = video.userHistory && (!this.playlist || urlOptions.resume !== undefined) | 662 | const byHistory = video.userHistory && (!this.playlist || urlOptions.resume !== undefined) |
659 | 663 | ||
660 | if (byUrl) { | 664 | if (byUrl) return timeToInt(urlOptions.startTime) |
661 | return timeToInt(urlOptions.startTime) | 665 | if (byHistory) return video.userHistory.currentTime |
662 | } else if (byHistory) { | 666 | |
663 | return video.userHistory.currentTime | 667 | return 0 |
664 | } else { | ||
665 | return 0 | ||
666 | } | ||
667 | } | 668 | } |
668 | 669 | ||
669 | let startTime = getStartTime() | 670 | let startTime = getStartTime() |
671 | |||
670 | // If we are at the end of the video, reset the timer | 672 | // If we are at the end of the video, reset the timer |
671 | if (video.duration - startTime <= 1) startTime = 0 | 673 | if (video.duration - startTime <= 1) startTime = 0 |
672 | 674 | ||
diff --git a/client/src/app/+videos/videos-routing.module.ts b/client/src/app/+videos/videos-routing.module.ts index e0e877fc6..cf5f0b2e8 100644 --- a/client/src/app/+videos/videos-routing.module.ts +++ b/client/src/app/+videos/videos-routing.module.ts | |||
@@ -20,7 +20,7 @@ const videosRoutes: Routes = [ | |||
20 | component: VideoOverviewComponent, | 20 | component: VideoOverviewComponent, |
21 | data: { | 21 | data: { |
22 | meta: { | 22 | meta: { |
23 | title: 'Discover videos' | 23 | title: $localize`Discover videos` |
24 | } | 24 | } |
25 | } | 25 | } |
26 | }, | 26 | }, |
@@ -29,7 +29,7 @@ const videosRoutes: Routes = [ | |||
29 | component: VideoTrendingComponent, | 29 | component: VideoTrendingComponent, |
30 | data: { | 30 | data: { |
31 | meta: { | 31 | meta: { |
32 | title: 'Trending videos' | 32 | title: $localize`Trending videos` |
33 | }, | 33 | }, |
34 | reuse: { | 34 | reuse: { |
35 | enabled: true, | 35 | enabled: true, |
@@ -42,7 +42,7 @@ const videosRoutes: Routes = [ | |||
42 | component: VideoMostLikedComponent, | 42 | component: VideoMostLikedComponent, |
43 | data: { | 43 | data: { |
44 | meta: { | 44 | meta: { |
45 | title: 'Most liked videos' | 45 | title: $localize`Most liked videos` |
46 | }, | 46 | }, |
47 | reuse: { | 47 | reuse: { |
48 | enabled: true, | 48 | enabled: true, |
@@ -55,7 +55,7 @@ const videosRoutes: Routes = [ | |||
55 | component: VideoRecentlyAddedComponent, | 55 | component: VideoRecentlyAddedComponent, |
56 | data: { | 56 | data: { |
57 | meta: { | 57 | meta: { |
58 | title: 'Recently added videos' | 58 | title: $localize`Recently added videos` |
59 | }, | 59 | }, |
60 | reuse: { | 60 | reuse: { |
61 | enabled: true, | 61 | enabled: true, |
@@ -68,7 +68,7 @@ const videosRoutes: Routes = [ | |||
68 | component: VideoUserSubscriptionsComponent, | 68 | component: VideoUserSubscriptionsComponent, |
69 | data: { | 69 | data: { |
70 | meta: { | 70 | meta: { |
71 | title: 'Subscriptions' | 71 | title: $localize`Subscriptions` |
72 | }, | 72 | }, |
73 | reuse: { | 73 | reuse: { |
74 | enabled: true, | 74 | enabled: true, |
@@ -81,7 +81,7 @@ const videosRoutes: Routes = [ | |||
81 | component: VideoLocalComponent, | 81 | component: VideoLocalComponent, |
82 | data: { | 82 | data: { |
83 | meta: { | 83 | meta: { |
84 | title: 'Local videos' | 84 | title: $localize`Local videos` |
85 | }, | 85 | }, |
86 | reuse: { | 86 | reuse: { |
87 | enabled: true, | 87 | enabled: true, |
@@ -94,7 +94,7 @@ const videosRoutes: Routes = [ | |||
94 | loadChildren: () => import('@app/+videos/+video-edit/video-add.module').then(m => m.VideoAddModule), | 94 | loadChildren: () => import('@app/+videos/+video-edit/video-add.module').then(m => m.VideoAddModule), |
95 | data: { | 95 | data: { |
96 | meta: { | 96 | meta: { |
97 | title: 'Upload a video' | 97 | title: $localize`Upload a video` |
98 | } | 98 | } |
99 | } | 99 | } |
100 | }, | 100 | }, |
@@ -103,7 +103,7 @@ const videosRoutes: Routes = [ | |||
103 | loadChildren: () => import('@app/+videos/+video-edit/video-update.module').then(m => m.VideoUpdateModule), | 103 | loadChildren: () => import('@app/+videos/+video-edit/video-update.module').then(m => m.VideoUpdateModule), |
104 | data: { | 104 | data: { |
105 | meta: { | 105 | meta: { |
106 | title: 'Edit a video' | 106 | title: $localize`Edit a video` |
107 | } | 107 | } |
108 | } | 108 | } |
109 | }, | 109 | }, |
diff --git a/client/src/app/app.component.ts b/client/src/app/app.component.ts index 5b0439e6b..edec3216e 100644 --- a/client/src/app/app.component.ts +++ b/client/src/app/app.component.ts | |||
@@ -180,7 +180,7 @@ export class AppComponent implements OnInit, AfterViewInit { | |||
180 | 180 | ||
181 | eventsObs.pipe( | 181 | eventsObs.pipe( |
182 | filter((e: Event): e is GuardsCheckStart => e instanceof GuardsCheckStart), | 182 | filter((e: Event): e is GuardsCheckStart => e instanceof GuardsCheckStart), |
183 | filter(() => this.screenService.isInSmallView() || !!this.screenService.isInTouchScreen()) | 183 | filter(() => this.screenService.isInSmallView() || this.screenService.isInTouchScreen()) |
184 | ).subscribe(() => this.menu.setMenuDisplay(false)) // User clicked on a link in the menu, change the page | 184 | ).subscribe(() => this.menu.setMenuDisplay(false)) // User clicked on a link in the menu, change the page |
185 | } | 185 | } |
186 | 186 | ||
diff --git a/client/src/app/core/auth/auth-user.model.ts b/client/src/app/core/auth/auth-user.model.ts index 34efa24fc..f10b37e5a 100644 --- a/client/src/app/core/auth/auth-user.model.ts +++ b/client/src/app/core/auth/auth-user.model.ts | |||
@@ -25,11 +25,13 @@ export class AuthUser extends User implements ServerMyUserModel { | |||
25 | canSeeVideosLink = true | 25 | canSeeVideosLink = true |
26 | 26 | ||
27 | static load () { | 27 | static load () { |
28 | const userInfo = getUserInfoFromLocalStorage() | 28 | const tokens = Tokens.load() |
29 | if (!tokens) return null | ||
29 | 30 | ||
31 | const userInfo = getUserInfoFromLocalStorage() | ||
30 | if (!userInfo) return null | 32 | if (!userInfo) return null |
31 | 33 | ||
32 | return new AuthUser(userInfo, Tokens.load()) | 34 | return new AuthUser(userInfo, tokens) |
33 | } | 35 | } |
34 | 36 | ||
35 | static flush () { | 37 | static flush () { |
diff --git a/client/src/app/core/menu/menu.service.ts b/client/src/app/core/menu/menu.service.ts index 671ee3e4f..9c0433bca 100644 --- a/client/src/app/core/menu/menu.service.ts +++ b/client/src/app/core/menu/menu.service.ts | |||
@@ -28,15 +28,16 @@ export class MenuService { | |||
28 | setMenuDisplay (display: boolean) { | 28 | setMenuDisplay (display: boolean) { |
29 | this.isMenuDisplayed = display | 29 | this.isMenuDisplayed = display |
30 | 30 | ||
31 | if (!this.screenService.isInTouchScreen()) return | ||
32 | |||
31 | // On touch screens, lock body scroll and display content overlay when memu is opened | 33 | // On touch screens, lock body scroll and display content overlay when memu is opened |
32 | if (this.screenService.isInTouchScreen()) { | 34 | if (this.isMenuDisplayed) { |
33 | if (this.isMenuDisplayed) { | 35 | document.body.classList.add('menu-open') |
34 | document.body.classList.add('menu-open') | 36 | this.screenService.onFingerSwipe('left', () => { this.setMenuDisplay(false) }) |
35 | this.screenService.onFingerSwipe('left', () => { this.setMenuDisplay(false) }) | 37 | return |
36 | } else { | ||
37 | document.body.classList.remove('menu-open') | ||
38 | } | ||
39 | } | 38 | } |
39 | |||
40 | document.body.classList.remove('menu-open') | ||
40 | } | 41 | } |
41 | 42 | ||
42 | onResize () { | 43 | onResize () { |
@@ -45,9 +46,7 @@ export class MenuService { | |||
45 | 46 | ||
46 | private handleWindowResize () { | 47 | private handleWindowResize () { |
47 | // On touch screens, do not handle window resize event since opened menu is handled with a content overlay | 48 | // On touch screens, do not handle window resize event since opened menu is handled with a content overlay |
48 | if (this.screenService.isInTouchScreen()) { | 49 | if (this.screenService.isInTouchScreen()) return |
49 | return | ||
50 | } | ||
51 | 50 | ||
52 | fromEvent(window, 'resize') | 51 | fromEvent(window, 'resize') |
53 | .pipe(debounceTime(200)) | 52 | .pipe(debounceTime(200)) |
diff --git a/client/src/app/core/plugins/plugin.service.ts b/client/src/app/core/plugins/plugin.service.ts index dc115c0e1..4e44a1865 100644 --- a/client/src/app/core/plugins/plugin.service.ts +++ b/client/src/app/core/plugins/plugin.service.ts | |||
@@ -7,38 +7,22 @@ import { Notifier } from '@app/core/notification' | |||
7 | import { MarkdownService } from '@app/core/renderer' | 7 | import { MarkdownService } from '@app/core/renderer' |
8 | import { RestExtractor } from '@app/core/rest' | 8 | import { RestExtractor } from '@app/core/rest' |
9 | import { ServerService } from '@app/core/server/server.service' | 9 | import { ServerService } from '@app/core/server/server.service' |
10 | import { getDevLocale, importModule, isOnDevLocale } from '@app/helpers' | 10 | import { getDevLocale, isOnDevLocale } from '@app/helpers' |
11 | import { CustomModalComponent } from '@app/modal/custom-modal.component' | 11 | import { CustomModalComponent } from '@app/modal/custom-modal.component' |
12 | import { FormFields, Hooks, loadPlugin, PluginInfo, runHook } from '@root-helpers/plugins' | ||
12 | import { getCompleteLocale, isDefaultLocale, peertubeTranslate } from '@shared/core-utils/i18n' | 13 | import { getCompleteLocale, isDefaultLocale, peertubeTranslate } from '@shared/core-utils/i18n' |
13 | import { getHookType, internalRunHook } from '@shared/core-utils/plugins/hooks' | ||
14 | import { | 14 | import { |
15 | ClientHook, | 15 | ClientHook, |
16 | ClientHookName, | 16 | ClientHookName, |
17 | clientHookObject, | ||
18 | ClientScript, | ||
19 | PluginClientScope, | 17 | PluginClientScope, |
20 | PluginTranslation, | 18 | PluginTranslation, |
21 | PluginType, | 19 | PluginType, |
22 | PublicServerSetting, | 20 | PublicServerSetting, |
23 | RegisterClientHookOptions, | ||
24 | ServerConfigPlugin | 21 | ServerConfigPlugin |
25 | } from '@shared/models' | 22 | } from '@shared/models' |
26 | import { environment } from '../../../environments/environment' | 23 | import { environment } from '../../../environments/environment' |
27 | import { ClientScript as ClientScriptModule } from '../../../types/client-script.model' | ||
28 | import { RegisterClientHelpers } from '../../../types/register-client-option.model' | 24 | import { RegisterClientHelpers } from '../../../types/register-client-option.model' |
29 | 25 | ||
30 | interface HookStructValue extends RegisterClientHookOptions { | ||
31 | plugin: ServerConfigPlugin | ||
32 | clientScript: ClientScript | ||
33 | } | ||
34 | |||
35 | type PluginInfo = { | ||
36 | plugin: ServerConfigPlugin | ||
37 | clientScript: ClientScript | ||
38 | pluginType: PluginType | ||
39 | isTheme: boolean | ||
40 | } | ||
41 | |||
42 | @Injectable() | 26 | @Injectable() |
43 | export class PluginService implements ClientHook { | 27 | export class PluginService implements ClientHook { |
44 | private static BASE_PLUGIN_API_URL = environment.apiUrl + '/api/v1/plugins' | 28 | private static BASE_PLUGIN_API_URL = environment.apiUrl + '/api/v1/plugins' |
@@ -51,7 +35,9 @@ export class PluginService implements ClientHook { | |||
51 | search: new ReplaySubject<boolean>(1), | 35 | search: new ReplaySubject<boolean>(1), |
52 | 'video-watch': new ReplaySubject<boolean>(1), | 36 | 'video-watch': new ReplaySubject<boolean>(1), |
53 | signup: new ReplaySubject<boolean>(1), | 37 | signup: new ReplaySubject<boolean>(1), |
54 | login: new ReplaySubject<boolean>(1) | 38 | login: new ReplaySubject<boolean>(1), |
39 | 'video-edit': new ReplaySubject<boolean>(1), | ||
40 | embed: new ReplaySubject<boolean>(1) | ||
55 | } | 41 | } |
56 | 42 | ||
57 | translationsObservable: Observable<PluginTranslation> | 43 | translationsObservable: Observable<PluginTranslation> |
@@ -64,7 +50,10 @@ export class PluginService implements ClientHook { | |||
64 | private loadedScopes: PluginClientScope[] = [] | 50 | private loadedScopes: PluginClientScope[] = [] |
65 | private loadingScopes: { [id in PluginClientScope]?: boolean } = {} | 51 | private loadingScopes: { [id in PluginClientScope]?: boolean } = {} |
66 | 52 | ||
67 | private hooks: { [ name: string ]: HookStructValue[] } = {} | 53 | private hooks: Hooks = {} |
54 | private formFields: FormFields = { | ||
55 | video: [] | ||
56 | } | ||
68 | 57 | ||
69 | constructor ( | 58 | constructor ( |
70 | private authService: AuthService, | 59 | private authService: AuthService, |
@@ -120,7 +109,7 @@ export class PluginService implements ClientHook { | |||
120 | this.scopes[scope].push({ | 109 | this.scopes[scope].push({ |
121 | plugin, | 110 | plugin, |
122 | clientScript: { | 111 | clientScript: { |
123 | script: environment.apiUrl + `${pathPrefix}/${plugin.name}/${plugin.version}/client-scripts/${clientScript.script}`, | 112 | script: `${pathPrefix}/${plugin.name}/${plugin.version}/client-scripts/${clientScript.script}`, |
124 | scopes: clientScript.scopes | 113 | scopes: clientScript.scopes |
125 | }, | 114 | }, |
126 | pluginType: isTheme ? PluginType.THEME : PluginType.PLUGIN, | 115 | pluginType: isTheme ? PluginType.THEME : PluginType.PLUGIN, |
@@ -184,20 +173,8 @@ export class PluginService implements ClientHook { | |||
184 | } | 173 | } |
185 | 174 | ||
186 | runHook <T> (hookName: ClientHookName, result?: T, params?: any): Promise<T> { | 175 | runHook <T> (hookName: ClientHookName, result?: T, params?: any): Promise<T> { |
187 | return this.zone.runOutsideAngular(async () => { | 176 | return this.zone.runOutsideAngular(() => { |
188 | if (!this.hooks[ hookName ]) return result | 177 | return runHook(this.hooks, hookName, result, params) |
189 | |||
190 | const hookType = getHookType(hookName) | ||
191 | |||
192 | for (const hook of this.hooks[ hookName ]) { | ||
193 | console.log('Running hook %s of plugin %s.', hookName, hook.plugin.name) | ||
194 | |||
195 | result = await internalRunHook(hook.handler, hookType, result, params, err => { | ||
196 | console.error('Cannot run hook %s of script %s of plugin %s.', hookName, hook.clientScript.script, hook.plugin.name, err) | ||
197 | }) | ||
198 | } | ||
199 | |||
200 | return result | ||
201 | }) | 178 | }) |
202 | } | 179 | } |
203 | 180 | ||
@@ -215,35 +192,18 @@ export class PluginService implements ClientHook { | |||
215 | : PluginType.THEME | 192 | : PluginType.THEME |
216 | } | 193 | } |
217 | 194 | ||
218 | private loadPlugin (pluginInfo: PluginInfo) { | 195 | getRegisteredVideoFormFields (type: 'import-url' | 'import-torrent' | 'upload' | 'update') { |
219 | const { plugin, clientScript } = pluginInfo | 196 | return this.formFields.video.filter(f => f.videoFormOptions.type === type) |
220 | 197 | } | |
221 | const registerHook = (options: RegisterClientHookOptions) => { | ||
222 | if (clientHookObject[options.target] !== true) { | ||
223 | console.error('Unknown hook %s of plugin %s. Skipping.', options.target, plugin.name) | ||
224 | return | ||
225 | } | ||
226 | |||
227 | if (!this.hooks[options.target]) this.hooks[options.target] = [] | ||
228 | |||
229 | this.hooks[options.target].push({ | ||
230 | plugin, | ||
231 | clientScript, | ||
232 | target: options.target, | ||
233 | handler: options.handler, | ||
234 | priority: options.priority || 0 | ||
235 | }) | ||
236 | } | ||
237 | |||
238 | const peertubeHelpers = this.buildPeerTubeHelpers(pluginInfo) | ||
239 | |||
240 | console.log('Loading script %s of plugin %s.', clientScript.script, plugin.name) | ||
241 | 198 | ||
199 | private loadPlugin (pluginInfo: PluginInfo) { | ||
242 | return this.zone.runOutsideAngular(() => { | 200 | return this.zone.runOutsideAngular(() => { |
243 | return importModule(clientScript.script) | 201 | return loadPlugin({ |
244 | .then((script: ClientScriptModule) => script.register({ registerHook, peertubeHelpers })) | 202 | hooks: this.hooks, |
245 | .then(() => this.sortHooksByPriority()) | 203 | formFields: this.formFields, |
246 | .catch(err => console.error('Cannot import or register plugin %s.', pluginInfo.plugin.name, err)) | 204 | pluginInfo, |
205 | peertubeHelpersFactory: pluginInfo => this.buildPeerTubeHelpers(pluginInfo) | ||
206 | }) | ||
247 | }) | 207 | }) |
248 | } | 208 | } |
249 | 209 | ||
@@ -253,14 +213,6 @@ export class PluginService implements ClientHook { | |||
253 | } | 213 | } |
254 | } | 214 | } |
255 | 215 | ||
256 | private sortHooksByPriority () { | ||
257 | for (const hookName of Object.keys(this.hooks)) { | ||
258 | this.hooks[hookName].sort((a, b) => { | ||
259 | return b.priority - a.priority | ||
260 | }) | ||
261 | } | ||
262 | } | ||
263 | |||
264 | private buildPeerTubeHelpers (pluginInfo: PluginInfo): RegisterClientHelpers { | 216 | private buildPeerTubeHelpers (pluginInfo: PluginInfo): RegisterClientHelpers { |
265 | const { plugin } = pluginInfo | 217 | const { plugin } = pluginInfo |
266 | const npmName = this.nameToNpmName(pluginInfo.plugin.name, pluginInfo.pluginType) | 218 | const npmName = this.nameToNpmName(pluginInfo.plugin.name, pluginInfo.pluginType) |
diff --git a/client/src/app/core/wrappers/screen.service.ts b/client/src/app/core/wrappers/screen.service.ts index 88cf662b3..a085e5bdc 100644 --- a/client/src/app/core/wrappers/screen.service.ts +++ b/client/src/app/core/wrappers/screen.service.ts | |||
@@ -30,7 +30,7 @@ export class ScreenService { | |||
30 | } | 30 | } |
31 | 31 | ||
32 | isInTouchScreen () { | 32 | isInTouchScreen () { |
33 | return 'ontouchstart' in window || navigator.msMaxTouchPoints | 33 | return !!('ontouchstart' in window || navigator.msMaxTouchPoints) |
34 | } | 34 | } |
35 | 35 | ||
36 | getNumberOfAvailableMiniatures () { | 36 | getNumberOfAvailableMiniatures () { |
diff --git a/client/src/app/helpers/utils.ts b/client/src/app/helpers/utils.ts index d05541ca9..d9007dd77 100644 --- a/client/src/app/helpers/utils.ts +++ b/client/src/app/helpers/utils.ts | |||
@@ -148,41 +148,6 @@ function scrollToTop () { | |||
148 | window.scroll(0, 0) | 148 | window.scroll(0, 0) |
149 | } | 149 | } |
150 | 150 | ||
151 | // Thanks: https://github.com/uupaa/dynamic-import-polyfill | ||
152 | function importModule (path: string) { | ||
153 | return new Promise((resolve, reject) => { | ||
154 | const vector = '$importModule$' + Math.random().toString(32).slice(2) | ||
155 | const script = document.createElement('script') | ||
156 | |||
157 | const destructor = () => { | ||
158 | delete window[ vector ] | ||
159 | script.onerror = null | ||
160 | script.onload = null | ||
161 | script.remove() | ||
162 | URL.revokeObjectURL(script.src) | ||
163 | script.src = '' | ||
164 | } | ||
165 | |||
166 | script.defer = true | ||
167 | script.type = 'module' | ||
168 | |||
169 | script.onerror = () => { | ||
170 | reject(new Error(`Failed to import: ${path}`)) | ||
171 | destructor() | ||
172 | } | ||
173 | script.onload = () => { | ||
174 | resolve(window[ vector ]) | ||
175 | destructor() | ||
176 | } | ||
177 | const absURL = (environment.apiUrl || window.location.origin) + path | ||
178 | const loader = `import * as m from "${absURL}"; window.${vector} = m;` // export Module | ||
179 | const blob = new Blob([ loader ], { type: 'text/javascript' }) | ||
180 | script.src = URL.createObjectURL(blob) | ||
181 | |||
182 | document.head.appendChild(script) | ||
183 | }) | ||
184 | } | ||
185 | |||
186 | function isInViewport (el: HTMLElement) { | 151 | function isInViewport (el: HTMLElement) { |
187 | const bounding = el.getBoundingClientRect() | 152 | const bounding = el.getBoundingClientRect() |
188 | return ( | 153 | return ( |
@@ -216,7 +181,6 @@ export { | |||
216 | getAbsoluteEmbedUrl, | 181 | getAbsoluteEmbedUrl, |
217 | objectLineFeedToHtml, | 182 | objectLineFeedToHtml, |
218 | removeElementFromArray, | 183 | removeElementFromArray, |
219 | importModule, | ||
220 | scrollToTop, | 184 | scrollToTop, |
221 | isInViewport, | 185 | isInViewport, |
222 | isXPercentInViewport | 186 | isXPercentInViewport |
diff --git a/client/src/app/shared/form-validators/abuse-validators.ts b/client/src/app/shared/form-validators/abuse-validators.ts new file mode 100644 index 000000000..75bfacf01 --- /dev/null +++ b/client/src/app/shared/form-validators/abuse-validators.ts | |||
@@ -0,0 +1,29 @@ | |||
1 | import { Validators } from '@angular/forms' | ||
2 | import { BuildFormValidator } from './form-validator.model' | ||
3 | |||
4 | export const ABUSE_REASON_VALIDATOR: BuildFormValidator = { | ||
5 | VALIDATORS: [Validators.required, Validators.minLength(2), Validators.maxLength(3000)], | ||
6 | MESSAGES: { | ||
7 | 'required': $localize`Report reason is required.`, | ||
8 | 'minlength': $localize`Report reason must be at least 2 characters long.`, | ||
9 | 'maxlength': $localize`Report reason cannot be more than 3000 characters long.` | ||
10 | } | ||
11 | } | ||
12 | |||
13 | export const ABUSE_MODERATION_COMMENT_VALIDATOR: BuildFormValidator = { | ||
14 | VALIDATORS: [Validators.required, Validators.minLength(2), Validators.maxLength(3000)], | ||
15 | MESSAGES: { | ||
16 | 'required': $localize`Moderation comment is required.`, | ||
17 | 'minlength': $localize`Moderation comment must be at least 2 characters long.`, | ||
18 | 'maxlength': $localize`Moderation comment cannot be more than 3000 characters long.` | ||
19 | } | ||
20 | } | ||
21 | |||
22 | export const ABUSE_MESSAGE_VALIDATOR: BuildFormValidator = { | ||
23 | VALIDATORS: [Validators.required, Validators.minLength(2), Validators.maxLength(3000)], | ||
24 | MESSAGES: { | ||
25 | 'required': $localize`Abuse message is required.`, | ||
26 | 'minlength': $localize`Abuse message must be at least 2 characters long.`, | ||
27 | 'maxlength': $localize`Abuse message cannot be more than 3000 characters long.` | ||
28 | } | ||
29 | } | ||
diff --git a/client/src/app/shared/form-validators/batch-domains-validators.ts b/client/src/app/shared/form-validators/batch-domains-validators.ts new file mode 100644 index 000000000..423d1337f --- /dev/null +++ b/client/src/app/shared/form-validators/batch-domains-validators.ts | |||
@@ -0,0 +1,60 @@ | |||
1 | import { AbstractControl, FormControl, ValidatorFn, Validators } from '@angular/forms' | ||
2 | import { BuildFormValidator } from './form-validator.model' | ||
3 | import { validateHost } from './host' | ||
4 | |||
5 | export function getNotEmptyHosts (hosts: string) { | ||
6 | return hosts | ||
7 | .split('\n') | ||
8 | .filter((host: string) => host && host.length !== 0) // Eject empty hosts | ||
9 | } | ||
10 | |||
11 | const validDomains: ValidatorFn = (control: FormControl) => { | ||
12 | if (!control.value) return null | ||
13 | |||
14 | const newHostsErrors = [] | ||
15 | const hosts = getNotEmptyHosts(control.value) | ||
16 | |||
17 | for (const host of hosts) { | ||
18 | if (validateHost(host) === false) { | ||
19 | newHostsErrors.push($localize`${host} is not valid`) | ||
20 | } | ||
21 | } | ||
22 | |||
23 | /* Is not valid. */ | ||
24 | if (newHostsErrors.length !== 0) { | ||
25 | return { | ||
26 | 'validDomains': { | ||
27 | reason: 'invalid', | ||
28 | value: newHostsErrors.join('. ') + '.' | ||
29 | } | ||
30 | } | ||
31 | } | ||
32 | |||
33 | /* Is valid. */ | ||
34 | return null | ||
35 | } | ||
36 | |||
37 | const isHostsUnique: ValidatorFn = (control: AbstractControl) => { | ||
38 | if (!control.value) return null | ||
39 | |||
40 | const hosts = getNotEmptyHosts(control.value) | ||
41 | |||
42 | if (hosts.every((host: string) => hosts.indexOf(host) === hosts.lastIndexOf(host))) { | ||
43 | return null | ||
44 | } else { | ||
45 | return { | ||
46 | 'uniqueDomains': { | ||
47 | reason: 'invalid' | ||
48 | } | ||
49 | } | ||
50 | } | ||
51 | } | ||
52 | |||
53 | export const DOMAINS_VALIDATOR: BuildFormValidator = { | ||
54 | VALIDATORS: [Validators.required, validDomains, isHostsUnique], | ||
55 | MESSAGES: { | ||
56 | 'required': $localize`Domain is required.`, | ||
57 | 'validDomains': $localize`Domains entered are invalid.`, | ||
58 | 'uniqueDomains': $localize`Domains entered contain duplicates.` | ||
59 | } | ||
60 | } | ||
diff --git a/client/src/app/shared/form-validators/custom-config-validators.ts b/client/src/app/shared/form-validators/custom-config-validators.ts new file mode 100644 index 000000000..41b3cbba9 --- /dev/null +++ b/client/src/app/shared/form-validators/custom-config-validators.ts | |||
@@ -0,0 +1,80 @@ | |||
1 | import { Validators } from '@angular/forms' | ||
2 | import { BuildFormValidator } from './form-validator.model' | ||
3 | |||
4 | export const INSTANCE_NAME_VALIDATOR: BuildFormValidator = { | ||
5 | VALIDATORS: [Validators.required], | ||
6 | MESSAGES: { | ||
7 | 'required': $localize`Instance name is required.` | ||
8 | } | ||
9 | } | ||
10 | |||
11 | export const INSTANCE_SHORT_DESCRIPTION_VALIDATOR: BuildFormValidator = { | ||
12 | VALIDATORS: [Validators.max(250)], | ||
13 | MESSAGES: { | ||
14 | 'max': $localize`Short description should not be longer than 250 characters.` | ||
15 | } | ||
16 | } | ||
17 | |||
18 | export const SERVICES_TWITTER_USERNAME_VALIDATOR: BuildFormValidator = { | ||
19 | VALIDATORS: [Validators.required], | ||
20 | MESSAGES: { | ||
21 | 'required': $localize`Twitter username is required.` | ||
22 | } | ||
23 | } | ||
24 | |||
25 | export const CACHE_PREVIEWS_SIZE_VALIDATOR: BuildFormValidator = { | ||
26 | VALIDATORS: [Validators.required, Validators.min(1), Validators.pattern('[0-9]+')], | ||
27 | MESSAGES: { | ||
28 | 'required': $localize`Previews cache size is required.`, | ||
29 | 'min': $localize`Previews cache size must be greater than 1.`, | ||
30 | 'pattern': $localize`Previews cache size must be a number.` | ||
31 | } | ||
32 | } | ||
33 | |||
34 | export const CACHE_CAPTIONS_SIZE_VALIDATOR: BuildFormValidator = { | ||
35 | VALIDATORS: [Validators.required, Validators.min(1), Validators.pattern('[0-9]+')], | ||
36 | MESSAGES: { | ||
37 | 'required': $localize`Captions cache size is required.`, | ||
38 | 'min': $localize`Captions cache size must be greater than 1.`, | ||
39 | 'pattern': $localize`Captions cache size must be a number.` | ||
40 | } | ||
41 | } | ||
42 | |||
43 | export const SIGNUP_LIMIT_VALIDATOR: BuildFormValidator = { | ||
44 | VALIDATORS: [Validators.required, Validators.min(-1), Validators.pattern('-?[0-9]+')], | ||
45 | MESSAGES: { | ||
46 | 'required': $localize`Signup limit is required.`, | ||
47 | 'min': $localize`Signup limit must be greater than 1.`, | ||
48 | 'pattern': $localize`Signup limit must be a number.` | ||
49 | } | ||
50 | } | ||
51 | |||
52 | export const ADMIN_EMAIL_VALIDATOR: BuildFormValidator = { | ||
53 | VALIDATORS: [Validators.required, Validators.email], | ||
54 | MESSAGES: { | ||
55 | 'required': $localize`Admin email is required.`, | ||
56 | 'email': $localize`Admin email must be valid.` | ||
57 | } | ||
58 | } | ||
59 | |||
60 | export const TRANSCODING_THREADS_VALIDATOR: BuildFormValidator = { | ||
61 | VALIDATORS: [Validators.required, Validators.min(0)], | ||
62 | MESSAGES: { | ||
63 | 'required': $localize`Transcoding threads is required.`, | ||
64 | 'min': $localize`Transcoding threads must be greater or equal to 0.` | ||
65 | } | ||
66 | } | ||
67 | |||
68 | export const INDEX_URL_VALIDATOR: BuildFormValidator = { | ||
69 | VALIDATORS: [Validators.pattern(/^https:\/\//)], | ||
70 | MESSAGES: { | ||
71 | 'pattern': $localize`Index URL should be a URL` | ||
72 | } | ||
73 | } | ||
74 | |||
75 | export const SEARCH_INDEX_URL_VALIDATOR: BuildFormValidator = { | ||
76 | VALIDATORS: [Validators.pattern(/^https?:\/\//)], | ||
77 | MESSAGES: { | ||
78 | 'pattern': $localize`Search index URL should be a URL` | ||
79 | } | ||
80 | } | ||
diff --git a/client/src/app/shared/form-validators/form-validator.model.ts b/client/src/app/shared/form-validators/form-validator.model.ts new file mode 100644 index 000000000..248a3b1d3 --- /dev/null +++ b/client/src/app/shared/form-validators/form-validator.model.ts | |||
@@ -0,0 +1,14 @@ | |||
1 | import { ValidatorFn } from '@angular/forms' | ||
2 | |||
3 | export type BuildFormValidator = { | ||
4 | VALIDATORS: ValidatorFn[], | ||
5 | MESSAGES: { [ name: string ]: string } | ||
6 | } | ||
7 | |||
8 | export type BuildFormArgument = { | ||
9 | [ id: string ]: BuildFormValidator | BuildFormArgument | ||
10 | } | ||
11 | |||
12 | export type BuildFormDefaultValues = { | ||
13 | [ name: string ]: string | string[] | BuildFormDefaultValues | ||
14 | } | ||
diff --git a/client/src/app/shared/shared-forms/form-validators/host.ts b/client/src/app/shared/form-validators/host.ts index c18a35f9b..c18a35f9b 100644 --- a/client/src/app/shared/shared-forms/form-validators/host.ts +++ b/client/src/app/shared/form-validators/host.ts | |||
diff --git a/client/src/app/shared/form-validators/index.ts b/client/src/app/shared/form-validators/index.ts new file mode 100644 index 000000000..f621f03a4 --- /dev/null +++ b/client/src/app/shared/form-validators/index.ts | |||
@@ -0,0 +1,17 @@ | |||
1 | export * from './form-validator.model' | ||
2 | export * from './host' | ||
3 | |||
4 | // Don't re export const variables because webpack 4 cannot do tree shaking with them | ||
5 | // export * from './abuse-validators' | ||
6 | // export * from './batch-domains-validators' | ||
7 | // export * from './custom-config-validators' | ||
8 | // export * from './instance-validators' | ||
9 | // export * from './login-validators' | ||
10 | // export * from './reset-password-validators' | ||
11 | // export * from './user-validators' | ||
12 | // export * from './video-block-validators' | ||
13 | // export * from './video-captions-validators' | ||
14 | // export * from './video-channel-validators' | ||
15 | // export * from './video-comment-validators' | ||
16 | // export * from './video-playlist-validators' | ||
17 | // export * from './video-validators' | ||
diff --git a/client/src/app/shared/form-validators/instance-validators.ts b/client/src/app/shared/form-validators/instance-validators.ts new file mode 100644 index 000000000..a72e28ba0 --- /dev/null +++ b/client/src/app/shared/form-validators/instance-validators.ts | |||
@@ -0,0 +1,49 @@ | |||
1 | import { Validators } from '@angular/forms' | ||
2 | import { BuildFormValidator } from './form-validator.model' | ||
3 | |||
4 | export const FROM_EMAIL_VALIDATOR: BuildFormValidator = { | ||
5 | VALIDATORS: [Validators.required, Validators.email], | ||
6 | MESSAGES: { | ||
7 | 'required': $localize`Email is required.`, | ||
8 | 'email': $localize`Email must be valid.` | ||
9 | } | ||
10 | } | ||
11 | |||
12 | export const FROM_NAME_VALIDATOR: BuildFormValidator = { | ||
13 | VALIDATORS: [ | ||
14 | Validators.required, | ||
15 | Validators.minLength(1), | ||
16 | Validators.maxLength(120) | ||
17 | ], | ||
18 | MESSAGES: { | ||
19 | 'required': $localize`Your name is required.`, | ||
20 | 'minlength': $localize`Your name must be at least 1 character long.`, | ||
21 | 'maxlength': $localize`Your name cannot be more than 120 characters long.` | ||
22 | } | ||
23 | } | ||
24 | |||
25 | export const SUBJECT_VALIDATOR: BuildFormValidator = { | ||
26 | VALIDATORS: [ | ||
27 | Validators.required, | ||
28 | Validators.minLength(1), | ||
29 | Validators.maxLength(120) | ||
30 | ], | ||
31 | MESSAGES: { | ||
32 | 'required': $localize`A subject is required.`, | ||
33 | 'minlength': $localize`The subject must be at least 1 character long.`, | ||
34 | 'maxlength': $localize`The subject cannot be more than 120 characters long.` | ||
35 | } | ||
36 | } | ||
37 | |||
38 | export const BODY_VALIDATOR: BuildFormValidator = { | ||
39 | VALIDATORS: [ | ||
40 | Validators.required, | ||
41 | Validators.minLength(3), | ||
42 | Validators.maxLength(5000) | ||
43 | ], | ||
44 | MESSAGES: { | ||
45 | 'required': $localize`A message is required.`, | ||
46 | 'minlength': $localize`The message must be at least 3 characters long.`, | ||
47 | 'maxlength': $localize`The message cannot be more than 5000 characters long.` | ||
48 | } | ||
49 | } | ||
diff --git a/client/src/app/shared/form-validators/login-validators.ts b/client/src/app/shared/form-validators/login-validators.ts new file mode 100644 index 000000000..1ceae1be3 --- /dev/null +++ b/client/src/app/shared/form-validators/login-validators.ts | |||
@@ -0,0 +1,20 @@ | |||
1 | import { Validators } from '@angular/forms' | ||
2 | import { BuildFormValidator } from './form-validator.model' | ||
3 | |||
4 | export const LOGIN_USERNAME_VALIDATOR: BuildFormValidator = { | ||
5 | VALIDATORS: [ | ||
6 | Validators.required | ||
7 | ], | ||
8 | MESSAGES: { | ||
9 | 'required': $localize`Username is required.` | ||
10 | } | ||
11 | } | ||
12 | |||
13 | export const LOGIN_PASSWORD_VALIDATOR: BuildFormValidator = { | ||
14 | VALIDATORS: [ | ||
15 | Validators.required | ||
16 | ], | ||
17 | MESSAGES: { | ||
18 | 'required': $localize`Password is required.` | ||
19 | } | ||
20 | } | ||
diff --git a/client/src/app/shared/form-validators/reset-password-validators.ts b/client/src/app/shared/form-validators/reset-password-validators.ts new file mode 100644 index 000000000..b87f2eab9 --- /dev/null +++ b/client/src/app/shared/form-validators/reset-password-validators.ts | |||
@@ -0,0 +1,11 @@ | |||
1 | import { Validators } from '@angular/forms' | ||
2 | import { BuildFormValidator } from './form-validator.model' | ||
3 | |||
4 | export const RESET_PASSWORD_CONFIRM_VALIDATOR: BuildFormValidator = { | ||
5 | VALIDATORS: [ | ||
6 | Validators.required | ||
7 | ], | ||
8 | MESSAGES: { | ||
9 | 'required': $localize`Confirmation of the password is required.` | ||
10 | } | ||
11 | } | ||
diff --git a/client/src/app/shared/form-validators/user-validators.ts b/client/src/app/shared/form-validators/user-validators.ts new file mode 100644 index 000000000..18199505c --- /dev/null +++ b/client/src/app/shared/form-validators/user-validators.ts | |||
@@ -0,0 +1,144 @@ | |||
1 | import { Validators } from '@angular/forms' | ||
2 | import { BuildFormValidator } from './form-validator.model' | ||
3 | |||
4 | export const USER_USERNAME_VALIDATOR: BuildFormValidator = { | ||
5 | VALIDATORS: [ | ||
6 | Validators.required, | ||
7 | Validators.minLength(1), | ||
8 | Validators.maxLength(50), | ||
9 | Validators.pattern(/^[a-z0-9][a-z0-9._]*$/) | ||
10 | ], | ||
11 | MESSAGES: { | ||
12 | 'required': $localize`Username is required.`, | ||
13 | 'minlength': $localize`Username must be at least 1 character long.`, | ||
14 | 'maxlength': $localize`Username cannot be more than 50 characters long.`, | ||
15 | 'pattern': $localize`Username should be lowercase alphanumeric; dots and underscores are allowed.` | ||
16 | } | ||
17 | } | ||
18 | |||
19 | export const USER_CHANNEL_NAME_VALIDATOR: BuildFormValidator = { | ||
20 | VALIDATORS: [ | ||
21 | Validators.required, | ||
22 | Validators.minLength(1), | ||
23 | Validators.maxLength(50), | ||
24 | Validators.pattern(/^[a-z0-9][a-z0-9._]*$/) | ||
25 | ], | ||
26 | MESSAGES: { | ||
27 | 'required': $localize`Channel name is required.`, | ||
28 | 'minlength': $localize`Channel name must be at least 1 character long.`, | ||
29 | 'maxlength': $localize`Channel name cannot be more than 50 characters long.`, | ||
30 | 'pattern': $localize`Channel name should be lowercase alphanumeric; dots and underscores are allowed.` | ||
31 | } | ||
32 | } | ||
33 | |||
34 | export const USER_EMAIL_VALIDATOR: BuildFormValidator = { | ||
35 | VALIDATORS: [ Validators.required, Validators.email ], | ||
36 | MESSAGES: { | ||
37 | 'required': $localize`Email is required.`, | ||
38 | 'email': $localize`Email must be valid.` | ||
39 | } | ||
40 | } | ||
41 | |||
42 | export const USER_PASSWORD_VALIDATOR: BuildFormValidator = { | ||
43 | VALIDATORS: [ | ||
44 | Validators.required, | ||
45 | Validators.minLength(6), | ||
46 | Validators.maxLength(255) | ||
47 | ], | ||
48 | MESSAGES: { | ||
49 | 'required': $localize`Password is required.`, | ||
50 | 'minlength': $localize`Password must be at least 6 characters long.`, | ||
51 | 'maxlength': $localize`Password cannot be more than 255 characters long.` | ||
52 | } | ||
53 | } | ||
54 | |||
55 | export const USER_PASSWORD_OPTIONAL_VALIDATOR: BuildFormValidator = { | ||
56 | VALIDATORS: [ | ||
57 | Validators.minLength(6), | ||
58 | Validators.maxLength(255) | ||
59 | ], | ||
60 | MESSAGES: { | ||
61 | 'minlength': $localize`Password must be at least 6 characters long.`, | ||
62 | 'maxlength': $localize`Password cannot be more than 255 characters long.` | ||
63 | } | ||
64 | } | ||
65 | |||
66 | export const USER_CONFIRM_PASSWORD_VALIDATOR: BuildFormValidator = { | ||
67 | VALIDATORS: [], | ||
68 | MESSAGES: { | ||
69 | 'matchPassword': $localize`The new password and the confirmed password do not correspond.` | ||
70 | } | ||
71 | } | ||
72 | |||
73 | export const USER_VIDEO_QUOTA_VALIDATOR: BuildFormValidator = { | ||
74 | VALIDATORS: [ Validators.required, Validators.min(-1) ], | ||
75 | MESSAGES: { | ||
76 | 'required': $localize`Video quota is required.`, | ||
77 | 'min': $localize`Quota must be greater than -1.` | ||
78 | } | ||
79 | } | ||
80 | export const USER_VIDEO_QUOTA_DAILY_VALIDATOR: BuildFormValidator = { | ||
81 | VALIDATORS: [ Validators.required, Validators.min(-1) ], | ||
82 | MESSAGES: { | ||
83 | 'required': $localize`Daily upload limit is required.`, | ||
84 | 'min': $localize`Daily upload limit must be greater than -1.` | ||
85 | } | ||
86 | } | ||
87 | |||
88 | export const USER_ROLE_VALIDATOR: BuildFormValidator = { | ||
89 | VALIDATORS: [ Validators.required ], | ||
90 | MESSAGES: { | ||
91 | 'required': $localize`User role is required.` | ||
92 | } | ||
93 | } | ||
94 | |||
95 | export const USER_DISPLAY_NAME_REQUIRED_VALIDATOR = buildDisplayNameValidator(true) | ||
96 | |||
97 | export const USER_DESCRIPTION_VALIDATOR: BuildFormValidator = { | ||
98 | VALIDATORS: [ | ||
99 | Validators.minLength(3), | ||
100 | Validators.maxLength(1000) | ||
101 | ], | ||
102 | MESSAGES: { | ||
103 | 'minlength': $localize`Description must be at least 3 characters long.`, | ||
104 | 'maxlength': $localize`Description cannot be more than 1000 characters long.` | ||
105 | } | ||
106 | } | ||
107 | |||
108 | export const USER_TERMS_VALIDATOR: BuildFormValidator = { | ||
109 | VALIDATORS: [ | ||
110 | Validators.requiredTrue | ||
111 | ], | ||
112 | MESSAGES: { | ||
113 | 'required': $localize`You must agree with the instance terms in order to register on it.` | ||
114 | } | ||
115 | } | ||
116 | |||
117 | export const USER_BAN_REASON_VALIDATOR: BuildFormValidator = { | ||
118 | VALIDATORS: [ | ||
119 | Validators.minLength(3), | ||
120 | Validators.maxLength(250) | ||
121 | ], | ||
122 | MESSAGES: { | ||
123 | 'minlength': $localize`Ban reason must be at least 3 characters long.`, | ||
124 | 'maxlength': $localize`Ban reason cannot be more than 250 characters long.` | ||
125 | } | ||
126 | } | ||
127 | |||
128 | function buildDisplayNameValidator (required: boolean) { | ||
129 | const control = { | ||
130 | VALIDATORS: [ | ||
131 | Validators.minLength(1), | ||
132 | Validators.maxLength(120) | ||
133 | ], | ||
134 | MESSAGES: { | ||
135 | 'required': $localize`Display name is required.`, | ||
136 | 'minlength': $localize`Display name must be at least 1 character long.`, | ||
137 | 'maxlength': $localize`Display name cannot be more than 50 characters long.` | ||
138 | } | ||
139 | } | ||
140 | |||
141 | if (required) control.VALIDATORS.push(Validators.required) | ||
142 | |||
143 | return control | ||
144 | } | ||
diff --git a/client/src/app/shared/form-validators/video-block-validators.ts b/client/src/app/shared/form-validators/video-block-validators.ts new file mode 100644 index 000000000..d3974aefe --- /dev/null +++ b/client/src/app/shared/form-validators/video-block-validators.ts | |||
@@ -0,0 +1,10 @@ | |||
1 | import { Validators } from '@angular/forms' | ||
2 | import { BuildFormValidator } from './form-validator.model' | ||
3 | |||
4 | export const VIDEO_BLOCK_REASON_VALIDATOR: BuildFormValidator = { | ||
5 | VALIDATORS: [ Validators.minLength(2), Validators.maxLength(300) ], | ||
6 | MESSAGES: { | ||
7 | 'minlength': $localize`Block reason must be at least 2 characters long.`, | ||
8 | 'maxlength': $localize`Block reason cannot be more than 300 characters long.` | ||
9 | } | ||
10 | } | ||
diff --git a/client/src/app/shared/form-validators/video-captions-validators.ts b/client/src/app/shared/form-validators/video-captions-validators.ts new file mode 100644 index 000000000..9742d2925 --- /dev/null +++ b/client/src/app/shared/form-validators/video-captions-validators.ts | |||
@@ -0,0 +1,16 @@ | |||
1 | import { Validators } from '@angular/forms' | ||
2 | import { BuildFormValidator } from './form-validator.model' | ||
3 | |||
4 | export const VIDEO_CAPTION_LANGUAGE_VALIDATOR: BuildFormValidator = { | ||
5 | VALIDATORS: [ Validators.required ], | ||
6 | MESSAGES: { | ||
7 | 'required': $localize`Video caption language is required.` | ||
8 | } | ||
9 | } | ||
10 | |||
11 | export const VIDEO_CAPTION_FILE_VALIDATOR: BuildFormValidator = { | ||
12 | VALIDATORS: [ Validators.required ], | ||
13 | MESSAGES: { | ||
14 | 'required': $localize`Video caption file is required.` | ||
15 | } | ||
16 | } | ||
diff --git a/client/src/app/shared/form-validators/video-channel-validators.ts b/client/src/app/shared/form-validators/video-channel-validators.ts new file mode 100644 index 000000000..0daab22ce --- /dev/null +++ b/client/src/app/shared/form-validators/video-channel-validators.ts | |||
@@ -0,0 +1,52 @@ | |||
1 | import { Validators } from '@angular/forms' | ||
2 | import { BuildFormValidator } from './form-validator.model' | ||
3 | |||
4 | export const VIDEO_CHANNEL_NAME_VALIDATOR: BuildFormValidator = { | ||
5 | VALIDATORS: [ | ||
6 | Validators.required, | ||
7 | Validators.minLength(1), | ||
8 | Validators.maxLength(50), | ||
9 | Validators.pattern(/^[a-z0-9][a-z0-9._]*$/) | ||
10 | ], | ||
11 | MESSAGES: { | ||
12 | 'required': $localize`Name is required.`, | ||
13 | 'minlength': $localize`Name must be at least 1 character long.`, | ||
14 | 'maxlength': $localize`Name cannot be more than 50 characters long.`, | ||
15 | 'pattern': $localize`Name should be lowercase alphanumeric; dots and underscores are allowed.` | ||
16 | } | ||
17 | } | ||
18 | |||
19 | export const VIDEO_CHANNEL_DISPLAY_NAME_VALIDATOR: BuildFormValidator = { | ||
20 | VALIDATORS: [ | ||
21 | Validators.required, | ||
22 | Validators.minLength(1), | ||
23 | Validators.maxLength(50) | ||
24 | ], | ||
25 | MESSAGES: { | ||
26 | 'required': $localize`Display name is required.`, | ||
27 | 'minlength': $localize`Display name must be at least 1 character long.`, | ||
28 | 'maxlength': $localize`Display name cannot be more than 50 characters long.` | ||
29 | } | ||
30 | } | ||
31 | |||
32 | export const VIDEO_CHANNEL_DESCRIPTION_VALIDATOR: BuildFormValidator = { | ||
33 | VALIDATORS: [ | ||
34 | Validators.minLength(3), | ||
35 | Validators.maxLength(1000) | ||
36 | ], | ||
37 | MESSAGES: { | ||
38 | 'minlength': $localize`Description must be at least 3 characters long.`, | ||
39 | 'maxlength': $localize`Description cannot be more than 1000 characters long.` | ||
40 | } | ||
41 | } | ||
42 | |||
43 | export const VIDEO_CHANNEL_SUPPORT_VALIDATOR: BuildFormValidator = { | ||
44 | VALIDATORS: [ | ||
45 | Validators.minLength(3), | ||
46 | Validators.maxLength(1000) | ||
47 | ], | ||
48 | MESSAGES: { | ||
49 | 'minlength': $localize`Support text must be at least 3 characters long.`, | ||
50 | 'maxlength': $localize`Support text cannot be more than 1000 characters long` | ||
51 | } | ||
52 | } | ||
diff --git a/client/src/app/shared/form-validators/video-comment-validators.ts b/client/src/app/shared/form-validators/video-comment-validators.ts new file mode 100644 index 000000000..c56564d34 --- /dev/null +++ b/client/src/app/shared/form-validators/video-comment-validators.ts | |||
@@ -0,0 +1,11 @@ | |||
1 | import { Validators } from '@angular/forms' | ||
2 | import { BuildFormValidator } from './form-validator.model' | ||
3 | |||
4 | export const VIDEO_COMMENT_TEXT_VALIDATOR: BuildFormValidator = { | ||
5 | VALIDATORS: [ Validators.required, Validators.minLength(1), Validators.maxLength(3000) ], | ||
6 | MESSAGES: { | ||
7 | 'required': $localize`Comment is required.`, | ||
8 | 'minlength': $localize`Comment must be at least 2 characters long.`, | ||
9 | 'maxlength': $localize`Comment cannot be more than 3000 characters long.` | ||
10 | } | ||
11 | } | ||
diff --git a/client/src/app/shared/form-validators/video-ownership-change-validators.ts b/client/src/app/shared/form-validators/video-ownership-change-validators.ts new file mode 100644 index 000000000..e1a2df8a6 --- /dev/null +++ b/client/src/app/shared/form-validators/video-ownership-change-validators.ts | |||
@@ -0,0 +1,25 @@ | |||
1 | import { AbstractControl, ValidationErrors, Validators } from '@angular/forms' | ||
2 | import { BuildFormValidator } from './form-validator.model' | ||
3 | |||
4 | export const OWNERSHIP_CHANGE_CHANNEL_VALIDATOR: BuildFormValidator = { | ||
5 | VALIDATORS: [ Validators.required ], | ||
6 | MESSAGES: { | ||
7 | 'required': $localize`The channel is required.` | ||
8 | } | ||
9 | } | ||
10 | |||
11 | export const OWNERSHIP_CHANGE_USERNAME_VALIDATOR: BuildFormValidator = { | ||
12 | VALIDATORS: [ Validators.required, localAccountValidator ], | ||
13 | MESSAGES: { | ||
14 | 'required': $localize`The username is required.`, | ||
15 | 'localAccountOnly': $localize`You can only transfer ownership to a local account` | ||
16 | } | ||
17 | } | ||
18 | |||
19 | function localAccountValidator (control: AbstractControl): ValidationErrors { | ||
20 | if (control.value.includes('@')) { | ||
21 | return { 'localAccountOnly': true } | ||
22 | } | ||
23 | |||
24 | return null | ||
25 | } | ||
diff --git a/client/src/app/shared/form-validators/video-playlist-validators.ts b/client/src/app/shared/form-validators/video-playlist-validators.ts new file mode 100644 index 000000000..7e3d29458 --- /dev/null +++ b/client/src/app/shared/form-validators/video-playlist-validators.ts | |||
@@ -0,0 +1,54 @@ | |||
1 | import { Validators, AbstractControl } from '@angular/forms' | ||
2 | import { BuildFormValidator } from './form-validator.model' | ||
3 | import { VideoPlaylistPrivacy } from '@shared/models' | ||
4 | |||
5 | export const VIDEO_PLAYLIST_DISPLAY_NAME_VALIDATOR: BuildFormValidator = { | ||
6 | VALIDATORS: [ | ||
7 | Validators.required, | ||
8 | Validators.minLength(1), | ||
9 | Validators.maxLength(120) | ||
10 | ], | ||
11 | MESSAGES: { | ||
12 | 'required': $localize`Display name is required.`, | ||
13 | 'minlength': $localize`Display name must be at least 1 character long.`, | ||
14 | 'maxlength': $localize`Display name cannot be more than 120 characters long.` | ||
15 | } | ||
16 | } | ||
17 | |||
18 | export const VIDEO_PLAYLIST_PRIVACY_VALIDATOR: BuildFormValidator = { | ||
19 | VALIDATORS: [ | ||
20 | Validators.required | ||
21 | ], | ||
22 | MESSAGES: { | ||
23 | 'required': $localize`Privacy is required.` | ||
24 | } | ||
25 | } | ||
26 | |||
27 | export const VIDEO_PLAYLIST_DESCRIPTION_VALIDATOR: BuildFormValidator = { | ||
28 | VALIDATORS: [ | ||
29 | Validators.minLength(3), | ||
30 | Validators.maxLength(1000) | ||
31 | ], | ||
32 | MESSAGES: { | ||
33 | 'minlength': $localize`Description must be at least 3 characters long.`, | ||
34 | 'maxlength': $localize`Description cannot be more than 1000 characters long.` | ||
35 | } | ||
36 | } | ||
37 | |||
38 | export const VIDEO_PLAYLIST_CHANNEL_ID_VALIDATOR: BuildFormValidator = { | ||
39 | VALIDATORS: [], | ||
40 | MESSAGES: { | ||
41 | 'required': $localize`The channel is required when the playlist is public.` | ||
42 | } | ||
43 | } | ||
44 | |||
45 | export function setPlaylistChannelValidator (channelControl: AbstractControl, privacy: VideoPlaylistPrivacy) { | ||
46 | if (privacy.toString() === VideoPlaylistPrivacy.PUBLIC.toString()) { | ||
47 | channelControl.setValidators([Validators.required]) | ||
48 | } else { | ||
49 | channelControl.setValidators(null) | ||
50 | } | ||
51 | |||
52 | channelControl.markAsDirty() | ||
53 | channelControl.updateValueAndValidity() | ||
54 | } | ||
diff --git a/client/src/app/shared/form-validators/video-validators.ts b/client/src/app/shared/form-validators/video-validators.ts new file mode 100644 index 000000000..23f2391b2 --- /dev/null +++ b/client/src/app/shared/form-validators/video-validators.ts | |||
@@ -0,0 +1,101 @@ | |||
1 | import { AbstractControl, ValidationErrors, ValidatorFn, Validators } from '@angular/forms' | ||
2 | import { BuildFormValidator } from './form-validator.model' | ||
3 | |||
4 | export const VIDEO_NAME_VALIDATOR: BuildFormValidator = { | ||
5 | VALIDATORS: [ Validators.required, Validators.minLength(3), Validators.maxLength(120) ], | ||
6 | MESSAGES: { | ||
7 | 'required': $localize`Video name is required.`, | ||
8 | 'minlength': $localize`Video name must be at least 3 characters long.`, | ||
9 | 'maxlength': $localize`Video name cannot be more than 120 characters long.` | ||
10 | } | ||
11 | } | ||
12 | |||
13 | export const VIDEO_PRIVACY_VALIDATOR: BuildFormValidator = { | ||
14 | VALIDATORS: [ Validators.required ], | ||
15 | MESSAGES: { | ||
16 | 'required': $localize`Video privacy is required.` | ||
17 | } | ||
18 | } | ||
19 | |||
20 | export const VIDEO_CATEGORY_VALIDATOR: BuildFormValidator = { | ||
21 | VALIDATORS: [ ], | ||
22 | MESSAGES: {} | ||
23 | } | ||
24 | |||
25 | export const VIDEO_LICENCE_VALIDATOR: BuildFormValidator = { | ||
26 | VALIDATORS: [ ], | ||
27 | MESSAGES: {} | ||
28 | } | ||
29 | |||
30 | export const VIDEO_LANGUAGE_VALIDATOR: BuildFormValidator = { | ||
31 | VALIDATORS: [ ], | ||
32 | MESSAGES: {} | ||
33 | } | ||
34 | |||
35 | export const VIDEO_IMAGE_VALIDATOR: BuildFormValidator = { | ||
36 | VALIDATORS: [ ], | ||
37 | MESSAGES: {} | ||
38 | } | ||
39 | |||
40 | export const VIDEO_CHANNEL_VALIDATOR: BuildFormValidator = { | ||
41 | VALIDATORS: [ Validators.required ], | ||
42 | MESSAGES: { | ||
43 | 'required': $localize`Video channel is required.` | ||
44 | } | ||
45 | } | ||
46 | |||
47 | export const VIDEO_DESCRIPTION_VALIDATOR: BuildFormValidator = { | ||
48 | VALIDATORS: [ Validators.minLength(3), Validators.maxLength(10000) ], | ||
49 | MESSAGES: { | ||
50 | 'minlength': $localize`Video description must be at least 3 characters long.`, | ||
51 | 'maxlength': $localize`Video description cannot be more than 10000 characters long.` | ||
52 | } | ||
53 | } | ||
54 | |||
55 | export const VIDEO_TAG_VALIDATOR: BuildFormValidator = { | ||
56 | VALIDATORS: [ Validators.minLength(2), Validators.maxLength(30) ], | ||
57 | MESSAGES: { | ||
58 | 'minlength': $localize`A tag should be more than 2 characters long.`, | ||
59 | 'maxlength': $localize`A tag should be less than 30 characters long.` | ||
60 | } | ||
61 | } | ||
62 | |||
63 | export const VIDEO_TAGS_ARRAY_VALIDATOR: BuildFormValidator = { | ||
64 | VALIDATORS: [ Validators.maxLength(5), arrayTagLengthValidator() ], | ||
65 | MESSAGES: { | ||
66 | 'maxlength': $localize`A maximum of 5 tags can be used on a video.`, | ||
67 | 'arrayTagLength': $localize`A tag should be more than 2, and less than 30 characters long.` | ||
68 | } | ||
69 | } | ||
70 | |||
71 | export const VIDEO_SUPPORT_VALIDATOR: BuildFormValidator = { | ||
72 | VALIDATORS: [ Validators.minLength(3), Validators.maxLength(1000) ], | ||
73 | MESSAGES: { | ||
74 | 'minlength': $localize`Video support must be at least 3 characters long.`, | ||
75 | 'maxlength': $localize`Video support cannot be more than 1000 characters long.` | ||
76 | } | ||
77 | } | ||
78 | |||
79 | export const VIDEO_SCHEDULE_PUBLICATION_AT_VALIDATOR: BuildFormValidator = { | ||
80 | VALIDATORS: [ ], | ||
81 | MESSAGES: { | ||
82 | 'required': $localize`A date is required to schedule video update.` | ||
83 | } | ||
84 | } | ||
85 | |||
86 | export const VIDEO_ORIGINALLY_PUBLISHED_AT_VALIDATOR: BuildFormValidator = { | ||
87 | VALIDATORS: [ ], | ||
88 | MESSAGES: {} | ||
89 | } | ||
90 | |||
91 | function arrayTagLengthValidator (min = 2, max = 30): ValidatorFn { | ||
92 | return (control: AbstractControl): ValidationErrors => { | ||
93 | const array = control.value as Array<string> | ||
94 | |||
95 | if (array.every(e => e.length > min && e.length < max)) { | ||
96 | return null | ||
97 | } | ||
98 | |||
99 | return { 'arrayTagLength': true } | ||
100 | } | ||
101 | } | ||
diff --git a/client/src/app/shared/shared-abuse-list/abuse-message-modal.component.ts b/client/src/app/shared/shared-abuse-list/abuse-message-modal.component.ts index 0c3c8ff48..9abb4c094 100644 --- a/client/src/app/shared/shared-abuse-list/abuse-message-modal.component.ts +++ b/client/src/app/shared/shared-abuse-list/abuse-message-modal.component.ts | |||
@@ -1,9 +1,10 @@ | |||
1 | import { Component, EventEmitter, Input, OnInit, Output, ViewChild } from '@angular/core' | 1 | import { Component, EventEmitter, Input, OnInit, Output, ViewChild } from '@angular/core' |
2 | import { AuthService, HtmlRendererService, Notifier } from '@app/core' | 2 | import { AuthService, HtmlRendererService, Notifier } from '@app/core' |
3 | import { AbuseValidatorsService, FormReactive, FormValidatorService } from '@app/shared/shared-forms' | 3 | import { FormReactive, FormValidatorService } from '@app/shared/shared-forms' |
4 | import { NgbModal } from '@ng-bootstrap/ng-bootstrap' | 4 | import { NgbModal } from '@ng-bootstrap/ng-bootstrap' |
5 | import { NgbModalRef } from '@ng-bootstrap/ng-bootstrap/modal/modal-ref' | 5 | import { NgbModalRef } from '@ng-bootstrap/ng-bootstrap/modal/modal-ref' |
6 | import { AbuseMessage, UserAbuse } from '@shared/models' | 6 | import { AbuseMessage, UserAbuse } from '@shared/models' |
7 | import { ABUSE_MESSAGE_VALIDATOR } from '../form-validators/abuse-validators' | ||
7 | import { AbuseService } from '../shared-moderation' | 8 | import { AbuseService } from '../shared-moderation' |
8 | 9 | ||
9 | @Component({ | 10 | @Component({ |
@@ -28,7 +29,6 @@ export class AbuseMessageModalComponent extends FormReactive implements OnInit { | |||
28 | 29 | ||
29 | constructor ( | 30 | constructor ( |
30 | protected formValidatorService: FormValidatorService, | 31 | protected formValidatorService: FormValidatorService, |
31 | private abuseValidatorsService: AbuseValidatorsService, | ||
32 | private modalService: NgbModal, | 32 | private modalService: NgbModal, |
33 | private htmlRenderer: HtmlRendererService, | 33 | private htmlRenderer: HtmlRendererService, |
34 | private auth: AuthService, | 34 | private auth: AuthService, |
@@ -40,7 +40,7 @@ export class AbuseMessageModalComponent extends FormReactive implements OnInit { | |||
40 | 40 | ||
41 | ngOnInit () { | 41 | ngOnInit () { |
42 | this.buildForm({ | 42 | this.buildForm({ |
43 | message: this.abuseValidatorsService.ABUSE_MESSAGE | 43 | message: ABUSE_MESSAGE_VALIDATOR |
44 | }) | 44 | }) |
45 | } | 45 | } |
46 | 46 | ||
diff --git a/client/src/app/shared/shared-abuse-list/moderation-comment-modal.component.ts b/client/src/app/shared/shared-abuse-list/moderation-comment-modal.component.ts index fad7f888d..876aeea8a 100644 --- a/client/src/app/shared/shared-abuse-list/moderation-comment-modal.component.ts +++ b/client/src/app/shared/shared-abuse-list/moderation-comment-modal.component.ts | |||
@@ -1,10 +1,11 @@ | |||
1 | import { Component, EventEmitter, OnInit, Output, ViewChild } from '@angular/core' | 1 | import { Component, EventEmitter, OnInit, Output, ViewChild } from '@angular/core' |
2 | import { Notifier } from '@app/core' | 2 | import { Notifier } from '@app/core' |
3 | import { AbuseValidatorsService, FormReactive, FormValidatorService } from '@app/shared/shared-forms' | 3 | import { FormReactive, FormValidatorService } from '@app/shared/shared-forms' |
4 | import { AbuseService } from '@app/shared/shared-moderation' | 4 | import { AbuseService } from '@app/shared/shared-moderation' |
5 | import { NgbModal } from '@ng-bootstrap/ng-bootstrap' | 5 | import { NgbModal } from '@ng-bootstrap/ng-bootstrap' |
6 | import { NgbModalRef } from '@ng-bootstrap/ng-bootstrap/modal/modal-ref' | 6 | import { NgbModalRef } from '@ng-bootstrap/ng-bootstrap/modal/modal-ref' |
7 | import { AdminAbuse } from '@shared/models' | 7 | import { AdminAbuse } from '@shared/models' |
8 | import { ABUSE_MODERATION_COMMENT_VALIDATOR } from '../form-validators/abuse-validators' | ||
8 | 9 | ||
9 | @Component({ | 10 | @Component({ |
10 | selector: 'my-moderation-comment-modal', | 11 | selector: 'my-moderation-comment-modal', |
@@ -22,15 +23,14 @@ export class ModerationCommentModalComponent extends FormReactive implements OnI | |||
22 | protected formValidatorService: FormValidatorService, | 23 | protected formValidatorService: FormValidatorService, |
23 | private modalService: NgbModal, | 24 | private modalService: NgbModal, |
24 | private notifier: Notifier, | 25 | private notifier: Notifier, |
25 | private abuseService: AbuseService, | 26 | private abuseService: AbuseService |
26 | private abuseValidatorsService: AbuseValidatorsService | ||
27 | ) { | 27 | ) { |
28 | super() | 28 | super() |
29 | } | 29 | } |
30 | 30 | ||
31 | ngOnInit () { | 31 | ngOnInit () { |
32 | this.buildForm({ | 32 | this.buildForm({ |
33 | moderationComment: this.abuseValidatorsService.ABUSE_MODERATION_COMMENT | 33 | moderationComment: ABUSE_MODERATION_COMMENT_VALIDATOR |
34 | }) | 34 | }) |
35 | } | 35 | } |
36 | 36 | ||
diff --git a/client/src/app/shared/shared-forms/dynamic-form-field.component.html b/client/src/app/shared/shared-forms/dynamic-form-field.component.html new file mode 100644 index 000000000..17b4a134f --- /dev/null +++ b/client/src/app/shared/shared-forms/dynamic-form-field.component.html | |||
@@ -0,0 +1,37 @@ | |||
1 | <div [formGroup]="form"> | ||
2 | <label *ngIf="setting.type !== 'input-checkbox'" [attr.for]="setting.name" [innerHTML]="setting.label"></label> | ||
3 | |||
4 | <div *ngIf="setting.descriptionHTML" class="label-small-info" [innerHTML]="setting.descriptionHTML"></div> | ||
5 | |||
6 | <input *ngIf="setting.type === 'input'" type="text" [id]="setting.name" [formControlName]="setting.name" /> | ||
7 | |||
8 | <textarea *ngIf="setting.type === 'input-textarea'" type="text" [id]="setting.name" [formControlName]="setting.name"></textarea> | ||
9 | |||
10 | <my-help *ngIf="setting.type === 'markdown-text'" helpType="markdownText"></my-help> | ||
11 | |||
12 | <my-help *ngIf="setting.type === 'markdown-enhanced'" helpType="markdownEnhanced"></my-help> | ||
13 | |||
14 | <my-markdown-textarea | ||
15 | *ngIf="setting.type === 'markdown-text'" | ||
16 | markdownType="text" [id]="setting.name" [formControlName]="setting.name" textareaWidth="500px" | ||
17 | [classes]="{ 'input-error': formErrors['settings.name'] }" | ||
18 | ></my-markdown-textarea> | ||
19 | |||
20 | <my-markdown-textarea | ||
21 | *ngIf="setting.type === 'markdown-enhanced'" | ||
22 | markdownType="enhanced" [id]="setting.name" [formControlName]="setting.name" textareaWidth="500px" | ||
23 | [classes]="{ 'input-error': formErrors['settings.name'] }" | ||
24 | ></my-markdown-textarea> | ||
25 | |||
26 | <my-peertube-checkbox | ||
27 | *ngIf="setting.type === 'input-checkbox'" | ||
28 | [id]="setting.name" | ||
29 | [formControlName]="setting.name" | ||
30 | [labelInnerHTML]="setting.label" | ||
31 | ></my-peertube-checkbox> | ||
32 | |||
33 | <div *ngIf="formErrors[setting.name]" class="form-error"> | ||
34 | {{ formErrors[setting.name] }} | ||
35 | </div> | ||
36 | |||
37 | </div> | ||
diff --git a/client/src/app/shared/shared-forms/dynamic-form-field.component.scss b/client/src/app/shared/shared-forms/dynamic-form-field.component.scss new file mode 100644 index 000000000..89193ed85 --- /dev/null +++ b/client/src/app/shared/shared-forms/dynamic-form-field.component.scss | |||
@@ -0,0 +1,24 @@ | |||
1 | @import '_variables'; | ||
2 | @import '_mixins'; | ||
3 | |||
4 | input:not([type=submit]) { | ||
5 | @include peertube-input-text(340px); | ||
6 | |||
7 | display: block; | ||
8 | } | ||
9 | |||
10 | textarea { | ||
11 | @include peertube-textarea(340px, 200px); | ||
12 | |||
13 | display: block; | ||
14 | } | ||
15 | |||
16 | .peertube-select-container { | ||
17 | @include peertube-select-container(340px); | ||
18 | } | ||
19 | |||
20 | .label-small-info { | ||
21 | font-style: italic; | ||
22 | margin-bottom: 10px; | ||
23 | font-size: 13px; | ||
24 | } | ||
diff --git a/client/src/app/shared/shared-forms/dynamic-form-field.component.ts b/client/src/app/shared/shared-forms/dynamic-form-field.component.ts new file mode 100644 index 000000000..b63890797 --- /dev/null +++ b/client/src/app/shared/shared-forms/dynamic-form-field.component.ts | |||
@@ -0,0 +1,15 @@ | |||
1 | import { Component, Input } from '@angular/core' | ||
2 | import { FormGroup } from '@angular/forms' | ||
3 | import { RegisterClientFormFieldOptions } from '@shared/models' | ||
4 | |||
5 | @Component({ | ||
6 | selector: 'my-dynamic-form-field', | ||
7 | templateUrl: './dynamic-form-field.component.html', | ||
8 | styleUrls: [ './dynamic-form-field.component.scss' ] | ||
9 | }) | ||
10 | |||
11 | export class DynamicFormFieldComponent { | ||
12 | @Input() form: FormGroup | ||
13 | @Input() formErrors: any | ||
14 | @Input() setting: RegisterClientFormFieldOptions | ||
15 | } | ||
diff --git a/client/src/app/shared/shared-forms/form-reactive.ts b/client/src/app/shared/shared-forms/form-reactive.ts index caa31d831..adf6cb894 100644 --- a/client/src/app/shared/shared-forms/form-reactive.ts +++ b/client/src/app/shared/shared-forms/form-reactive.ts | |||
@@ -1,5 +1,6 @@ | |||
1 | import { FormGroup } from '@angular/forms' | 1 | import { FormGroup } from '@angular/forms' |
2 | import { BuildFormArgument, BuildFormDefaultValues, FormValidatorService } from './form-validators' | 2 | import { BuildFormArgument, BuildFormDefaultValues } from '../form-validators/form-validator.model' |
3 | import { FormValidatorService } from './form-validator.service' | ||
3 | 4 | ||
4 | export type FormReactiveErrors = { [ id: string ]: string | FormReactiveErrors } | 5 | export type FormReactiveErrors = { [ id: string ]: string | FormReactiveErrors } |
5 | export type FormReactiveValidationMessages = { | 6 | export type FormReactiveValidationMessages = { |
diff --git a/client/src/app/shared/shared-forms/form-validators/form-validator.service.ts b/client/src/app/shared/shared-forms/form-validator.service.ts index dec7d8d9a..41c8b76bd 100644 --- a/client/src/app/shared/shared-forms/form-validators/form-validator.service.ts +++ b/client/src/app/shared/shared-forms/form-validator.service.ts | |||
@@ -1,17 +1,7 @@ | |||
1 | import { FormBuilder, FormControl, FormGroup, ValidatorFn } from '@angular/forms' | ||
2 | import { Injectable } from '@angular/core' | 1 | import { Injectable } from '@angular/core' |
3 | import { FormReactiveErrors, FormReactiveValidationMessages } from '../form-reactive' | 2 | import { FormBuilder, FormControl, FormGroup, ValidatorFn } from '@angular/forms' |
4 | 3 | import { BuildFormArgument, BuildFormDefaultValues } from '../form-validators/form-validator.model' | |
5 | export type BuildFormValidator = { | 4 | import { FormReactiveErrors, FormReactiveValidationMessages } from './form-reactive' |
6 | VALIDATORS: ValidatorFn[], | ||
7 | MESSAGES: { [ name: string ]: string } | ||
8 | } | ||
9 | export type BuildFormArgument = { | ||
10 | [ id: string ]: BuildFormValidator | BuildFormArgument | ||
11 | } | ||
12 | export type BuildFormDefaultValues = { | ||
13 | [ name: string ]: string | string[] | BuildFormDefaultValues | ||
14 | } | ||
15 | 5 | ||
16 | @Injectable() | 6 | @Injectable() |
17 | export class FormValidatorService { | 7 | export class FormValidatorService { |
diff --git a/client/src/app/shared/shared-forms/form-validators/abuse-validators.service.ts b/client/src/app/shared/shared-forms/form-validators/abuse-validators.service.ts deleted file mode 100644 index 56d30d6f9..000000000 --- a/client/src/app/shared/shared-forms/form-validators/abuse-validators.service.ts +++ /dev/null | |||
@@ -1,39 +0,0 @@ | |||
1 | import { Injectable } from '@angular/core' | ||
2 | import { Validators } from '@angular/forms' | ||
3 | import { BuildFormValidator } from './form-validator.service' | ||
4 | |||
5 | @Injectable() | ||
6 | export class AbuseValidatorsService { | ||
7 | readonly ABUSE_REASON: BuildFormValidator | ||
8 | readonly ABUSE_MODERATION_COMMENT: BuildFormValidator | ||
9 | readonly ABUSE_MESSAGE: BuildFormValidator | ||
10 | |||
11 | constructor () { | ||
12 | this.ABUSE_REASON = { | ||
13 | VALIDATORS: [ Validators.required, Validators.minLength(2), Validators.maxLength(3000) ], | ||
14 | MESSAGES: { | ||
15 | 'required': $localize`Report reason is required.`, | ||
16 | 'minlength': $localize`Report reason must be at least 2 characters long.`, | ||
17 | 'maxlength': $localize`Report reason cannot be more than 3000 characters long.` | ||
18 | } | ||
19 | } | ||
20 | |||
21 | this.ABUSE_MODERATION_COMMENT = { | ||
22 | VALIDATORS: [ Validators.required, Validators.minLength(2), Validators.maxLength(3000) ], | ||
23 | MESSAGES: { | ||
24 | 'required': $localize`Moderation comment is required.`, | ||
25 | 'minlength': $localize`Moderation comment must be at least 2 characters long.`, | ||
26 | 'maxlength': $localize`Moderation comment cannot be more than 3000 characters long.` | ||
27 | } | ||
28 | } | ||
29 | |||
30 | this.ABUSE_MESSAGE = { | ||
31 | VALIDATORS: [ Validators.required, Validators.minLength(2), Validators.maxLength(3000) ], | ||
32 | MESSAGES: { | ||
33 | 'required': $localize`Abuse message is required.`, | ||
34 | 'minlength': $localize`Abuse message must be at least 2 characters long.`, | ||
35 | 'maxlength': $localize`Abuse message cannot be more than 3000 characters long.` | ||
36 | } | ||
37 | } | ||
38 | } | ||
39 | } | ||
diff --git a/client/src/app/shared/shared-forms/form-validators/batch-domains-validators.service.ts b/client/src/app/shared/shared-forms/form-validators/batch-domains-validators.service.ts deleted file mode 100644 index 6c7da833f..000000000 --- a/client/src/app/shared/shared-forms/form-validators/batch-domains-validators.service.ts +++ /dev/null | |||
@@ -1,68 +0,0 @@ | |||
1 | import { Injectable } from '@angular/core' | ||
2 | import { ValidatorFn, Validators } from '@angular/forms' | ||
3 | import { BuildFormValidator } from './form-validator.service' | ||
4 | import { validateHost } from './host' | ||
5 | |||
6 | @Injectable() | ||
7 | export class BatchDomainsValidatorsService { | ||
8 | readonly DOMAINS: BuildFormValidator | ||
9 | |||
10 | constructor () { | ||
11 | this.DOMAINS = { | ||
12 | VALIDATORS: [ Validators.required, this.validDomains, this.isHostsUnique ], | ||
13 | MESSAGES: { | ||
14 | 'required': $localize`Domain is required.`, | ||
15 | 'validDomains': $localize`Domains entered are invalid.`, | ||
16 | 'uniqueDomains': $localize`Domains entered contain duplicates.` | ||
17 | } | ||
18 | } | ||
19 | } | ||
20 | |||
21 | getNotEmptyHosts (hosts: string) { | ||
22 | return hosts | ||
23 | .split('\n') | ||
24 | .filter((host: string) => host && host.length !== 0) // Eject empty hosts | ||
25 | } | ||
26 | |||
27 | private validDomains: ValidatorFn = (control) => { | ||
28 | if (!control.value) return null | ||
29 | |||
30 | const newHostsErrors = [] | ||
31 | const hosts = this.getNotEmptyHosts(control.value) | ||
32 | |||
33 | for (const host of hosts) { | ||
34 | if (validateHost(host) === false) { | ||
35 | newHostsErrors.push($localize`${host} is not valid`) | ||
36 | } | ||
37 | } | ||
38 | |||
39 | /* Is not valid. */ | ||
40 | if (newHostsErrors.length !== 0) { | ||
41 | return { | ||
42 | 'validDomains': { | ||
43 | reason: 'invalid', | ||
44 | value: newHostsErrors.join('. ') + '.' | ||
45 | } | ||
46 | } | ||
47 | } | ||
48 | |||
49 | /* Is valid. */ | ||
50 | return null | ||
51 | } | ||
52 | |||
53 | private isHostsUnique: ValidatorFn = (control) => { | ||
54 | if (!control.value) return null | ||
55 | |||
56 | const hosts = this.getNotEmptyHosts(control.value) | ||
57 | |||
58 | if (hosts.every((host: string) => hosts.indexOf(host) === hosts.lastIndexOf(host))) { | ||
59 | return null | ||
60 | } else { | ||
61 | return { | ||
62 | 'uniqueDomains': { | ||
63 | reason: 'invalid' | ||
64 | } | ||
65 | } | ||
66 | } | ||
67 | } | ||
68 | } | ||
diff --git a/client/src/app/shared/shared-forms/form-validators/custom-config-validators.service.ts b/client/src/app/shared/shared-forms/form-validators/custom-config-validators.service.ts deleted file mode 100644 index 862ff5470..000000000 --- a/client/src/app/shared/shared-forms/form-validators/custom-config-validators.service.ts +++ /dev/null | |||
@@ -1,97 +0,0 @@ | |||
1 | import { Injectable } from '@angular/core' | ||
2 | import { Validators } from '@angular/forms' | ||
3 | import { BuildFormValidator } from './form-validator.service' | ||
4 | |||
5 | @Injectable() | ||
6 | export class CustomConfigValidatorsService { | ||
7 | readonly INSTANCE_NAME: BuildFormValidator | ||
8 | readonly INSTANCE_SHORT_DESCRIPTION: BuildFormValidator | ||
9 | readonly SERVICES_TWITTER_USERNAME: BuildFormValidator | ||
10 | readonly CACHE_PREVIEWS_SIZE: BuildFormValidator | ||
11 | readonly CACHE_CAPTIONS_SIZE: BuildFormValidator | ||
12 | readonly SIGNUP_LIMIT: BuildFormValidator | ||
13 | readonly ADMIN_EMAIL: BuildFormValidator | ||
14 | readonly TRANSCODING_THREADS: BuildFormValidator | ||
15 | readonly INDEX_URL: BuildFormValidator | ||
16 | readonly SEARCH_INDEX_URL: BuildFormValidator | ||
17 | |||
18 | constructor () { | ||
19 | this.INSTANCE_NAME = { | ||
20 | VALIDATORS: [ Validators.required ], | ||
21 | MESSAGES: { | ||
22 | 'required': $localize`Instance name is required.` | ||
23 | } | ||
24 | } | ||
25 | |||
26 | this.INSTANCE_SHORT_DESCRIPTION = { | ||
27 | VALIDATORS: [ Validators.max(250) ], | ||
28 | MESSAGES: { | ||
29 | 'max': $localize`Short description should not be longer than 250 characters.` | ||
30 | } | ||
31 | } | ||
32 | |||
33 | this.SERVICES_TWITTER_USERNAME = { | ||
34 | VALIDATORS: [ Validators.required ], | ||
35 | MESSAGES: { | ||
36 | 'required': $localize`Twitter username is required.` | ||
37 | } | ||
38 | } | ||
39 | |||
40 | this.CACHE_PREVIEWS_SIZE = { | ||
41 | VALIDATORS: [ Validators.required, Validators.min(1), Validators.pattern('[0-9]+') ], | ||
42 | MESSAGES: { | ||
43 | 'required': $localize`Previews cache size is required.`, | ||
44 | 'min': $localize`Previews cache size must be greater than 1.`, | ||
45 | 'pattern': $localize`Previews cache size must be a number.` | ||
46 | } | ||
47 | } | ||
48 | |||
49 | this.CACHE_CAPTIONS_SIZE = { | ||
50 | VALIDATORS: [ Validators.required, Validators.min(1), Validators.pattern('[0-9]+') ], | ||
51 | MESSAGES: { | ||
52 | 'required': $localize`Captions cache size is required.`, | ||
53 | 'min': $localize`Captions cache size must be greater than 1.`, | ||
54 | 'pattern': $localize`Captions cache size must be a number.` | ||
55 | } | ||
56 | } | ||
57 | |||
58 | this.SIGNUP_LIMIT = { | ||
59 | VALIDATORS: [ Validators.required, Validators.min(-1), Validators.pattern('-?[0-9]+') ], | ||
60 | MESSAGES: { | ||
61 | 'required': $localize`Signup limit is required.`, | ||
62 | 'min': $localize`Signup limit must be greater than 1.`, | ||
63 | 'pattern': $localize`Signup limit must be a number.` | ||
64 | } | ||
65 | } | ||
66 | |||
67 | this.ADMIN_EMAIL = { | ||
68 | VALIDATORS: [ Validators.required, Validators.email ], | ||
69 | MESSAGES: { | ||
70 | 'required': $localize`Admin email is required.`, | ||
71 | 'email': $localize`Admin email must be valid.` | ||
72 | } | ||
73 | } | ||
74 | |||
75 | this.TRANSCODING_THREADS = { | ||
76 | VALIDATORS: [ Validators.required, Validators.min(0) ], | ||
77 | MESSAGES: { | ||
78 | 'required': $localize`Transcoding threads is required.`, | ||
79 | 'min': $localize`Transcoding threads must be greater or equal to 0.` | ||
80 | } | ||
81 | } | ||
82 | |||
83 | this.INDEX_URL = { | ||
84 | VALIDATORS: [ Validators.pattern(/^https:\/\//) ], | ||
85 | MESSAGES: { | ||
86 | 'pattern': $localize`Index URL should be a URL` | ||
87 | } | ||
88 | } | ||
89 | |||
90 | this.SEARCH_INDEX_URL = { | ||
91 | VALIDATORS: [ Validators.pattern(/^https?:\/\//) ], | ||
92 | MESSAGES: { | ||
93 | 'pattern': $localize`Search index URL should be a URL` | ||
94 | } | ||
95 | } | ||
96 | } | ||
97 | } | ||
diff --git a/client/src/app/shared/shared-forms/form-validators/index.ts b/client/src/app/shared/shared-forms/form-validators/index.ts deleted file mode 100644 index b06a326ff..000000000 --- a/client/src/app/shared/shared-forms/form-validators/index.ts +++ /dev/null | |||
@@ -1,17 +0,0 @@ | |||
1 | export * from './abuse-validators.service' | ||
2 | export * from './batch-domains-validators.service' | ||
3 | export * from './custom-config-validators.service' | ||
4 | export * from './form-validator.service' | ||
5 | export * from './host' | ||
6 | export * from './instance-validators.service' | ||
7 | export * from './login-validators.service' | ||
8 | export * from './reset-password-validators.service' | ||
9 | export * from './user-validators.service' | ||
10 | export * from './video-accept-ownership-validators.service' | ||
11 | export * from './video-block-validators.service' | ||
12 | export * from './video-captions-validators.service' | ||
13 | export * from './video-change-ownership-validators.service' | ||
14 | export * from './video-channel-validators.service' | ||
15 | export * from './video-comment-validators.service' | ||
16 | export * from './video-playlist-validators.service' | ||
17 | export * from './video-validators.service' | ||
diff --git a/client/src/app/shared/shared-forms/form-validators/instance-validators.service.ts b/client/src/app/shared/shared-forms/form-validators/instance-validators.service.ts deleted file mode 100644 index 3628f0b60..000000000 --- a/client/src/app/shared/shared-forms/form-validators/instance-validators.service.ts +++ /dev/null | |||
@@ -1,61 +0,0 @@ | |||
1 | import { Injectable } from '@angular/core' | ||
2 | import { Validators } from '@angular/forms' | ||
3 | import { BuildFormValidator } from './form-validator.service' | ||
4 | |||
5 | @Injectable() | ||
6 | export class InstanceValidatorsService { | ||
7 | readonly FROM_EMAIL: BuildFormValidator | ||
8 | readonly FROM_NAME: BuildFormValidator | ||
9 | readonly SUBJECT: BuildFormValidator | ||
10 | readonly BODY: BuildFormValidator | ||
11 | |||
12 | constructor () { | ||
13 | |||
14 | this.FROM_EMAIL = { | ||
15 | VALIDATORS: [ Validators.required, Validators.email ], | ||
16 | MESSAGES: { | ||
17 | 'required': $localize`Email is required.`, | ||
18 | 'email': $localize`Email must be valid.` | ||
19 | } | ||
20 | } | ||
21 | |||
22 | this.FROM_NAME = { | ||
23 | VALIDATORS: [ | ||
24 | Validators.required, | ||
25 | Validators.minLength(1), | ||
26 | Validators.maxLength(120) | ||
27 | ], | ||
28 | MESSAGES: { | ||
29 | 'required': $localize`Your name is required.`, | ||
30 | 'minlength': $localize`Your name must be at least 1 character long.`, | ||
31 | 'maxlength': $localize`Your name cannot be more than 120 characters long.` | ||
32 | } | ||
33 | } | ||
34 | |||
35 | this.SUBJECT = { | ||
36 | VALIDATORS: [ | ||
37 | Validators.required, | ||
38 | Validators.minLength(1), | ||
39 | Validators.maxLength(120) | ||
40 | ], | ||
41 | MESSAGES: { | ||
42 | 'required': $localize`A subject is required.`, | ||
43 | 'minlength': $localize`The subject must be at least 1 character long.`, | ||
44 | 'maxlength': $localize`The subject cannot be more than 120 characters long.` | ||
45 | } | ||
46 | } | ||
47 | |||
48 | this.BODY = { | ||
49 | VALIDATORS: [ | ||
50 | Validators.required, | ||
51 | Validators.minLength(3), | ||
52 | Validators.maxLength(5000) | ||
53 | ], | ||
54 | MESSAGES: { | ||
55 | 'required': $localize`A message is required.`, | ||
56 | 'minlength': $localize`The message must be at least 3 characters long.`, | ||
57 | 'maxlength': $localize`The message cannot be more than 5000 characters long.` | ||
58 | } | ||
59 | } | ||
60 | } | ||
61 | } | ||
diff --git a/client/src/app/shared/shared-forms/form-validators/login-validators.service.ts b/client/src/app/shared/shared-forms/form-validators/login-validators.service.ts deleted file mode 100644 index 67ea11f20..000000000 --- a/client/src/app/shared/shared-forms/form-validators/login-validators.service.ts +++ /dev/null | |||
@@ -1,29 +0,0 @@ | |||
1 | import { Injectable } from '@angular/core' | ||
2 | import { Validators } from '@angular/forms' | ||
3 | import { BuildFormValidator } from './form-validator.service' | ||
4 | |||
5 | @Injectable() | ||
6 | export class LoginValidatorsService { | ||
7 | readonly LOGIN_USERNAME: BuildFormValidator | ||
8 | readonly LOGIN_PASSWORD: BuildFormValidator | ||
9 | |||
10 | constructor () { | ||
11 | this.LOGIN_USERNAME = { | ||
12 | VALIDATORS: [ | ||
13 | Validators.required | ||
14 | ], | ||
15 | MESSAGES: { | ||
16 | 'required': $localize`Username is required.` | ||
17 | } | ||
18 | } | ||
19 | |||
20 | this.LOGIN_PASSWORD = { | ||
21 | VALIDATORS: [ | ||
22 | Validators.required | ||
23 | ], | ||
24 | MESSAGES: { | ||
25 | 'required': $localize`Password is required.` | ||
26 | } | ||
27 | } | ||
28 | } | ||
29 | } | ||
diff --git a/client/src/app/shared/shared-forms/form-validators/reset-password-validators.service.ts b/client/src/app/shared/shared-forms/form-validators/reset-password-validators.service.ts deleted file mode 100644 index 3d0b4dd64..000000000 --- a/client/src/app/shared/shared-forms/form-validators/reset-password-validators.service.ts +++ /dev/null | |||
@@ -1,19 +0,0 @@ | |||
1 | import { Injectable } from '@angular/core' | ||
2 | import { Validators } from '@angular/forms' | ||
3 | import { BuildFormValidator } from './form-validator.service' | ||
4 | |||
5 | @Injectable() | ||
6 | export class ResetPasswordValidatorsService { | ||
7 | readonly RESET_PASSWORD_CONFIRM: BuildFormValidator | ||
8 | |||
9 | constructor () { | ||
10 | this.RESET_PASSWORD_CONFIRM = { | ||
11 | VALIDATORS: [ | ||
12 | Validators.required | ||
13 | ], | ||
14 | MESSAGES: { | ||
15 | 'required': $localize`Confirmation of the password is required.` | ||
16 | } | ||
17 | } | ||
18 | } | ||
19 | } | ||
diff --git a/client/src/app/shared/shared-forms/form-validators/user-validators.service.ts b/client/src/app/shared/shared-forms/form-validators/user-validators.service.ts deleted file mode 100644 index 312fc9b1e..000000000 --- a/client/src/app/shared/shared-forms/form-validators/user-validators.service.ts +++ /dev/null | |||
@@ -1,166 +0,0 @@ | |||
1 | import { Injectable } from '@angular/core' | ||
2 | import { Validators } from '@angular/forms' | ||
3 | import { BuildFormValidator } from './form-validator.service' | ||
4 | |||
5 | @Injectable() | ||
6 | export class UserValidatorsService { | ||
7 | readonly USER_USERNAME: BuildFormValidator | ||
8 | readonly USER_CHANNEL_NAME: BuildFormValidator | ||
9 | readonly USER_EMAIL: BuildFormValidator | ||
10 | readonly USER_PASSWORD: BuildFormValidator | ||
11 | readonly USER_PASSWORD_OPTIONAL: BuildFormValidator | ||
12 | readonly USER_CONFIRM_PASSWORD: BuildFormValidator | ||
13 | readonly USER_VIDEO_QUOTA: BuildFormValidator | ||
14 | readonly USER_VIDEO_QUOTA_DAILY: BuildFormValidator | ||
15 | readonly USER_ROLE: BuildFormValidator | ||
16 | readonly USER_DISPLAY_NAME_REQUIRED: BuildFormValidator | ||
17 | readonly USER_DESCRIPTION: BuildFormValidator | ||
18 | readonly USER_TERMS: BuildFormValidator | ||
19 | |||
20 | readonly USER_BAN_REASON: BuildFormValidator | ||
21 | |||
22 | constructor () { | ||
23 | |||
24 | this.USER_USERNAME = { | ||
25 | VALIDATORS: [ | ||
26 | Validators.required, | ||
27 | Validators.minLength(1), | ||
28 | Validators.maxLength(50), | ||
29 | Validators.pattern(/^[a-z0-9][a-z0-9._]*$/) | ||
30 | ], | ||
31 | MESSAGES: { | ||
32 | 'required': $localize`Username is required.`, | ||
33 | 'minlength': $localize`Username must be at least 1 character long.`, | ||
34 | 'maxlength': $localize`Username cannot be more than 50 characters long.`, | ||
35 | 'pattern': $localize`Username should be lowercase alphanumeric; dots and underscores are allowed.` | ||
36 | } | ||
37 | } | ||
38 | |||
39 | this.USER_CHANNEL_NAME = { | ||
40 | VALIDATORS: [ | ||
41 | Validators.required, | ||
42 | Validators.minLength(1), | ||
43 | Validators.maxLength(50), | ||
44 | Validators.pattern(/^[a-z0-9][a-z0-9._]*$/) | ||
45 | ], | ||
46 | MESSAGES: { | ||
47 | 'required': $localize`Channel name is required.`, | ||
48 | 'minlength': $localize`Channel name must be at least 1 character long.`, | ||
49 | 'maxlength': $localize`Channel name cannot be more than 50 characters long.`, | ||
50 | 'pattern': $localize`Channel name should be lowercase alphanumeric; dots and underscores are allowed.` | ||
51 | } | ||
52 | } | ||
53 | |||
54 | this.USER_EMAIL = { | ||
55 | VALIDATORS: [ Validators.required, Validators.email ], | ||
56 | MESSAGES: { | ||
57 | 'required': $localize`Email is required.`, | ||
58 | 'email': $localize`Email must be valid.` | ||
59 | } | ||
60 | } | ||
61 | |||
62 | this.USER_PASSWORD = { | ||
63 | VALIDATORS: [ | ||
64 | Validators.required, | ||
65 | Validators.minLength(6), | ||
66 | Validators.maxLength(255) | ||
67 | ], | ||
68 | MESSAGES: { | ||
69 | 'required': $localize`Password is required.`, | ||
70 | 'minlength': $localize`Password must be at least 6 characters long.`, | ||
71 | 'maxlength': $localize`Password cannot be more than 255 characters long.` | ||
72 | } | ||
73 | } | ||
74 | |||
75 | this.USER_PASSWORD_OPTIONAL = { | ||
76 | VALIDATORS: [ | ||
77 | Validators.minLength(6), | ||
78 | Validators.maxLength(255) | ||
79 | ], | ||
80 | MESSAGES: { | ||
81 | 'minlength': $localize`Password must be at least 6 characters long.`, | ||
82 | 'maxlength': $localize`Password cannot be more than 255 characters long.` | ||
83 | } | ||
84 | } | ||
85 | |||
86 | this.USER_CONFIRM_PASSWORD = { | ||
87 | VALIDATORS: [], | ||
88 | MESSAGES: { | ||
89 | 'matchPassword': $localize`The new password and the confirmed password do not correspond.` | ||
90 | } | ||
91 | } | ||
92 | |||
93 | this.USER_VIDEO_QUOTA = { | ||
94 | VALIDATORS: [ Validators.required, Validators.min(-1) ], | ||
95 | MESSAGES: { | ||
96 | 'required': $localize`Video quota is required.`, | ||
97 | 'min': $localize`Quota must be greater than -1.` | ||
98 | } | ||
99 | } | ||
100 | this.USER_VIDEO_QUOTA_DAILY = { | ||
101 | VALIDATORS: [ Validators.required, Validators.min(-1) ], | ||
102 | MESSAGES: { | ||
103 | 'required': $localize`Daily upload limit is required.`, | ||
104 | 'min': $localize`Daily upload limit must be greater than -1.` | ||
105 | } | ||
106 | } | ||
107 | |||
108 | this.USER_ROLE = { | ||
109 | VALIDATORS: [ Validators.required ], | ||
110 | MESSAGES: { | ||
111 | 'required': $localize`User role is required.` | ||
112 | } | ||
113 | } | ||
114 | |||
115 | this.USER_DISPLAY_NAME_REQUIRED = this.getDisplayName(true) | ||
116 | |||
117 | this.USER_DESCRIPTION = { | ||
118 | VALIDATORS: [ | ||
119 | Validators.minLength(3), | ||
120 | Validators.maxLength(1000) | ||
121 | ], | ||
122 | MESSAGES: { | ||
123 | 'minlength': $localize`Description must be at least 3 characters long.`, | ||
124 | 'maxlength': $localize`Description cannot be more than 1000 characters long.` | ||
125 | } | ||
126 | } | ||
127 | |||
128 | this.USER_TERMS = { | ||
129 | VALIDATORS: [ | ||
130 | Validators.requiredTrue | ||
131 | ], | ||
132 | MESSAGES: { | ||
133 | 'required': $localize`You must agree with the instance terms in order to register on it.` | ||
134 | } | ||
135 | } | ||
136 | |||
137 | this.USER_BAN_REASON = { | ||
138 | VALIDATORS: [ | ||
139 | Validators.minLength(3), | ||
140 | Validators.maxLength(250) | ||
141 | ], | ||
142 | MESSAGES: { | ||
143 | 'minlength': $localize`Ban reason must be at least 3 characters long.`, | ||
144 | 'maxlength': $localize`Ban reason cannot be more than 250 characters long.` | ||
145 | } | ||
146 | } | ||
147 | } | ||
148 | |||
149 | private getDisplayName (required: boolean) { | ||
150 | const control = { | ||
151 | VALIDATORS: [ | ||
152 | Validators.minLength(1), | ||
153 | Validators.maxLength(120) | ||
154 | ], | ||
155 | MESSAGES: { | ||
156 | 'required': $localize`Display name is required.`, | ||
157 | 'minlength': $localize`Display name must be at least 1 character long.`, | ||
158 | 'maxlength': $localize`Display name cannot be more than 50 characters long.` | ||
159 | } | ||
160 | } | ||
161 | |||
162 | if (required) control.VALIDATORS.push(Validators.required) | ||
163 | |||
164 | return control | ||
165 | } | ||
166 | } | ||
diff --git a/client/src/app/shared/shared-forms/form-validators/video-accept-ownership-validators.service.ts b/client/src/app/shared/shared-forms/form-validators/video-accept-ownership-validators.service.ts deleted file mode 100644 index aed9e9cdd..000000000 --- a/client/src/app/shared/shared-forms/form-validators/video-accept-ownership-validators.service.ts +++ /dev/null | |||
@@ -1,17 +0,0 @@ | |||
1 | import { Injectable } from '@angular/core' | ||
2 | import { Validators } from '@angular/forms' | ||
3 | import { BuildFormValidator } from './form-validator.service' | ||
4 | |||
5 | @Injectable() | ||
6 | export class VideoAcceptOwnershipValidatorsService { | ||
7 | readonly CHANNEL: BuildFormValidator | ||
8 | |||
9 | constructor () { | ||
10 | this.CHANNEL = { | ||
11 | VALIDATORS: [ Validators.required ], | ||
12 | MESSAGES: { | ||
13 | 'required': $localize`The channel is required.` | ||
14 | } | ||
15 | } | ||
16 | } | ||
17 | } | ||
diff --git a/client/src/app/shared/shared-forms/form-validators/video-block-validators.service.ts b/client/src/app/shared/shared-forms/form-validators/video-block-validators.service.ts deleted file mode 100644 index bce1880dc..000000000 --- a/client/src/app/shared/shared-forms/form-validators/video-block-validators.service.ts +++ /dev/null | |||
@@ -1,18 +0,0 @@ | |||
1 | import { Injectable } from '@angular/core' | ||
2 | import { Validators } from '@angular/forms' | ||
3 | import { BuildFormValidator } from './form-validator.service' | ||
4 | |||
5 | @Injectable() | ||
6 | export class VideoBlockValidatorsService { | ||
7 | readonly VIDEO_BLOCK_REASON: BuildFormValidator | ||
8 | |||
9 | constructor () { | ||
10 | this.VIDEO_BLOCK_REASON = { | ||
11 | VALIDATORS: [ Validators.minLength(2), Validators.maxLength(300) ], | ||
12 | MESSAGES: { | ||
13 | 'minlength': $localize`Block reason must be at least 2 characters long.`, | ||
14 | 'maxlength': $localize`Block reason cannot be more than 300 characters long.` | ||
15 | } | ||
16 | } | ||
17 | } | ||
18 | } | ||
diff --git a/client/src/app/shared/shared-forms/form-validators/video-captions-validators.service.ts b/client/src/app/shared/shared-forms/form-validators/video-captions-validators.service.ts deleted file mode 100644 index 7e90264e5..000000000 --- a/client/src/app/shared/shared-forms/form-validators/video-captions-validators.service.ts +++ /dev/null | |||
@@ -1,26 +0,0 @@ | |||
1 | import { Injectable } from '@angular/core' | ||
2 | import { Validators } from '@angular/forms' | ||
3 | import { BuildFormValidator } from './form-validator.service' | ||
4 | |||
5 | @Injectable() | ||
6 | export class VideoCaptionsValidatorsService { | ||
7 | readonly VIDEO_CAPTION_LANGUAGE: BuildFormValidator | ||
8 | readonly VIDEO_CAPTION_FILE: BuildFormValidator | ||
9 | |||
10 | constructor () { | ||
11 | |||
12 | this.VIDEO_CAPTION_LANGUAGE = { | ||
13 | VALIDATORS: [ Validators.required ], | ||
14 | MESSAGES: { | ||
15 | 'required': $localize`Video caption language is required.` | ||
16 | } | ||
17 | } | ||
18 | |||
19 | this.VIDEO_CAPTION_FILE = { | ||
20 | VALIDATORS: [ Validators.required ], | ||
21 | MESSAGES: { | ||
22 | 'required': $localize`Video caption file is required.` | ||
23 | } | ||
24 | } | ||
25 | } | ||
26 | } | ||
diff --git a/client/src/app/shared/shared-forms/form-validators/video-change-ownership-validators.service.ts b/client/src/app/shared/shared-forms/form-validators/video-change-ownership-validators.service.ts deleted file mode 100644 index 8c809a0d5..000000000 --- a/client/src/app/shared/shared-forms/form-validators/video-change-ownership-validators.service.ts +++ /dev/null | |||
@@ -1,26 +0,0 @@ | |||
1 | import { Injectable } from '@angular/core' | ||
2 | import { AbstractControl, ValidationErrors, Validators } from '@angular/forms' | ||
3 | import { BuildFormValidator } from './form-validator.service' | ||
4 | |||
5 | @Injectable() | ||
6 | export class VideoChangeOwnershipValidatorsService { | ||
7 | readonly USERNAME: BuildFormValidator | ||
8 | |||
9 | constructor () { | ||
10 | this.USERNAME = { | ||
11 | VALIDATORS: [ Validators.required, this.localAccountValidator ], | ||
12 | MESSAGES: { | ||
13 | 'required': $localize`The username is required.`, | ||
14 | 'localAccountOnly': $localize`You can only transfer ownership to a local account` | ||
15 | } | ||
16 | } | ||
17 | } | ||
18 | |||
19 | localAccountValidator (control: AbstractControl): ValidationErrors { | ||
20 | if (control.value.includes('@')) { | ||
21 | return { 'localAccountOnly': true } | ||
22 | } | ||
23 | |||
24 | return null | ||
25 | } | ||
26 | } | ||
diff --git a/client/src/app/shared/shared-forms/form-validators/video-channel-validators.service.ts b/client/src/app/shared/shared-forms/form-validators/video-channel-validators.service.ts deleted file mode 100644 index 3e7444196..000000000 --- a/client/src/app/shared/shared-forms/form-validators/video-channel-validators.service.ts +++ /dev/null | |||
@@ -1,63 +0,0 @@ | |||
1 | import { Injectable } from '@angular/core' | ||
2 | import { Validators } from '@angular/forms' | ||
3 | import { BuildFormValidator } from './form-validator.service' | ||
4 | |||
5 | @Injectable() | ||
6 | export class VideoChannelValidatorsService { | ||
7 | readonly VIDEO_CHANNEL_NAME: BuildFormValidator | ||
8 | readonly VIDEO_CHANNEL_DISPLAY_NAME: BuildFormValidator | ||
9 | readonly VIDEO_CHANNEL_DESCRIPTION: BuildFormValidator | ||
10 | readonly VIDEO_CHANNEL_SUPPORT: BuildFormValidator | ||
11 | |||
12 | constructor () { | ||
13 | this.VIDEO_CHANNEL_NAME = { | ||
14 | VALIDATORS: [ | ||
15 | Validators.required, | ||
16 | Validators.minLength(1), | ||
17 | Validators.maxLength(50), | ||
18 | Validators.pattern(/^[a-z0-9][a-z0-9._]*$/) | ||
19 | ], | ||
20 | MESSAGES: { | ||
21 | 'required': $localize`Name is required.`, | ||
22 | 'minlength': $localize`Name must be at least 1 character long.`, | ||
23 | 'maxlength': $localize`Name cannot be more than 50 characters long.`, | ||
24 | 'pattern': $localize`Name should be lowercase alphanumeric; dots and underscores are allowed.` | ||
25 | } | ||
26 | } | ||
27 | |||
28 | this.VIDEO_CHANNEL_DISPLAY_NAME = { | ||
29 | VALIDATORS: [ | ||
30 | Validators.required, | ||
31 | Validators.minLength(1), | ||
32 | Validators.maxLength(50) | ||
33 | ], | ||
34 | MESSAGES: { | ||
35 | 'required': $localize`Display name is required.`, | ||
36 | 'minlength': $localize`Display name must be at least 1 character long.`, | ||
37 | 'maxlength': $localize`Display name cannot be more than 50 characters long.` | ||
38 | } | ||
39 | } | ||
40 | |||
41 | this.VIDEO_CHANNEL_DESCRIPTION = { | ||
42 | VALIDATORS: [ | ||
43 | Validators.minLength(3), | ||
44 | Validators.maxLength(1000) | ||
45 | ], | ||
46 | MESSAGES: { | ||
47 | 'minlength': $localize`Description must be at least 3 characters long.`, | ||
48 | 'maxlength': $localize`Description cannot be more than 1000 characters long.` | ||
49 | } | ||
50 | } | ||
51 | |||
52 | this.VIDEO_CHANNEL_SUPPORT = { | ||
53 | VALIDATORS: [ | ||
54 | Validators.minLength(3), | ||
55 | Validators.maxLength(1000) | ||
56 | ], | ||
57 | MESSAGES: { | ||
58 | 'minlength': $localize`Support text must be at least 3 characters long.`, | ||
59 | 'maxlength': $localize`Support text cannot be more than 1000 characters long` | ||
60 | } | ||
61 | } | ||
62 | } | ||
63 | } | ||
diff --git a/client/src/app/shared/shared-forms/form-validators/video-comment-validators.service.ts b/client/src/app/shared/shared-forms/form-validators/video-comment-validators.service.ts deleted file mode 100644 index 18e7ae264..000000000 --- a/client/src/app/shared/shared-forms/form-validators/video-comment-validators.service.ts +++ /dev/null | |||
@@ -1,19 +0,0 @@ | |||
1 | import { Injectable } from '@angular/core' | ||
2 | import { Validators } from '@angular/forms' | ||
3 | import { BuildFormValidator } from './form-validator.service' | ||
4 | |||
5 | @Injectable() | ||
6 | export class VideoCommentValidatorsService { | ||
7 | readonly VIDEO_COMMENT_TEXT: BuildFormValidator | ||
8 | |||
9 | constructor () { | ||
10 | this.VIDEO_COMMENT_TEXT = { | ||
11 | VALIDATORS: [ Validators.required, Validators.minLength(1), Validators.maxLength(3000) ], | ||
12 | MESSAGES: { | ||
13 | 'required': $localize`Comment is required.`, | ||
14 | 'minlength': $localize`Comment must be at least 2 characters long.`, | ||
15 | 'maxlength': $localize`Comment cannot be more than 3000 characters long.` | ||
16 | } | ||
17 | } | ||
18 | } | ||
19 | } | ||
diff --git a/client/src/app/shared/shared-forms/form-validators/video-playlist-validators.service.ts b/client/src/app/shared/shared-forms/form-validators/video-playlist-validators.service.ts deleted file mode 100644 index 3b45a40fd..000000000 --- a/client/src/app/shared/shared-forms/form-validators/video-playlist-validators.service.ts +++ /dev/null | |||
@@ -1,65 +0,0 @@ | |||
1 | import { Injectable } from '@angular/core' | ||
2 | import { AbstractControl, Validators } from '@angular/forms' | ||
3 | import { VideoPlaylistPrivacy } from '@shared/models' | ||
4 | import { BuildFormValidator } from './form-validator.service' | ||
5 | |||
6 | @Injectable() | ||
7 | export class VideoPlaylistValidatorsService { | ||
8 | readonly VIDEO_PLAYLIST_DISPLAY_NAME: BuildFormValidator | ||
9 | readonly VIDEO_PLAYLIST_PRIVACY: BuildFormValidator | ||
10 | readonly VIDEO_PLAYLIST_DESCRIPTION: BuildFormValidator | ||
11 | readonly VIDEO_PLAYLIST_CHANNEL_ID: BuildFormValidator | ||
12 | |||
13 | constructor () { | ||
14 | this.VIDEO_PLAYLIST_DISPLAY_NAME = { | ||
15 | VALIDATORS: [ | ||
16 | Validators.required, | ||
17 | Validators.minLength(1), | ||
18 | Validators.maxLength(120) | ||
19 | ], | ||
20 | MESSAGES: { | ||
21 | 'required': $localize`Display name is required.`, | ||
22 | 'minlength': $localize`Display name must be at least 1 character long.`, | ||
23 | 'maxlength': $localize`Display name cannot be more than 120 characters long.` | ||
24 | } | ||
25 | } | ||
26 | |||
27 | this.VIDEO_PLAYLIST_PRIVACY = { | ||
28 | VALIDATORS: [ | ||
29 | Validators.required | ||
30 | ], | ||
31 | MESSAGES: { | ||
32 | 'required': $localize`Privacy is required.` | ||
33 | } | ||
34 | } | ||
35 | |||
36 | this.VIDEO_PLAYLIST_DESCRIPTION = { | ||
37 | VALIDATORS: [ | ||
38 | Validators.minLength(3), | ||
39 | Validators.maxLength(1000) | ||
40 | ], | ||
41 | MESSAGES: { | ||
42 | 'minlength': $localize`Description must be at least 3 characters long.`, | ||
43 | 'maxlength': $localize`Description cannot be more than 1000 characters long.` | ||
44 | } | ||
45 | } | ||
46 | |||
47 | this.VIDEO_PLAYLIST_CHANNEL_ID = { | ||
48 | VALIDATORS: [ ], | ||
49 | MESSAGES: { | ||
50 | 'required': $localize`The channel is required when the playlist is public.` | ||
51 | } | ||
52 | } | ||
53 | } | ||
54 | |||
55 | setChannelValidator (channelControl: AbstractControl, privacy: VideoPlaylistPrivacy) { | ||
56 | if (privacy.toString() === VideoPlaylistPrivacy.PUBLIC.toString()) { | ||
57 | channelControl.setValidators([ Validators.required ]) | ||
58 | } else { | ||
59 | channelControl.setValidators(null) | ||
60 | } | ||
61 | |||
62 | channelControl.markAsDirty() | ||
63 | channelControl.updateValueAndValidity() | ||
64 | } | ||
65 | } | ||
diff --git a/client/src/app/shared/shared-forms/form-validators/video-validators.service.ts b/client/src/app/shared/shared-forms/form-validators/video-validators.service.ts deleted file mode 100644 index 8119c1ae7..000000000 --- a/client/src/app/shared/shared-forms/form-validators/video-validators.service.ts +++ /dev/null | |||
@@ -1,122 +0,0 @@ | |||
1 | import { Injectable } from '@angular/core' | ||
2 | import { AbstractControl, ValidationErrors, ValidatorFn, Validators } from '@angular/forms' | ||
3 | import { BuildFormValidator } from './form-validator.service' | ||
4 | |||
5 | @Injectable() | ||
6 | export class VideoValidatorsService { | ||
7 | readonly VIDEO_NAME: BuildFormValidator | ||
8 | readonly VIDEO_PRIVACY: BuildFormValidator | ||
9 | readonly VIDEO_CATEGORY: BuildFormValidator | ||
10 | readonly VIDEO_LICENCE: BuildFormValidator | ||
11 | readonly VIDEO_LANGUAGE: BuildFormValidator | ||
12 | readonly VIDEO_IMAGE: BuildFormValidator | ||
13 | readonly VIDEO_CHANNEL: BuildFormValidator | ||
14 | readonly VIDEO_DESCRIPTION: BuildFormValidator | ||
15 | readonly VIDEO_TAGS_ARRAY: BuildFormValidator | ||
16 | readonly VIDEO_TAG: BuildFormValidator | ||
17 | readonly VIDEO_SUPPORT: BuildFormValidator | ||
18 | readonly VIDEO_SCHEDULE_PUBLICATION_AT: BuildFormValidator | ||
19 | readonly VIDEO_ORIGINALLY_PUBLISHED_AT: BuildFormValidator | ||
20 | |||
21 | constructor () { | ||
22 | |||
23 | this.VIDEO_NAME = { | ||
24 | VALIDATORS: [ Validators.required, Validators.minLength(3), Validators.maxLength(120) ], | ||
25 | MESSAGES: { | ||
26 | 'required': $localize`Video name is required.`, | ||
27 | 'minlength': $localize`Video name must be at least 3 characters long.`, | ||
28 | 'maxlength': $localize`Video name cannot be more than 120 characters long.` | ||
29 | } | ||
30 | } | ||
31 | |||
32 | this.VIDEO_PRIVACY = { | ||
33 | VALIDATORS: [ Validators.required ], | ||
34 | MESSAGES: { | ||
35 | 'required': $localize`Video privacy is required.` | ||
36 | } | ||
37 | } | ||
38 | |||
39 | this.VIDEO_CATEGORY = { | ||
40 | VALIDATORS: [ ], | ||
41 | MESSAGES: {} | ||
42 | } | ||
43 | |||
44 | this.VIDEO_LICENCE = { | ||
45 | VALIDATORS: [ ], | ||
46 | MESSAGES: {} | ||
47 | } | ||
48 | |||
49 | this.VIDEO_LANGUAGE = { | ||
50 | VALIDATORS: [ ], | ||
51 | MESSAGES: {} | ||
52 | } | ||
53 | |||
54 | this.VIDEO_IMAGE = { | ||
55 | VALIDATORS: [ ], | ||
56 | MESSAGES: {} | ||
57 | } | ||
58 | |||
59 | this.VIDEO_CHANNEL = { | ||
60 | VALIDATORS: [ Validators.required ], | ||
61 | MESSAGES: { | ||
62 | 'required': $localize`Video channel is required.` | ||
63 | } | ||
64 | } | ||
65 | |||
66 | this.VIDEO_DESCRIPTION = { | ||
67 | VALIDATORS: [ Validators.minLength(3), Validators.maxLength(10000) ], | ||
68 | MESSAGES: { | ||
69 | 'minlength': $localize`Video description must be at least 3 characters long.`, | ||
70 | 'maxlength': $localize`Video description cannot be more than 10000 characters long.` | ||
71 | } | ||
72 | } | ||
73 | |||
74 | this.VIDEO_TAG = { | ||
75 | VALIDATORS: [ Validators.minLength(2), Validators.maxLength(30) ], | ||
76 | MESSAGES: { | ||
77 | 'minlength': $localize`A tag should be more than 2 characters long.`, | ||
78 | 'maxlength': $localize`A tag should be less than 30 characters long.` | ||
79 | } | ||
80 | } | ||
81 | |||
82 | this.VIDEO_TAGS_ARRAY = { | ||
83 | VALIDATORS: [ Validators.maxLength(5), this.arrayTagLengthValidator() ], | ||
84 | MESSAGES: { | ||
85 | 'maxlength': $localize`A maximum of 5 tags can be used on a video.`, | ||
86 | 'arrayTagLength': $localize`A tag should be more than 2, and less than 30 characters long.` | ||
87 | } | ||
88 | } | ||
89 | |||
90 | this.VIDEO_SUPPORT = { | ||
91 | VALIDATORS: [ Validators.minLength(3), Validators.maxLength(1000) ], | ||
92 | MESSAGES: { | ||
93 | 'minlength': $localize`Video support must be at least 3 characters long.`, | ||
94 | 'maxlength': $localize`Video support cannot be more than 1000 characters long.` | ||
95 | } | ||
96 | } | ||
97 | |||
98 | this.VIDEO_SCHEDULE_PUBLICATION_AT = { | ||
99 | VALIDATORS: [ ], | ||
100 | MESSAGES: { | ||
101 | 'required': $localize`A date is required to schedule video update.` | ||
102 | } | ||
103 | } | ||
104 | |||
105 | this.VIDEO_ORIGINALLY_PUBLISHED_AT = { | ||
106 | VALIDATORS: [ ], | ||
107 | MESSAGES: {} | ||
108 | } | ||
109 | } | ||
110 | |||
111 | arrayTagLengthValidator (min = 2, max = 30): ValidatorFn { | ||
112 | return (control: AbstractControl): ValidationErrors => { | ||
113 | const array = control.value as Array<string> | ||
114 | |||
115 | if (array.every(e => e.length > min && e.length < max)) { | ||
116 | return null | ||
117 | } | ||
118 | |||
119 | return { 'arrayTagLength': true } | ||
120 | } | ||
121 | } | ||
122 | } | ||
diff --git a/client/src/app/shared/shared-forms/index.ts b/client/src/app/shared/shared-forms/index.ts index 747df65cf..b2c7fa9ba 100644 --- a/client/src/app/shared/shared-forms/index.ts +++ b/client/src/app/shared/shared-forms/index.ts | |||
@@ -1,4 +1,4 @@ | |||
1 | export * from './form-validators' | 1 | export * from './form-validator.service' |
2 | export * from './form-reactive' | 2 | export * from './form-reactive' |
3 | export * from './select' | 3 | export * from './select' |
4 | export * from './input-readonly-copy.component' | 4 | export * from './input-readonly-copy.component' |
diff --git a/client/src/app/shared/shared-forms/shared-form.module.ts b/client/src/app/shared/shared-forms/shared-form.module.ts index 0e0ed5bab..a28988f87 100644 --- a/client/src/app/shared/shared-forms/shared-form.module.ts +++ b/client/src/app/shared/shared-forms/shared-form.module.ts | |||
@@ -1,37 +1,21 @@ | |||
1 | 1 | ||
2 | import { NgModule } from '@angular/core' | ||
3 | import { FormsModule, ReactiveFormsModule } from '@angular/forms' | ||
4 | import { InputMaskModule } from 'primeng/inputmask' | 2 | import { InputMaskModule } from 'primeng/inputmask' |
5 | import { InputSwitchModule } from 'primeng/inputswitch' | 3 | import { InputSwitchModule } from 'primeng/inputswitch' |
4 | import { NgModule } from '@angular/core' | ||
5 | import { FormsModule, ReactiveFormsModule } from '@angular/forms' | ||
6 | import { NgSelectModule } from '@ng-select/ng-select' | 6 | import { NgSelectModule } from '@ng-select/ng-select' |
7 | import { BatchDomainsValidatorsService } from '@app/shared/shared-forms/form-validators/batch-domains-validators.service' | ||
8 | import { SharedGlobalIconModule } from '../shared-icons' | 7 | import { SharedGlobalIconModule } from '../shared-icons' |
9 | import { SharedMainModule } from '../shared-main/shared-main.module' | 8 | import { SharedMainModule } from '../shared-main/shared-main.module' |
10 | import { | 9 | import { FormValidatorService } from './form-validator.service' |
11 | CustomConfigValidatorsService, | ||
12 | FormValidatorService, | ||
13 | InstanceValidatorsService, | ||
14 | LoginValidatorsService, | ||
15 | ResetPasswordValidatorsService, | ||
16 | UserValidatorsService, | ||
17 | AbuseValidatorsService, | ||
18 | VideoAcceptOwnershipValidatorsService, | ||
19 | VideoBlockValidatorsService, | ||
20 | VideoCaptionsValidatorsService, | ||
21 | VideoChangeOwnershipValidatorsService, | ||
22 | VideoChannelValidatorsService, | ||
23 | VideoCommentValidatorsService, | ||
24 | VideoPlaylistValidatorsService, | ||
25 | VideoValidatorsService | ||
26 | } from './form-validators' | ||
27 | import { InputReadonlyCopyComponent } from './input-readonly-copy.component' | 10 | import { InputReadonlyCopyComponent } from './input-readonly-copy.component' |
28 | import { MarkdownTextareaComponent } from './markdown-textarea.component' | 11 | import { MarkdownTextareaComponent } from './markdown-textarea.component' |
29 | import { PeertubeCheckboxComponent } from './peertube-checkbox.component' | 12 | import { PeertubeCheckboxComponent } from './peertube-checkbox.component' |
30 | import { PreviewUploadComponent } from './preview-upload.component' | 13 | import { PreviewUploadComponent } from './preview-upload.component' |
31 | import { ReactiveFileComponent } from './reactive-file.component' | 14 | import { ReactiveFileComponent } from './reactive-file.component' |
15 | import { SelectChannelComponent, SelectCheckboxComponent, SelectOptionsComponent, SelectTagsComponent } from './select' | ||
32 | import { TextareaAutoResizeDirective } from './textarea-autoresize.directive' | 16 | import { TextareaAutoResizeDirective } from './textarea-autoresize.directive' |
33 | import { TimestampInputComponent } from './timestamp-input.component' | 17 | import { TimestampInputComponent } from './timestamp-input.component' |
34 | import { SelectChannelComponent, SelectCheckboxComponent, SelectOptionsComponent, SelectTagsComponent } from './select' | 18 | import { DynamicFormFieldComponent } from './dynamic-form-field.component' |
35 | 19 | ||
36 | @NgModule({ | 20 | @NgModule({ |
37 | imports: [ | 21 | imports: [ |
@@ -58,7 +42,9 @@ import { SelectChannelComponent, SelectCheckboxComponent, SelectOptionsComponent | |||
58 | SelectChannelComponent, | 42 | SelectChannelComponent, |
59 | SelectOptionsComponent, | 43 | SelectOptionsComponent, |
60 | SelectTagsComponent, | 44 | SelectTagsComponent, |
61 | SelectCheckboxComponent | 45 | SelectCheckboxComponent, |
46 | |||
47 | DynamicFormFieldComponent | ||
62 | ], | 48 | ], |
63 | 49 | ||
64 | exports: [ | 50 | exports: [ |
@@ -80,27 +66,13 @@ import { SelectChannelComponent, SelectCheckboxComponent, SelectOptionsComponent | |||
80 | SelectChannelComponent, | 66 | SelectChannelComponent, |
81 | SelectOptionsComponent, | 67 | SelectOptionsComponent, |
82 | SelectTagsComponent, | 68 | SelectTagsComponent, |
83 | SelectCheckboxComponent | 69 | SelectCheckboxComponent, |
70 | |||
71 | DynamicFormFieldComponent | ||
84 | ], | 72 | ], |
85 | 73 | ||
86 | providers: [ | 74 | providers: [ |
87 | CustomConfigValidatorsService, | 75 | FormValidatorService |
88 | FormValidatorService, | ||
89 | LoginValidatorsService, | ||
90 | InstanceValidatorsService, | ||
91 | LoginValidatorsService, | ||
92 | ResetPasswordValidatorsService, | ||
93 | UserValidatorsService, | ||
94 | AbuseValidatorsService, | ||
95 | VideoAcceptOwnershipValidatorsService, | ||
96 | VideoBlockValidatorsService, | ||
97 | VideoCaptionsValidatorsService, | ||
98 | VideoChangeOwnershipValidatorsService, | ||
99 | VideoChannelValidatorsService, | ||
100 | VideoCommentValidatorsService, | ||
101 | VideoPlaylistValidatorsService, | ||
102 | VideoValidatorsService, | ||
103 | BatchDomainsValidatorsService | ||
104 | ] | 76 | ] |
105 | }) | 77 | }) |
106 | export class SharedFormModule { } | 78 | export class SharedFormModule { } |
diff --git a/client/src/app/shared/shared-forms/timestamp-input.component.ts b/client/src/app/shared/shared-forms/timestamp-input.component.ts index 8d67a96ac..0ffd03d02 100644 --- a/client/src/app/shared/shared-forms/timestamp-input.component.ts +++ b/client/src/app/shared/shared-forms/timestamp-input.component.ts | |||
@@ -1,4 +1,4 @@ | |||
1 | import { ChangeDetectorRef, Component, forwardRef, Input, OnInit } from '@angular/core' | 1 | import { ChangeDetectorRef, Component, EventEmitter, forwardRef, Input, OnInit, Output } from '@angular/core' |
2 | import { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms' | 2 | import { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms' |
3 | import { secondsToTime, timeToInt } from '../../../assets/player/utils' | 3 | import { secondsToTime, timeToInt } from '../../../assets/player/utils' |
4 | 4 | ||
@@ -19,6 +19,8 @@ export class TimestampInputComponent implements ControlValueAccessor, OnInit { | |||
19 | @Input() timestamp: number | 19 | @Input() timestamp: number |
20 | @Input() disabled = false | 20 | @Input() disabled = false |
21 | 21 | ||
22 | @Output() inputBlur = new EventEmitter() | ||
23 | |||
22 | timestampString: string | 24 | timestampString: string |
23 | 25 | ||
24 | constructor (private changeDetector: ChangeDetectorRef) {} | 26 | constructor (private changeDetector: ChangeDetectorRef) {} |
@@ -57,5 +59,7 @@ export class TimestampInputComponent implements ControlValueAccessor, OnInit { | |||
57 | 59 | ||
58 | this.propagateChange(this.timestamp) | 60 | this.propagateChange(this.timestamp) |
59 | } | 61 | } |
62 | |||
63 | this.inputBlur.emit() | ||
60 | } | 64 | } |
61 | } | 65 | } |
diff --git a/client/src/app/shared/shared-main/angular/infinite-scroller.directive.ts b/client/src/app/shared/shared-main/angular/infinite-scroller.directive.ts index f09c3d1fc..d2cf53227 100644 --- a/client/src/app/shared/shared-main/angular/infinite-scroller.directive.ts +++ b/client/src/app/shared/shared-main/angular/infinite-scroller.directive.ts | |||
@@ -1,6 +1,6 @@ | |||
1 | import { fromEvent, Observable, Subscription } from 'rxjs' | ||
1 | import { distinctUntilChanged, filter, map, share, startWith, throttleTime } from 'rxjs/operators' | 2 | import { distinctUntilChanged, filter, map, share, startWith, throttleTime } from 'rxjs/operators' |
2 | import { AfterContentChecked, Directive, ElementRef, EventEmitter, Input, OnDestroy, OnInit, Output } from '@angular/core' | 3 | import { AfterContentChecked, Directive, ElementRef, EventEmitter, Input, OnDestroy, OnInit, Output } from '@angular/core' |
3 | import { fromEvent, Observable, Subscription } from 'rxjs' | ||
4 | 4 | ||
5 | @Directive({ | 5 | @Directive({ |
6 | selector: '[myInfiniteScroller]' | 6 | selector: '[myInfiniteScroller]' |
@@ -80,7 +80,9 @@ export class InfiniteScrollerDirective implements OnInit, OnDestroy, AfterConten | |||
80 | } | 80 | } |
81 | 81 | ||
82 | private getMaximumScroll () { | 82 | private getMaximumScroll () { |
83 | return this.container.scrollHeight - window.innerHeight | 83 | const elementHeight = this.onItself ? this.container.clientHeight : window.innerHeight |
84 | |||
85 | return this.container.scrollHeight - elementHeight | ||
84 | } | 86 | } |
85 | 87 | ||
86 | private hasScroll () { | 88 | private hasScroll () { |
diff --git a/client/src/app/shared/shared-main/video/video-edit.model.ts b/client/src/app/shared/shared-main/video/video-edit.model.ts index 6a529e052..757b686c0 100644 --- a/client/src/app/shared/shared-main/video/video-edit.model.ts +++ b/client/src/app/shared/shared-main/video/video-edit.model.ts | |||
@@ -25,6 +25,8 @@ export class VideoEdit implements VideoUpdate { | |||
25 | scheduleUpdate?: VideoScheduleUpdate | 25 | scheduleUpdate?: VideoScheduleUpdate |
26 | originallyPublishedAt?: Date | string | 26 | originallyPublishedAt?: Date | string |
27 | 27 | ||
28 | pluginData?: any | ||
29 | |||
28 | constructor ( | 30 | constructor ( |
29 | video?: Video & { | 31 | video?: Video & { |
30 | tags: string[], | 32 | tags: string[], |
@@ -55,10 +57,12 @@ export class VideoEdit implements VideoUpdate { | |||
55 | 57 | ||
56 | this.scheduleUpdate = video.scheduledUpdate | 58 | this.scheduleUpdate = video.scheduledUpdate |
57 | this.originallyPublishedAt = video.originallyPublishedAt ? new Date(video.originallyPublishedAt) : null | 59 | this.originallyPublishedAt = video.originallyPublishedAt ? new Date(video.originallyPublishedAt) : null |
60 | |||
61 | this.pluginData = video.pluginData | ||
58 | } | 62 | } |
59 | } | 63 | } |
60 | 64 | ||
61 | patch (values: { [ id: string ]: string }) { | 65 | patch (values: { [ id: string ]: any }) { |
62 | Object.keys(values).forEach((key) => { | 66 | Object.keys(values).forEach((key) => { |
63 | this[ key ] = values[ key ] | 67 | this[ key ] = values[ key ] |
64 | }) | 68 | }) |
diff --git a/client/src/app/shared/shared-main/video/video.model.ts b/client/src/app/shared/shared-main/video/video.model.ts index 73f0198e2..0dca3da0d 100644 --- a/client/src/app/shared/shared-main/video/video.model.ts +++ b/client/src/app/shared/shared-main/video/video.model.ts | |||
@@ -84,6 +84,8 @@ export class Video implements VideoServerModel { | |||
84 | currentTime: number | 84 | currentTime: number |
85 | } | 85 | } |
86 | 86 | ||
87 | pluginData?: any | ||
88 | |||
87 | static buildClientUrl (videoUUID: string) { | 89 | static buildClientUrl (videoUUID: string) { |
88 | return '/videos/watch/' + videoUUID | 90 | return '/videos/watch/' + videoUUID |
89 | } | 91 | } |
@@ -152,6 +154,8 @@ export class Video implements VideoServerModel { | |||
152 | 154 | ||
153 | this.originInstanceHost = this.account.host | 155 | this.originInstanceHost = this.account.host |
154 | this.originInstanceUrl = 'https://' + this.originInstanceHost | 156 | this.originInstanceUrl = 'https://' + this.originInstanceHost |
157 | |||
158 | this.pluginData = hash.pluginData | ||
155 | } | 159 | } |
156 | 160 | ||
157 | isVideoNSFWForUser (user: User, serverConfig: ServerConfig) { | 161 | isVideoNSFWForUser (user: User, serverConfig: ServerConfig) { |
diff --git a/client/src/app/shared/shared-main/video/video.service.ts b/client/src/app/shared/shared-main/video/video.service.ts index 48aff82b4..8a688c8ed 100644 --- a/client/src/app/shared/shared-main/video/video.service.ts +++ b/client/src/app/shared/shared-main/video/video.service.ts | |||
@@ -96,6 +96,7 @@ export class VideoService implements VideosProvider { | |||
96 | downloadEnabled: video.downloadEnabled, | 96 | downloadEnabled: video.downloadEnabled, |
97 | thumbnailfile: video.thumbnailfile, | 97 | thumbnailfile: video.thumbnailfile, |
98 | previewfile: video.previewfile, | 98 | previewfile: video.previewfile, |
99 | pluginData: video.pluginData, | ||
99 | scheduleUpdate, | 100 | scheduleUpdate, |
100 | originallyPublishedAt | 101 | originallyPublishedAt |
101 | } | 102 | } |
diff --git a/client/src/app/shared/shared-moderation/batch-domains-modal.component.ts b/client/src/app/shared/shared-moderation/batch-domains-modal.component.ts index 7193ccb1b..6edbb6023 100644 --- a/client/src/app/shared/shared-moderation/batch-domains-modal.component.ts +++ b/client/src/app/shared/shared-moderation/batch-domains-modal.component.ts | |||
@@ -1,7 +1,8 @@ | |||
1 | import { Component, EventEmitter, Input, OnInit, Output, ViewChild } from '@angular/core' | 1 | import { Component, EventEmitter, Input, OnInit, Output, ViewChild } from '@angular/core' |
2 | import { BatchDomainsValidatorsService, FormReactive, FormValidatorService } from '@app/shared/shared-forms' | 2 | import { FormReactive, FormValidatorService } from '@app/shared/shared-forms' |
3 | import { NgbModal } from '@ng-bootstrap/ng-bootstrap' | 3 | import { NgbModal } from '@ng-bootstrap/ng-bootstrap' |
4 | import { NgbModalRef } from '@ng-bootstrap/ng-bootstrap/modal/modal-ref' | 4 | import { NgbModalRef } from '@ng-bootstrap/ng-bootstrap/modal/modal-ref' |
5 | import { DOMAINS_VALIDATOR, getNotEmptyHosts } from '../form-validators/batch-domains-validators' | ||
5 | 6 | ||
6 | @Component({ | 7 | @Component({ |
7 | selector: 'my-batch-domains-modal', | 8 | selector: 'my-batch-domains-modal', |
@@ -18,8 +19,7 @@ export class BatchDomainsModalComponent extends FormReactive implements OnInit { | |||
18 | 19 | ||
19 | constructor ( | 20 | constructor ( |
20 | protected formValidatorService: FormValidatorService, | 21 | protected formValidatorService: FormValidatorService, |
21 | private modalService: NgbModal, | 22 | private modalService: NgbModal |
22 | private batchDomainsValidatorsService: BatchDomainsValidatorsService | ||
23 | ) { | 23 | ) { |
24 | super() | 24 | super() |
25 | } | 25 | } |
@@ -28,7 +28,7 @@ export class BatchDomainsModalComponent extends FormReactive implements OnInit { | |||
28 | if (!this.action) this.action = $localize`Process domains` | 28 | if (!this.action) this.action = $localize`Process domains` |
29 | 29 | ||
30 | this.buildForm({ | 30 | this.buildForm({ |
31 | domains: this.batchDomainsValidatorsService.DOMAINS | 31 | domains: DOMAINS_VALIDATOR |
32 | }) | 32 | }) |
33 | } | 33 | } |
34 | 34 | ||
@@ -42,7 +42,7 @@ export class BatchDomainsModalComponent extends FormReactive implements OnInit { | |||
42 | 42 | ||
43 | submit () { | 43 | submit () { |
44 | this.domains.emit( | 44 | this.domains.emit( |
45 | this.batchDomainsValidatorsService.getNotEmptyHosts(this.form.controls['domains'].value) | 45 | getNotEmptyHosts(this.form.controls['domains'].value) |
46 | ) | 46 | ) |
47 | this.form.reset() | 47 | this.form.reset() |
48 | this.hide() | 48 | this.hide() |
diff --git a/client/src/app/shared/shared-moderation/report-modals/account-report.component.ts b/client/src/app/shared/shared-moderation/report-modals/account-report.component.ts index 8ab2fe940..cc8875f77 100644 --- a/client/src/app/shared/shared-moderation/report-modals/account-report.component.ts +++ b/client/src/app/shared/shared-moderation/report-modals/account-report.component.ts | |||
@@ -1,7 +1,8 @@ | |||
1 | import { mapValues, pickBy } from 'lodash-es' | 1 | import { mapValues, pickBy } from 'lodash-es' |
2 | import { Component, Input, OnInit, ViewChild } from '@angular/core' | 2 | import { Component, Input, OnInit, ViewChild } from '@angular/core' |
3 | import { Notifier } from '@app/core' | 3 | import { Notifier } from '@app/core' |
4 | import { AbuseValidatorsService, FormReactive, FormValidatorService } from '@app/shared/shared-forms' | 4 | import { ABUSE_REASON_VALIDATOR } from '@app/shared/form-validators/abuse-validators' |
5 | import { FormReactive, FormValidatorService } from '@app/shared/shared-forms' | ||
5 | import { Account } from '@app/shared/shared-main' | 6 | import { Account } from '@app/shared/shared-main' |
6 | import { NgbModal } from '@ng-bootstrap/ng-bootstrap' | 7 | import { NgbModal } from '@ng-bootstrap/ng-bootstrap' |
7 | import { NgbModalRef } from '@ng-bootstrap/ng-bootstrap/modal/modal-ref' | 8 | import { NgbModalRef } from '@ng-bootstrap/ng-bootstrap/modal/modal-ref' |
@@ -28,7 +29,6 @@ export class AccountReportComponent extends FormReactive implements OnInit { | |||
28 | constructor ( | 29 | constructor ( |
29 | protected formValidatorService: FormValidatorService, | 30 | protected formValidatorService: FormValidatorService, |
30 | private modalService: NgbModal, | 31 | private modalService: NgbModal, |
31 | private abuseValidatorsService: AbuseValidatorsService, | ||
32 | private abuseService: AbuseService, | 32 | private abuseService: AbuseService, |
33 | private notifier: Notifier | 33 | private notifier: Notifier |
34 | ) { | 34 | ) { |
@@ -51,7 +51,7 @@ export class AccountReportComponent extends FormReactive implements OnInit { | |||
51 | this.modalTitle = $localize`Report ${this.account.displayName}` | 51 | this.modalTitle = $localize`Report ${this.account.displayName}` |
52 | 52 | ||
53 | this.buildForm({ | 53 | this.buildForm({ |
54 | reason: this.abuseValidatorsService.ABUSE_REASON, | 54 | reason: ABUSE_REASON_VALIDATOR, |
55 | predefinedReasons: mapValues(abusePredefinedReasonsMap, r => null) | 55 | predefinedReasons: mapValues(abusePredefinedReasonsMap, r => null) |
56 | }) | 56 | }) |
57 | 57 | ||
diff --git a/client/src/app/shared/shared-moderation/report-modals/comment-report.component.ts b/client/src/app/shared/shared-moderation/report-modals/comment-report.component.ts index d75f4d717..c7395c7b7 100644 --- a/client/src/app/shared/shared-moderation/report-modals/comment-report.component.ts +++ b/client/src/app/shared/shared-moderation/report-modals/comment-report.component.ts | |||
@@ -1,7 +1,8 @@ | |||
1 | import { mapValues, pickBy } from 'lodash-es' | 1 | import { mapValues, pickBy } from 'lodash-es' |
2 | import { Component, Input, OnInit, ViewChild } from '@angular/core' | 2 | import { Component, Input, OnInit, ViewChild } from '@angular/core' |
3 | import { Notifier } from '@app/core' | 3 | import { Notifier } from '@app/core' |
4 | import { AbuseValidatorsService, FormReactive, FormValidatorService } from '@app/shared/shared-forms' | 4 | import { ABUSE_REASON_VALIDATOR } from '@app/shared/form-validators/abuse-validators' |
5 | import { FormReactive, FormValidatorService } from '@app/shared/shared-forms' | ||
5 | import { VideoComment } from '@app/shared/shared-video-comment' | 6 | import { VideoComment } from '@app/shared/shared-video-comment' |
6 | import { NgbModal } from '@ng-bootstrap/ng-bootstrap' | 7 | import { NgbModal } from '@ng-bootstrap/ng-bootstrap' |
7 | import { NgbModalRef } from '@ng-bootstrap/ng-bootstrap/modal/modal-ref' | 8 | import { NgbModalRef } from '@ng-bootstrap/ng-bootstrap/modal/modal-ref' |
@@ -28,7 +29,6 @@ export class CommentReportComponent extends FormReactive implements OnInit { | |||
28 | constructor ( | 29 | constructor ( |
29 | protected formValidatorService: FormValidatorService, | 30 | protected formValidatorService: FormValidatorService, |
30 | private modalService: NgbModal, | 31 | private modalService: NgbModal, |
31 | private abuseValidatorsService: AbuseValidatorsService, | ||
32 | private abuseService: AbuseService, | 32 | private abuseService: AbuseService, |
33 | private notifier: Notifier | 33 | private notifier: Notifier |
34 | ) { | 34 | ) { |
@@ -51,7 +51,7 @@ export class CommentReportComponent extends FormReactive implements OnInit { | |||
51 | this.modalTitle = $localize`Report comment` | 51 | this.modalTitle = $localize`Report comment` |
52 | 52 | ||
53 | this.buildForm({ | 53 | this.buildForm({ |
54 | reason: this.abuseValidatorsService.ABUSE_REASON, | 54 | reason: ABUSE_REASON_VALIDATOR, |
55 | predefinedReasons: mapValues(abusePredefinedReasonsMap, r => null) | 55 | predefinedReasons: mapValues(abusePredefinedReasonsMap, r => null) |
56 | }) | 56 | }) |
57 | 57 | ||
diff --git a/client/src/app/shared/shared-moderation/report-modals/video-report.component.ts b/client/src/app/shared/shared-moderation/report-modals/video-report.component.ts index edff6d325..5b06c0bc7 100644 --- a/client/src/app/shared/shared-moderation/report-modals/video-report.component.ts +++ b/client/src/app/shared/shared-moderation/report-modals/video-report.component.ts | |||
@@ -3,7 +3,8 @@ import { buildVideoLink, buildVideoOrPlaylistEmbed } from 'src/assets/player/uti | |||
3 | import { Component, Input, OnInit, ViewChild } from '@angular/core' | 3 | import { Component, Input, OnInit, ViewChild } from '@angular/core' |
4 | import { DomSanitizer, SafeHtml } from '@angular/platform-browser' | 4 | import { DomSanitizer, SafeHtml } from '@angular/platform-browser' |
5 | import { Notifier } from '@app/core' | 5 | import { Notifier } from '@app/core' |
6 | import { AbuseValidatorsService, FormReactive, FormValidatorService } from '@app/shared/shared-forms' | 6 | import { ABUSE_REASON_VALIDATOR } from '@app/shared/form-validators/abuse-validators' |
7 | import { FormReactive, FormValidatorService } from '@app/shared/shared-forms' | ||
7 | import { NgbModal } from '@ng-bootstrap/ng-bootstrap' | 8 | import { NgbModal } from '@ng-bootstrap/ng-bootstrap' |
8 | import { NgbModalRef } from '@ng-bootstrap/ng-bootstrap/modal/modal-ref' | 9 | import { NgbModalRef } from '@ng-bootstrap/ng-bootstrap/modal/modal-ref' |
9 | import { abusePredefinedReasonsMap } from '@shared/core-utils/abuse' | 10 | import { abusePredefinedReasonsMap } from '@shared/core-utils/abuse' |
@@ -30,7 +31,6 @@ export class VideoReportComponent extends FormReactive implements OnInit { | |||
30 | constructor ( | 31 | constructor ( |
31 | protected formValidatorService: FormValidatorService, | 32 | protected formValidatorService: FormValidatorService, |
32 | private modalService: NgbModal, | 33 | private modalService: NgbModal, |
33 | private abuseValidatorsService: AbuseValidatorsService, | ||
34 | private abuseService: AbuseService, | 34 | private abuseService: AbuseService, |
35 | private notifier: Notifier, | 35 | private notifier: Notifier, |
36 | private sanitizer: DomSanitizer | 36 | private sanitizer: DomSanitizer |
@@ -68,7 +68,7 @@ export class VideoReportComponent extends FormReactive implements OnInit { | |||
68 | 68 | ||
69 | ngOnInit () { | 69 | ngOnInit () { |
70 | this.buildForm({ | 70 | this.buildForm({ |
71 | reason: this.abuseValidatorsService.ABUSE_REASON, | 71 | reason: ABUSE_REASON_VALIDATOR, |
72 | predefinedReasons: mapValues(abusePredefinedReasonsMap, r => null), | 72 | predefinedReasons: mapValues(abusePredefinedReasonsMap, r => null), |
73 | timestamp: { | 73 | timestamp: { |
74 | hasStart: null, | 74 | hasStart: null, |
diff --git a/client/src/app/shared/shared-moderation/user-ban-modal.component.ts b/client/src/app/shared/shared-moderation/user-ban-modal.component.ts index f9a0381c5..afc69a1b8 100644 --- a/client/src/app/shared/shared-moderation/user-ban-modal.component.ts +++ b/client/src/app/shared/shared-moderation/user-ban-modal.component.ts | |||
@@ -1,9 +1,10 @@ | |||
1 | import { Component, EventEmitter, OnInit, Output, ViewChild } from '@angular/core' | 1 | import { Component, EventEmitter, OnInit, Output, ViewChild } from '@angular/core' |
2 | import { Notifier, UserService } from '@app/core' | 2 | import { Notifier, UserService } from '@app/core' |
3 | import { FormReactive, FormValidatorService, UserValidatorsService } from '@app/shared/shared-forms' | 3 | import { FormReactive, FormValidatorService } from '@app/shared/shared-forms' |
4 | import { NgbModal } from '@ng-bootstrap/ng-bootstrap' | 4 | import { NgbModal } from '@ng-bootstrap/ng-bootstrap' |
5 | import { NgbModalRef } from '@ng-bootstrap/ng-bootstrap/modal/modal-ref' | 5 | import { NgbModalRef } from '@ng-bootstrap/ng-bootstrap/modal/modal-ref' |
6 | import { User } from '@shared/models' | 6 | import { User } from '@shared/models' |
7 | import { USER_BAN_REASON_VALIDATOR } from '../form-validators/user-validators' | ||
7 | 8 | ||
8 | @Component({ | 9 | @Component({ |
9 | selector: 'my-user-ban-modal', | 10 | selector: 'my-user-ban-modal', |
@@ -21,15 +22,14 @@ export class UserBanModalComponent extends FormReactive implements OnInit { | |||
21 | protected formValidatorService: FormValidatorService, | 22 | protected formValidatorService: FormValidatorService, |
22 | private modalService: NgbModal, | 23 | private modalService: NgbModal, |
23 | private notifier: Notifier, | 24 | private notifier: Notifier, |
24 | private userService: UserService, | 25 | private userService: UserService |
25 | private userValidatorsService: UserValidatorsService | ||
26 | ) { | 26 | ) { |
27 | super() | 27 | super() |
28 | } | 28 | } |
29 | 29 | ||
30 | ngOnInit () { | 30 | ngOnInit () { |
31 | this.buildForm({ | 31 | this.buildForm({ |
32 | reason: this.userValidatorsService.USER_BAN_REASON | 32 | reason: USER_BAN_REASON_VALIDATOR |
33 | }) | 33 | }) |
34 | } | 34 | } |
35 | 35 | ||
diff --git a/client/src/app/shared/shared-moderation/video-block.component.ts b/client/src/app/shared/shared-moderation/video-block.component.ts index 2bef9efdd..fb47989dc 100644 --- a/client/src/app/shared/shared-moderation/video-block.component.ts +++ b/client/src/app/shared/shared-moderation/video-block.component.ts | |||
@@ -1,9 +1,10 @@ | |||
1 | import { Component, EventEmitter, Input, OnInit, Output, ViewChild } from '@angular/core' | 1 | import { Component, EventEmitter, Input, OnInit, Output, ViewChild } from '@angular/core' |
2 | import { Notifier } from '@app/core' | 2 | import { Notifier } from '@app/core' |
3 | import { FormReactive, FormValidatorService, VideoBlockValidatorsService } from '@app/shared/shared-forms' | 3 | import { FormReactive, FormValidatorService } from '@app/shared/shared-forms' |
4 | import { Video } from '@app/shared/shared-main' | 4 | import { Video } from '@app/shared/shared-main' |
5 | import { NgbModal } from '@ng-bootstrap/ng-bootstrap' | 5 | import { NgbModal } from '@ng-bootstrap/ng-bootstrap' |
6 | import { NgbModalRef } from '@ng-bootstrap/ng-bootstrap/modal/modal-ref' | 6 | import { NgbModalRef } from '@ng-bootstrap/ng-bootstrap/modal/modal-ref' |
7 | import { VIDEO_BLOCK_REASON_VALIDATOR } from '../form-validators/video-block-validators' | ||
7 | import { VideoBlockService } from './video-block.service' | 8 | import { VideoBlockService } from './video-block.service' |
8 | 9 | ||
9 | @Component({ | 10 | @Component({ |
@@ -25,7 +26,6 @@ export class VideoBlockComponent extends FormReactive implements OnInit { | |||
25 | constructor ( | 26 | constructor ( |
26 | protected formValidatorService: FormValidatorService, | 27 | protected formValidatorService: FormValidatorService, |
27 | private modalService: NgbModal, | 28 | private modalService: NgbModal, |
28 | private videoBlockValidatorsService: VideoBlockValidatorsService, | ||
29 | private videoBlocklistService: VideoBlockService, | 29 | private videoBlocklistService: VideoBlockService, |
30 | private notifier: Notifier | 30 | private notifier: Notifier |
31 | ) { | 31 | ) { |
@@ -36,7 +36,7 @@ export class VideoBlockComponent extends FormReactive implements OnInit { | |||
36 | const defaultValues = { unfederate: 'true' } | 36 | const defaultValues = { unfederate: 'true' } |
37 | 37 | ||
38 | this.buildForm({ | 38 | this.buildForm({ |
39 | reason: this.videoBlockValidatorsService.VIDEO_BLOCK_REASON, | 39 | reason: VIDEO_BLOCK_REASON_VALIDATOR, |
40 | unfederate: null | 40 | unfederate: null |
41 | }, defaultValues) | 41 | }, defaultValues) |
42 | } | 42 | } |
diff --git a/client/src/app/shared/shared-share-modal/video-share.component.ts b/client/src/app/shared/shared-share-modal/video-share.component.ts index 8d8e8a3a5..f57a50770 100644 --- a/client/src/app/shared/shared-share-modal/video-share.component.ts +++ b/client/src/app/shared/shared-share-modal/video-share.component.ts | |||
@@ -37,6 +37,7 @@ export class VideoShareComponent { | |||
37 | @Input() video: VideoDetails = null | 37 | @Input() video: VideoDetails = null |
38 | @Input() videoCaptions: VideoCaption[] = [] | 38 | @Input() videoCaptions: VideoCaption[] = [] |
39 | @Input() playlist: VideoPlaylist = null | 39 | @Input() playlist: VideoPlaylist = null |
40 | @Input() playlistPosition: number = null | ||
40 | 41 | ||
41 | activeVideoId: TabId = 'url' | 42 | activeVideoId: TabId = 'url' |
42 | activePlaylistId: TabId = 'url' | 43 | activePlaylistId: TabId = 'url' |
@@ -45,8 +46,6 @@ export class VideoShareComponent { | |||
45 | isAdvancedCustomizationCollapsed = true | 46 | isAdvancedCustomizationCollapsed = true |
46 | includeVideoInPlaylist = false | 47 | includeVideoInPlaylist = false |
47 | 48 | ||
48 | private playlistPosition: number = null | ||
49 | |||
50 | constructor (private modalService: NgbModal) { } | 49 | constructor (private modalService: NgbModal) { } |
51 | 50 | ||
52 | show (currentVideoTimestamp?: number, currentPlaylistPosition?: number) { | 51 | show (currentVideoTimestamp?: number, currentPlaylistPosition?: number) { |
@@ -107,7 +106,7 @@ export class VideoShareComponent { | |||
107 | 106 | ||
108 | if (!this.includeVideoInPlaylist) return base | 107 | if (!this.includeVideoInPlaylist) return base |
109 | 108 | ||
110 | return base + '?videoId=' + this.video.uuid | 109 | return base + '?playlistPosition=' + this.playlistPosition |
111 | } | 110 | } |
112 | 111 | ||
113 | notSecure () { | 112 | notSecure () { |
diff --git a/client/src/app/shared/shared-user-settings/user-video-settings.component.ts b/client/src/app/shared/shared-user-settings/user-video-settings.component.ts index ab77f6f9c..2497e001c 100644 --- a/client/src/app/shared/shared-user-settings/user-video-settings.component.ts +++ b/client/src/app/shared/shared-user-settings/user-video-settings.component.ts | |||
@@ -95,27 +95,22 @@ export class UserVideoSettingsComponent extends FormReactive implements OnInit, | |||
95 | const autoPlayVideo = this.form.value['autoPlayVideo'] | 95 | const autoPlayVideo = this.form.value['autoPlayVideo'] |
96 | const autoPlayNextVideo = this.form.value['autoPlayNextVideo'] | 96 | const autoPlayNextVideo = this.form.value['autoPlayNextVideo'] |
97 | 97 | ||
98 | let videoLanguages: string[] = this.form.value['videoLanguages'] | 98 | const videoLanguagesForm = this.form.value['videoLanguages'] |
99 | 99 | ||
100 | if (Array.isArray(videoLanguages)) { | 100 | if (Array.isArray(videoLanguagesForm)) { |
101 | if (videoLanguages.length > 20) { | 101 | if (videoLanguagesForm.length > 20) { |
102 | this.notifier.error($localize`Too many languages are enabled. Please enable them all or stay below 20 enabled languages.`) | 102 | this.notifier.error($localize`Too many languages are enabled. Please enable them all or stay below 20 enabled languages.`) |
103 | return | 103 | return |
104 | } | 104 | } |
105 | 105 | ||
106 | if (videoLanguages.length === 0) { | 106 | if (videoLanguagesForm.length === 0) { |
107 | this.notifier.error($localize`You need to enable at least 1 video language.`) | 107 | this.notifier.error($localize`You need to enable at least 1 video language.`) |
108 | return | 108 | return |
109 | } | 109 | } |
110 | |||
111 | if ( | ||
112 | videoLanguages.length === this.languageItems.length || | ||
113 | (videoLanguages.length === 1 && videoLanguages[0] === this.allLanguagesGroup) | ||
114 | ) { | ||
115 | videoLanguages = null // null means "All" | ||
116 | } | ||
117 | } | 110 | } |
118 | 111 | ||
112 | const videoLanguages = this.getVideoLanguages(videoLanguagesForm) | ||
113 | |||
119 | let details: UserUpdateMe = { | 114 | let details: UserUpdateMe = { |
120 | nsfwPolicy, | 115 | nsfwPolicy, |
121 | webTorrentEnabled, | 116 | webTorrentEnabled, |
@@ -124,6 +119,10 @@ export class UserVideoSettingsComponent extends FormReactive implements OnInit, | |||
124 | videoLanguages | 119 | videoLanguages |
125 | } | 120 | } |
126 | 121 | ||
122 | if (videoLanguages) { | ||
123 | details = Object.assign(details, videoLanguages) | ||
124 | } | ||
125 | |||
127 | if (onlyKeys) details = pick(details, onlyKeys) | 126 | if (onlyKeys) details = pick(details, onlyKeys) |
128 | 127 | ||
129 | if (this.authService.isLoggedIn()) { | 128 | if (this.authService.isLoggedIn()) { |
@@ -141,4 +140,29 @@ export class UserVideoSettingsComponent extends FormReactive implements OnInit, | |||
141 | if (this.notifyOnUpdate) this.notifier.success($localize`Display/Video settings updated.`) | 140 | if (this.notifyOnUpdate) this.notifier.success($localize`Display/Video settings updated.`) |
142 | } | 141 | } |
143 | } | 142 | } |
143 | |||
144 | private getVideoLanguages (videoLanguages: ItemSelectCheckboxValue[]) { | ||
145 | if (!Array.isArray(videoLanguages)) return undefined | ||
146 | |||
147 | // null means "All" | ||
148 | if (videoLanguages.length === this.languageItems.length) return null | ||
149 | |||
150 | if (videoLanguages.length === 1) { | ||
151 | const videoLanguage = videoLanguages[0] | ||
152 | |||
153 | if (typeof videoLanguage === 'string') { | ||
154 | if (videoLanguage === this.allLanguagesGroup) return null | ||
155 | } else { | ||
156 | if (videoLanguage.group === this.allLanguagesGroup) return null | ||
157 | } | ||
158 | } | ||
159 | |||
160 | return videoLanguages.map(l => { | ||
161 | if (typeof l === 'string') return l | ||
162 | |||
163 | if (l.group) return l.group | ||
164 | |||
165 | return l.id + '' | ||
166 | }) | ||
167 | } | ||
144 | } | 168 | } |
diff --git a/client/src/app/shared/shared-user-subscription/remote-subscribe.component.ts b/client/src/app/shared/shared-user-subscription/remote-subscribe.component.ts index 286ecac02..b46c91bf8 100644 --- a/client/src/app/shared/shared-user-subscription/remote-subscribe.component.ts +++ b/client/src/app/shared/shared-user-subscription/remote-subscribe.component.ts | |||
@@ -1,5 +1,6 @@ | |||
1 | import { Component, Input, OnInit } from '@angular/core' | 1 | import { Component, Input, OnInit } from '@angular/core' |
2 | import { FormReactive, FormValidatorService, UserValidatorsService } from '@app/shared/shared-forms' | 2 | import { FormReactive, FormValidatorService } from '@app/shared/shared-forms' |
3 | import { USER_EMAIL_VALIDATOR } from '../form-validators/user-validators' | ||
3 | 4 | ||
4 | @Component({ | 5 | @Component({ |
5 | selector: 'my-remote-subscribe', | 6 | selector: 'my-remote-subscribe', |
@@ -12,15 +13,14 @@ export class RemoteSubscribeComponent extends FormReactive implements OnInit { | |||
12 | @Input() showHelp = false | 13 | @Input() showHelp = false |
13 | 14 | ||
14 | constructor ( | 15 | constructor ( |
15 | protected formValidatorService: FormValidatorService, | 16 | protected formValidatorService: FormValidatorService |
16 | private userValidatorsService: UserValidatorsService | ||
17 | ) { | 17 | ) { |
18 | super() | 18 | super() |
19 | } | 19 | } |
20 | 20 | ||
21 | ngOnInit () { | 21 | ngOnInit () { |
22 | this.buildForm({ | 22 | this.buildForm({ |
23 | text: this.userValidatorsService.USER_EMAIL | 23 | text: USER_EMAIL_VALIDATOR |
24 | }) | 24 | }) |
25 | } | 25 | } |
26 | 26 | ||
diff --git a/client/src/app/shared/shared-video-playlist/video-add-to-playlist.component.html b/client/src/app/shared/shared-video-playlist/video-add-to-playlist.component.html index a40e0699e..37d5017cf 100644 --- a/client/src/app/shared/shared-video-playlist/video-add-to-playlist.component.html +++ b/client/src/app/shared/shared-video-playlist/video-add-to-playlist.component.html | |||
@@ -2,58 +2,60 @@ | |||
2 | <div class="header"> | 2 | <div class="header"> |
3 | <div class="first-row"> | 3 | <div class="first-row"> |
4 | <div i18n class="title">Save to</div> | 4 | <div i18n class="title">Save to</div> |
5 | |||
6 | <div class="options" (click)="displayOptions = !displayOptions"> | ||
7 | <my-global-icon iconName="cog" aria-hidden="true"></my-global-icon> | ||
8 | |||
9 | <span i18n>Options</span> | ||
10 | </div> | ||
11 | </div> | 5 | </div> |
6 | </div> | ||
12 | 7 | ||
13 | <div class="options-row" *ngIf="displayOptions"> | 8 | <div class="input-container"> |
14 | <div> | 9 | <input type="text" placeholder="Search playlists" i18n-placeholder [(ngModel)]="videoPlaylistSearch" (ngModelChange)="onVideoPlaylistSearchChanged()" /> |
15 | <my-peertube-checkbox | 10 | </div> |
16 | inputName="startAt" [(ngModel)]="timestampOptions.startTimestampEnabled" | ||
17 | i18n-labelText labelText="Start at" | ||
18 | ></my-peertube-checkbox> | ||
19 | |||
20 | <my-timestamp-input | ||
21 | [timestamp]="timestampOptions.startTimestamp" | ||
22 | [maxTimestamp]="video.duration" | ||
23 | [disabled]="!timestampOptions.startTimestampEnabled" | ||
24 | [(ngModel)]="timestampOptions.startTimestamp" | ||
25 | ></my-timestamp-input> | ||
26 | </div> | ||
27 | 11 | ||
28 | <div> | 12 | <div class="playlists"> |
13 | <div | ||
14 | *ngFor="let playlist of videoPlaylists" | ||
15 | class="playlist dropdown-item" [ngClass]="{ 'has-optional-row': playlist.optionalRowDisplayed }" | ||
16 | > | ||
17 | <div class="primary-row"> | ||
29 | <my-peertube-checkbox | 18 | <my-peertube-checkbox |
30 | inputName="stopAt" [(ngModel)]="timestampOptions.stopTimestampEnabled" | 19 | [disabled]="isPresentMultipleTimes(playlist) || playlist.optionalRowDisplayed" [inputName]="getPrimaryInputName(playlist)" |
31 | i18n-labelText labelText="Stop at" | 20 | [ngModel]="isPrimaryCheckboxChecked(playlist)" [onPushWorkaround]="true" |
21 | (click)="toggleMainPlaylist($event, playlist)" | ||
32 | ></my-peertube-checkbox> | 22 | ></my-peertube-checkbox> |
33 | 23 | ||
34 | <my-timestamp-input | 24 | <label class="display-name" (click)="toggleMainPlaylist($event, playlist)"> |
35 | [timestamp]="timestampOptions.stopTimestamp" | 25 | {{ playlist.displayName }} |
36 | [maxTimestamp]="video.duration" | 26 | </label> |
37 | [disabled]="!timestampOptions.stopTimestampEnabled" | 27 | |
38 | [(ngModel)]="timestampOptions.stopTimestamp" | 28 | <div class="optional-row-icon" *ngIf="isPrimaryCheckboxChecked(playlist)" (click)="toggleOptionalRow(playlist)"> |
39 | ></my-timestamp-input> | 29 | <my-global-icon iconName="add" aria-hidden="true"></my-global-icon> |
30 | </div> | ||
40 | </div> | 31 | </div> |
41 | </div> | ||
42 | </div> | ||
43 | 32 | ||
44 | <div class="input-container"> | 33 | <div class="optional-rows" *ngIf="playlist.optionalRowDisplayed"> |
45 | <input type="text" placeholder="Search playlists" i18n-placeholder [(ngModel)]="videoPlaylistSearch" (ngModelChange)="onVideoPlaylistSearchChanged()" /> | 34 | <div class="labels"> |
46 | </div> | 35 | <div i18n>Start at</div> |
36 | <div i18n>Stop at</div> | ||
37 | </div> | ||
47 | 38 | ||
48 | <div class="playlists"> | 39 | <div *ngFor="let element of buildOptionalRowElements(playlist)"> |
49 | <div class="playlist dropdown-item" *ngFor="let playlist of videoPlaylists" (click)="togglePlaylist($event, playlist)"> | 40 | <my-peertube-checkbox |
50 | <my-peertube-checkbox [inputName]="'in-playlist-' + playlist.id" [(ngModel)]="playlist.inPlaylist" [onPushWorkaround]="true"></my-peertube-checkbox> | 41 | [inputName]="getOptionalInputName(playlist, element)" |
42 | [ngModel]="element.enabled" [onPushWorkaround]="true" | ||
43 | (click)="toggleOptionalPlaylist($event, playlist, element, startAt.timestamp, stopAt.timestamp)" | ||
44 | ></my-peertube-checkbox> | ||
51 | 45 | ||
52 | <div class="display-name"> | 46 | <my-timestamp-input |
53 | {{ playlist.displayName }} | 47 | [maxTimestamp]="video.duration" |
48 | [(ngModel)]="element.startTimestamp" | ||
49 | (inputBlur)="onElementTimestampUpdate(playlist, element)" | ||
50 | #startAt | ||
51 | ></my-timestamp-input> | ||
54 | 52 | ||
55 | <div *ngIf="playlist.inPlaylist && (playlist.startTimestamp || playlist.stopTimestamp)" class="timestamp-info"> | 53 | <my-timestamp-input |
56 | {{ formatTimestamp(playlist) }} | 54 | [maxTimestamp]="video.duration" |
55 | [(ngModel)]="element.stopTimestamp" | ||
56 | (inputBlur)="onElementTimestampUpdate(playlist, element)" | ||
57 | #stopAt | ||
58 | ></my-timestamp-input> | ||
57 | </div> | 59 | </div> |
58 | </div> | 60 | </div> |
59 | </div> | 61 | </div> |
diff --git a/client/src/app/shared/shared-video-playlist/video-add-to-playlist.component.scss b/client/src/app/shared/shared-video-playlist/video-add-to-playlist.component.scss index 47baa997b..d2c8804e3 100644 --- a/client/src/app/shared/shared-video-playlist/video-add-to-playlist.component.scss +++ b/client/src/app/shared/shared-video-playlist/video-add-to-playlist.component.scss | |||
@@ -1,12 +1,20 @@ | |||
1 | @import '_variables'; | 1 | @import '_variables'; |
2 | @import '_mixins'; | 2 | @import '_mixins'; |
3 | 3 | ||
4 | $optional-rows-checkbox-width: 34px; | ||
5 | $timestamp-width: 50px; | ||
6 | $timestamp-margin-right: 10px; | ||
7 | |||
4 | .header, | 8 | .header, |
5 | .dropdown-item, | 9 | .dropdown-item, |
6 | .input-container { | 10 | .input-container { |
7 | padding: 8px 24px; | 11 | padding: 8px 24px; |
8 | } | 12 | } |
9 | 13 | ||
14 | .dropdown-item:active { | ||
15 | color: inherit; | ||
16 | } | ||
17 | |||
10 | .header { | 18 | .header { |
11 | min-width: 240px; | 19 | min-width: 240px; |
12 | margin-bottom: 10px; | 20 | margin-bottom: 10px; |
@@ -20,31 +28,6 @@ | |||
20 | font-size: 18px; | 28 | font-size: 18px; |
21 | flex-grow: 1; | 29 | flex-grow: 1; |
22 | } | 30 | } |
23 | |||
24 | .options { | ||
25 | display: flex; | ||
26 | align-items: center; | ||
27 | font-size: 14px; | ||
28 | cursor: pointer; | ||
29 | |||
30 | my-global-icon { | ||
31 | @include apply-svg-color(#333); | ||
32 | |||
33 | width: 16px; | ||
34 | height: 23px; | ||
35 | margin-right: 3px; | ||
36 | } | ||
37 | } | ||
38 | } | ||
39 | |||
40 | .options-row { | ||
41 | margin-top: 10px; | ||
42 | padding-left: 10px; | ||
43 | |||
44 | > div { | ||
45 | display: flex; | ||
46 | align-items: center; | ||
47 | } | ||
48 | } | 31 | } |
49 | } | 32 | } |
50 | 33 | ||
@@ -54,8 +37,16 @@ | |||
54 | } | 37 | } |
55 | 38 | ||
56 | .playlist { | 39 | .playlist { |
57 | display: inline-flex; | 40 | padding: 8px 10px 8px 24px; |
58 | cursor: pointer; | 41 | |
42 | &.has-optional-row:hover { | ||
43 | background-color: inherit; | ||
44 | } | ||
45 | } | ||
46 | |||
47 | .primary-row, | ||
48 | .optional-rows > div { | ||
49 | display: flex; | ||
59 | 50 | ||
60 | my-peertube-checkbox { | 51 | my-peertube-checkbox { |
61 | margin-right: 10px; | 52 | margin-right: 10px; |
@@ -65,11 +56,58 @@ | |||
65 | .display-name { | 56 | .display-name { |
66 | display: flex; | 57 | display: flex; |
67 | align-items: flex-end; | 58 | align-items: flex-end; |
59 | flex-grow: 1; | ||
60 | margin: 0; | ||
61 | font-weight: $font-regular; | ||
62 | cursor: pointer; | ||
63 | } | ||
64 | |||
65 | .optional-row-icon { | ||
66 | display: flex; | ||
67 | align-items: center; | ||
68 | font-size: 14px; | ||
69 | cursor: pointer; | ||
70 | |||
71 | my-global-icon { | ||
72 | @include apply-svg-color(#333); | ||
73 | |||
74 | width: 19px; | ||
75 | height: 19px; | ||
76 | margin-right: 0; | ||
77 | } | ||
78 | } | ||
79 | |||
80 | my-timestamp-input { | ||
81 | margin-right: $timestamp-margin-right; | ||
82 | |||
83 | ::ng-deep .ui-inputtext { | ||
84 | padding: 0; | ||
85 | width: $timestamp-width; | ||
86 | } | ||
87 | } | ||
88 | } | ||
89 | |||
90 | .optional-rows { | ||
91 | > div { | ||
92 | padding: 8px 5px 5px 10px; | ||
93 | } | ||
94 | |||
95 | my-peertube-checkbox { | ||
96 | display: block; | ||
97 | width: $optional-rows-checkbox-width; | ||
98 | margin-right: 0 !important; | ||
99 | } | ||
100 | |||
101 | .labels { | ||
102 | margin-left: $optional-rows-checkbox-width; | ||
103 | font-size: 13px; | ||
104 | color: pvar(--greyForegroundColor); | ||
105 | padding-top: 5px; | ||
106 | padding-bottom: 0; | ||
68 | 107 | ||
69 | .timestamp-info { | 108 | div { |
70 | font-size: 0.9em; | 109 | margin-right: $timestamp-margin-right; |
71 | color: pvar(--greyForegroundColor); | 110 | width: $timestamp-width; |
72 | margin-left: 5px; | ||
73 | } | 111 | } |
74 | } | 112 | } |
75 | } | 113 | } |
diff --git a/client/src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts b/client/src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts index 757ffa099..681e5becd 100644 --- a/client/src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts +++ b/client/src/app/shared/shared-video-playlist/video-add-to-playlist.component.ts | |||
@@ -3,21 +3,34 @@ import { Subject, Subscription } from 'rxjs' | |||
3 | import { debounceTime, filter } from 'rxjs/operators' | 3 | import { debounceTime, filter } from 'rxjs/operators' |
4 | import { ChangeDetectionStrategy, ChangeDetectorRef, Component, Input, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core' | 4 | import { ChangeDetectionStrategy, ChangeDetectorRef, Component, Input, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core' |
5 | import { AuthService, DisableForReuseHook, Notifier } from '@app/core' | 5 | import { AuthService, DisableForReuseHook, Notifier } from '@app/core' |
6 | import { FormReactive, FormValidatorService, VideoPlaylistValidatorsService } from '@app/shared/shared-forms' | 6 | import { FormReactive, FormValidatorService } from '@app/shared/shared-forms' |
7 | import { Video, VideoExistInPlaylist, VideoPlaylistCreate, VideoPlaylistElementCreate, VideoPlaylistPrivacy } from '@shared/models' | 7 | import { |
8 | Video, | ||
9 | VideoExistInPlaylist, | ||
10 | VideoPlaylistCreate, | ||
11 | VideoPlaylistElementCreate, | ||
12 | VideoPlaylistElementUpdate, | ||
13 | VideoPlaylistPrivacy | ||
14 | } from '@shared/models' | ||
8 | import { secondsToTime } from '../../../assets/player/utils' | 15 | import { secondsToTime } from '../../../assets/player/utils' |
16 | import { VIDEO_PLAYLIST_DISPLAY_NAME_VALIDATOR } from '../form-validators/video-playlist-validators' | ||
9 | import { CachedPlaylist, VideoPlaylistService } from './video-playlist.service' | 17 | import { CachedPlaylist, VideoPlaylistService } from './video-playlist.service' |
10 | 18 | ||
11 | const logger = debug('peertube:playlists:VideoAddToPlaylistComponent') | 19 | const logger = debug('peertube:playlists:VideoAddToPlaylistComponent') |
12 | 20 | ||
21 | type PlaylistElement = { | ||
22 | enabled: boolean | ||
23 | playlistElementId?: number | ||
24 | startTimestamp?: number | ||
25 | stopTimestamp?: number | ||
26 | } | ||
27 | |||
13 | type PlaylistSummary = { | 28 | type PlaylistSummary = { |
14 | id: number | 29 | id: number |
15 | inPlaylist: boolean | ||
16 | displayName: string | 30 | displayName: string |
31 | optionalRowDisplayed: boolean | ||
17 | 32 | ||
18 | playlistElementId?: number | 33 | elements: PlaylistElement[] |
19 | startTimestamp?: number | ||
20 | stopTimestamp?: number | ||
21 | } | 34 | } |
22 | 35 | ||
23 | @Component({ | 36 | @Component({ |
@@ -32,16 +45,11 @@ export class VideoAddToPlaylistComponent extends FormReactive implements OnInit, | |||
32 | @Input() lazyLoad = false | 45 | @Input() lazyLoad = false |
33 | 46 | ||
34 | isNewPlaylistBlockOpened = false | 47 | isNewPlaylistBlockOpened = false |
48 | |||
35 | videoPlaylistSearch: string | 49 | videoPlaylistSearch: string |
36 | videoPlaylistSearchChanged = new Subject<string>() | 50 | videoPlaylistSearchChanged = new Subject<string>() |
51 | |||
37 | videoPlaylists: PlaylistSummary[] = [] | 52 | videoPlaylists: PlaylistSummary[] = [] |
38 | timestampOptions: { | ||
39 | startTimestampEnabled: boolean | ||
40 | startTimestamp: number | ||
41 | stopTimestampEnabled: boolean | ||
42 | stopTimestamp: number | ||
43 | } | ||
44 | displayOptions = false | ||
45 | 53 | ||
46 | private disabled = false | 54 | private disabled = false |
47 | 55 | ||
@@ -53,7 +61,6 @@ export class VideoAddToPlaylistComponent extends FormReactive implements OnInit, | |||
53 | private authService: AuthService, | 61 | private authService: AuthService, |
54 | private notifier: Notifier, | 62 | private notifier: Notifier, |
55 | private videoPlaylistService: VideoPlaylistService, | 63 | private videoPlaylistService: VideoPlaylistService, |
56 | private videoPlaylistValidatorsService: VideoPlaylistValidatorsService, | ||
57 | private cd: ChangeDetectorRef | 64 | private cd: ChangeDetectorRef |
58 | ) { | 65 | ) { |
59 | super() | 66 | super() |
@@ -65,7 +72,7 @@ export class VideoAddToPlaylistComponent extends FormReactive implements OnInit, | |||
65 | 72 | ||
66 | ngOnInit () { | 73 | ngOnInit () { |
67 | this.buildForm({ | 74 | this.buildForm({ |
68 | displayName: this.videoPlaylistValidatorsService.VIDEO_PLAYLIST_DISPLAY_NAME | 75 | displayName: VIDEO_PLAYLIST_DISPLAY_NAME_VALIDATOR |
69 | }) | 76 | }) |
70 | 77 | ||
71 | this.videoPlaylistService.listenToMyAccountPlaylistsChange() | 78 | this.videoPlaylistService.listenToMyAccountPlaylistsChange() |
@@ -106,7 +113,6 @@ export class VideoAddToPlaylistComponent extends FormReactive implements OnInit, | |||
106 | this.videoPlaylists = [] | 113 | this.videoPlaylists = [] |
107 | this.videoPlaylistSearch = undefined | 114 | this.videoPlaylistSearch = undefined |
108 | 115 | ||
109 | this.resetOptions(true) | ||
110 | this.load() | 116 | this.load() |
111 | 117 | ||
112 | this.cd.markForCheck() | 118 | this.cd.markForCheck() |
@@ -115,7 +121,7 @@ export class VideoAddToPlaylistComponent extends FormReactive implements OnInit, | |||
115 | load () { | 121 | load () { |
116 | logger('Loading component') | 122 | logger('Loading component') |
117 | 123 | ||
118 | this.listenToPlaylistChanges() | 124 | this.listenToVideoPlaylistChange() |
119 | 125 | ||
120 | this.videoPlaylistService.listMyPlaylistWithCache(this.user, this.videoPlaylistSearch) | 126 | this.videoPlaylistService.listMyPlaylistWithCache(this.user, this.videoPlaylistSearch) |
121 | .subscribe(playlistsResult => { | 127 | .subscribe(playlistsResult => { |
@@ -128,7 +134,6 @@ export class VideoAddToPlaylistComponent extends FormReactive implements OnInit, | |||
128 | openChange (opened: boolean) { | 134 | openChange (opened: boolean) { |
129 | if (opened === false) { | 135 | if (opened === false) { |
130 | this.isNewPlaylistBlockOpened = false | 136 | this.isNewPlaylistBlockOpened = false |
131 | this.displayOptions = false | ||
132 | } | 137 | } |
133 | } | 138 | } |
134 | 139 | ||
@@ -138,17 +143,49 @@ export class VideoAddToPlaylistComponent extends FormReactive implements OnInit, | |||
138 | this.isNewPlaylistBlockOpened = true | 143 | this.isNewPlaylistBlockOpened = true |
139 | } | 144 | } |
140 | 145 | ||
141 | togglePlaylist (event: Event, playlist: PlaylistSummary) { | 146 | toggleMainPlaylist (e: Event, playlist: PlaylistSummary) { |
142 | event.preventDefault() | 147 | e.preventDefault() |
148 | |||
149 | if (this.isPresentMultipleTimes(playlist) || playlist.optionalRowDisplayed) return | ||
143 | 150 | ||
144 | if (playlist.inPlaylist === true) { | 151 | if (playlist.elements.length === 0) { |
145 | this.removeVideoFromPlaylist(playlist) | 152 | const element: PlaylistElement = { |
153 | enabled: true, | ||
154 | playlistElementId: undefined, | ||
155 | startTimestamp: 0, | ||
156 | stopTimestamp: this.video.duration | ||
157 | } | ||
158 | |||
159 | this.addVideoInPlaylist(playlist, element) | ||
146 | } else { | 160 | } else { |
147 | this.addVideoInPlaylist(playlist) | 161 | this.removeVideoFromPlaylist(playlist, playlist.elements[0].playlistElementId) |
162 | playlist.elements = [] | ||
148 | } | 163 | } |
149 | 164 | ||
150 | playlist.inPlaylist = !playlist.inPlaylist | 165 | this.cd.markForCheck() |
151 | this.resetOptions() | 166 | } |
167 | |||
168 | toggleOptionalPlaylist (e: Event, playlist: PlaylistSummary, element: PlaylistElement, startTimestamp: number, stopTimestamp: number) { | ||
169 | e.preventDefault() | ||
170 | |||
171 | if (element.enabled) { | ||
172 | this.removeVideoFromPlaylist(playlist, element.playlistElementId) | ||
173 | element.enabled = false | ||
174 | |||
175 | // Hide optional rows pane when the user unchecked all the playlists | ||
176 | if (this.isPrimaryCheckboxChecked(playlist) === false) { | ||
177 | playlist.optionalRowDisplayed = false | ||
178 | } | ||
179 | } else { | ||
180 | const element: PlaylistElement = { | ||
181 | enabled: true, | ||
182 | playlistElementId: undefined, | ||
183 | startTimestamp, | ||
184 | stopTimestamp | ||
185 | } | ||
186 | |||
187 | this.addVideoInPlaylist(playlist, element) | ||
188 | } | ||
152 | 189 | ||
153 | this.cd.markForCheck() | 190 | this.cd.markForCheck() |
154 | } | 191 | } |
@@ -172,34 +209,99 @@ export class VideoAddToPlaylistComponent extends FormReactive implements OnInit, | |||
172 | ) | 209 | ) |
173 | } | 210 | } |
174 | 211 | ||
175 | resetOptions (resetTimestamp = false) { | 212 | onVideoPlaylistSearchChanged () { |
176 | this.displayOptions = false | 213 | this.videoPlaylistSearchChanged.next() |
214 | } | ||
177 | 215 | ||
178 | this.timestampOptions = {} as any | 216 | isPrimaryCheckboxChecked (playlist: PlaylistSummary) { |
179 | this.timestampOptions.startTimestampEnabled = false | 217 | return playlist.elements.filter(e => e.enabled) |
180 | this.timestampOptions.stopTimestampEnabled = false | 218 | .length !== 0 |
219 | } | ||
181 | 220 | ||
182 | if (resetTimestamp) { | 221 | toggleOptionalRow (playlist: PlaylistSummary) { |
183 | this.timestampOptions.startTimestamp = 0 | 222 | playlist.optionalRowDisplayed = !playlist.optionalRowDisplayed |
184 | this.timestampOptions.stopTimestamp = this.video.duration | 223 | |
185 | } | 224 | this.cd.markForCheck() |
186 | } | 225 | } |
187 | 226 | ||
188 | formatTimestamp (playlist: PlaylistSummary) { | 227 | getPrimaryInputName (playlist: PlaylistSummary) { |
189 | const start = playlist.startTimestamp ? secondsToTime(playlist.startTimestamp) : '' | 228 | return 'in-playlist-primary-' + playlist.id |
190 | const stop = playlist.stopTimestamp ? secondsToTime(playlist.stopTimestamp) : '' | 229 | } |
191 | 230 | ||
192 | return `(${start}-${stop})` | 231 | getOptionalInputName (playlist: PlaylistSummary, element?: PlaylistElement) { |
232 | const suffix = element | ||
233 | ? '-' + element.playlistElementId | ||
234 | : '' | ||
235 | |||
236 | return 'in-playlist-optional-' + playlist.id + suffix | ||
193 | } | 237 | } |
194 | 238 | ||
195 | onVideoPlaylistSearchChanged () { | 239 | buildOptionalRowElements (playlist: PlaylistSummary) { |
196 | this.videoPlaylistSearchChanged.next() | 240 | const elements = playlist.elements |
241 | |||
242 | const lastElement = elements.length === 0 | ||
243 | ? undefined | ||
244 | : elements[elements.length - 1] | ||
245 | |||
246 | // Build an empty last element | ||
247 | if (!lastElement || lastElement.enabled === true) { | ||
248 | elements.push({ | ||
249 | enabled: false, | ||
250 | startTimestamp: 0, | ||
251 | stopTimestamp: this.video.duration | ||
252 | }) | ||
253 | } | ||
254 | |||
255 | return elements | ||
256 | } | ||
257 | |||
258 | isPresentMultipleTimes (playlist: PlaylistSummary) { | ||
259 | return playlist.elements.filter(e => e.enabled === true).length > 1 | ||
260 | } | ||
261 | |||
262 | onElementTimestampUpdate (playlist: PlaylistSummary, element: PlaylistElement) { | ||
263 | if (!element.playlistElementId || element.enabled === false) return | ||
264 | |||
265 | const body: VideoPlaylistElementUpdate = { | ||
266 | startTimestamp: element.startTimestamp, | ||
267 | stopTimestamp: element.stopTimestamp | ||
268 | } | ||
269 | |||
270 | this.videoPlaylistService.updateVideoOfPlaylist(playlist.id, element.playlistElementId, body, this.video.id) | ||
271 | .subscribe( | ||
272 | () => { | ||
273 | this.notifier.success($localize`Timestamps updated`) | ||
274 | }, | ||
275 | |||
276 | err => { | ||
277 | this.notifier.error(err.message) | ||
278 | }, | ||
279 | |||
280 | () => this.cd.markForCheck() | ||
281 | ) | ||
197 | } | 282 | } |
198 | 283 | ||
199 | private removeVideoFromPlaylist (playlist: PlaylistSummary) { | 284 | private isOptionalRowDisplayed (playlist: PlaylistSummary) { |
200 | if (!playlist.playlistElementId) return | 285 | const elements = playlist.elements.filter(e => e.enabled) |
286 | |||
287 | if (elements.length > 1) return true | ||
201 | 288 | ||
202 | this.videoPlaylistService.removeVideoFromPlaylist(playlist.id, playlist.playlistElementId, this.video.id) | 289 | if (elements.length === 1) { |
290 | const element = elements[0] | ||
291 | |||
292 | if ( | ||
293 | (element.startTimestamp && element.startTimestamp !== 0) || | ||
294 | (element.stopTimestamp && element.stopTimestamp !== this.video.duration) | ||
295 | ) { | ||
296 | return true | ||
297 | } | ||
298 | } | ||
299 | |||
300 | return false | ||
301 | } | ||
302 | |||
303 | private removeVideoFromPlaylist (playlist: PlaylistSummary, elementId: number) { | ||
304 | this.videoPlaylistService.removeVideoFromPlaylist(playlist.id, elementId, this.video.id) | ||
203 | .subscribe( | 305 | .subscribe( |
204 | () => { | 306 | () => { |
205 | this.notifier.success($localize`Video removed from ${playlist.displayName}`) | 307 | this.notifier.success($localize`Video removed from ${playlist.displayName}`) |
@@ -213,7 +315,7 @@ export class VideoAddToPlaylistComponent extends FormReactive implements OnInit, | |||
213 | ) | 315 | ) |
214 | } | 316 | } |
215 | 317 | ||
216 | private listenToPlaylistChanges () { | 318 | private listenToVideoPlaylistChange () { |
217 | this.unsubscribePlaylistChanges() | 319 | this.unsubscribePlaylistChanges() |
218 | 320 | ||
219 | this.listenToPlaylistChangeSub = this.videoPlaylistService.listenToVideoPlaylistChange(this.video.id) | 321 | this.listenToPlaylistChangeSub = this.videoPlaylistService.listenToVideoPlaylistChange(this.video.id) |
@@ -231,18 +333,30 @@ export class VideoAddToPlaylistComponent extends FormReactive implements OnInit, | |||
231 | private rebuildPlaylists (existResult: VideoExistInPlaylist[]) { | 333 | private rebuildPlaylists (existResult: VideoExistInPlaylist[]) { |
232 | logger('Got existing results for %d.', this.video.id, existResult) | 334 | logger('Got existing results for %d.', this.video.id, existResult) |
233 | 335 | ||
336 | const oldPlaylists = this.videoPlaylists | ||
337 | |||
234 | this.videoPlaylists = [] | 338 | this.videoPlaylists = [] |
235 | for (const playlist of this.playlistsData) { | 339 | for (const playlist of this.playlistsData) { |
236 | const existingPlaylist = existResult.find(p => p.playlistId === playlist.id) | 340 | const existingPlaylists = existResult.filter(p => p.playlistId === playlist.id) |
237 | 341 | ||
238 | this.videoPlaylists.push({ | 342 | const playlistSummary = { |
239 | id: playlist.id, | 343 | id: playlist.id, |
344 | optionalRowDisplayed: false, | ||
240 | displayName: playlist.displayName, | 345 | displayName: playlist.displayName, |
241 | inPlaylist: !!existingPlaylist, | 346 | elements: existingPlaylists.map(e => ({ |
242 | playlistElementId: existingPlaylist ? existingPlaylist.playlistElementId : undefined, | 347 | enabled: true, |
243 | startTimestamp: existingPlaylist ? existingPlaylist.startTimestamp : undefined, | 348 | playlistElementId: e.playlistElementId, |
244 | stopTimestamp: existingPlaylist ? existingPlaylist.stopTimestamp : undefined | 349 | startTimestamp: e.startTimestamp || 0, |
245 | }) | 350 | stopTimestamp: e.stopTimestamp || this.video.duration |
351 | })) | ||
352 | } | ||
353 | |||
354 | const oldPlaylist = oldPlaylists.find(p => p.id === playlist.id) | ||
355 | playlistSummary.optionalRowDisplayed = oldPlaylist | ||
356 | ? oldPlaylist.optionalRowDisplayed | ||
357 | : this.isOptionalRowDisplayed(playlistSummary) | ||
358 | |||
359 | this.videoPlaylists.push(playlistSummary) | ||
246 | } | 360 | } |
247 | 361 | ||
248 | logger('Rebuilt playlist state for video %d.', this.video.id, this.videoPlaylists) | 362 | logger('Rebuilt playlist state for video %d.', this.video.id, this.videoPlaylists) |
@@ -250,20 +364,22 @@ export class VideoAddToPlaylistComponent extends FormReactive implements OnInit, | |||
250 | this.cd.markForCheck() | 364 | this.cd.markForCheck() |
251 | } | 365 | } |
252 | 366 | ||
253 | private addVideoInPlaylist (playlist: PlaylistSummary) { | 367 | private addVideoInPlaylist (playlist: PlaylistSummary, element: PlaylistElement) { |
254 | const body: VideoPlaylistElementCreate = { videoId: this.video.id } | 368 | const body: VideoPlaylistElementCreate = { videoId: this.video.id } |
255 | 369 | ||
256 | if (this.timestampOptions.startTimestampEnabled) body.startTimestamp = this.timestampOptions.startTimestamp | 370 | if (element.startTimestamp) body.startTimestamp = element.startTimestamp |
257 | if (this.timestampOptions.stopTimestampEnabled) body.stopTimestamp = this.timestampOptions.stopTimestamp | 371 | if (element.stopTimestamp && element.stopTimestamp !== this.video.duration) body.stopTimestamp = element.stopTimestamp |
258 | 372 | ||
259 | this.videoPlaylistService.addVideoInPlaylist(playlist.id, body) | 373 | this.videoPlaylistService.addVideoInPlaylist(playlist.id, body) |
260 | .subscribe( | 374 | .subscribe( |
261 | () => { | 375 | res => { |
262 | const message = body.startTimestamp || body.stopTimestamp | 376 | const message = body.startTimestamp || body.stopTimestamp |
263 | ? $localize`Video added in ${playlist.displayName} at timestamps ${this.formatTimestamp(playlist)}` | 377 | ? $localize`Video added in ${playlist.displayName} at timestamps ${this.formatTimestamp(element)}` |
264 | : $localize`Video added in ${playlist.displayName}` | 378 | : $localize`Video added in ${playlist.displayName}` |
265 | 379 | ||
266 | this.notifier.success(message) | 380 | this.notifier.success(message) |
381 | |||
382 | if (element) element.playlistElementId = res.videoPlaylistElement.id | ||
267 | }, | 383 | }, |
268 | 384 | ||
269 | err => { | 385 | err => { |
@@ -273,4 +389,11 @@ export class VideoAddToPlaylistComponent extends FormReactive implements OnInit, | |||
273 | () => this.cd.markForCheck() | 389 | () => this.cd.markForCheck() |
274 | ) | 390 | ) |
275 | } | 391 | } |
392 | |||
393 | private formatTimestamp (element: PlaylistElement) { | ||
394 | const start = element.startTimestamp ? secondsToTime(element.startTimestamp) : '' | ||
395 | const stop = element.stopTimestamp ? secondsToTime(element.stopTimestamp) : '' | ||
396 | |||
397 | return `(${start}-${stop})` | ||
398 | } | ||
276 | } | 399 | } |
diff --git a/client/src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.scss b/client/src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.scss index afd775b25..082a5d9b2 100644 --- a/client/src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.scss +++ b/client/src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.scss | |||
@@ -22,12 +22,16 @@ my-video-thumbnail, | |||
22 | } | 22 | } |
23 | 23 | ||
24 | .video { | 24 | .video { |
25 | display: flex; | 25 | display: grid; |
26 | align-items: center; | 26 | grid-template-columns: 1fr auto; |
27 | background-color: pvar(--mainBackgroundColor); | 27 | background-color: pvar(--mainBackgroundColor); |
28 | padding: 10px; | 28 | padding: 10px; |
29 | border-bottom: 1px solid $separator-border-color; | 29 | border-bottom: 1px solid $separator-border-color; |
30 | 30 | ||
31 | .more { | ||
32 | display: flex; | ||
33 | } | ||
34 | |||
31 | &:hover { | 35 | &:hover { |
32 | background-color: rgba(0, 0, 0, 0.05); | 36 | background-color: rgba(0, 0, 0, 0.05); |
33 | 37 | ||
@@ -164,6 +168,7 @@ my-video-thumbnail, | |||
164 | my-edit-button { | 168 | my-edit-button { |
165 | display: inline-flex; | 169 | display: inline-flex; |
166 | height: max-content; | 170 | height: max-content; |
171 | margin: auto; | ||
167 | } | 172 | } |
168 | } | 173 | } |
169 | 174 | ||
diff --git a/client/src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts b/client/src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts index 5879c4978..7c083ae26 100644 --- a/client/src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts +++ b/client/src/app/shared/shared-video-playlist/video-playlist-element-miniature.component.ts | |||
@@ -78,7 +78,7 @@ export class VideoPlaylistElementMiniatureComponent implements OnInit { | |||
78 | if (!this.playlistElement || !this.playlistElement.video) return {} | 78 | if (!this.playlistElement || !this.playlistElement.video) return {} |
79 | 79 | ||
80 | return { | 80 | return { |
81 | videoId: this.playlistElement.video.uuid, | 81 | playlistPosition: this.playlistElement.position, |
82 | start: this.playlistElement.startTimestamp, | 82 | start: this.playlistElement.startTimestamp, |
83 | stop: this.playlistElement.stopTimestamp, | 83 | stop: this.playlistElement.stopTimestamp, |
84 | resume: true | 84 | resume: true |
diff --git a/client/src/app/shared/shared-video-playlist/video-playlist.service.ts b/client/src/app/shared/shared-video-playlist/video-playlist.service.ts index cc3d04b9e..1b87e0b2a 100644 --- a/client/src/app/shared/shared-video-playlist/video-playlist.service.ts +++ b/client/src/app/shared/shared-video-playlist/video-playlist.service.ts | |||
@@ -1,7 +1,7 @@ | |||
1 | import * as debug from 'debug' | 1 | import * as debug from 'debug' |
2 | import { uniq } from 'lodash-es' | 2 | import { uniq } from 'lodash-es' |
3 | import { asyncScheduler, merge, Observable, of, ReplaySubject, Subject } from 'rxjs' | 3 | import { asyncScheduler, merge, Observable, of, ReplaySubject, Subject } from 'rxjs' |
4 | import { bufferTime, catchError, filter, map, observeOn, share, switchMap, tap } from 'rxjs/operators' | 4 | import { bufferTime, catchError, filter, map, observeOn, share, switchMap, tap, distinctUntilChanged } from 'rxjs/operators' |
5 | import { HttpClient, HttpParams } from '@angular/common/http' | 5 | import { HttpClient, HttpParams } from '@angular/common/http' |
6 | import { Injectable, NgZone } from '@angular/core' | 6 | import { Injectable, NgZone } from '@angular/core' |
7 | import { AuthUser, ComponentPaginationLight, RestExtractor, RestService, ServerService } from '@app/core' | 7 | import { AuthUser, ComponentPaginationLight, RestExtractor, RestService, ServerService } from '@app/core' |
@@ -53,6 +53,7 @@ export class VideoPlaylistService { | |||
53 | ) { | 53 | ) { |
54 | this.videoExistsInPlaylistObservable = merge( | 54 | this.videoExistsInPlaylistObservable = merge( |
55 | this.videoExistsInPlaylistNotifier.pipe( | 55 | this.videoExistsInPlaylistNotifier.pipe( |
56 | distinctUntilChanged(), | ||
56 | // We leave Angular zone so Protractor does not get stuck | 57 | // We leave Angular zone so Protractor does not get stuck |
57 | bufferTime(500, leaveZone(this.ngZone, asyncScheduler)), | 58 | bufferTime(500, leaveZone(this.ngZone, asyncScheduler)), |
58 | filter(videoIds => videoIds.length !== 0), | 59 | filter(videoIds => videoIds.length !== 0), |
@@ -215,10 +216,13 @@ export class VideoPlaylistService { | |||
215 | map(this.restExtractor.extractDataBool), | 216 | map(this.restExtractor.extractDataBool), |
216 | tap(() => { | 217 | tap(() => { |
217 | const existsResult = this.videoExistsCache[videoId] | 218 | const existsResult = this.videoExistsCache[videoId] |
218 | const elem = existsResult.find(e => e.playlistElementId === playlistElementId) | ||
219 | 219 | ||
220 | elem.startTimestamp = body.startTimestamp | 220 | if (existsResult) { |
221 | elem.stopTimestamp = body.stopTimestamp | 221 | const elem = existsResult.find(e => e.playlistElementId === playlistElementId) |
222 | |||
223 | elem.startTimestamp = body.startTimestamp | ||
224 | elem.stopTimestamp = body.stopTimestamp | ||
225 | } | ||
222 | 226 | ||
223 | this.runPlaylistCheck(videoId) | 227 | this.runPlaylistCheck(videoId) |
224 | }), | 228 | }), |
@@ -233,7 +237,11 @@ export class VideoPlaylistService { | |||
233 | tap(() => { | 237 | tap(() => { |
234 | if (!videoId) return | 238 | if (!videoId) return |
235 | 239 | ||
236 | this.videoExistsCache[videoId] = this.videoExistsCache[videoId].filter(e => e.playlistElementId !== playlistElementId) | 240 | if (this.videoExistsCache[videoId]) { |
241 | this.videoExistsCache[videoId] = this.videoExistsCache[videoId] | ||
242 | .filter(e => e.playlistElementId !== playlistElementId) | ||
243 | } | ||
244 | |||
237 | this.runPlaylistCheck(videoId) | 245 | this.runPlaylistCheck(videoId) |
238 | }), | 246 | }), |
239 | catchError(err => this.restExtractor.handleError(err)) | 247 | catchError(err => this.restExtractor.handleError(err)) |
diff --git a/client/src/assets/player/peertube-player-manager.ts b/client/src/assets/player/peertube-player-manager.ts index 15b2f420b..4d72523f7 100644 --- a/client/src/assets/player/peertube-player-manager.ts +++ b/client/src/assets/player/peertube-player-manager.ts | |||
@@ -35,7 +35,7 @@ import { | |||
35 | VideoJSPluginOptions | 35 | VideoJSPluginOptions |
36 | } from './peertube-videojs-typings' | 36 | } from './peertube-videojs-typings' |
37 | import { TranslationsManager } from './translations-manager' | 37 | import { TranslationsManager } from './translations-manager' |
38 | import { buildVideoOrPlaylistEmbed, buildVideoLink, copyToClipboard, getRtcConfig, isIOS, isSafari } from './utils' | 38 | import { buildVideoOrPlaylistEmbed, buildVideoLink, copyToClipboard, getRtcConfig, isSafari, isIOS } from './utils' |
39 | 39 | ||
40 | // Change 'Playback Rate' to 'Speed' (smaller for our settings menu) | 40 | // Change 'Playback Rate' to 'Speed' (smaller for our settings menu) |
41 | (videojs.getComponent('PlaybackRateMenuButton') as any).prototype.controlText_ = 'Speed' | 41 | (videojs.getComponent('PlaybackRateMenuButton') as any).prototype.controlText_ = 'Speed' |
@@ -117,6 +117,8 @@ export class PeertubePlayerManager { | |||
117 | private static playerElementClassName: string | 117 | private static playerElementClassName: string |
118 | private static onPlayerChange: (player: videojs.Player) => void | 118 | private static onPlayerChange: (player: videojs.Player) => void |
119 | 119 | ||
120 | private static alreadyPlayed = false | ||
121 | |||
120 | static async initialize (mode: PlayerMode, options: PeertubePlayerManagerOptions, onPlayerChange: (player: videojs.Player) => void) { | 122 | static async initialize (mode: PlayerMode, options: PeertubePlayerManagerOptions, onPlayerChange: (player: videojs.Player) => void) { |
121 | let p2pMediaLoader: any | 123 | let p2pMediaLoader: any |
122 | 124 | ||
@@ -152,6 +154,10 @@ export class PeertubePlayerManager { | |||
152 | alreadyFallback = true | 154 | alreadyFallback = true |
153 | }) | 155 | }) |
154 | 156 | ||
157 | player.one('play', () => { | ||
158 | PeertubePlayerManager.alreadyPlayed = true | ||
159 | }) | ||
160 | |||
155 | self.addContextMenu(mode, player, options.common.embedUrl) | 161 | self.addContextMenu(mode, player, options.common.embedUrl) |
156 | 162 | ||
157 | player.bezels() | 163 | player.bezels() |
@@ -202,6 +208,7 @@ export class PeertubePlayerManager { | |||
202 | p2pMediaLoaderModule?: any | 208 | p2pMediaLoaderModule?: any |
203 | ): videojs.PlayerOptions { | 209 | ): videojs.PlayerOptions { |
204 | const commonOptions = options.common | 210 | const commonOptions = options.common |
211 | const isHLS = mode === 'p2p-media-loader' | ||
205 | 212 | ||
206 | let autoplay = this.getAutoPlayValue(commonOptions.autoplay) | 213 | let autoplay = this.getAutoPlayValue(commonOptions.autoplay) |
207 | let html5 = {} | 214 | let html5 = {} |
@@ -227,7 +234,7 @@ export class PeertubePlayerManager { | |||
227 | PeertubePlayerManager.addHotkeysOptions(plugins) | 234 | PeertubePlayerManager.addHotkeysOptions(plugins) |
228 | } | 235 | } |
229 | 236 | ||
230 | if (mode === 'p2p-media-loader') { | 237 | if (isHLS) { |
231 | const { hlsjs } = PeertubePlayerManager.addP2PMediaLoaderOptions(plugins, options, p2pMediaLoaderModule) | 238 | const { hlsjs } = PeertubePlayerManager.addP2PMediaLoaderOptions(plugins, options, p2pMediaLoaderModule) |
232 | 239 | ||
233 | html5 = hlsjs.html5 | 240 | html5 = hlsjs.html5 |
@@ -358,8 +365,12 @@ export class PeertubePlayerManager { | |||
358 | const commonOptions = options.common | 365 | const commonOptions = options.common |
359 | const webtorrentOptions = options.webtorrent | 366 | const webtorrentOptions = options.webtorrent |
360 | 367 | ||
368 | const autoplay = this.getAutoPlayValue(commonOptions.autoplay) === 'play' | ||
369 | ? true | ||
370 | : false | ||
371 | |||
361 | const webtorrent = { | 372 | const webtorrent = { |
362 | autoplay: commonOptions.autoplay, | 373 | autoplay, |
363 | videoDuration: commonOptions.videoDuration, | 374 | videoDuration: commonOptions.videoDuration, |
364 | playerElement: commonOptions.playerElement, | 375 | playerElement: commonOptions.playerElement, |
365 | videoFiles: webtorrentOptions.videoFiles, | 376 | videoFiles: webtorrentOptions.videoFiles, |
@@ -579,12 +590,11 @@ export class PeertubePlayerManager { | |||
579 | private static getAutoPlayValue (autoplay: any) { | 590 | private static getAutoPlayValue (autoplay: any) { |
580 | if (autoplay !== true) return autoplay | 591 | if (autoplay !== true) return autoplay |
581 | 592 | ||
582 | // Giving up with iOS | 593 | // On first play, disable autoplay to avoid issues |
583 | if (isIOS()) return false | 594 | // But if the player already played videos, we can safely autoplay next ones |
584 | 595 | if (isIOS() || isSafari()) { | |
585 | // We have issues with autoplay and Safari. | 596 | return PeertubePlayerManager.alreadyPlayed ? 'play' : false |
586 | // any that tries to play using auto mute seems to work | 597 | } |
587 | if (isSafari()) return 'any' | ||
588 | 598 | ||
589 | return 'play' | 599 | return 'play' |
590 | } | 600 | } |
diff --git a/client/src/assets/player/webtorrent/webtorrent-plugin.ts b/client/src/assets/player/webtorrent/webtorrent-plugin.ts index 5c8aca1f8..782c91cbd 100644 --- a/client/src/assets/player/webtorrent/webtorrent-plugin.ts +++ b/client/src/assets/player/webtorrent/webtorrent-plugin.ts | |||
@@ -74,7 +74,7 @@ class WebTorrentPlugin extends Plugin { | |||
74 | this.startTime = timeToInt(options.startTime) | 74 | this.startTime = timeToInt(options.startTime) |
75 | 75 | ||
76 | // Disable auto play on iOS | 76 | // Disable auto play on iOS |
77 | this.autoplay = options.autoplay && isIOS() === false | 77 | this.autoplay = options.autoplay |
78 | this.playerRefusedP2P = !getStoredP2PEnabled() | 78 | this.playerRefusedP2P = !getStoredP2PEnabled() |
79 | 79 | ||
80 | this.videoFiles = options.videoFiles | 80 | this.videoFiles = options.videoFiles |
@@ -329,11 +329,6 @@ class WebTorrentPlugin extends Plugin { | |||
329 | private tryToPlay (done?: (err?: Error) => void) { | 329 | private tryToPlay (done?: (err?: Error) => void) { |
330 | if (!done) done = function () { /* empty */ } | 330 | if (!done) done = function () { /* empty */ } |
331 | 331 | ||
332 | // Try in mute mode because we have issues with Safari | ||
333 | if (isSafari() && this.player.muted() === false) { | ||
334 | this.player.muted(true) | ||
335 | } | ||
336 | |||
337 | const playPromise = this.player.play() | 332 | const playPromise = this.player.play() |
338 | if (playPromise !== undefined) { | 333 | if (playPromise !== undefined) { |
339 | return playPromise.then(() => done()) | 334 | return playPromise.then(() => done()) |
diff --git a/client/src/environments/environment.ts b/client/src/environments/environment.ts index 4816e3060..e00523976 100644 --- a/client/src/environments/environment.ts +++ b/client/src/environments/environment.ts | |||
@@ -9,8 +9,8 @@ | |||
9 | import 'core-js/features/reflect' | 9 | import 'core-js/features/reflect' |
10 | 10 | ||
11 | export const environment = { | 11 | export const environment = { |
12 | production: false, | 12 | production: true, |
13 | hmr: false, | 13 | hmr: false, |
14 | apiUrl: 'http://localhost:9000', | 14 | apiUrl: '', |
15 | embedUrl: 'http://localhost:9000' | 15 | embedUrl: '' |
16 | } | 16 | } |
diff --git a/client/src/locale/angular.ar.xlf b/client/src/locale/angular.ar.xlf index 0c60d20df..5b9c76036 100644 --- a/client/src/locale/angular.ar.xlf +++ b/client/src/locale/angular.ar.xlf | |||
@@ -61,7 +61,7 @@ | |||
61 | 61 | ||
62 | 62 | ||
63 | 63 | ||
64 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> | 64 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
65 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c" datatype="html"> | 65 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c" datatype="html"> |
66 | <source>Edit</source> | 66 | <source>Edit</source> |
67 | <target>تحرير</target> | 67 | <target>تحرير</target> |
@@ -76,17 +76,10 @@ | |||
76 | 76 | ||
77 | 77 | ||
78 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">12</context></context-group></trans-unit> | 78 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-edit.component.html</context><context context-type="linenumber">12</context></context-group></trans-unit> |
79 | <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f" datatype="html"> | 79 | <trans-unit id="8644431249513874405" datatype="html"> |
80 | <source>Get help</source> | ||
81 | <target>الحصول على مساعدة</target> | ||
82 | |||
83 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit><trans-unit id="8644431249513874405" datatype="html"> | ||
84 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> | 80 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> |
85 | <context-group purpose="location"> | 81 | |
86 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 82 | <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></trans-unit> |
87 | <context context-type="linenumber">71</context> | ||
88 | </context-group> | ||
89 | </trans-unit> | ||
90 | <trans-unit id="f3e63578c50546530daf6050d2ba6f8226040f2c" datatype="html"> | 83 | <trans-unit id="f3e63578c50546530daf6050d2ba6f8226040f2c" datatype="html"> |
91 | <source>You don't have notifications.</source> | 84 | <source>You don't have notifications.</source> |
92 | <target>ليس لديك إشعارات.</target> | 85 | <target>ليس لديك إشعارات.</target> |
@@ -613,11 +606,8 @@ | |||
613 | 606 | ||
614 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> | 607 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> |
615 | <source>User</source><target state="new">User</target> | 608 | <source>User</source><target state="new">User</target> |
616 | <context-group purpose="location"> | 609 | |
617 | <context context-type="sourcefile">../app/core/users/user.service.ts</context> | 610 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit> |
618 | <context context-type="linenumber">384</context> | ||
619 | </context-group> | ||
620 | </trans-unit> | ||
621 | <trans-unit id="a9af18b4f210f5a19bb2503407923d3f25c57f98" datatype="html"> | 611 | <trans-unit id="a9af18b4f210f5a19bb2503407923d3f25c57f98" datatype="html"> |
622 | <source>Configuration warning!</source> | 612 | <source>Configuration warning!</source> |
623 | <target>تحذير التكوين!</target> | 613 | <target>تحذير التكوين!</target> |
@@ -842,54 +832,54 @@ | |||
842 | <source>Account settings</source> | 832 | <source>Account settings</source> |
843 | <target>إعدادت الحساب</target> | 833 | <target>إعدادت الحساب</target> |
844 | 834 | ||
845 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 835 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
846 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> | 836 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> |
847 | <source>Channels settings</source> | 837 | <source>Channels settings</source> |
848 | <target>إعدادات القنوات</target> | 838 | <target>إعدادات القنوات</target> |
849 | 839 | ||
850 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 840 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> |
851 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> | 841 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> |
852 | <source>Interface:</source> | 842 | <source>Interface:</source> |
853 | <target state="new">Interface:</target> | 843 | <target state="new">Interface:</target> |
854 | 844 | ||
855 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 845 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
856 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> | 846 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> |
857 | <source>Videos:</source> | 847 | <source>Videos:</source> |
858 | <target state="new">Videos:</target> | 848 | <target state="new">Videos:</target> |
859 | 849 | ||
860 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 850 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> |
861 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> | 851 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> |
862 | <source>Sensitive:</source> | 852 | <source>Sensitive:</source> |
863 | <target state="new">Sensitive:</target> | 853 | <target state="new">Sensitive:</target> |
864 | 854 | ||
865 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 855 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">54</context></context-group></trans-unit> |
866 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 856 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> |
867 | <source>Interface: <x id="INTERPOLATION"/></source> | 857 | <source>Interface: <x id="INTERPOLATION"/></source> |
868 | <target>Interface: | 858 | <target>Interface: |
869 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> | 859 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> |
870 | </target> | 860 | </target> |
871 | 861 | ||
872 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">156</context></context-group></trans-unit> | 862 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> |
873 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 863 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
874 | <source>Help share videos</source> | 864 | <source>Help share videos</source> |
875 | <target>ساهِم في مشاركة الفيديوهات</target> | 865 | <target>ساهِم في مشاركة الفيديوهات</target> |
876 | 866 | ||
877 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> | 867 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
878 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> | 868 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> |
879 | <source>More account settings</source> | 869 | <source>More account settings</source> |
880 | <target>المزيد من إعدادات الحساب</target> | 870 | <target>المزيد من إعدادات الحساب</target> |
881 | 871 | ||
882 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> | 872 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> |
883 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> | 873 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> |
884 | <source>Keyboard shortcuts</source> | 874 | <source>Keyboard shortcuts</source> |
885 | <target>اختصارات لوحة المفاتيح</target> | 875 | <target>اختصارات لوحة المفاتيح</target> |
886 | 876 | ||
887 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 877 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">72</context></context-group></trans-unit> |
888 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344" datatype="html"> | 878 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344" datatype="html"> |
889 | <source>Log out</source> | 879 | <source>Log out</source> |
890 | <target>الخروج</target> | 880 | <target>الخروج</target> |
891 | 881 | ||
892 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">70</context></context-group></trans-unit> | 882 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit> |
893 | <trans-unit id="6765b4c916060f6bc42d9bb69e80377dbcb5e4e9" datatype="html"> | 883 | <trans-unit id="6765b4c916060f6bc42d9bb69e80377dbcb5e4e9" datatype="html"> |
894 | <source>Login</source> | 884 | <source>Login</source> |
895 | <target>تسجيل الدخول</target> | 885 | <target>تسجيل الدخول</target> |
@@ -900,32 +890,32 @@ | |||
900 | <source>Create an account</source> | 890 | <source>Create an account</source> |
901 | <target>أنشاء حساب</target> | 891 | <target>أنشاء حساب</target> |
902 | 892 | ||
903 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">78</context></context-group></trans-unit> | 893 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
904 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> | 894 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> |
905 | <source>MY LIBRARY</source> | 895 | <source>MY LIBRARY</source> |
906 | <target>مكتبتي</target> | 896 | <target>مكتبتي</target> |
907 | 897 | ||
908 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 898 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">88</context></context-group></trans-unit> |
909 | <trans-unit id="a52dae09be10ca3a65da918533ced3d3f4992238" datatype="html"> | 899 | <trans-unit id="a52dae09be10ca3a65da918533ced3d3f4992238" datatype="html"> |
910 | <source>Videos</source> | 900 | <source>Videos</source> |
911 | <target>الفيديوهات</target> | 901 | <target>الفيديوهات</target> |
912 | 902 | ||
913 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">86</context></context-group></trans-unit> | 903 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">92</context></context-group></trans-unit> |
914 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> | 904 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> |
915 | <source>Playlists</source> | 905 | <source>Playlists</source> |
916 | <target>قوائم التشغيل</target> | 906 | <target>قوائم التشغيل</target> |
917 | 907 | ||
918 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">91</context></context-group></trans-unit> | 908 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">97</context></context-group></trans-unit> |
919 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2" datatype="html"> | 909 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2" datatype="html"> |
920 | <source>Subscriptions</source> | 910 | <source>Subscriptions</source> |
921 | <target>الإشتراكات</target> | 911 | <target>الإشتراكات</target> |
922 | 912 | ||
923 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 913 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">102</context></context-group></trans-unit> |
924 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8" datatype="html"> | 914 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8" datatype="html"> |
925 | <source>History</source> | 915 | <source>History</source> |
926 | <target>التاريخ</target> | 916 | <target>التاريخ</target> |
927 | 917 | ||
928 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit> | 918 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">107</context></context-group></trans-unit> |
929 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> | 919 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> |
930 | <source>VIDEOS</source> | 920 | <source>VIDEOS</source> |
931 | <target>الفيديوهات</target> | 921 | <target>الفيديوهات</target> |
@@ -937,27 +927,27 @@ | |||
937 | <target>اكتشف</target> | 927 | <target>اكتشف</target> |
938 | 928 | ||
939 | 929 | ||
940 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">111</context></context-group></trans-unit> | 930 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">117</context></context-group></trans-unit> |
941 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807" datatype="html"> | 931 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807" datatype="html"> |
942 | <source>Trending</source> | 932 | <source>Trending</source> |
943 | <target>الشائعة</target> | 933 | <target>الشائعة</target> |
944 | 934 | ||
945 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">116</context></context-group></trans-unit> | 935 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">122</context></context-group></trans-unit> |
946 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> | 936 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> |
947 | <source>Most liked</source> | 937 | <source>Most liked</source> |
948 | <target>الأكثر إعجابا</target> | 938 | <target>الأكثر إعجابا</target> |
949 | 939 | ||
950 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">121</context></context-group></trans-unit> | 940 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">127</context></context-group></trans-unit> |
951 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1" datatype="html"> | 941 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1" datatype="html"> |
952 | <source>Recently added</source> | 942 | <source>Recently added</source> |
953 | <target>التي تم إضافتها حديثًا</target> | 943 | <target>التي تم إضافتها حديثًا</target> |
954 | 944 | ||
955 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">126</context></context-group></trans-unit> | 945 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">132</context></context-group></trans-unit> |
956 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919" datatype="html"> | 946 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919" datatype="html"> |
957 | <source>Administration</source> | 947 | <source>Administration</source> |
958 | <target>الإدارة</target> | 948 | <target>الإدارة</target> |
959 | 949 | ||
960 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">140</context></context-group></trans-unit> | 950 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">146</context></context-group></trans-unit> |
961 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a" datatype="html"> | 951 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a" datatype="html"> |
962 | <source>About</source> | 952 | <source>About</source> |
963 | <target>عن</target> | 953 | <target>عن</target> |
@@ -968,57 +958,57 @@ | |||
968 | <source>Contact</source> | 958 | <source>Contact</source> |
969 | <target>اتصل</target> | 959 | <target>اتصل</target> |
970 | 960 | ||
971 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">160</context></context-group></trans-unit> | 961 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">166</context></context-group></trans-unit> |
972 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> | 962 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> |
973 | <source>Help</source> | 963 | <source>Help</source> |
974 | <target>مساعدة</target> | 964 | <target>مساعدة</target> |
975 | 965 | ||
976 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 966 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
977 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> | 967 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> |
978 | <source>Get help using PeerTube</source> | 968 | <source>Get help using PeerTube</source> |
979 | <target>احصل على مساعدة باستخدام عين الإسلام</target> | 969 | <target>احصل على مساعدة باستخدام عين الإسلام</target> |
980 | 970 | ||
981 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">161</context></context-group></trans-unit> | 971 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">167</context></context-group></trans-unit> |
982 | <trans-unit id="4b6dbf2d92858e82bcf6ae5dbc8dfb4b29d82ad0" datatype="html"> | 972 | <trans-unit id="4b6dbf2d92858e82bcf6ae5dbc8dfb4b29d82ad0" datatype="html"> |
983 | <source>FAQ</source> | 973 | <source>FAQ</source> |
984 | <target>التعليمات</target> | 974 | <target>التعليمات</target> |
985 | 975 | ||
986 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">163</context></context-group></trans-unit> | 976 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
987 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> | 977 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> |
988 | <source>Frequently asked questions about PeerTube</source> | 978 | <source>Frequently asked questions about PeerTube</source> |
989 | <target>أسئلة متكررة حول عين الإسلام</target> | 979 | <target>أسئلة متكررة حول عين الإسلام</target> |
990 | 980 | ||
991 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 981 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
992 | <trans-unit id="299f97b8ee9c62d45f2cc01961aa1e5101d6d05a" datatype="html"> | 982 | <trans-unit id="299f97b8ee9c62d45f2cc01961aa1e5101d6d05a" datatype="html"> |
993 | <source>Stats</source> | 983 | <source>Stats</source> |
994 | <target>الإحصائيات</target> | 984 | <target>الإحصائيات</target> |
995 | 985 | ||
996 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 986 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
997 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> | 987 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> |
998 | <source>API</source> | 988 | <source>API</source> |
999 | <target>API</target> | 989 | <target>API</target> |
1000 | 990 | ||
1001 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 991 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1002 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> | 992 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> |
1003 | <source>API documentation</source> | 993 | <source>API documentation</source> |
1004 | <target>وثائق API</target> | 994 | <target>وثائق API</target> |
1005 | 995 | ||
1006 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 996 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
1007 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> | 997 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> |
1008 | <source>Shortcuts</source> | 998 | <source>Shortcuts</source> |
1009 | <target>اختصارات</target> | 999 | <target>اختصارات</target> |
1010 | 1000 | ||
1011 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1001 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1012 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> | 1002 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> |
1013 | <source>powered by PeerTube</source> | 1003 | <source>powered by PeerTube</source> |
1014 | <target>مدعوم من عين الإسلام</target> | 1004 | <target>مدعوم من عين الإسلام</target> |
1015 | 1005 | ||
1016 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | 1006 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">177</context></context-group></trans-unit> |
1017 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> | 1007 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> |
1018 | <source>powered by PeerTube - CopyLeft 2015-2020</source> | 1008 | <source>powered by PeerTube - CopyLeft 2015-2020</source> |
1019 | <target>مدعوم من عين الإسلام - CopyLeft 2015-2020</target> | 1009 | <target>مدعوم من عين الإسلام - CopyLeft 2015-2020</target> |
1020 | 1010 | ||
1021 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> | 1011 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">176</context></context-group></trans-unit> |
1022 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771" datatype="html"> | 1012 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771" datatype="html"> |
1023 | <source>View your notifications</source> | 1013 | <source>View your notifications</source> |
1024 | <target>عرض الإخطارات الخاصة بك</target> | 1014 | <target>عرض الإخطارات الخاصة بك</target> |
@@ -1045,7 +1035,7 @@ | |||
1045 | <source>See all your notifications</source> | 1035 | <source>See all your notifications</source> |
1046 | <target>رؤية جميع الإخطارات الخاصة بك</target> | 1036 | <target>رؤية جميع الإخطارات الخاصة بك</target> |
1047 | 1037 | ||
1048 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 1038 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">40</context></context-group></trans-unit> |
1049 | <trans-unit id="4b3972c3e9485218508a95f7a4ce7758e3f09ced" datatype="html"> | 1039 | <trans-unit id="4b3972c3e9485218508a95f7a4ce7758e3f09ced" datatype="html"> |
1050 | <source>Upload</source> | 1040 | <source>Upload</source> |
1051 | <target>إرسال</target> | 1041 | <target>إرسال</target> |
@@ -2029,7 +2019,7 @@ | |||
2029 | 2019 | ||
2030 | 2020 | ||
2031 | 2021 | ||
2032 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 2022 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
2033 | <trans-unit id="b0a337363ec610cf41744167b12f020e141a4617" datatype="html"> | 2023 | <trans-unit id="b0a337363ec610cf41744167b12f020e141a4617" datatype="html"> |
2034 | <source>Video was deleted</source> | 2024 | <source>Video was deleted</source> |
2035 | <target>تم حذف الفيديو</target> | 2025 | <target>تم حذف الفيديو</target> |
@@ -2211,7 +2201,25 @@ | |||
2211 | <target>لم يتم العثور على حساب.</target> | 2201 | <target>لم يتم العثور على حساب.</target> |
2212 | 2202 | ||
2213 | 2203 | ||
2214 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit> | 2204 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit><trans-unit id="2338185419645468935" datatype="html"> |
2205 | <source>List installed plugins</source><target state="new">List installed plugins</target> | ||
2206 | <context-group purpose="location"> | ||
2207 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
2208 | <context context-type="linenumber">28</context> | ||
2209 | </context-group> | ||
2210 | </trans-unit><trans-unit id="8897412584195581488" datatype="html"> | ||
2211 | <source>Search plugins</source><target state="new">Search plugins</target> | ||
2212 | <context-group purpose="location"> | ||
2213 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
2214 | <context context-type="linenumber">37</context> | ||
2215 | </context-group> | ||
2216 | </trans-unit><trans-unit id="4994333937800672218" datatype="html"> | ||
2217 | <source>Show plugin</source><target state="new">Show plugin</target> | ||
2218 | <context-group purpose="location"> | ||
2219 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
2220 | <context context-type="linenumber">46</context> | ||
2221 | </context-group> | ||
2222 | </trans-unit> | ||
2215 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> | 2223 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> |
2216 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> | 2224 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> |
2217 | <target>Showing | 2225 | <target>Showing |
@@ -3064,7 +3072,7 @@ | |||
3064 | <target>الخيارات</target> | 3072 | <target>الخيارات</target> |
3065 | 3073 | ||
3066 | 3074 | ||
3067 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 3075 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">48</context></context-group></trans-unit> |
3068 | <trans-unit id="8efba03f22550a671ee2c2c6dfd1ff03ea047700" datatype="html"> | 3076 | <trans-unit id="8efba03f22550a671ee2c2c6dfd1ff03ea047700" datatype="html"> |
3069 | <source>Search playlists</source> | 3077 | <source>Search playlists</source> |
3070 | <target>البحث عن قوائم التشغيل</target> | 3078 | <target>البحث عن قوائم التشغيل</target> |
@@ -3318,7 +3326,7 @@ | |||
3318 | <source>PROFILE SETTINGS</source> | 3326 | <source>PROFILE SETTINGS</source> |
3319 | <target state="new">PROFILE SETTINGS</target> | 3327 | <target state="new">PROFILE SETTINGS</target> |
3320 | 3328 | ||
3321 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 3329 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">12</context></context-group></trans-unit> |
3322 | <trans-unit id="c078d4901a5fac169665947cc7a6108b94dd80c7" datatype="html"> | 3330 | <trans-unit id="c078d4901a5fac169665947cc7a6108b94dd80c7" datatype="html"> |
3323 | <source> | 3331 | <source> |
3324 | <x id="INTERPOLATION" equiv-text="{{ menuEntry.label }}"/> | 3332 | <x id="INTERPOLATION" equiv-text="{{ menuEntry.label }}"/> |
@@ -3340,27 +3348,27 @@ | |||
3340 | <source>VIDEO SETTINGS</source> | 3348 | <source>VIDEO SETTINGS</source> |
3341 | <target>إعدادات الفيديو</target> | 3349 | <target>إعدادات الفيديو</target> |
3342 | 3350 | ||
3343 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit> | 3351 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
3344 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> | 3352 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> |
3345 | <source>NOTIFICATIONS</source> | 3353 | <source>NOTIFICATIONS</source> |
3346 | <target>الإشعارات</target> | 3354 | <target>الإشعارات</target> |
3347 | 3355 | ||
3348 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 3356 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">37</context></context-group></trans-unit> |
3349 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> | 3357 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> |
3350 | <source>INTERFACE</source> | 3358 | <source>INTERFACE</source> |
3351 | <target>الواجهة</target> | 3359 | <target>الواجهة</target> |
3352 | 3360 | ||
3353 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 3361 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit> |
3354 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> | 3362 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> |
3355 | <source>PASSWORD</source> | 3363 | <source>PASSWORD</source> |
3356 | <target>الكلمة السرية</target> | 3364 | <target>الكلمة السرية</target> |
3357 | 3365 | ||
3358 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">59</context></context-group></trans-unit> | 3366 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">57</context></context-group></trans-unit> |
3359 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> | 3367 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> |
3360 | <source>EMAIL</source> | 3368 | <source>EMAIL</source> |
3361 | <target>عنوان البريد الإلكتروني</target> | 3369 | <target>عنوان البريد الإلكتروني</target> |
3362 | 3370 | ||
3363 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">69</context></context-group></trans-unit> | 3371 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">67</context></context-group></trans-unit> |
3364 | <trans-unit id="739516c2ca75843d5aec9cf0e6b3e4335c4227b9" datatype="html"> | 3372 | <trans-unit id="739516c2ca75843d5aec9cf0e6b3e4335c4227b9" datatype="html"> |
3365 | <source>Change password</source> | 3373 | <source>Change password</source> |
3366 | <target>تغيير الكلمة السرية</target> | 3374 | <target>تغيير الكلمة السرية</target> |
@@ -3489,7 +3497,31 @@ | |||
3489 | <source>No ownership change request found.</source> | 3497 | <source>No ownership change request found.</source> |
3490 | <target state="new">No ownership change request found.</target> | 3498 | <target state="new">No ownership change request found.</target> |
3491 | 3499 | ||
3492 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit> | 3500 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit><trans-unit id="4247400351982331798" datatype="html"> |
3501 | <source>Account settings</source><target state="new">Account settings</target> | ||
3502 | <context-group purpose="location"> | ||
3503 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
3504 | <context context-type="linenumber">37</context> | ||
3505 | </context-group> | ||
3506 | </trans-unit><trans-unit id="154062590416726309" datatype="html"> | ||
3507 | <source>Account playlists</source><target state="new">Account playlists</target> | ||
3508 | <context-group purpose="location"> | ||
3509 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
3510 | <context context-type="linenumber">55</context> | ||
3511 | </context-group> | ||
3512 | </trans-unit><trans-unit id="6550287183367517925" datatype="html"> | ||
3513 | <source>Create new playlist</source><target state="new">Create new playlist</target> | ||
3514 | <context-group purpose="location"> | ||
3515 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
3516 | <context context-type="linenumber">64</context> | ||
3517 | </context-group> | ||
3518 | </trans-unit><trans-unit id="2864486939135008600" datatype="html"> | ||
3519 | <source>Playlist elements</source><target state="new">Playlist elements</target> | ||
3520 | <context-group purpose="location"> | ||
3521 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
3522 | <context context-type="linenumber">73</context> | ||
3523 | </context-group> | ||
3524 | </trans-unit> | ||
3493 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> | 3525 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> |
3494 | <source>My imports</source> | 3526 | <source>My imports</source> |
3495 | <target state="new">My imports</target> | 3527 | <target state="new">My imports</target> |
@@ -3820,7 +3852,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
3820 | <source>An error occurred.</source> | 3852 | <source>An error occurred.</source> |
3821 | <target>حدث خطأ.</target> | 3853 | <target>حدث خطأ.</target> |
3822 | 3854 | ||
3823 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 3855 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit><trans-unit id="9128669621822125729" datatype="html"> |
3856 | <source>Video channel videos</source><target state="new">Video channel videos</target> | ||
3857 | <context-group purpose="location"> | ||
3858 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
3859 | <context context-type="linenumber">25</context> | ||
3860 | </context-group> | ||
3861 | </trans-unit><trans-unit id="3193822049276963401" datatype="html"> | ||
3862 | <source>Video channel playlists</source><target state="new">Video channel playlists</target> | ||
3863 | <context-group purpose="location"> | ||
3864 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
3865 | <context context-type="linenumber">38</context> | ||
3866 | </context-group> | ||
3867 | </trans-unit><trans-unit id="4723526509708949088" datatype="html"> | ||
3868 | <source>About video channel</source><target state="new">About video channel</target> | ||
3869 | <context-group purpose="location"> | ||
3870 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
3871 | <context context-type="linenumber">47</context> | ||
3872 | </context-group> | ||
3873 | </trans-unit> | ||
3824 | <trans-unit id="ae3cb52bf2dee3101ee654812b5d16e8665a9453" datatype="html"> | 3874 | <trans-unit id="ae3cb52bf2dee3101ee654812b5d16e8665a9453" datatype="html"> |
3825 | <source>Request new verification email.</source> | 3875 | <source>Request new verification email.</source> |
3826 | <target>طلب رسالة تأكيد جديدة عبر البريد الإلكتروني.</target> | 3876 | <target>طلب رسالة تأكيد جديدة عبر البريد الإلكتروني.</target> |
@@ -4295,7 +4345,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
4295 | <source>This instance does not have instances followings.</source> | 4345 | <source>This instance does not have instances followings.</source> |
4296 | <target>لا يحتوي هذا المنصة على متابعات المثال.</target> | 4346 | <target>لا يحتوي هذا المنصة على متابعات المثال.</target> |
4297 | 4347 | ||
4298 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit> | 4348 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit><trans-unit id="4195286790385468087" datatype="html"> |
4349 | <source>About this instance</source><target state="new">About this instance</target> | ||
4350 | <context-group purpose="location"> | ||
4351 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
4352 | <context context-type="linenumber">26</context> | ||
4353 | </context-group> | ||
4354 | </trans-unit><trans-unit id="8773846522957677259" datatype="html"> | ||
4355 | <source>About PeerTube</source><target state="new">About PeerTube</target> | ||
4356 | <context-group purpose="location"> | ||
4357 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
4358 | <context context-type="linenumber">38</context> | ||
4359 | </context-group> | ||
4360 | </trans-unit><trans-unit id="5782088737558028158" datatype="html"> | ||
4361 | <source>About follows</source><target state="new">About follows</target> | ||
4362 | <context-group purpose="location"> | ||
4363 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
4364 | <context context-type="linenumber">47</context> | ||
4365 | </context-group> | ||
4366 | </trans-unit> | ||
4299 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> | 4367 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> |
4300 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> | 4368 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> |
4301 | <target>Developed with ❤ by | 4369 | <target>Developed with ❤ by |
@@ -4463,6 +4531,12 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
4463 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 4531 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> |
4464 | <context context-type="linenumber">1</context> | 4532 | <context context-type="linenumber">1</context> |
4465 | </context-group> | 4533 | </context-group> |
4534 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
4535 | <source>Get help</source><target state="new">Get help</target> | ||
4536 | <context-group purpose="location"> | ||
4537 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | ||
4538 | <context context-type="linenumber">16</context> | ||
4539 | </context-group> | ||
4466 | </trans-unit> | 4540 | </trans-unit> |
4467 | <trans-unit id="e08a77594f3d89311cdf6da5090044270909c194" datatype="html"> | 4541 | <trans-unit id="e08a77594f3d89311cdf6da5090044270909c194" datatype="html"> |
4468 | <source>User</source> | 4542 | <source>User</source> |
@@ -4576,7 +4650,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
4576 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/> of this instance | 4650 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/> of this instance |
4577 | </target> | 4651 | </target> |
4578 | 4652 | ||
4579 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 4653 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit><trans-unit id="3301086086650990787" datatype="html"> |
4654 | <source>Register</source><target state="new">Register</target> | ||
4655 | <context-group purpose="location"> | ||
4656 | <context context-type="sourcefile">../app/+signup/+register/register-routing.module.ts</context> | ||
4657 | <context context-type="linenumber">14</context> | ||
4658 | </context-group> | ||
4659 | </trans-unit> | ||
4580 | <trans-unit id="2ba14c37f3b23553b2602c5e535d0ff4916f24aa" datatype="html"> | 4660 | <trans-unit id="2ba14c37f3b23553b2602c5e535d0ff4916f24aa" datatype="html"> |
4581 | <source>Reset my password</source> | 4661 | <source>Reset my password</source> |
4582 | <target>أعادة تعيين كلمة السر</target> | 4662 | <target>أعادة تعيين كلمة السر</target> |
@@ -5286,7 +5366,13 @@ The link will expire within 1 hour.</target> | |||
5286 | <source>Less customization</source> | 5366 | <source>Less customization</source> |
5287 | <target>تخصيص أقل</target> | 5367 | <target>تخصيص أقل</target> |
5288 | 5368 | ||
5289 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit> | 5369 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit><trans-unit id="2454050363478003966" datatype="html"> |
5370 | <source>Login</source><target state="new">Login</target> | ||
5371 | <context-group purpose="location"> | ||
5372 | <context context-type="sourcefile">../app/+login/login-routing.module.ts</context> | ||
5373 | <context context-type="linenumber">14</context> | ||
5374 | </context-group> | ||
5375 | </trans-unit> | ||
5290 | <trans-unit id="71b6e75eb1d54bcd9a64b9af9b99121785a065d0" datatype="html"> | 5376 | <trans-unit id="71b6e75eb1d54bcd9a64b9af9b99121785a065d0" datatype="html"> |
5291 | <source>Support <x id="INTERPOLATION"/></source> | 5377 | <source>Support <x id="INTERPOLATION"/></source> |
5292 | <target>Support | 5378 | <target>Support |
@@ -5453,7 +5539,7 @@ The link will expire within 1 hour.</target> | |||
5453 | <source>No comments.</source> | 5539 | <source>No comments.</source> |
5454 | <target>ليس هناك تعليقات.</target> | 5540 | <target>ليس هناك تعليقات.</target> |
5455 | 5541 | ||
5456 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 5542 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> |
5457 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> | 5543 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> |
5458 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> | 5544 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> |
5459 | <target>View | 5545 | <target>View |
@@ -5461,7 +5547,7 @@ The link will expire within 1 hour.</target> | |||
5461 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> and others | 5547 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> and others |
5462 | </target> | 5548 | </target> |
5463 | 5549 | ||
5464 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">79</context></context-group></trans-unit> | 5550 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
5465 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> | 5551 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> |
5466 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> | 5552 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> |
5467 | <target>View | 5553 | <target>View |
@@ -5469,66 +5555,152 @@ The link will expire within 1 hour.</target> | |||
5469 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> | 5555 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> |
5470 | </target> | 5556 | </target> |
5471 | 5557 | ||
5472 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 5558 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">87</context></context-group></trans-unit> |
5473 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> | 5559 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> |
5474 | <source>View <x id="INTERPOLATION"/> replies</source> | 5560 | <source>View <x id="INTERPOLATION"/> replies</source> |
5475 | <target>View | 5561 | <target>View |
5476 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies | 5562 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies |
5477 | </target> | 5563 | </target> |
5478 | 5564 | ||
5479 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">85</context></context-group></trans-unit> | 5565 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">90</context></context-group></trans-unit> |
5480 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828" datatype="html"> | 5566 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828" datatype="html"> |
5481 | <source>Comments are disabled.</source> | 5567 | <source>Comments are disabled.</source> |
5482 | <target>تم تعطيل التعليقات.</target> | 5568 | <target>تم تعطيل التعليقات.</target> |
5483 | 5569 | ||
5484 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit><trans-unit id="3691787517663044217" datatype="html"> | 5570 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit><trans-unit id="3691787517663044217" datatype="html"> |
5485 | <source> The deletion will be sent to remote instances so they can reflect the change.</source><target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> | 5571 | <source> The deletion will be sent to remote instances so they can reflect the change.</source><target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> |
5572 | |||
5573 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">169</context></context-group></trans-unit><trans-unit id="7321800851971795962" datatype="html"> | ||
5574 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source><target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> | ||
5575 | |||
5576 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="5964038603724691720" datatype="html"> | ||
5577 | <source>Delete and re-draft</source><target state="new">Delete and re-draft</target> | ||
5486 | <context-group purpose="location"> | 5578 | <context-group purpose="location"> |
5487 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | 5579 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> |
5488 | <context context-type="linenumber">163</context> | 5580 | <context context-type="linenumber">197</context> |
5489 | </context-group> | 5581 | </context-group> |
5490 | </trans-unit><trans-unit id="7321800851971795962" datatype="html"> | 5582 | </trans-unit><trans-unit id="7163633882758007711" datatype="html"> |
5491 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source><target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> | 5583 | <source>Do you really want to delete and re-draft this comment?</source><target state="new">Do you really want to delete and re-draft this comment?</target> |
5492 | <context-group purpose="location"> | 5584 | <context-group purpose="location"> |
5493 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | 5585 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> |
5494 | <context context-type="linenumber">165</context> | 5586 | <context context-type="linenumber">197</context> |
5495 | </context-group> | 5587 | </context-group> |
5496 | </trans-unit> | 5588 | </trans-unit> |
5497 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e" datatype="html"> | 5589 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e" datatype="html"> |
5498 | <source>Add comment...</source> | 5590 | <source>Add comment...</source> |
5499 | <target>إضافة تعليق…</target> | 5591 | <target>إضافة تعليق…</target> |
5500 | 5592 | ||
5501 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | 5593 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit><trans-unit id="4e5254dedf0c12ce7e7c2197384fceebe3b29a2b" datatype="html"> |
5594 | <source>Markdown compatible</source><target state="new">Markdown compatible</target> | ||
5595 | <context-group purpose="location"> | ||
5596 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
5597 | <context context-type="linenumber">13</context> | ||
5598 | </context-group> | ||
5599 | </trans-unit><trans-unit id="4739ffad85f09defefdb6e51b45f43b2ef7c4388" datatype="html"> | ||
5600 | <source>Markdown compatible that supports:</source><target state="new">Markdown compatible that supports:</target> | ||
5601 | <context-group purpose="location"> | ||
5602 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
5603 | <context context-type="linenumber">15</context> | ||
5604 | </context-group> | ||
5605 | </trans-unit><trans-unit id="9a53b17a021bb0677c156fd893461797fc497a10" datatype="html"> | ||
5606 | <source>Auto generated links</source><target state="new">Auto generated links</target> | ||
5607 | <context-group purpose="location"> | ||
5608 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
5609 | <context context-type="linenumber">18</context> | ||
5610 | </context-group> | ||
5611 | </trans-unit><trans-unit id="664f99b8919d6dd2faa1c1f7c378aa86d1be5e8a" datatype="html"> | ||
5612 | <source>Break lines</source><target state="new">Break lines</target> | ||
5613 | <context-group purpose="location"> | ||
5614 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
5615 | <context context-type="linenumber">19</context> | ||
5616 | </context-group> | ||
5617 | </trans-unit><trans-unit id="b15e7bec5c7833d2d9634946ccbed68967b1bee1" datatype="html"> | ||
5618 | <source>Lists</source><target state="new">Lists</target> | ||
5619 | <context-group purpose="location"> | ||
5620 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
5621 | <context context-type="linenumber">20</context> | ||
5622 | </context-group> | ||
5623 | </trans-unit><trans-unit id="ab4426b60f13c00b61d6b714d390dc629f314980" datatype="html"> | ||
5624 | <source>Emphasis</source><target state="new">Emphasis</target> | ||
5625 | <context-group purpose="location"> | ||
5626 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
5627 | <context context-type="linenumber">22</context> | ||
5628 | </context-group> | ||
5629 | </trans-unit><trans-unit id="4e13b179501d3d32721037e03b4c04acb9857c5f" datatype="html"> | ||
5630 | <source>bold</source><target state="new">bold</target> | ||
5631 | <context-group purpose="location"> | ||
5632 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
5633 | <context context-type="linenumber">23</context> | ||
5634 | </context-group> | ||
5635 | </trans-unit><trans-unit id="3c12190421fbb2756e6bbead923df9ec5de8ede2" datatype="html"> | ||
5636 | <source>italic</source><target state="new">italic</target> | ||
5637 | <context-group purpose="location"> | ||
5638 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
5639 | <context context-type="linenumber">23</context> | ||
5640 | </context-group> | ||
5641 | </trans-unit><trans-unit id="adb4bbdcb961b8aac8298d6cac554d9b25636b7a" datatype="html"> | ||
5642 | <source>Emoji shortcuts</source><target state="new">Emoji shortcuts</target> | ||
5643 | <context-group purpose="location"> | ||
5644 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
5645 | <context context-type="linenumber">26</context> | ||
5646 | </context-group> | ||
5647 | </trans-unit><trans-unit id="b9809a21a8eb3c9db2a0282c5dd94bc221575c96" datatype="html"> | ||
5648 | <source>Emoji markup</source><target state="new">Emoji markup</target> | ||
5649 | <context-group purpose="location"> | ||
5650 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
5651 | <context context-type="linenumber">30</context> | ||
5652 | </context-group> | ||
5653 | </trans-unit><trans-unit id="f37feb427aaa551edd1f22616be6464bc0d492de" datatype="html"> | ||
5654 | <source>See complete list</source><target state="new">See complete list</target> | ||
5655 | <context-group purpose="location"> | ||
5656 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
5657 | <context context-type="linenumber">32</context> | ||
5658 | </context-group> | ||
5659 | </trans-unit> | ||
5502 | <trans-unit id="da44efc7b658c318651866454d258bbbe57ff21c" datatype="html"> | 5660 | <trans-unit id="da44efc7b658c318651866454d258bbbe57ff21c" datatype="html"> |
5503 | <source>Cancel</source> | 5661 | <source>Cancel</source> |
5504 | <target>الغاء</target> | 5662 | <target>الغاء</target> |
5505 | 5663 | ||
5506 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> | 5664 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit> |
5507 | <trans-unit id="8956c0f4c6974289fc63f1ab6b54f5b32ed65eeb" datatype="html"> | 5665 | |
5508 | <source>Reply</source> | ||
5509 | <target>رد</target> | ||
5510 | |||
5511 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | ||
5512 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135" datatype="html"> | 5666 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135" datatype="html"> |
5513 | <source>You are one step away from commenting</source> | 5667 | <source>You are one step away from commenting</source> |
5514 | <target>أنت على بعد خطوة واحدة من التعليق</target> | 5668 | <target>أنت على بعد خطوة واحدة من التعليق</target> |
5515 | 5669 | ||
5516 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 5670 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
5517 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> | 5671 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> |
5518 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> | 5672 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> |
5519 | <target>يمكنك التعليق باستخدام حساب على أي منصة متوافق مع ActivityPub. في معظم الأنظمة الأساسية ، يمكنك العثور على الفيديو بكتابة عنوان URL الخاص به في شريط البحث ثم التعليق عليه من واجهة البرنامج.</target> | 5673 | <target>يمكنك التعليق باستخدام حساب على أي منصة متوافق مع ActivityPub. في معظم الأنظمة الأساسية ، يمكنك العثور على الفيديو بكتابة عنوان URL الخاص به في شريط البحث ثم التعليق عليه من واجهة البرنامج.</target> |
5520 | 5674 | ||
5521 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 5675 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
5522 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb" datatype="html"> | 5676 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb" datatype="html"> |
5523 | <source>If you have an account on Mastodon or Pleroma, you can open it directly in their interface:</source> | 5677 | <source>If you have an account on Mastodon or Pleroma, you can open it directly in their interface:</source> |
5524 | <target>إذا كان لديك حساب على Mastodon أو Pleroma ، يمكنك فتحه مباشرة في واجهته:</target> | 5678 | <target>إذا كان لديك حساب على Mastodon أو Pleroma ، يمكنك فتحه مباشرة في واجهته:</target> |
5525 | 5679 | ||
5526 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">41</context></context-group></trans-unit> | 5680 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">65</context></context-group></trans-unit> |
5527 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> | 5681 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> |
5528 | <source>Login to comment</source> | 5682 | <source>Login to comment</source> |
5529 | <target>يرجى الولوج أولًا للتعليق</target> | 5683 | <target>يرجى الولوج أولًا للتعليق</target> |
5530 | 5684 | ||
5531 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">52</context></context-group></trans-unit> | 5685 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit><trans-unit id="974170f455ff5a9034d5737e84b4194c0046fc6b" datatype="html"> |
5686 | <source>Markdown Emoji List</source><target state="new">Markdown Emoji List</target> | ||
5687 | <context-group purpose="location"> | ||
5688 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
5689 | <context context-type="linenumber">84</context> | ||
5690 | </context-group> | ||
5691 | </trans-unit><trans-unit id="2662644497259948010" datatype="html"> | ||
5692 | <source>Comment</source><target state="new">Comment</target> | ||
5693 | <context-group purpose="location"> | ||
5694 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
5695 | <context context-type="linenumber">58</context> | ||
5696 | </context-group> | ||
5697 | </trans-unit><trans-unit id="4502286564339177240" datatype="html"> | ||
5698 | <source>Reply</source><target state="new">Reply</target> | ||
5699 | <context-group purpose="location"> | ||
5700 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
5701 | <context context-type="linenumber">60</context> | ||
5702 | </context-group> | ||
5703 | </trans-unit> | ||
5532 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285" datatype="html"> | 5704 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285" datatype="html"> |
5533 | <source>Highlighted comment</source> | 5705 | <source>Highlighted comment</source> |
5534 | <target>تعليق مميز</target> | 5706 | <target>تعليق مميز</target> |
@@ -5543,7 +5715,7 @@ The link will expire within 1 hour.</target> | |||
5543 | <source>This comment has been deleted</source> | 5715 | <source>This comment has been deleted</source> |
5544 | <target>لقد تم حذف هذا التعليق</target> | 5716 | <target>لقد تم حذف هذا التعليق</target> |
5545 | 5717 | ||
5546 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">62</context></context-group></trans-unit> | 5718 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">61</context></context-group></trans-unit> |
5547 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> | 5719 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> |
5548 | <source>Sorry, we couldn't find the page you were looking for.</source> | 5720 | <source>Sorry, we couldn't find the page you were looking for.</source> |
5549 | <target>عذرًا ، لم نتمكن من العثور على الصفحة التي تبحث عنها.</target> | 5721 | <target>عذرًا ، لم نتمكن من العثور على الصفحة التي تبحث عنها.</target> |
@@ -5564,7 +5736,25 @@ The link will expire within 1 hour.</target> | |||
5564 | <target>بدون وصف</target> | 5736 | <target>بدون وصف</target> |
5565 | 5737 | ||
5566 | 5738 | ||
5567 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit> | 5739 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit><trans-unit id="819067926858619041" datatype="html"> |
5740 | <source>Account videos</source><target state="new">Account videos</target> | ||
5741 | <context-group purpose="location"> | ||
5742 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
5743 | <context context-type="linenumber">29</context> | ||
5744 | </context-group> | ||
5745 | </trans-unit><trans-unit id="6823616469362610020" datatype="html"> | ||
5746 | <source>Account video channels</source><target state="new">Account video channels</target> | ||
5747 | <context-group purpose="location"> | ||
5748 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
5749 | <context context-type="linenumber">42</context> | ||
5750 | </context-group> | ||
5751 | </trans-unit><trans-unit id="7678273613459026643" datatype="html"> | ||
5752 | <source>About account</source><target state="new">About account</target> | ||
5753 | <context-group purpose="location"> | ||
5754 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
5755 | <context context-type="linenumber">51</context> | ||
5756 | </context-group> | ||
5757 | </trans-unit> | ||
5568 | <trans-unit id="3755500631176893489" datatype="html"> | 5758 | <trans-unit id="3755500631176893489" datatype="html"> |
5569 | <source>Published <x id="PH"/> videos</source> | 5759 | <source>Published <x id="PH"/> videos</source> |
5570 | <target>نَشَرَ | 5760 | <target>نَشَرَ |
@@ -5671,7 +5861,13 @@ The link will expire within 1 hour.</target> | |||
5671 | <source>Configuration updated.</source> | 5861 | <source>Configuration updated.</source> |
5672 | <target>تم تحديث الإعدادات.</target> | 5862 | <target>تم تحديث الإعدادات.</target> |
5673 | 5863 | ||
5674 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit> | 5864 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit><trans-unit id="6284468333579755406" datatype="html"> |
5865 | <source>Edit custom configuration</source><target state="new">Edit custom configuration</target> | ||
5866 | <context-group purpose="location"> | ||
5867 | <context context-type="sourcefile">../app/+admin/config/config.routes.ts</context> | ||
5868 | <context context-type="linenumber">26</context> | ||
5869 | </context-group> | ||
5870 | </trans-unit> | ||
5675 | 5871 | ||
5676 | 5872 | ||
5677 | <trans-unit id="240806681889331244" datatype="html"> | 5873 | <trans-unit id="240806681889331244" datatype="html"> |
@@ -5982,7 +6178,7 @@ The link will expire within 1 hour.</target> | |||
5982 | <source>Do you really want to delete this comment?</source> | 6178 | <source>Do you really want to delete this comment?</source> |
5983 | <target state="new">Do you really want to delete this comment?</target> | 6179 | <target state="new">Do you really want to delete this comment?</target> |
5984 | 6180 | ||
5985 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">434</context></context-group></trans-unit> | 6181 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">166</context></context-group></trans-unit> |
5986 | <trans-unit id="7837272126865175984" datatype="html"> | 6182 | <trans-unit id="7837272126865175984" datatype="html"> |
5987 | <source>Comment deleted.</source> | 6183 | <source>Comment deleted.</source> |
5988 | <target state="new">Comment deleted.</target> | 6184 | <target state="new">Comment deleted.</target> |
@@ -6165,7 +6361,19 @@ The link will expire within 1 hour.</target> | |||
6165 | <x id="PH"/> updated. | 6361 | <x id="PH"/> updated. |
6166 | </target> | 6362 | </target> |
6167 | 6363 | ||
6168 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 6364 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit><trans-unit id="3229595422546554334" datatype="html"> |
6365 | <source>Jobs</source><target state="new">Jobs</target> | ||
6366 | <context-group purpose="location"> | ||
6367 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6368 | <context context-type="linenumber">26</context> | ||
6369 | </context-group> | ||
6370 | </trans-unit><trans-unit id="4804785061014590286" datatype="html"> | ||
6371 | <source>Logs</source><target state="new">Logs</target> | ||
6372 | <context-group purpose="location"> | ||
6373 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6374 | <context context-type="linenumber">37</context> | ||
6375 | </context-group> | ||
6376 | </trans-unit> | ||
6169 | <trans-unit id="3150704904301058778" datatype="html"> | 6377 | <trans-unit id="3150704904301058778" datatype="html"> |
6170 | <source>The plugin index is not available. Please retry later.</source> | 6378 | <source>The plugin index is not available. Please retry later.</source> |
6171 | <target>قائمة الإضافات غير متوفرة حاليا. يرجى إعادة المحاولة لاحقا.</target> | 6379 | <target>قائمة الإضافات غير متوفرة حاليا. يرجى إعادة المحاولة لاحقا.</target> |
@@ -6279,6 +6487,18 @@ The link will expire within 1 hour.</target> | |||
6279 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> | 6487 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> |
6280 | <context context-type="linenumber">86</context> | 6488 | <context context-type="linenumber">86</context> |
6281 | </context-group> | 6489 | </context-group> |
6490 | </trans-unit><trans-unit id="2903648076838460070" datatype="html"> | ||
6491 | <source>Videos blocked</source><target state="new">Videos blocked</target> | ||
6492 | <context-group purpose="location"> | ||
6493 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6494 | <context context-type="linenumber">67</context> | ||
6495 | </context-group> | ||
6496 | </trans-unit><trans-unit id="7805059636749367886" datatype="html"> | ||
6497 | <source>Muted instances</source><target state="new">Muted instances</target> | ||
6498 | <context-group purpose="location"> | ||
6499 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6500 | <context context-type="linenumber">89</context> | ||
6501 | </context-group> | ||
6282 | </trans-unit> | 6502 | </trans-unit> |
6283 | <trans-unit id="5974506725502681113" datatype="html"> | 6503 | <trans-unit id="5974506725502681113" datatype="html"> |
6284 | <source>Password changed for user <x id="PH"/>.</source> | 6504 | <source>Password changed for user <x id="PH"/>.</source> |
@@ -6291,7 +6511,19 @@ The link will expire within 1 hour.</target> | |||
6291 | <source>Update user password</source> | 6511 | <source>Update user password</source> |
6292 | <target>تحديث الكلمة السرية للمستخدم</target> | 6512 | <target>تحديث الكلمة السرية للمستخدم</target> |
6293 | 6513 | ||
6294 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit> | 6514 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit><trans-unit id="177544274549739411" datatype="html"> |
6515 | <source>Following list</source><target state="new">Following list</target> | ||
6516 | <context-group purpose="location"> | ||
6517 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6518 | <context context-type="linenumber">28</context> | ||
6519 | </context-group> | ||
6520 | </trans-unit><trans-unit id="8092429110007204784" datatype="html"> | ||
6521 | <source>Followers list</source><target state="new">Followers list</target> | ||
6522 | <context-group purpose="location"> | ||
6523 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6524 | <context context-type="linenumber">37</context> | ||
6525 | </context-group> | ||
6526 | </trans-unit> | ||
6295 | <trans-unit id="780323526182667308" datatype="html"> | 6527 | <trans-unit id="780323526182667308" datatype="html"> |
6296 | <source>User <x id="PH"/> updated.</source> | 6528 | <source>User <x id="PH"/> updated.</source> |
6297 | <target>User | 6529 | <target>User |
@@ -6310,7 +6542,25 @@ The link will expire within 1 hour.</target> | |||
6310 | <x id="PH"/>. | 6542 | <x id="PH"/>. |
6311 | </target> | 6543 | </target> |
6312 | 6544 | ||
6313 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="8564701209009684429" datatype="html"> | 6545 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="7483807629538115183" datatype="html"> |
6546 | <source>Users list</source><target state="new">Users list</target> | ||
6547 | <context-group purpose="location"> | ||
6548 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6549 | <context context-type="linenumber">27</context> | ||
6550 | </context-group> | ||
6551 | </trans-unit><trans-unit id="1525334987774465166" datatype="html"> | ||
6552 | <source>Create a user</source><target state="new">Create a user</target> | ||
6553 | <context-group purpose="location"> | ||
6554 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6555 | <context context-type="linenumber">36</context> | ||
6556 | </context-group> | ||
6557 | </trans-unit><trans-unit id="5552039423287890133" datatype="html"> | ||
6558 | <source>Update a user</source><target state="new">Update a user</target> | ||
6559 | <context-group purpose="location"> | ||
6560 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6561 | <context context-type="linenumber">48</context> | ||
6562 | </context-group> | ||
6563 | </trans-unit><trans-unit id="8564701209009684429" datatype="html"> | ||
6314 | <source>Federation</source><target state="new">Federation</target> | 6564 | <source>Federation</source><target state="new">Federation</target> |
6315 | <context-group purpose="location"> | 6565 | <context-group purpose="location"> |
6316 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> | 6566 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> |
@@ -6466,7 +6716,25 @@ The link will expire within 1 hour.</target> | |||
6466 | <source>Views for the day</source> | 6716 | <source>Views for the day</source> |
6467 | <target>المشاهدات لهذا اليوم</target> | 6717 | <target>المشاهدات لهذا اليوم</target> |
6468 | 6718 | ||
6469 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit> | 6719 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit><trans-unit id="4707367314920217630" datatype="html"> |
6720 | <source>Create new video channel</source><target state="new">Create new video channel</target> | ||
6721 | <context-group purpose="location"> | ||
6722 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
6723 | <context context-type="linenumber">22</context> | ||
6724 | </context-group> | ||
6725 | </trans-unit><trans-unit id="6059091237492573541" datatype="html"> | ||
6726 | <source>Update video channel</source><target state="new">Update video channel</target> | ||
6727 | <context-group purpose="location"> | ||
6728 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
6729 | <context context-type="linenumber">31</context> | ||
6730 | </context-group> | ||
6731 | </trans-unit><trans-unit id="6595008830732269870" datatype="html"> | ||
6732 | <source>Not found</source><target state="new">Not found</target> | ||
6733 | <context-group purpose="location"> | ||
6734 | <context context-type="sourcefile">../app/+page-not-found/page-not-found-routing.module.ts</context> | ||
6735 | <context context-type="linenumber">13</context> | ||
6736 | </context-group> | ||
6737 | </trans-unit> | ||
6470 | <trans-unit id="7163720856202695008" datatype="html"> | 6738 | <trans-unit id="7163720856202695008" datatype="html"> |
6471 | <source>My videos history</source> | 6739 | <source>My videos history</source> |
6472 | <target>سِجِل فيديوهاتي</target> | 6740 | <target>سِجِل فيديوهاتي</target> |
@@ -6646,7 +6914,31 @@ The link will expire within 1 hour.</target> | |||
6646 | <source>Update playlist</source> | 6914 | <source>Update playlist</source> |
6647 | <target state="new">Update playlist</target> | 6915 | <target state="new">Update playlist</target> |
6648 | 6916 | ||
6649 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-video-playlists/my-account-video-playlist-elements.component.ts</context><context context-type="linenumber">48</context></context-group></trans-unit> | 6917 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">82</context></context-group></trans-unit><trans-unit id="3410331549417637431" datatype="html"> |
6918 | <source>Account video imports</source><target state="new">Account video imports</target> | ||
6919 | <context-group purpose="location"> | ||
6920 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
6921 | <context context-type="linenumber">105</context> | ||
6922 | </context-group> | ||
6923 | </trans-unit><trans-unit id="4434998055872154420" datatype="html"> | ||
6924 | <source>Account subscriptions</source><target state="new">Account subscriptions</target> | ||
6925 | <context-group purpose="location"> | ||
6926 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
6927 | <context context-type="linenumber">114</context> | ||
6928 | </context-group> | ||
6929 | </trans-unit><trans-unit id="6019411775996586321" datatype="html"> | ||
6930 | <source>Videos history</source><target state="new">Videos history</target> | ||
6931 | <context-group purpose="location"> | ||
6932 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
6933 | <context context-type="linenumber">150</context> | ||
6934 | </context-group> | ||
6935 | </trans-unit><trans-unit id="5851560788527570644" datatype="html"> | ||
6936 | <source>Notifications</source><target state="new">Notifications</target> | ||
6937 | <context-group purpose="location"> | ||
6938 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
6939 | <context context-type="linenumber">163</context> | ||
6940 | </context-group> | ||
6941 | </trans-unit> | ||
6650 | <trans-unit id="104404386496394770" datatype="html"> | 6942 | <trans-unit id="104404386496394770" datatype="html"> |
6651 | <source>Delete playlist</source> | 6943 | <source>Delete playlist</source> |
6652 | <target state="new">Delete playlist</target> | 6944 | <target state="new">Delete playlist</target> |
@@ -6922,7 +7214,19 @@ The link will expire within 1 hour.</target> | |||
6922 | <x id="PH"/>. | 7214 | <x id="PH"/>. |
6923 | </target> | 7215 | </target> |
6924 | 7216 | ||
6925 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit> | 7217 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit><trans-unit id="8231550792139699065" datatype="html"> |
7218 | <source>Verify account email</source><target state="new">Verify account email</target> | ||
7219 | <context-group purpose="location"> | ||
7220 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7221 | <context context-type="linenumber">17</context> | ||
7222 | </context-group> | ||
7223 | </trans-unit><trans-unit id="4997281272800290390" datatype="html"> | ||
7224 | <source>Verify account ask send email</source><target state="new">Verify account ask send email</target> | ||
7225 | <context-group purpose="location"> | ||
7226 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7227 | <context context-type="linenumber">26</context> | ||
7228 | </context-group> | ||
7229 | </trans-unit> | ||
6926 | <trans-unit id="4802465052975340965" datatype="html"> | 7230 | <trans-unit id="4802465052975340965" datatype="html"> |
6927 | <source>Published videos</source> | 7231 | <source>Published videos</source> |
6928 | <target>الفيديوهات المنشورة</target> | 7232 | <target>الفيديوهات المنشورة</target> |
@@ -7293,7 +7597,7 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
7293 | <target state="new">Report comment</target> | 7597 | <target state="new">Report comment</target> |
7294 | 7598 | ||
7295 | 7599 | ||
7296 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 7600 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/report-modals/comment-report.component.ts</context><context context-type="linenumber">51</context></context-group></trans-unit> |
7297 | 7601 | ||
7298 | 7602 | ||
7299 | <trans-unit id="1729036051846673606" datatype="html"> | 7603 | <trans-unit id="1729036051846673606" datatype="html"> |
@@ -7504,6 +7808,36 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
7504 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> | 7808 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> |
7505 | <context context-type="linenumber">36</context> | 7809 | <context context-type="linenumber">36</context> |
7506 | </context-group> | 7810 | </context-group> |
7811 | </trans-unit><trans-unit id="4668975178372693951" datatype="html"> | ||
7812 | <source>Discover videos</source><target state="new">Discover videos</target> | ||
7813 | <context-group purpose="location"> | ||
7814 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
7815 | <context context-type="linenumber">23</context> | ||
7816 | </context-group> | ||
7817 | </trans-unit><trans-unit id="8067135025051844577" datatype="html"> | ||
7818 | <source>Trending videos</source><target state="new">Trending videos</target> | ||
7819 | <context-group purpose="location"> | ||
7820 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
7821 | <context context-type="linenumber">32</context> | ||
7822 | </context-group> | ||
7823 | </trans-unit><trans-unit id="664221386829541948" datatype="html"> | ||
7824 | <source>Recently added videos</source><target state="new">Recently added videos</target> | ||
7825 | <context-group purpose="location"> | ||
7826 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
7827 | <context context-type="linenumber">58</context> | ||
7828 | </context-group> | ||
7829 | </trans-unit><trans-unit id="8212906256415538361" datatype="html"> | ||
7830 | <source>Upload a video</source><target state="new">Upload a video</target> | ||
7831 | <context-group purpose="location"> | ||
7832 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
7833 | <context context-type="linenumber">97</context> | ||
7834 | </context-group> | ||
7835 | </trans-unit><trans-unit id="7590784934397800835" datatype="html"> | ||
7836 | <source>Edit a video</source><target state="new">Edit a video</target> | ||
7837 | <context-group purpose="location"> | ||
7838 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
7839 | <context context-type="linenumber">106</context> | ||
7840 | </context-group> | ||
7507 | </trans-unit> | 7841 | </trans-unit> |
7508 | <trans-unit id="7709367721354853232" datatype="html"> | 7842 | <trans-unit id="7709367721354853232" datatype="html"> |
7509 | <source>Focus the search bar</source> | 7843 | <source>Focus the search bar</source> |
@@ -7612,37 +7946,37 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7612 | <source>Administrator</source> | 7946 | <source>Administrator</source> |
7613 | <target>المدير</target> | 7947 | <target>المدير</target> |
7614 | 7948 | ||
7615 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">385</context></context-group></trans-unit> | 7949 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">383</context></context-group></trans-unit> |
7616 | <trans-unit id="4968151111061046122" datatype="html"> | 7950 | <trans-unit id="4968151111061046122" datatype="html"> |
7617 | <source>Moderator</source> | 7951 | <source>Moderator</source> |
7618 | <target>مشرف</target> | 7952 | <target>مشرف</target> |
7619 | 7953 | ||
7620 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">386</context></context-group></trans-unit> | 7954 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">384</context></context-group></trans-unit> |
7621 | <trans-unit id="5633144232269377096" datatype="html"> | 7955 | <trans-unit id="5633144232269377096" datatype="html"> |
7622 | <source>hide</source> | 7956 | <source>hide</source> |
7623 | <target>إخفاء</target> | 7957 | <target>إخفاء</target> |
7624 | 7958 | ||
7625 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">118</context></context-group></trans-unit> | 7959 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> |
7626 | <trans-unit id="8603861867909474404" datatype="html"> | 7960 | <trans-unit id="8603861867909474404" datatype="html"> |
7627 | <source>blur</source> | 7961 | <source>blur</source> |
7628 | <target>طمس</target> | 7962 | <target>طمس</target> |
7629 | 7963 | ||
7630 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> | 7964 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> |
7631 | <trans-unit id="4534458451100881847" datatype="html"> | 7965 | <trans-unit id="4534458451100881847" datatype="html"> |
7632 | <source>display</source> | 7966 | <source>display</source> |
7633 | <target>عرض</target> | 7967 | <target>عرض</target> |
7634 | 7968 | ||
7635 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> | 7969 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">127</context></context-group></trans-unit> |
7636 | <trans-unit id="4467323362722952678" datatype="html"> | 7970 | <trans-unit id="4467323362722952678" datatype="html"> |
7637 | <source>Unknown</source> | 7971 | <source>Unknown</source> |
7638 | <target>مجهول</target> | 7972 | <target>مجهول</target> |
7639 | 7973 | ||
7640 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">190</context></context-group></trans-unit> | 7974 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">193</context></context-group></trans-unit> |
7641 | <trans-unit id="7939914198003891823" datatype="html"> | 7975 | <trans-unit id="7939914198003891823" datatype="html"> |
7642 | <source>any language</source> | 7976 | <source>any language</source> |
7643 | <target>أي لغة</target> | 7977 | <target>أي لغة</target> |
7644 | 7978 | ||
7645 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">202</context></context-group></trans-unit> | 7979 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">229</context></context-group></trans-unit> |
7646 | <trans-unit id="9178182467454450952" datatype="html"> | 7980 | <trans-unit id="9178182467454450952" datatype="html"> |
7647 | <source>Confirm</source> | 7981 | <source>Confirm</source> |
7648 | <target>تأكيد</target> | 7982 | <target>تأكيد</target> |
@@ -8395,47 +8729,47 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8395 | <source>Emphasis</source> | 8729 | <source>Emphasis</source> |
8396 | <target>تشديد</target> | 8730 | <target>تشديد</target> |
8397 | 8731 | ||
8398 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">77</context></context-group></trans-unit> | 8732 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> |
8399 | <trans-unit id="7565716024468232322" datatype="html"> | 8733 | <trans-unit id="7565716024468232322" datatype="html"> |
8400 | <source>Links</source> | 8734 | <source>Links</source> |
8401 | <target>الروابط</target> | 8735 | <target>الروابط</target> |
8402 | 8736 | ||
8403 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">78</context></context-group></trans-unit> | 8737 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> |
8404 | <trans-unit id="7838476952710404110" datatype="html"> | 8738 | <trans-unit id="7838476952710404110" datatype="html"> |
8405 | <source>New lines</source> | 8739 | <source>New lines</source> |
8406 | <target>أسطر جديدة</target> | 8740 | <target>أسطر جديدة</target> |
8407 | 8741 | ||
8408 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 8742 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">83</context></context-group></trans-unit> |
8409 | <trans-unit id="8756167649220050929" datatype="html"> | 8743 | <trans-unit id="8756167649220050929" datatype="html"> |
8410 | <source>Lists</source> | 8744 | <source>Lists</source> |
8411 | <target>القوائم</target> | 8745 | <target>القوائم</target> |
8412 | 8746 | ||
8413 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">80</context></context-group></trans-unit> | 8747 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">84</context></context-group></trans-unit> |
8414 | <trans-unit id="414887388288176527" datatype="html"> | 8748 | <trans-unit id="414887388288176527" datatype="html"> |
8415 | <source>Images</source> | 8749 | <source>Images</source> |
8416 | <target>الصور</target> | 8750 | <target>الصور</target> |
8417 | 8751 | ||
8418 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> | 8752 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">85</context></context-group></trans-unit> |
8419 | <trans-unit id="2439066254855913806" datatype="html"> | 8753 | <trans-unit id="2439066254855913806" datatype="html"> |
8420 | <source>Only I can see this video</source> | 8754 | <source>Only I can see this video</source> |
8421 | <target>فقط يمكنني مشاهدة هذا الفيديو</target> | 8755 | <target>فقط يمكنني مشاهدة هذا الفيديو</target> |
8422 | 8756 | ||
8423 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">340</context></context-group></trans-unit> | 8757 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">341</context></context-group></trans-unit> |
8424 | <trans-unit id="6767380569816110388" datatype="html"> | 8758 | <trans-unit id="6767380569816110388" datatype="html"> |
8425 | <source>Only shareable via a private link</source> | 8759 | <source>Only shareable via a private link</source> |
8426 | <target state="new">Only shareable via a private link</target> | 8760 | <target state="new">Only shareable via a private link</target> |
8427 | 8761 | ||
8428 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">344</context></context-group></trans-unit> | 8762 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">345</context></context-group></trans-unit> |
8429 | <trans-unit id="6828965264297239528" datatype="html"> | 8763 | <trans-unit id="6828965264297239528" datatype="html"> |
8430 | <source>Anyone can see this video</source> | 8764 | <source>Anyone can see this video</source> |
8431 | <target>يمكن لأي شخص أن يرى هذا الفيديو</target> | 8765 | <target>يمكن لأي شخص أن يرى هذا الفيديو</target> |
8432 | 8766 | ||
8433 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">348</context></context-group></trans-unit> | 8767 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">349</context></context-group></trans-unit> |
8434 | <trans-unit id="1425933035739773115" datatype="html"> | 8768 | <trans-unit id="1425933035739773115" datatype="html"> |
8435 | <source>Only users of this instance can see this video</source> | 8769 | <source>Only users of this instance can see this video</source> |
8436 | <target>يمكن لمستخدمي هذا المنصة فقط مشاهدة هذا الفيديو</target> | 8770 | <target>يمكن لمستخدمي هذا المنصة فقط مشاهدة هذا الفيديو</target> |
8437 | 8771 | ||
8438 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">352</context></context-group></trans-unit> | 8772 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">353</context></context-group></trans-unit> |
8439 | <trans-unit id="7390990800435887351" datatype="html"> | 8773 | <trans-unit id="7390990800435887351" datatype="html"> |
8440 | <source>Account <x id="PH"/> unmuted.</source> | 8774 | <source>Account <x id="PH"/> unmuted.</source> |
8441 | <target>Account | 8775 | <target>Account |
@@ -8921,9 +9255,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8921 | 9255 | ||
8922 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> | 9256 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> |
8923 | <source>Report</source><target state="new">Report</target> | 9257 | <source>Report</source><target state="new">Report</target> |
9258 | |||
9259 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="4814285799071780083" datatype="html"> | ||
9260 | <source>Remove</source><target state="new">Remove</target> | ||
8924 | <context-group purpose="location"> | 9261 | <context-group purpose="location"> |
8925 | <context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> | 9262 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> |
8926 | <context context-type="linenumber">286</context> | 9263 | <context context-type="linenumber">179</context> |
9264 | </context-group> | ||
9265 | </trans-unit><trans-unit id="6871668720687277843" datatype="html"> | ||
9266 | <source>Remove & re-draft</source><target state="new">Remove & re-draft</target> | ||
9267 | <context-group purpose="location"> | ||
9268 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> | ||
9269 | <context context-type="linenumber">187</context> | ||
8927 | </context-group> | 9270 | </context-group> |
8928 | </trans-unit> | 9271 | </trans-unit> |
8929 | <trans-unit id="346270517625845962" datatype="html"> | 9272 | <trans-unit id="346270517625845962" datatype="html"> |
diff --git a/client/src/locale/angular.ca-ES.xlf b/client/src/locale/angular.ca-ES.xlf index f7d5bd939..4e62ae5a8 100644 --- a/client/src/locale/angular.ca-ES.xlf +++ b/client/src/locale/angular.ca-ES.xlf | |||
@@ -291,7 +291,7 @@ | |||
291 | <target state="translated">Opcions</target> | 291 | <target state="translated">Opcions</target> |
292 | 292 | ||
293 | 293 | ||
294 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 294 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">48</context></context-group></trans-unit> |
295 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d" datatype="html"> | 295 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d" datatype="html"> |
296 | <source>Start at</source> | 296 | <source>Start at</source> |
297 | <target state="translated">Comença a</target> | 297 | <target state="translated">Comença a</target> |
@@ -421,7 +421,7 @@ | |||
421 | <source>Cancel</source> | 421 | <source>Cancel</source> |
422 | <target state="translated">Cancel·lar</target> | 422 | <target state="translated">Cancel·lar</target> |
423 | 423 | ||
424 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> | 424 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit> |
425 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd"> | 425 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd"> |
426 | <source>Download</source> | 426 | <source>Download</source> |
427 | <target>Baixa</target> | 427 | <target>Baixa</target> |
@@ -536,7 +536,7 @@ | |||
536 | 536 | ||
537 | 537 | ||
538 | 538 | ||
539 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 539 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
540 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc" datatype="html"> | 540 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc" datatype="html"> |
541 | <source>Edit starts/stops at</source> | 541 | <source>Edit starts/stops at</source> |
542 | <target state="translated">Edita iniciar/parar a</target> | 542 | <target state="translated">Edita iniciar/parar a</target> |
@@ -576,7 +576,7 @@ | |||
576 | 576 | ||
577 | 577 | ||
578 | 578 | ||
579 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> | 579 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
580 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> | 580 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> |
581 | <source>Edit</source> | 581 | <source>Edit</source> |
582 | <target>Editar</target> | 582 | <target>Editar</target> |
@@ -601,17 +601,10 @@ | |||
601 | <target>Vista prèvia completa</target> | 601 | <target>Vista prèvia completa</target> |
602 | 602 | ||
603 | <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></trans-unit> | 603 | <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></trans-unit> |
604 | <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f"> | 604 | <trans-unit id="8644431249513874405" datatype="html"> |
605 | <source>Get help</source> | ||
606 | <target>Obtenir ajuda</target> | ||
607 | |||
608 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit><trans-unit id="8644431249513874405" datatype="html"> | ||
609 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> | 605 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> |
610 | <context-group purpose="location"> | 606 | |
611 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 607 | <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></trans-unit> |
612 | <context context-type="linenumber">71</context> | ||
613 | </context-group> | ||
614 | </trans-unit> | ||
615 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> | 608 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> |
616 | <source>Recommended</source> | 609 | <source>Recommended</source> |
617 | <target state="new">Recommended</target> | 610 | <target state="new">Recommended</target> |
@@ -651,7 +644,7 @@ | |||
651 | <source>PROFILE SETTINGS</source> | 644 | <source>PROFILE SETTINGS</source> |
652 | <target state="new">PROFILE SETTINGS</target> | 645 | <target state="new">PROFILE SETTINGS</target> |
653 | 646 | ||
654 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 647 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">12</context></context-group></trans-unit> |
655 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3" datatype="html"> | 648 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3" datatype="html"> |
656 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> | 649 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> |
657 | <target state="translated"> | 650 | <target state="translated"> |
@@ -816,11 +809,8 @@ | |||
816 | 809 | ||
817 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> | 810 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> |
818 | <source>User</source><target state="new">User</target> | 811 | <source>User</source><target state="new">User</target> |
819 | <context-group purpose="location"> | 812 | |
820 | <context context-type="sourcefile">../app/core/users/user.service.ts</context> | 813 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit> |
821 | <context context-type="linenumber">384</context> | ||
822 | </context-group> | ||
823 | </trans-unit> | ||
824 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0" datatype="html"> | 814 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0" datatype="html"> |
825 | <source>Ban</source> | 815 | <source>Ban</source> |
826 | <target state="translated">Prohibició</target> | 816 | <target state="translated">Prohibició</target> |
@@ -1296,89 +1286,89 @@ The link will expire within 1 hour.</target> | |||
1296 | <source>Account settings</source> | 1286 | <source>Account settings</source> |
1297 | <target state="new">Account settings</target> | 1287 | <target state="new">Account settings</target> |
1298 | 1288 | ||
1299 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 1289 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
1300 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> | 1290 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> |
1301 | <source>Channels settings</source> | 1291 | <source>Channels settings</source> |
1302 | <target state="new">Channels settings</target> | 1292 | <target state="new">Channels settings</target> |
1303 | 1293 | ||
1304 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 1294 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> |
1305 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> | 1295 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> |
1306 | <source>Interface:</source> | 1296 | <source>Interface:</source> |
1307 | <target state="new">Interface:</target> | 1297 | <target state="new">Interface:</target> |
1308 | 1298 | ||
1309 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 1299 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1310 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> | 1300 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> |
1311 | <source>Videos:</source> | 1301 | <source>Videos:</source> |
1312 | <target state="new">Videos:</target> | 1302 | <target state="new">Videos:</target> |
1313 | 1303 | ||
1314 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 1304 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> |
1315 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> | 1305 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> |
1316 | <source>Sensitive:</source> | 1306 | <source>Sensitive:</source> |
1317 | <target state="new">Sensitive:</target> | 1307 | <target state="new">Sensitive:</target> |
1318 | 1308 | ||
1319 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 1309 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">54</context></context-group></trans-unit> |
1320 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1310 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> |
1321 | <source>Interface: <x id="INTERPOLATION"/></source> | 1311 | <source>Interface: <x id="INTERPOLATION"/></source> |
1322 | <target state="new">Interface: | 1312 | <target state="new">Interface: |
1323 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> | 1313 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> |
1324 | </target> | 1314 | </target> |
1325 | 1315 | ||
1326 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">156</context></context-group></trans-unit> | 1316 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> |
1327 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1317 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1328 | <source>Help share videos</source> | 1318 | <source>Help share videos</source> |
1329 | <target state="new">Help share videos</target> | 1319 | <target state="new">Help share videos</target> |
1330 | 1320 | ||
1331 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> | 1321 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
1332 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> | 1322 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> |
1333 | <source>More account settings</source> | 1323 | <source>More account settings</source> |
1334 | <target state="new">More account settings</target> | 1324 | <target state="new">More account settings</target> |
1335 | 1325 | ||
1336 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> | 1326 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> |
1337 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> | 1327 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> |
1338 | <source>Keyboard shortcuts</source> | 1328 | <source>Keyboard shortcuts</source> |
1339 | <target state="new">Keyboard shortcuts</target> | 1329 | <target state="new">Keyboard shortcuts</target> |
1340 | 1330 | ||
1341 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 1331 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">72</context></context-group></trans-unit> |
1342 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> | 1332 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> |
1343 | <source>Help</source> | 1333 | <source>Help</source> |
1344 | <target state="new">Help</target> | 1334 | <target state="new">Help</target> |
1345 | 1335 | ||
1346 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1336 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1347 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> | 1337 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> |
1348 | <source>Get help using PeerTube</source> | 1338 | <source>Get help using PeerTube</source> |
1349 | <target state="new">Get help using PeerTube</target> | 1339 | <target state="new">Get help using PeerTube</target> |
1350 | 1340 | ||
1351 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">161</context></context-group></trans-unit> | 1341 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">167</context></context-group></trans-unit> |
1352 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> | 1342 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> |
1353 | <source>Shortcuts</source> | 1343 | <source>Shortcuts</source> |
1354 | <target state="new">Shortcuts</target> | 1344 | <target state="new">Shortcuts</target> |
1355 | 1345 | ||
1356 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1346 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1357 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> | 1347 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> |
1358 | <source>powered by PeerTube</source> | 1348 | <source>powered by PeerTube</source> |
1359 | <target state="new">powered by PeerTube</target> | 1349 | <target state="new">powered by PeerTube</target> |
1360 | 1350 | ||
1361 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | 1351 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">177</context></context-group></trans-unit> |
1362 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> | 1352 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> |
1363 | <source>powered by PeerTube - CopyLeft 2015-2020</source> | 1353 | <source>powered by PeerTube - CopyLeft 2015-2020</source> |
1364 | <target state="new">powered by PeerTube - CopyLeft 2015-2020</target> | 1354 | <target state="new">powered by PeerTube - CopyLeft 2015-2020</target> |
1365 | 1355 | ||
1366 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> | 1356 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">176</context></context-group></trans-unit> |
1367 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344" datatype="html"> | 1357 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344" datatype="html"> |
1368 | <source>Log out</source> | 1358 | <source>Log out</source> |
1369 | <target state="new">Log out</target> | 1359 | <target state="new">Log out</target> |
1370 | 1360 | ||
1371 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">70</context></context-group></trans-unit> | 1361 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit> |
1372 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> | 1362 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> |
1373 | <source>Create an account</source> | 1363 | <source>Create an account</source> |
1374 | <target>Registrar un compte</target> | 1364 | <target>Registrar un compte</target> |
1375 | 1365 | ||
1376 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">78</context></context-group></trans-unit> | 1366 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
1377 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> | 1367 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> |
1378 | <source>MY LIBRARY</source> | 1368 | <source>MY LIBRARY</source> |
1379 | <target state="new">MY LIBRARY</target> | 1369 | <target state="new">MY LIBRARY</target> |
1380 | 1370 | ||
1381 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 1371 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">88</context></context-group></trans-unit> |
1382 | <trans-unit id="6371572688505952303" datatype="html"> | 1372 | <trans-unit id="6371572688505952303" datatype="html"> |
1383 | <source>My library</source> | 1373 | <source>My library</source> |
1384 | <target state="new">My library</target> | 1374 | <target state="new">My library</target> |
@@ -1418,22 +1408,22 @@ The link will expire within 1 hour.</target> | |||
1418 | <source>Videos</source> | 1408 | <source>Videos</source> |
1419 | <target>Vídeos</target> | 1409 | <target>Vídeos</target> |
1420 | 1410 | ||
1421 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">86</context></context-group></trans-unit> | 1411 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">92</context></context-group></trans-unit> |
1422 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> | 1412 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> |
1423 | <source>Playlists</source> | 1413 | <source>Playlists</source> |
1424 | <target state="new">Playlists</target> | 1414 | <target state="new">Playlists</target> |
1425 | 1415 | ||
1426 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">91</context></context-group></trans-unit> | 1416 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">97</context></context-group></trans-unit> |
1427 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2" datatype="html"> | 1417 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2" datatype="html"> |
1428 | <source>Subscriptions</source> | 1418 | <source>Subscriptions</source> |
1429 | <target state="new">Subscriptions</target> | 1419 | <target state="new">Subscriptions</target> |
1430 | 1420 | ||
1431 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 1421 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">102</context></context-group></trans-unit> |
1432 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8" datatype="html"> | 1422 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8" datatype="html"> |
1433 | <source>History</source> | 1423 | <source>History</source> |
1434 | <target state="new">History</target> | 1424 | <target state="new">History</target> |
1435 | 1425 | ||
1436 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit> | 1426 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">107</context></context-group></trans-unit> |
1437 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> | 1427 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> |
1438 | <source>VIDEOS</source> | 1428 | <source>VIDEOS</source> |
1439 | <target state="new">VIDEOS</target> | 1429 | <target state="new">VIDEOS</target> |
@@ -1445,27 +1435,27 @@ The link will expire within 1 hour.</target> | |||
1445 | <target state="translated">Descobreix</target> | 1435 | <target state="translated">Descobreix</target> |
1446 | 1436 | ||
1447 | 1437 | ||
1448 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">111</context></context-group></trans-unit> | 1438 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">117</context></context-group></trans-unit> |
1449 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> | 1439 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> |
1450 | <source>Trending</source> | 1440 | <source>Trending</source> |
1451 | <target>Tendències</target> | 1441 | <target>Tendències</target> |
1452 | 1442 | ||
1453 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">116</context></context-group></trans-unit> | 1443 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">122</context></context-group></trans-unit> |
1454 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> | 1444 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> |
1455 | <source>Most liked</source> | 1445 | <source>Most liked</source> |
1456 | <target state="new">Most liked</target> | 1446 | <target state="new">Most liked</target> |
1457 | 1447 | ||
1458 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">121</context></context-group></trans-unit> | 1448 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">127</context></context-group></trans-unit> |
1459 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> | 1449 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> |
1460 | <source>Recently added</source> | 1450 | <source>Recently added</source> |
1461 | <target>Afegits fa poc</target> | 1451 | <target>Afegits fa poc</target> |
1462 | 1452 | ||
1463 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">126</context></context-group></trans-unit> | 1453 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">132</context></context-group></trans-unit> |
1464 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> | 1454 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> |
1465 | <source>Administration</source> | 1455 | <source>Administration</source> |
1466 | <target>Administració</target> | 1456 | <target>Administració</target> |
1467 | 1457 | ||
1468 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">140</context></context-group></trans-unit> | 1458 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">146</context></context-group></trans-unit> |
1469 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> | 1459 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> |
1470 | <source>About</source> | 1460 | <source>About</source> |
1471 | <target>Quant a</target> | 1461 | <target>Quant a</target> |
@@ -1476,7 +1466,7 @@ The link will expire within 1 hour.</target> | |||
1476 | <source>Contact</source> | 1466 | <source>Contact</source> |
1477 | <target state="new">Contact</target> | 1467 | <target state="new">Contact</target> |
1478 | 1468 | ||
1479 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">160</context></context-group></trans-unit> | 1469 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">166</context></context-group></trans-unit> |
1480 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771" datatype="html"> | 1470 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771" datatype="html"> |
1481 | <source>View your notifications</source> | 1471 | <source>View your notifications</source> |
1482 | <target state="new">View your notifications</target> | 1472 | <target state="new">View your notifications</target> |
@@ -1503,7 +1493,7 @@ The link will expire within 1 hour.</target> | |||
1503 | <source>See all your notifications</source> | 1493 | <source>See all your notifications</source> |
1504 | <target state="new">See all your notifications</target> | 1494 | <target state="new">See all your notifications</target> |
1505 | 1495 | ||
1506 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 1496 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">40</context></context-group></trans-unit> |
1507 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> | 1497 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> |
1508 | <source>Search videos, channels…</source> | 1498 | <source>Search videos, channels…</source> |
1509 | <target state="new">Search videos, channels…</target> | 1499 | <target state="new">Search videos, channels…</target> |
@@ -1837,22 +1827,22 @@ The link will expire within 1 hour.</target> | |||
1837 | <source>FAQ</source> | 1827 | <source>FAQ</source> |
1838 | <target state="new">FAQ</target> | 1828 | <target state="new">FAQ</target> |
1839 | 1829 | ||
1840 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">163</context></context-group></trans-unit> | 1830 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
1841 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> | 1831 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> |
1842 | <source>Frequently asked questions about PeerTube</source> | 1832 | <source>Frequently asked questions about PeerTube</source> |
1843 | <target state="new">Frequently asked questions about PeerTube</target> | 1833 | <target state="new">Frequently asked questions about PeerTube</target> |
1844 | 1834 | ||
1845 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1835 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1846 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> | 1836 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> |
1847 | <source>API</source> | 1837 | <source>API</source> |
1848 | <target state="new">API</target> | 1838 | <target state="new">API</target> |
1849 | 1839 | ||
1850 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1840 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1851 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> | 1841 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> |
1852 | <source>API documentation</source> | 1842 | <source>API documentation</source> |
1853 | <target state="new">API documentation</target> | 1843 | <target state="new">API documentation</target> |
1854 | 1844 | ||
1855 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 1845 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
1856 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5"> | 1846 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5"> |
1857 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> | 1847 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> |
1858 | <target>Programa la publicació ( | 1848 | <target>Programa la publicació ( |
@@ -2229,7 +2219,13 @@ The link will expire within 1 hour.</target> | |||
2229 | Less customization | 2219 | Less customization |
2230 | </target> | 2220 | </target> |
2231 | 2221 | ||
2232 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit> | 2222 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit><trans-unit id="2454050363478003966" datatype="html"> |
2223 | <source>Login</source><target state="new">Login</target> | ||
2224 | <context-group purpose="location"> | ||
2225 | <context context-type="sourcefile">../app/+login/login-routing.module.ts</context> | ||
2226 | <context context-type="linenumber">14</context> | ||
2227 | </context-group> | ||
2228 | </trans-unit> | ||
2233 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e" datatype="html"> | 2229 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e" datatype="html"> |
2234 | <source>Autoplay</source> | 2230 | <source>Autoplay</source> |
2235 | <target state="new">Autoplay</target> | 2231 | <target state="new">Autoplay</target> |
@@ -2494,7 +2490,7 @@ The link will expire within 1 hour.</target> | |||
2494 | <source>No comments.</source> | 2490 | <source>No comments.</source> |
2495 | <target>Cap comentari.</target> | 2491 | <target>Cap comentari.</target> |
2496 | 2492 | ||
2497 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 2493 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> |
2498 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> | 2494 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> |
2499 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> | 2495 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> |
2500 | <target state="new"> | 2496 | <target state="new"> |
@@ -2504,7 +2500,7 @@ The link will expire within 1 hour.</target> | |||
2504 | 2500 | ||
2505 | </target> | 2501 | </target> |
2506 | 2502 | ||
2507 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">79</context></context-group></trans-unit> | 2503 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
2508 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> | 2504 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> |
2509 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> | 2505 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> |
2510 | <target state="new"> | 2506 | <target state="new"> |
@@ -2513,50 +2509,116 @@ The link will expire within 1 hour.</target> | |||
2513 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> | 2509 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> |
2514 | </target> | 2510 | </target> |
2515 | 2511 | ||
2516 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 2512 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">87</context></context-group></trans-unit> |
2517 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> | 2513 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> |
2518 | <source>View <x id="INTERPOLATION"/> replies</source> | 2514 | <source>View <x id="INTERPOLATION"/> replies</source> |
2519 | <target state="new">View | 2515 | <target state="new">View |
2520 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies | 2516 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies |
2521 | </target> | 2517 | </target> |
2522 | 2518 | ||
2523 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">85</context></context-group></trans-unit> | 2519 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">90</context></context-group></trans-unit> |
2524 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828"> | 2520 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828"> |
2525 | <source>Comments are disabled.</source> | 2521 | <source>Comments are disabled.</source> |
2526 | <target> | 2522 | <target> |
2527 | Els comentaris estan desactivats. | 2523 | Els comentaris estan desactivats. |
2528 | </target> | 2524 | </target> |
2529 | 2525 | ||
2530 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit><trans-unit id="3691787517663044217" datatype="html"> | 2526 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit><trans-unit id="3691787517663044217" datatype="html"> |
2531 | <source> The deletion will be sent to remote instances so they can reflect the change.</source><target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> | 2527 | <source> The deletion will be sent to remote instances so they can reflect the change.</source><target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> |
2528 | |||
2529 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">169</context></context-group></trans-unit><trans-unit id="7321800851971795962" datatype="html"> | ||
2530 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source><target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> | ||
2531 | |||
2532 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="5964038603724691720" datatype="html"> | ||
2533 | <source>Delete and re-draft</source><target state="new">Delete and re-draft</target> | ||
2532 | <context-group purpose="location"> | 2534 | <context-group purpose="location"> |
2533 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | 2535 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> |
2534 | <context context-type="linenumber">163</context> | 2536 | <context context-type="linenumber">197</context> |
2535 | </context-group> | 2537 | </context-group> |
2536 | </trans-unit><trans-unit id="7321800851971795962" datatype="html"> | 2538 | </trans-unit><trans-unit id="7163633882758007711" datatype="html"> |
2537 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source><target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> | 2539 | <source>Do you really want to delete and re-draft this comment?</source><target state="new">Do you really want to delete and re-draft this comment?</target> |
2538 | <context-group purpose="location"> | 2540 | <context-group purpose="location"> |
2539 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | 2541 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> |
2540 | <context context-type="linenumber">165</context> | 2542 | <context context-type="linenumber">197</context> |
2541 | </context-group> | 2543 | </context-group> |
2542 | </trans-unit> | 2544 | </trans-unit> |
2543 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e"> | 2545 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e"> |
2544 | <source>Add comment...</source> | 2546 | <source>Add comment...</source> |
2545 | <target>Afegeix un comentari...</target> | 2547 | <target>Afegeix un comentari...</target> |
2546 | 2548 | ||
2547 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | 2549 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit><trans-unit id="4e5254dedf0c12ce7e7c2197384fceebe3b29a2b" datatype="html"> |
2548 | <trans-unit id="8956c0f4c6974289fc63f1ab6b54f5b32ed65eeb" datatype="html"> | 2550 | <source>Markdown compatible</source><target state="new">Markdown compatible</target> |
2549 | <source>Reply</source> | 2551 | <context-group purpose="location"> |
2550 | <target state="new"> | 2552 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> |
2551 | Reply | 2553 | <context context-type="linenumber">13</context> |
2552 | </target> | 2554 | </context-group> |
2553 | 2555 | </trans-unit><trans-unit id="4739ffad85f09defefdb6e51b45f43b2ef7c4388" datatype="html"> | |
2554 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 2556 | <source>Markdown compatible that supports:</source><target state="new">Markdown compatible that supports:</target> |
2557 | <context-group purpose="location"> | ||
2558 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2559 | <context context-type="linenumber">15</context> | ||
2560 | </context-group> | ||
2561 | </trans-unit><trans-unit id="9a53b17a021bb0677c156fd893461797fc497a10" datatype="html"> | ||
2562 | <source>Auto generated links</source><target state="new">Auto generated links</target> | ||
2563 | <context-group purpose="location"> | ||
2564 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2565 | <context context-type="linenumber">18</context> | ||
2566 | </context-group> | ||
2567 | </trans-unit><trans-unit id="664f99b8919d6dd2faa1c1f7c378aa86d1be5e8a" datatype="html"> | ||
2568 | <source>Break lines</source><target state="new">Break lines</target> | ||
2569 | <context-group purpose="location"> | ||
2570 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2571 | <context context-type="linenumber">19</context> | ||
2572 | </context-group> | ||
2573 | </trans-unit><trans-unit id="b15e7bec5c7833d2d9634946ccbed68967b1bee1" datatype="html"> | ||
2574 | <source>Lists</source><target state="new">Lists</target> | ||
2575 | <context-group purpose="location"> | ||
2576 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2577 | <context context-type="linenumber">20</context> | ||
2578 | </context-group> | ||
2579 | </trans-unit><trans-unit id="ab4426b60f13c00b61d6b714d390dc629f314980" datatype="html"> | ||
2580 | <source>Emphasis</source><target state="new">Emphasis</target> | ||
2581 | <context-group purpose="location"> | ||
2582 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2583 | <context context-type="linenumber">22</context> | ||
2584 | </context-group> | ||
2585 | </trans-unit><trans-unit id="4e13b179501d3d32721037e03b4c04acb9857c5f" datatype="html"> | ||
2586 | <source>bold</source><target state="new">bold</target> | ||
2587 | <context-group purpose="location"> | ||
2588 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2589 | <context context-type="linenumber">23</context> | ||
2590 | </context-group> | ||
2591 | </trans-unit><trans-unit id="3c12190421fbb2756e6bbead923df9ec5de8ede2" datatype="html"> | ||
2592 | <source>italic</source><target state="new">italic</target> | ||
2593 | <context-group purpose="location"> | ||
2594 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2595 | <context context-type="linenumber">23</context> | ||
2596 | </context-group> | ||
2597 | </trans-unit><trans-unit id="adb4bbdcb961b8aac8298d6cac554d9b25636b7a" datatype="html"> | ||
2598 | <source>Emoji shortcuts</source><target state="new">Emoji shortcuts</target> | ||
2599 | <context-group purpose="location"> | ||
2600 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2601 | <context context-type="linenumber">26</context> | ||
2602 | </context-group> | ||
2603 | </trans-unit><trans-unit id="b9809a21a8eb3c9db2a0282c5dd94bc221575c96" datatype="html"> | ||
2604 | <source>Emoji markup</source><target state="new">Emoji markup</target> | ||
2605 | <context-group purpose="location"> | ||
2606 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2607 | <context context-type="linenumber">30</context> | ||
2608 | </context-group> | ||
2609 | </trans-unit><trans-unit id="f37feb427aaa551edd1f22616be6464bc0d492de" datatype="html"> | ||
2610 | <source>See complete list</source><target state="new">See complete list</target> | ||
2611 | <context-group purpose="location"> | ||
2612 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2613 | <context context-type="linenumber">32</context> | ||
2614 | </context-group> | ||
2615 | </trans-unit> | ||
2616 | |||
2555 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135" datatype="html"> | 2617 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135" datatype="html"> |
2556 | <source>You are one step away from commenting</source> | 2618 | <source>You are one step away from commenting</source> |
2557 | <target state="new">You are one step away from commenting</target> | 2619 | <target state="new">You are one step away from commenting</target> |
2558 | 2620 | ||
2559 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 2621 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
2560 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> | 2622 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> |
2561 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> | 2623 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> |
2562 | <target state="new"> | 2624 | <target state="new"> |
@@ -2565,19 +2627,37 @@ The link will expire within 1 hour.</target> | |||
2565 | from within the software's interface. | 2627 | from within the software's interface. |
2566 | </target> | 2628 | </target> |
2567 | 2629 | ||
2568 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 2630 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
2569 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb" datatype="html"> | 2631 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb" datatype="html"> |
2570 | <source>If you have an account on Mastodon or Pleroma, you can open it directly in their interface:</source> | 2632 | <source>If you have an account on Mastodon or Pleroma, you can open it directly in their interface:</source> |
2571 | <target state="new"> | 2633 | <target state="new"> |
2572 | If you have an account on Mastodon or Pleroma, you can open it directly in their interface: | 2634 | If you have an account on Mastodon or Pleroma, you can open it directly in their interface: |
2573 | </target> | 2635 | </target> |
2574 | 2636 | ||
2575 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">41</context></context-group></trans-unit> | 2637 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">65</context></context-group></trans-unit> |
2576 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> | 2638 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> |
2577 | <source>Login to comment</source> | 2639 | <source>Login to comment</source> |
2578 | <target state="new">Login to comment</target> | 2640 | <target state="new">Login to comment</target> |
2579 | 2641 | ||
2580 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">52</context></context-group></trans-unit> | 2642 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit><trans-unit id="974170f455ff5a9034d5737e84b4194c0046fc6b" datatype="html"> |
2643 | <source>Markdown Emoji List</source><target state="new">Markdown Emoji List</target> | ||
2644 | <context-group purpose="location"> | ||
2645 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2646 | <context context-type="linenumber">84</context> | ||
2647 | </context-group> | ||
2648 | </trans-unit><trans-unit id="2662644497259948010" datatype="html"> | ||
2649 | <source>Comment</source><target state="new">Comment</target> | ||
2650 | <context-group purpose="location"> | ||
2651 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2652 | <context context-type="linenumber">58</context> | ||
2653 | </context-group> | ||
2654 | </trans-unit><trans-unit id="4502286564339177240" datatype="html"> | ||
2655 | <source>Reply</source><target state="new">Reply</target> | ||
2656 | <context-group purpose="location"> | ||
2657 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2658 | <context context-type="linenumber">60</context> | ||
2659 | </context-group> | ||
2660 | </trans-unit> | ||
2581 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285"> | 2661 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285"> |
2582 | <source>Highlighted comment</source> | 2662 | <source>Highlighted comment</source> |
2583 | <target>Comentari destacat</target> | 2663 | <target>Comentari destacat</target> |
@@ -2592,7 +2672,7 @@ The link will expire within 1 hour.</target> | |||
2592 | <source>This comment has been deleted</source> | 2672 | <source>This comment has been deleted</source> |
2593 | <target state="new">This comment has been deleted</target> | 2673 | <target state="new">This comment has been deleted</target> |
2594 | 2674 | ||
2595 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">62</context></context-group></trans-unit> | 2675 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">61</context></context-group></trans-unit> |
2596 | <trans-unit id="9031514421077169181" datatype="html"> | 2676 | <trans-unit id="9031514421077169181" datatype="html"> |
2597 | <source>Video redundancies</source> | 2677 | <source>Video redundancies</source> |
2598 | <target state="new">Video redundancies</target> | 2678 | <target state="new">Video redundancies</target> |
@@ -3441,7 +3521,25 @@ The link will expire within 1 hour.</target> | |||
3441 | <target state="new">No account found.</target> | 3521 | <target state="new">No account found.</target> |
3442 | 3522 | ||
3443 | 3523 | ||
3444 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit> | 3524 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit><trans-unit id="2338185419645468935" datatype="html"> |
3525 | <source>List installed plugins</source><target state="new">List installed plugins</target> | ||
3526 | <context-group purpose="location"> | ||
3527 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3528 | <context context-type="linenumber">28</context> | ||
3529 | </context-group> | ||
3530 | </trans-unit><trans-unit id="8897412584195581488" datatype="html"> | ||
3531 | <source>Search plugins</source><target state="new">Search plugins</target> | ||
3532 | <context-group purpose="location"> | ||
3533 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3534 | <context context-type="linenumber">37</context> | ||
3535 | </context-group> | ||
3536 | </trans-unit><trans-unit id="4994333937800672218" datatype="html"> | ||
3537 | <source>Show plugin</source><target state="new">Show plugin</target> | ||
3538 | <context-group purpose="location"> | ||
3539 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3540 | <context context-type="linenumber">46</context> | ||
3541 | </context-group> | ||
3542 | </trans-unit> | ||
3445 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> | 3543 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> |
3446 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> | 3544 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> |
3447 | <target state="new">Showing | 3545 | <target state="new">Showing |
@@ -4166,7 +4264,7 @@ The link will expire within 1 hour.</target> | |||
4166 | <source>Administrator</source> | 4264 | <source>Administrator</source> |
4167 | <target>Administrador</target> | 4265 | <target>Administrador</target> |
4168 | 4266 | ||
4169 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">385</context></context-group></trans-unit> | 4267 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">383</context></context-group></trans-unit> |
4170 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587"> | 4268 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587"> |
4171 | <source>Admin email</source> | 4269 | <source>Admin email</source> |
4172 | <target>Correu del Administrador</target> | 4270 | <target>Correu del Administrador</target> |
@@ -4422,27 +4520,27 @@ The link will expire within 1 hour.</target> | |||
4422 | <source>VIDEO SETTINGS</source> | 4520 | <source>VIDEO SETTINGS</source> |
4423 | <target state="new">VIDEO SETTINGS</target> | 4521 | <target state="new">VIDEO SETTINGS</target> |
4424 | 4522 | ||
4425 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit> | 4523 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
4426 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> | 4524 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> |
4427 | <source>NOTIFICATIONS</source> | 4525 | <source>NOTIFICATIONS</source> |
4428 | <target state="new">NOTIFICATIONS</target> | 4526 | <target state="new">NOTIFICATIONS</target> |
4429 | 4527 | ||
4430 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 4528 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">37</context></context-group></trans-unit> |
4431 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> | 4529 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> |
4432 | <source>INTERFACE</source> | 4530 | <source>INTERFACE</source> |
4433 | <target state="new">INTERFACE</target> | 4531 | <target state="new">INTERFACE</target> |
4434 | 4532 | ||
4435 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 4533 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit> |
4436 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> | 4534 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> |
4437 | <source>PASSWORD</source> | 4535 | <source>PASSWORD</source> |
4438 | <target state="new">PASSWORD</target> | 4536 | <target state="new">PASSWORD</target> |
4439 | 4537 | ||
4440 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">59</context></context-group></trans-unit> | 4538 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">57</context></context-group></trans-unit> |
4441 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> | 4539 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> |
4442 | <source>EMAIL</source> | 4540 | <source>EMAIL</source> |
4443 | <target state="new">EMAIL</target> | 4541 | <target state="new">EMAIL</target> |
4444 | 4542 | ||
4445 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">69</context></context-group></trans-unit> | 4543 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">67</context></context-group></trans-unit> |
4446 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> | 4544 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> |
4447 | <source>DANGER ZONE</source> | 4545 | <source>DANGER ZONE</source> |
4448 | <target state="new">DANGER ZONE</target> | 4546 | <target state="new">DANGER ZONE</target> |
@@ -4692,7 +4790,31 @@ The link will expire within 1 hour.</target> | |||
4692 | <source>No ownership change request found.</source> | 4790 | <source>No ownership change request found.</source> |
4693 | <target state="new">No ownership change request found.</target> | 4791 | <target state="new">No ownership change request found.</target> |
4694 | 4792 | ||
4695 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit> | 4793 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit><trans-unit id="4247400351982331798" datatype="html"> |
4794 | <source>Account settings</source><target state="new">Account settings</target> | ||
4795 | <context-group purpose="location"> | ||
4796 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4797 | <context context-type="linenumber">37</context> | ||
4798 | </context-group> | ||
4799 | </trans-unit><trans-unit id="154062590416726309" datatype="html"> | ||
4800 | <source>Account playlists</source><target state="new">Account playlists</target> | ||
4801 | <context-group purpose="location"> | ||
4802 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4803 | <context context-type="linenumber">55</context> | ||
4804 | </context-group> | ||
4805 | </trans-unit><trans-unit id="6550287183367517925" datatype="html"> | ||
4806 | <source>Create new playlist</source><target state="new">Create new playlist</target> | ||
4807 | <context-group purpose="location"> | ||
4808 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4809 | <context context-type="linenumber">64</context> | ||
4810 | </context-group> | ||
4811 | </trans-unit><trans-unit id="2864486939135008600" datatype="html"> | ||
4812 | <source>Playlist elements</source><target state="new">Playlist elements</target> | ||
4813 | <context-group purpose="location"> | ||
4814 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4815 | <context context-type="linenumber">73</context> | ||
4816 | </context-group> | ||
4817 | </trans-unit> | ||
4696 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> | 4818 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> |
4697 | <source>My imports</source> | 4819 | <source>My imports</source> |
4698 | <target state="new">My imports</target> | 4820 | <target state="new">My imports</target> |
@@ -4963,7 +5085,25 @@ The link will expire within 1 hour.</target> | |||
4963 | <source>An error occurred.</source> | 5085 | <source>An error occurred.</source> |
4964 | <target state="new">An error occurred.</target> | 5086 | <target state="new">An error occurred.</target> |
4965 | 5087 | ||
4966 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 5088 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit><trans-unit id="9128669621822125729" datatype="html"> |
5089 | <source>Video channel videos</source><target state="new">Video channel videos</target> | ||
5090 | <context-group purpose="location"> | ||
5091 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5092 | <context context-type="linenumber">25</context> | ||
5093 | </context-group> | ||
5094 | </trans-unit><trans-unit id="3193822049276963401" datatype="html"> | ||
5095 | <source>Video channel playlists</source><target state="new">Video channel playlists</target> | ||
5096 | <context-group purpose="location"> | ||
5097 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5098 | <context context-type="linenumber">38</context> | ||
5099 | </context-group> | ||
5100 | </trans-unit><trans-unit id="4723526509708949088" datatype="html"> | ||
5101 | <source>About video channel</source><target state="new">About video channel</target> | ||
5102 | <context-group purpose="location"> | ||
5103 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5104 | <context context-type="linenumber">47</context> | ||
5105 | </context-group> | ||
5106 | </trans-unit> | ||
4967 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97" datatype="html"> | 5107 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97" datatype="html"> |
4968 | <source>Request email for account verification</source> | 5108 | <source>Request email for account verification</source> |
4969 | <target state="new"> | 5109 | <target state="new"> |
@@ -5082,7 +5222,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5082 | <source>Stats</source> | 5222 | <source>Stats</source> |
5083 | <target>Estadístiques</target> | 5223 | <target>Estadístiques</target> |
5084 | 5224 | ||
5085 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 5225 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
5086 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc"> | 5226 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc"> |
5087 | <source>Joined <x id="INTERPOLATION"/></source> | 5227 | <source>Joined <x id="INTERPOLATION"/></source> |
5088 | <target>Es va unir | 5228 | <target>Es va unir |
@@ -5510,7 +5650,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5510 | <source>This instance does not have instances followings.</source> | 5650 | <source>This instance does not have instances followings.</source> |
5511 | <target state="new">This instance does not have instances followings.</target> | 5651 | <target state="new">This instance does not have instances followings.</target> |
5512 | 5652 | ||
5513 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit> | 5653 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit><trans-unit id="4195286790385468087" datatype="html"> |
5654 | <source>About this instance</source><target state="new">About this instance</target> | ||
5655 | <context-group purpose="location"> | ||
5656 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5657 | <context context-type="linenumber">26</context> | ||
5658 | </context-group> | ||
5659 | </trans-unit><trans-unit id="8773846522957677259" datatype="html"> | ||
5660 | <source>About PeerTube</source><target state="new">About PeerTube</target> | ||
5661 | <context-group purpose="location"> | ||
5662 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5663 | <context context-type="linenumber">38</context> | ||
5664 | </context-group> | ||
5665 | </trans-unit><trans-unit id="5782088737558028158" datatype="html"> | ||
5666 | <source>About follows</source><target state="new">About follows</target> | ||
5667 | <context-group purpose="location"> | ||
5668 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5669 | <context context-type="linenumber">47</context> | ||
5670 | </context-group> | ||
5671 | </trans-unit> | ||
5514 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> | 5672 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> |
5515 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> | 5673 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> |
5516 | <target state="new">Developed with ❤ by | 5674 | <target state="new">Developed with ❤ by |
@@ -5680,6 +5838,12 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5680 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 5838 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> |
5681 | <context context-type="linenumber">1</context> | 5839 | <context context-type="linenumber">1</context> |
5682 | </context-group> | 5840 | </context-group> |
5841 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
5842 | <source>Get help</source><target state="new">Get help</target> | ||
5843 | <context-group purpose="location"> | ||
5844 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | ||
5845 | <context context-type="linenumber">16</context> | ||
5846 | </context-group> | ||
5683 | </trans-unit> | 5847 | </trans-unit> |
5684 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1" datatype="html"> | 5848 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1" datatype="html"> |
5685 | <source>Create my account</source> | 5849 | <source>Create my account</source> |
@@ -5802,7 +5966,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5802 | 5966 | ||
5803 | </target> | 5967 | </target> |
5804 | 5968 | ||
5805 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 5969 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit><trans-unit id="3301086086650990787" datatype="html"> |
5970 | <source>Register</source><target state="new">Register</target> | ||
5971 | <context-group purpose="location"> | ||
5972 | <context context-type="sourcefile">../app/+signup/+register/register-routing.module.ts</context> | ||
5973 | <context context-type="linenumber">14</context> | ||
5974 | </context-group> | ||
5975 | </trans-unit> | ||
5806 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> | 5976 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> |
5807 | <source>Sorry, we couldn't find the page you were looking for.</source> | 5977 | <source>Sorry, we couldn't find the page you were looking for.</source> |
5808 | <target state="new"> | 5978 | <target state="new"> |
@@ -5825,7 +5995,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5825 | <target>Sense descripció</target> | 5995 | <target>Sense descripció</target> |
5826 | 5996 | ||
5827 | 5997 | ||
5828 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit> | 5998 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit><trans-unit id="819067926858619041" datatype="html"> |
5999 | <source>Account videos</source><target state="new">Account videos</target> | ||
6000 | <context-group purpose="location"> | ||
6001 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6002 | <context context-type="linenumber">29</context> | ||
6003 | </context-group> | ||
6004 | </trans-unit><trans-unit id="6823616469362610020" datatype="html"> | ||
6005 | <source>Account video channels</source><target state="new">Account video channels</target> | ||
6006 | <context-group purpose="location"> | ||
6007 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6008 | <context context-type="linenumber">42</context> | ||
6009 | </context-group> | ||
6010 | </trans-unit><trans-unit id="7678273613459026643" datatype="html"> | ||
6011 | <source>About account</source><target state="new">About account</target> | ||
6012 | <context-group purpose="location"> | ||
6013 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6014 | <context context-type="linenumber">51</context> | ||
6015 | </context-group> | ||
6016 | </trans-unit> | ||
5829 | <trans-unit id="3755500631176893489" datatype="html"> | 6017 | <trans-unit id="3755500631176893489" datatype="html"> |
5830 | <source>Published <x id="PH"/> videos</source> | 6018 | <source>Published <x id="PH"/> videos</source> |
5831 | <target state="new">Published | 6019 | <target state="new">Published |
@@ -5942,7 +6130,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5942 | <source>Configuration updated.</source> | 6130 | <source>Configuration updated.</source> |
5943 | <target>S'ha actualitzat la configuració.</target> | 6131 | <target>S'ha actualitzat la configuració.</target> |
5944 | 6132 | ||
5945 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit> | 6133 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit><trans-unit id="6284468333579755406" datatype="html"> |
6134 | <source>Edit custom configuration</source><target state="new">Edit custom configuration</target> | ||
6135 | <context-group purpose="location"> | ||
6136 | <context context-type="sourcefile">../app/+admin/config/config.routes.ts</context> | ||
6137 | <context context-type="linenumber">26</context> | ||
6138 | </context-group> | ||
6139 | </trans-unit> | ||
5946 | 6140 | ||
5947 | 6141 | ||
5948 | <trans-unit id="6549061957433635758" datatype="html"> | 6142 | <trans-unit id="6549061957433635758" datatype="html"> |
@@ -6421,7 +6615,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6421 | <x id="PH"/> updated. | 6615 | <x id="PH"/> updated. |
6422 | </target> | 6616 | </target> |
6423 | 6617 | ||
6424 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 6618 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit><trans-unit id="3229595422546554334" datatype="html"> |
6619 | <source>Jobs</source><target state="new">Jobs</target> | ||
6620 | <context-group purpose="location"> | ||
6621 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6622 | <context context-type="linenumber">26</context> | ||
6623 | </context-group> | ||
6624 | </trans-unit><trans-unit id="4804785061014590286" datatype="html"> | ||
6625 | <source>Logs</source><target state="new">Logs</target> | ||
6626 | <context-group purpose="location"> | ||
6627 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6628 | <context context-type="linenumber">37</context> | ||
6629 | </context-group> | ||
6630 | </trans-unit> | ||
6425 | <trans-unit id="3150704904301058778" datatype="html"> | 6631 | <trans-unit id="3150704904301058778" datatype="html"> |
6426 | <source>The plugin index is not available. Please retry later.</source> | 6632 | <source>The plugin index is not available. Please retry later.</source> |
6427 | <target state="new">The plugin index is not available. Please retry later.</target> | 6633 | <target state="new">The plugin index is not available. Please retry later.</target> |
@@ -6535,6 +6741,18 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6535 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> | 6741 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> |
6536 | <context context-type="linenumber">86</context> | 6742 | <context context-type="linenumber">86</context> |
6537 | </context-group> | 6743 | </context-group> |
6744 | </trans-unit><trans-unit id="2903648076838460070" datatype="html"> | ||
6745 | <source>Videos blocked</source><target state="new">Videos blocked</target> | ||
6746 | <context-group purpose="location"> | ||
6747 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6748 | <context context-type="linenumber">67</context> | ||
6749 | </context-group> | ||
6750 | </trans-unit><trans-unit id="7805059636749367886" datatype="html"> | ||
6751 | <source>Muted instances</source><target state="new">Muted instances</target> | ||
6752 | <context-group purpose="location"> | ||
6753 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6754 | <context context-type="linenumber">89</context> | ||
6755 | </context-group> | ||
6538 | </trans-unit> | 6756 | </trans-unit> |
6539 | <trans-unit id="5974506725502681113" datatype="html"> | 6757 | <trans-unit id="5974506725502681113" datatype="html"> |
6540 | <source>Password changed for user <x id="PH"/>.</source> | 6758 | <source>Password changed for user <x id="PH"/>.</source> |
@@ -6547,7 +6765,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6547 | <source>Update user password</source> | 6765 | <source>Update user password</source> |
6548 | <target state="new">Update user password</target> | 6766 | <target state="new">Update user password</target> |
6549 | 6767 | ||
6550 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit> | 6768 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit><trans-unit id="177544274549739411" datatype="html"> |
6769 | <source>Following list</source><target state="new">Following list</target> | ||
6770 | <context-group purpose="location"> | ||
6771 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6772 | <context context-type="linenumber">28</context> | ||
6773 | </context-group> | ||
6774 | </trans-unit><trans-unit id="8092429110007204784" datatype="html"> | ||
6775 | <source>Followers list</source><target state="new">Followers list</target> | ||
6776 | <context-group purpose="location"> | ||
6777 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6778 | <context context-type="linenumber">37</context> | ||
6779 | </context-group> | ||
6780 | </trans-unit> | ||
6551 | <trans-unit id="780323526182667308" datatype="html"> | 6781 | <trans-unit id="780323526182667308" datatype="html"> |
6552 | <source>User <x id="PH"/> updated.</source> | 6782 | <source>User <x id="PH"/> updated.</source> |
6553 | <target state="new">User | 6783 | <target state="new">User |
@@ -6566,7 +6796,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6566 | <x id="PH"/>. | 6796 | <x id="PH"/>. |
6567 | </target> | 6797 | </target> |
6568 | 6798 | ||
6569 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="8564701209009684429" datatype="html"> | 6799 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="7483807629538115183" datatype="html"> |
6800 | <source>Users list</source><target state="new">Users list</target> | ||
6801 | <context-group purpose="location"> | ||
6802 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6803 | <context context-type="linenumber">27</context> | ||
6804 | </context-group> | ||
6805 | </trans-unit><trans-unit id="1525334987774465166" datatype="html"> | ||
6806 | <source>Create a user</source><target state="new">Create a user</target> | ||
6807 | <context-group purpose="location"> | ||
6808 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6809 | <context context-type="linenumber">36</context> | ||
6810 | </context-group> | ||
6811 | </trans-unit><trans-unit id="5552039423287890133" datatype="html"> | ||
6812 | <source>Update a user</source><target state="new">Update a user</target> | ||
6813 | <context-group purpose="location"> | ||
6814 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6815 | <context context-type="linenumber">48</context> | ||
6816 | </context-group> | ||
6817 | </trans-unit><trans-unit id="8564701209009684429" datatype="html"> | ||
6570 | <source>Federation</source><target state="new">Federation</target> | 6818 | <source>Federation</source><target state="new">Federation</target> |
6571 | <context-group purpose="location"> | 6819 | <context-group purpose="location"> |
6572 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> | 6820 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> |
@@ -6920,7 +7168,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6920 | <source>Views for the day</source> | 7168 | <source>Views for the day</source> |
6921 | <target state="new">Views for the day</target> | 7169 | <target state="new">Views for the day</target> |
6922 | 7170 | ||
6923 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit> | 7171 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit><trans-unit id="4707367314920217630" datatype="html"> |
7172 | <source>Create new video channel</source><target state="new">Create new video channel</target> | ||
7173 | <context-group purpose="location"> | ||
7174 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7175 | <context context-type="linenumber">22</context> | ||
7176 | </context-group> | ||
7177 | </trans-unit><trans-unit id="6059091237492573541" datatype="html"> | ||
7178 | <source>Update video channel</source><target state="new">Update video channel</target> | ||
7179 | <context-group purpose="location"> | ||
7180 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7181 | <context context-type="linenumber">31</context> | ||
7182 | </context-group> | ||
7183 | </trans-unit><trans-unit id="6595008830732269870" datatype="html"> | ||
7184 | <source>Not found</source><target state="new">Not found</target> | ||
7185 | <context-group purpose="location"> | ||
7186 | <context context-type="sourcefile">../app/+page-not-found/page-not-found-routing.module.ts</context> | ||
7187 | <context context-type="linenumber">13</context> | ||
7188 | </context-group> | ||
7189 | </trans-unit> | ||
6924 | <trans-unit id="5032453707232754344" datatype="html"> | 7190 | <trans-unit id="5032453707232754344" datatype="html"> |
6925 | <source>Playlist <x id="PH"/> created.</source> | 7191 | <source>Playlist <x id="PH"/> created.</source> |
6926 | <target state="new">Playlist | 7192 | <target state="new">Playlist |
@@ -6938,7 +7204,31 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6938 | <source>Update playlist</source> | 7204 | <source>Update playlist</source> |
6939 | <target state="new">Update playlist</target> | 7205 | <target state="new">Update playlist</target> |
6940 | 7206 | ||
6941 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-video-playlists/my-account-video-playlist-elements.component.ts</context><context context-type="linenumber">48</context></context-group></trans-unit> | 7207 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">82</context></context-group></trans-unit><trans-unit id="3410331549417637431" datatype="html"> |
7208 | <source>Account video imports</source><target state="new">Account video imports</target> | ||
7209 | <context-group purpose="location"> | ||
7210 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7211 | <context context-type="linenumber">105</context> | ||
7212 | </context-group> | ||
7213 | </trans-unit><trans-unit id="4434998055872154420" datatype="html"> | ||
7214 | <source>Account subscriptions</source><target state="new">Account subscriptions</target> | ||
7215 | <context-group purpose="location"> | ||
7216 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7217 | <context context-type="linenumber">114</context> | ||
7218 | </context-group> | ||
7219 | </trans-unit><trans-unit id="6019411775996586321" datatype="html"> | ||
7220 | <source>Videos history</source><target state="new">Videos history</target> | ||
7221 | <context-group purpose="location"> | ||
7222 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7223 | <context context-type="linenumber">150</context> | ||
7224 | </context-group> | ||
7225 | </trans-unit><trans-unit id="5851560788527570644" datatype="html"> | ||
7226 | <source>Notifications</source><target state="new">Notifications</target> | ||
7227 | <context-group purpose="location"> | ||
7228 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7229 | <context context-type="linenumber">163</context> | ||
7230 | </context-group> | ||
7231 | </trans-unit> | ||
6942 | <trans-unit id="104404386496394770" datatype="html"> | 7232 | <trans-unit id="104404386496394770" datatype="html"> |
6943 | <source>Delete playlist</source> | 7233 | <source>Delete playlist</source> |
6944 | <target state="new">Delete playlist</target> | 7234 | <target state="new">Delete playlist</target> |
@@ -7092,7 +7382,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7092 | <x id="PH"/>. | 7382 | <x id="PH"/>. |
7093 | </target> | 7383 | </target> |
7094 | 7384 | ||
7095 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit> | 7385 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit><trans-unit id="8231550792139699065" datatype="html"> |
7386 | <source>Verify account email</source><target state="new">Verify account email</target> | ||
7387 | <context-group purpose="location"> | ||
7388 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7389 | <context context-type="linenumber">17</context> | ||
7390 | </context-group> | ||
7391 | </trans-unit><trans-unit id="4997281272800290390" datatype="html"> | ||
7392 | <source>Verify account ask send email</source><target state="new">Verify account ask send email</target> | ||
7393 | <context-group purpose="location"> | ||
7394 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7395 | <context context-type="linenumber">26</context> | ||
7396 | </context-group> | ||
7397 | </trans-unit> | ||
7096 | <trans-unit id="4180693983967989981"> | 7398 | <trans-unit id="4180693983967989981"> |
7097 | <source>Unable to find user id or verification string.</source> | 7399 | <source>Unable to find user id or verification string.</source> |
7098 | <target>No es pot trobar l'identificador d'usuari ni la cadena de verificació.</target> | 7400 | <target>No es pot trobar l'identificador d'usuari ni la cadena de verificació.</target> |
@@ -7217,27 +7519,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7217 | <source>any language</source> | 7519 | <source>any language</source> |
7218 | <target state="new">any language</target> | 7520 | <target state="new">any language</target> |
7219 | 7521 | ||
7220 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">202</context></context-group></trans-unit> | 7522 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">229</context></context-group></trans-unit> |
7221 | <trans-unit id="5633144232269377096" datatype="html"> | 7523 | <trans-unit id="5633144232269377096" datatype="html"> |
7222 | <source>hide</source> | 7524 | <source>hide</source> |
7223 | <target state="new">hide</target> | 7525 | <target state="new">hide</target> |
7224 | 7526 | ||
7225 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">118</context></context-group></trans-unit> | 7527 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> |
7226 | <trans-unit id="8603861867909474404" datatype="html"> | 7528 | <trans-unit id="8603861867909474404" datatype="html"> |
7227 | <source>blur</source> | 7529 | <source>blur</source> |
7228 | <target state="new">blur</target> | 7530 | <target state="new">blur</target> |
7229 | 7531 | ||
7230 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> | 7532 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> |
7231 | <trans-unit id="4534458451100881847" datatype="html"> | 7533 | <trans-unit id="4534458451100881847" datatype="html"> |
7232 | <source>display</source> | 7534 | <source>display</source> |
7233 | <target state="new">display</target> | 7535 | <target state="new">display</target> |
7234 | 7536 | ||
7235 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> | 7537 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">127</context></context-group></trans-unit> |
7236 | <trans-unit id="4467323362722952678" datatype="html"> | 7538 | <trans-unit id="4467323362722952678" datatype="html"> |
7237 | <source>Unknown</source> | 7539 | <source>Unknown</source> |
7238 | <target state="new">Unknown</target> | 7540 | <target state="new">Unknown</target> |
7239 | 7541 | ||
7240 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">190</context></context-group></trans-unit> | 7542 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">193</context></context-group></trans-unit> |
7241 | <trans-unit id="8781423666414310853"> | 7543 | <trans-unit id="8781423666414310853"> |
7242 | <source>Your password has been successfully reset!</source> | 7544 | <source>Your password has been successfully reset!</source> |
7243 | <target>La contrasenya s'ha restablit correctament!</target> | 7545 | <target>La contrasenya s'ha restablit correctament!</target> |
@@ -8355,27 +8657,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8355 | <source>Emphasis</source> | 8657 | <source>Emphasis</source> |
8356 | <target>Èmfasi</target> | 8658 | <target>Èmfasi</target> |
8357 | 8659 | ||
8358 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">77</context></context-group></trans-unit> | 8660 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> |
8359 | <trans-unit id="7565716024468232322"> | 8661 | <trans-unit id="7565716024468232322"> |
8360 | <source>Links</source> | 8662 | <source>Links</source> |
8361 | <target>Enllaços</target> | 8663 | <target>Enllaços</target> |
8362 | 8664 | ||
8363 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">78</context></context-group></trans-unit> | 8665 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> |
8364 | <trans-unit id="7838476952710404110"> | 8666 | <trans-unit id="7838476952710404110"> |
8365 | <source>New lines</source> | 8667 | <source>New lines</source> |
8366 | <target>Línies noves</target> | 8668 | <target>Línies noves</target> |
8367 | 8669 | ||
8368 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 8670 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">83</context></context-group></trans-unit> |
8369 | <trans-unit id="8756167649220050929"> | 8671 | <trans-unit id="8756167649220050929"> |
8370 | <source>Lists</source> | 8672 | <source>Lists</source> |
8371 | <target>Llistes</target> | 8673 | <target>Llistes</target> |
8372 | 8674 | ||
8373 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">80</context></context-group></trans-unit> | 8675 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">84</context></context-group></trans-unit> |
8374 | <trans-unit id="414887388288176527"> | 8676 | <trans-unit id="414887388288176527"> |
8375 | <source>Images</source> | 8677 | <source>Images</source> |
8376 | <target>Imatges</target> | 8678 | <target>Imatges</target> |
8377 | 8679 | ||
8378 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> | 8680 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">85</context></context-group></trans-unit> |
8379 | <trans-unit id="5708680277917691451" datatype="html"> | 8681 | <trans-unit id="5708680277917691451" datatype="html"> |
8380 | <source> | 8682 | <source> |
8381 | <x id="PH"/> users banned. | 8683 | <x id="PH"/> users banned. |
@@ -8771,7 +9073,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8771 | <source>Moderator</source> | 9073 | <source>Moderator</source> |
8772 | <target state="new">Moderator</target> | 9074 | <target state="new">Moderator</target> |
8773 | 9075 | ||
8774 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">386</context></context-group></trans-unit> | 9076 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">384</context></context-group></trans-unit> |
8775 | <trans-unit id="3723085768598852106" datatype="html"> | 9077 | <trans-unit id="3723085768598852106" datatype="html"> |
8776 | <source>Video removed from | 9078 | <source>Video removed from |
8777 | <x id="PH"/> | 9079 | <x id="PH"/> |
@@ -8844,7 +9146,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8844 | <source>Do you really want to delete this comment?</source> | 9146 | <source>Do you really want to delete this comment?</source> |
8845 | <target state="new">Do you really want to delete this comment?</target> | 9147 | <target state="new">Do you really want to delete this comment?</target> |
8846 | 9148 | ||
8847 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">434</context></context-group></trans-unit> | 9149 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">166</context></context-group></trans-unit> |
8848 | <trans-unit id="7837272126865175984" datatype="html"> | 9150 | <trans-unit id="7837272126865175984" datatype="html"> |
8849 | <source>Comment deleted.</source> | 9151 | <source>Comment deleted.</source> |
8850 | <target state="new">Comment deleted.</target> | 9152 | <target state="new">Comment deleted.</target> |
@@ -8956,9 +9258,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8956 | 9258 | ||
8957 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> | 9259 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> |
8958 | <source>Report</source><target state="new">Report</target> | 9260 | <source>Report</source><target state="new">Report</target> |
9261 | |||
9262 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="4814285799071780083" datatype="html"> | ||
9263 | <source>Remove</source><target state="new">Remove</target> | ||
8959 | <context-group purpose="location"> | 9264 | <context-group purpose="location"> |
8960 | <context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> | 9265 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> |
8961 | <context context-type="linenumber">286</context> | 9266 | <context context-type="linenumber">179</context> |
9267 | </context-group> | ||
9268 | </trans-unit><trans-unit id="6871668720687277843" datatype="html"> | ||
9269 | <source>Remove & re-draft</source><target state="new">Remove & re-draft</target> | ||
9270 | <context-group purpose="location"> | ||
9271 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> | ||
9272 | <context context-type="linenumber">187</context> | ||
8962 | </context-group> | 9273 | </context-group> |
8963 | </trans-unit> | 9274 | </trans-unit> |
8964 | <trans-unit id="4903651219400691248" datatype="html"> | 9275 | <trans-unit id="4903651219400691248" datatype="html"> |
@@ -9062,22 +9373,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9062 | <source>Only I can see this video</source> | 9373 | <source>Only I can see this video</source> |
9063 | <target state="new">Only I can see this video</target> | 9374 | <target state="new">Only I can see this video</target> |
9064 | 9375 | ||
9065 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">340</context></context-group></trans-unit> | 9376 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">341</context></context-group></trans-unit> |
9066 | <trans-unit id="6767380569816110388" datatype="html"> | 9377 | <trans-unit id="6767380569816110388" datatype="html"> |
9067 | <source>Only shareable via a private link</source> | 9378 | <source>Only shareable via a private link</source> |
9068 | <target state="new">Only shareable via a private link</target> | 9379 | <target state="new">Only shareable via a private link</target> |
9069 | 9380 | ||
9070 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">344</context></context-group></trans-unit> | 9381 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">345</context></context-group></trans-unit> |
9071 | <trans-unit id="6828965264297239528" datatype="html"> | 9382 | <trans-unit id="6828965264297239528" datatype="html"> |
9072 | <source>Anyone can see this video</source> | 9383 | <source>Anyone can see this video</source> |
9073 | <target state="new">Anyone can see this video</target> | 9384 | <target state="new">Anyone can see this video</target> |
9074 | 9385 | ||
9075 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">348</context></context-group></trans-unit> | 9386 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">349</context></context-group></trans-unit> |
9076 | <trans-unit id="1425933035739773115" datatype="html"> | 9387 | <trans-unit id="1425933035739773115" datatype="html"> |
9077 | <source>Only users of this instance can see this video</source> | 9388 | <source>Only users of this instance can see this video</source> |
9078 | <target state="new">Only users of this instance can see this video</target> | 9389 | <target state="new">Only users of this instance can see this video</target> |
9079 | 9390 | ||
9080 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">352</context></context-group></trans-unit> | 9391 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">353</context></context-group></trans-unit> |
9081 | <trans-unit id="5210096066382592800" datatype="html"> | 9392 | <trans-unit id="5210096066382592800" datatype="html"> |
9082 | <source>Video to import updated.</source> | 9393 | <source>Video to import updated.</source> |
9083 | <target state="new">Video to import updated.</target> | 9394 | <target state="new">Video to import updated.</target> |
@@ -9157,7 +9468,7 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9157 | <target state="new">Report comment</target> | 9468 | <target state="new">Report comment</target> |
9158 | 9469 | ||
9159 | 9470 | ||
9160 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 9471 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/report-modals/comment-report.component.ts</context><context context-type="linenumber">51</context></context-group></trans-unit> |
9161 | 9472 | ||
9162 | 9473 | ||
9163 | <trans-unit id="6775540171466219199" datatype="html"> | 9474 | <trans-unit id="6775540171466219199" datatype="html"> |
@@ -9321,6 +9632,36 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9321 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> | 9632 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> |
9322 | <context context-type="linenumber">36</context> | 9633 | <context context-type="linenumber">36</context> |
9323 | </context-group> | 9634 | </context-group> |
9635 | </trans-unit><trans-unit id="4668975178372693951" datatype="html"> | ||
9636 | <source>Discover videos</source><target state="new">Discover videos</target> | ||
9637 | <context-group purpose="location"> | ||
9638 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9639 | <context context-type="linenumber">23</context> | ||
9640 | </context-group> | ||
9641 | </trans-unit><trans-unit id="8067135025051844577" datatype="html"> | ||
9642 | <source>Trending videos</source><target state="new">Trending videos</target> | ||
9643 | <context-group purpose="location"> | ||
9644 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9645 | <context context-type="linenumber">32</context> | ||
9646 | </context-group> | ||
9647 | </trans-unit><trans-unit id="664221386829541948" datatype="html"> | ||
9648 | <source>Recently added videos</source><target state="new">Recently added videos</target> | ||
9649 | <context-group purpose="location"> | ||
9650 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9651 | <context context-type="linenumber">58</context> | ||
9652 | </context-group> | ||
9653 | </trans-unit><trans-unit id="8212906256415538361" datatype="html"> | ||
9654 | <source>Upload a video</source><target state="new">Upload a video</target> | ||
9655 | <context-group purpose="location"> | ||
9656 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9657 | <context context-type="linenumber">97</context> | ||
9658 | </context-group> | ||
9659 | </trans-unit><trans-unit id="7590784934397800835" datatype="html"> | ||
9660 | <source>Edit a video</source><target state="new">Edit a video</target> | ||
9661 | <context-group purpose="location"> | ||
9662 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9663 | <context context-type="linenumber">106</context> | ||
9664 | </context-group> | ||
9324 | </trans-unit> | 9665 | </trans-unit> |
9325 | </body> | 9666 | </body> |
9326 | </file> | 9667 | </file> |
diff --git a/client/src/locale/angular.cs-CZ.xlf b/client/src/locale/angular.cs-CZ.xlf index d5ba89318..60d2695ca 100644 --- a/client/src/locale/angular.cs-CZ.xlf +++ b/client/src/locale/angular.cs-CZ.xlf | |||
@@ -311,7 +311,7 @@ | |||
311 | <target>Možnosti</target> | 311 | <target>Možnosti</target> |
312 | 312 | ||
313 | 313 | ||
314 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 314 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">48</context></context-group></trans-unit> |
315 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d"> | 315 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d"> |
316 | <source>Start at</source> | 316 | <source>Start at</source> |
317 | <target>Začít v čase</target> | 317 | <target>Začít v čase</target> |
@@ -443,7 +443,7 @@ | |||
443 | Zrušit | 443 | Zrušit |
444 | </target> | 444 | </target> |
445 | 445 | ||
446 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> | 446 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit> |
447 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd"> | 447 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd"> |
448 | <source>Download</source> | 448 | <source>Download</source> |
449 | <target>Stáhnout</target> | 449 | <target>Stáhnout</target> |
@@ -562,7 +562,7 @@ | |||
562 | 562 | ||
563 | 563 | ||
564 | 564 | ||
565 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 565 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
566 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc"> | 566 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc"> |
567 | <source>Edit starts/stops at</source> | 567 | <source>Edit starts/stops at</source> |
568 | <target>Upravit čas spuštění/zastavení</target> | 568 | <target>Upravit čas spuštění/zastavení</target> |
@@ -602,7 +602,7 @@ | |||
602 | 602 | ||
603 | 603 | ||
604 | 604 | ||
605 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> | 605 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
606 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> | 606 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> |
607 | <source>Edit</source> | 607 | <source>Edit</source> |
608 | <target>Upravit</target> | 608 | <target>Upravit</target> |
@@ -627,17 +627,10 @@ | |||
627 | <target>Náhled</target> | 627 | <target>Náhled</target> |
628 | 628 | ||
629 | <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></trans-unit> | 629 | <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></trans-unit> |
630 | <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f"> | 630 | <trans-unit id="8644431249513874405" datatype="html"> |
631 | <source>Get help</source> | ||
632 | <target>Získat pomoc</target> | ||
633 | |||
634 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit><trans-unit id="8644431249513874405" datatype="html"> | ||
635 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> | 631 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> |
636 | <context-group purpose="location"> | 632 | |
637 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 633 | <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></trans-unit> |
638 | <context context-type="linenumber">71</context> | ||
639 | </context-group> | ||
640 | </trans-unit> | ||
641 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> | 634 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> |
642 | <source>Recommended</source> | 635 | <source>Recommended</source> |
643 | <target state="new">Recommended</target> | 636 | <target state="new">Recommended</target> |
@@ -677,7 +670,7 @@ | |||
677 | <source>PROFILE SETTINGS</source> | 670 | <source>PROFILE SETTINGS</source> |
678 | <target state="new">PROFILE SETTINGS</target> | 671 | <target state="new">PROFILE SETTINGS</target> |
679 | 672 | ||
680 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 673 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">12</context></context-group></trans-unit> |
681 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3"> | 674 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3"> |
682 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> | 675 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> |
683 | <target> | 676 | <target> |
@@ -849,11 +842,8 @@ | |||
849 | 842 | ||
850 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> | 843 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> |
851 | <source>User</source><target state="new">User</target> | 844 | <source>User</source><target state="new">User</target> |
852 | <context-group purpose="location"> | 845 | |
853 | <context context-type="sourcefile">../app/core/users/user.service.ts</context> | 846 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit> |
854 | <context context-type="linenumber">384</context> | ||
855 | </context-group> | ||
856 | </trans-unit> | ||
857 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0"> | 847 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0"> |
858 | <source>Ban</source> | 848 | <source>Ban</source> |
859 | <target>Zablokovat</target> | 849 | <target>Zablokovat</target> |
@@ -1347,89 +1337,89 @@ The link will expire within 1 hour.</target> | |||
1347 | <source>Account settings</source> | 1337 | <source>Account settings</source> |
1348 | <target state="new">Account settings</target> | 1338 | <target state="new">Account settings</target> |
1349 | 1339 | ||
1350 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 1340 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
1351 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> | 1341 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> |
1352 | <source>Channels settings</source> | 1342 | <source>Channels settings</source> |
1353 | <target state="new">Channels settings</target> | 1343 | <target state="new">Channels settings</target> |
1354 | 1344 | ||
1355 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 1345 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> |
1356 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> | 1346 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> |
1357 | <source>Interface:</source> | 1347 | <source>Interface:</source> |
1358 | <target state="new">Interface:</target> | 1348 | <target state="new">Interface:</target> |
1359 | 1349 | ||
1360 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 1350 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1361 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> | 1351 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> |
1362 | <source>Videos:</source> | 1352 | <source>Videos:</source> |
1363 | <target state="new">Videos:</target> | 1353 | <target state="new">Videos:</target> |
1364 | 1354 | ||
1365 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 1355 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> |
1366 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> | 1356 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> |
1367 | <source>Sensitive:</source> | 1357 | <source>Sensitive:</source> |
1368 | <target state="new">Sensitive:</target> | 1358 | <target state="new">Sensitive:</target> |
1369 | 1359 | ||
1370 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 1360 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">54</context></context-group></trans-unit> |
1371 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1361 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> |
1372 | <source>Interface: <x id="INTERPOLATION"/></source> | 1362 | <source>Interface: <x id="INTERPOLATION"/></source> |
1373 | <target state="new">Interface: | 1363 | <target state="new">Interface: |
1374 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> | 1364 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> |
1375 | </target> | 1365 | </target> |
1376 | 1366 | ||
1377 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">156</context></context-group></trans-unit> | 1367 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> |
1378 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1368 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1379 | <source>Help share videos</source> | 1369 | <source>Help share videos</source> |
1380 | <target state="new">Help share videos</target> | 1370 | <target state="new">Help share videos</target> |
1381 | 1371 | ||
1382 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> | 1372 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
1383 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> | 1373 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> |
1384 | <source>More account settings</source> | 1374 | <source>More account settings</source> |
1385 | <target state="new">More account settings</target> | 1375 | <target state="new">More account settings</target> |
1386 | 1376 | ||
1387 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> | 1377 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> |
1388 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> | 1378 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> |
1389 | <source>Keyboard shortcuts</source> | 1379 | <source>Keyboard shortcuts</source> |
1390 | <target state="new">Keyboard shortcuts</target> | 1380 | <target state="new">Keyboard shortcuts</target> |
1391 | 1381 | ||
1392 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 1382 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">72</context></context-group></trans-unit> |
1393 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> | 1383 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> |
1394 | <source>Help</source> | 1384 | <source>Help</source> |
1395 | <target state="new">Help</target> | 1385 | <target state="new">Help</target> |
1396 | 1386 | ||
1397 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1387 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1398 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> | 1388 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> |
1399 | <source>Get help using PeerTube</source> | 1389 | <source>Get help using PeerTube</source> |
1400 | <target state="new">Get help using PeerTube</target> | 1390 | <target state="new">Get help using PeerTube</target> |
1401 | 1391 | ||
1402 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">161</context></context-group></trans-unit> | 1392 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">167</context></context-group></trans-unit> |
1403 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> | 1393 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> |
1404 | <source>Shortcuts</source> | 1394 | <source>Shortcuts</source> |
1405 | <target state="new">Shortcuts</target> | 1395 | <target state="new">Shortcuts</target> |
1406 | 1396 | ||
1407 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1397 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1408 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> | 1398 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> |
1409 | <source>powered by PeerTube</source> | 1399 | <source>powered by PeerTube</source> |
1410 | <target state="new">powered by PeerTube</target> | 1400 | <target state="new">powered by PeerTube</target> |
1411 | 1401 | ||
1412 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | 1402 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">177</context></context-group></trans-unit> |
1413 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> | 1403 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> |
1414 | <source>powered by PeerTube - CopyLeft 2015-2020</source> | 1404 | <source>powered by PeerTube - CopyLeft 2015-2020</source> |
1415 | <target state="new">powered by PeerTube - CopyLeft 2015-2020</target> | 1405 | <target state="new">powered by PeerTube - CopyLeft 2015-2020</target> |
1416 | 1406 | ||
1417 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> | 1407 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">176</context></context-group></trans-unit> |
1418 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344"> | 1408 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344"> |
1419 | <source>Log out</source> | 1409 | <source>Log out</source> |
1420 | <target>Odhlásit</target> | 1410 | <target>Odhlásit</target> |
1421 | 1411 | ||
1422 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">70</context></context-group></trans-unit> | 1412 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit> |
1423 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> | 1413 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> |
1424 | <source>Create an account</source> | 1414 | <source>Create an account</source> |
1425 | <target>Vytvořit účet</target> | 1415 | <target>Vytvořit účet</target> |
1426 | 1416 | ||
1427 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">78</context></context-group></trans-unit> | 1417 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
1428 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> | 1418 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> |
1429 | <source>MY LIBRARY</source> | 1419 | <source>MY LIBRARY</source> |
1430 | <target state="new">MY LIBRARY</target> | 1420 | <target state="new">MY LIBRARY</target> |
1431 | 1421 | ||
1432 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 1422 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">88</context></context-group></trans-unit> |
1433 | <trans-unit id="6371572688505952303"> | 1423 | <trans-unit id="6371572688505952303"> |
1434 | <source>My library</source> | 1424 | <source>My library</source> |
1435 | <target>Moje knihovna</target> | 1425 | <target>Moje knihovna</target> |
@@ -1469,22 +1459,22 @@ The link will expire within 1 hour.</target> | |||
1469 | <source>Videos</source> | 1459 | <source>Videos</source> |
1470 | <target>Videa</target> | 1460 | <target>Videa</target> |
1471 | 1461 | ||
1472 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">86</context></context-group></trans-unit> | 1462 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">92</context></context-group></trans-unit> |
1473 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> | 1463 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> |
1474 | <source>Playlists</source> | 1464 | <source>Playlists</source> |
1475 | <target>Seznamy videí</target> | 1465 | <target>Seznamy videí</target> |
1476 | 1466 | ||
1477 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">91</context></context-group></trans-unit> | 1467 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">97</context></context-group></trans-unit> |
1478 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2"> | 1468 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2"> |
1479 | <source>Subscriptions</source> | 1469 | <source>Subscriptions</source> |
1480 | <target>Odběry</target> | 1470 | <target>Odběry</target> |
1481 | 1471 | ||
1482 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 1472 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">102</context></context-group></trans-unit> |
1483 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8"> | 1473 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8"> |
1484 | <source>History</source> | 1474 | <source>History</source> |
1485 | <target>Historie</target> | 1475 | <target>Historie</target> |
1486 | 1476 | ||
1487 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit> | 1477 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">107</context></context-group></trans-unit> |
1488 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> | 1478 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> |
1489 | <source>VIDEOS</source> | 1479 | <source>VIDEOS</source> |
1490 | <target state="new">VIDEOS</target> | 1480 | <target state="new">VIDEOS</target> |
@@ -1496,27 +1486,27 @@ The link will expire within 1 hour.</target> | |||
1496 | <target state="new">Discover</target> | 1486 | <target state="new">Discover</target> |
1497 | 1487 | ||
1498 | 1488 | ||
1499 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">111</context></context-group></trans-unit> | 1489 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">117</context></context-group></trans-unit> |
1500 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> | 1490 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> |
1501 | <source>Trending</source> | 1491 | <source>Trending</source> |
1502 | <target>Trendy</target> | 1492 | <target>Trendy</target> |
1503 | 1493 | ||
1504 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">116</context></context-group></trans-unit> | 1494 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">122</context></context-group></trans-unit> |
1505 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> | 1495 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> |
1506 | <source>Most liked</source> | 1496 | <source>Most liked</source> |
1507 | <target state="new">Most liked</target> | 1497 | <target state="new">Most liked</target> |
1508 | 1498 | ||
1509 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">121</context></context-group></trans-unit> | 1499 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">127</context></context-group></trans-unit> |
1510 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> | 1500 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> |
1511 | <source>Recently added</source> | 1501 | <source>Recently added</source> |
1512 | <target>Nedávno přidané</target> | 1502 | <target>Nedávno přidané</target> |
1513 | 1503 | ||
1514 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">126</context></context-group></trans-unit> | 1504 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">132</context></context-group></trans-unit> |
1515 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> | 1505 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> |
1516 | <source>Administration</source> | 1506 | <source>Administration</source> |
1517 | <target>Administrace</target> | 1507 | <target>Administrace</target> |
1518 | 1508 | ||
1519 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">140</context></context-group></trans-unit> | 1509 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">146</context></context-group></trans-unit> |
1520 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> | 1510 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> |
1521 | <source>About</source> | 1511 | <source>About</source> |
1522 | <target>O nás</target> | 1512 | <target>O nás</target> |
@@ -1527,7 +1517,7 @@ The link will expire within 1 hour.</target> | |||
1527 | <source>Contact</source> | 1517 | <source>Contact</source> |
1528 | <target state="new">Contact</target> | 1518 | <target state="new">Contact</target> |
1529 | 1519 | ||
1530 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">160</context></context-group></trans-unit> | 1520 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">166</context></context-group></trans-unit> |
1531 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771"> | 1521 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771"> |
1532 | <source>View your notifications</source> | 1522 | <source>View your notifications</source> |
1533 | <target>Zobrazit vaše oznámení</target> | 1523 | <target>Zobrazit vaše oznámení</target> |
@@ -1554,7 +1544,7 @@ The link will expire within 1 hour.</target> | |||
1554 | <source>See all your notifications</source> | 1544 | <source>See all your notifications</source> |
1555 | <target>Zobrazit všechna oznámení</target> | 1545 | <target>Zobrazit všechna oznámení</target> |
1556 | 1546 | ||
1557 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 1547 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">40</context></context-group></trans-unit> |
1558 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> | 1548 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> |
1559 | <source>Search videos, channels…</source> | 1549 | <source>Search videos, channels…</source> |
1560 | <target state="new">Search videos, channels…</target> | 1550 | <target state="new">Search videos, channels…</target> |
@@ -1894,22 +1884,22 @@ The link will expire within 1 hour.</target> | |||
1894 | <source>FAQ</source> | 1884 | <source>FAQ</source> |
1895 | <target state="new">FAQ</target> | 1885 | <target state="new">FAQ</target> |
1896 | 1886 | ||
1897 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">163</context></context-group></trans-unit> | 1887 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
1898 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> | 1888 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> |
1899 | <source>Frequently asked questions about PeerTube</source> | 1889 | <source>Frequently asked questions about PeerTube</source> |
1900 | <target state="new">Frequently asked questions about PeerTube</target> | 1890 | <target state="new">Frequently asked questions about PeerTube</target> |
1901 | 1891 | ||
1902 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1892 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1903 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> | 1893 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> |
1904 | <source>API</source> | 1894 | <source>API</source> |
1905 | <target state="new">API</target> | 1895 | <target state="new">API</target> |
1906 | 1896 | ||
1907 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1897 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1908 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> | 1898 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> |
1909 | <source>API documentation</source> | 1899 | <source>API documentation</source> |
1910 | <target state="new">API documentation</target> | 1900 | <target state="new">API documentation</target> |
1911 | 1901 | ||
1912 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 1902 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
1913 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5"> | 1903 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5"> |
1914 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> | 1904 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> |
1915 | <target>Naplánovat publikování ( | 1905 | <target>Naplánovat publikování ( |
@@ -2304,7 +2294,13 @@ The link will expire within 1 hour.</target> | |||
2304 | Less customization | 2294 | Less customization |
2305 | </target> | 2295 | </target> |
2306 | 2296 | ||
2307 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit> | 2297 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit><trans-unit id="2454050363478003966" datatype="html"> |
2298 | <source>Login</source><target state="new">Login</target> | ||
2299 | <context-group purpose="location"> | ||
2300 | <context context-type="sourcefile">../app/+login/login-routing.module.ts</context> | ||
2301 | <context context-type="linenumber">14</context> | ||
2302 | </context-group> | ||
2303 | </trans-unit> | ||
2308 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e" datatype="html"> | 2304 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e" datatype="html"> |
2309 | <source>Autoplay</source> | 2305 | <source>Autoplay</source> |
2310 | <target state="new">Autoplay</target> | 2306 | <target state="new">Autoplay</target> |
@@ -2575,7 +2571,7 @@ The link will expire within 1 hour.</target> | |||
2575 | <source>No comments.</source> | 2571 | <source>No comments.</source> |
2576 | <target>Žádné komentáře</target> | 2572 | <target>Žádné komentáře</target> |
2577 | 2573 | ||
2578 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 2574 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> |
2579 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> | 2575 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> |
2580 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> | 2576 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> |
2581 | <target state="new"> | 2577 | <target state="new"> |
@@ -2585,7 +2581,7 @@ The link will expire within 1 hour.</target> | |||
2585 | 2581 | ||
2586 | </target> | 2582 | </target> |
2587 | 2583 | ||
2588 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">79</context></context-group></trans-unit> | 2584 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
2589 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> | 2585 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> |
2590 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> | 2586 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> |
2591 | <target state="new"> | 2587 | <target state="new"> |
@@ -2594,40 +2590,98 @@ The link will expire within 1 hour.</target> | |||
2594 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> | 2590 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> |
2595 | </target> | 2591 | </target> |
2596 | 2592 | ||
2597 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 2593 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">87</context></context-group></trans-unit> |
2598 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> | 2594 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> |
2599 | <source>View <x id="INTERPOLATION"/> replies</source> | 2595 | <source>View <x id="INTERPOLATION"/> replies</source> |
2600 | <target state="new">View | 2596 | <target state="new">View |
2601 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies | 2597 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies |
2602 | </target> | 2598 | </target> |
2603 | 2599 | ||
2604 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">85</context></context-group></trans-unit> | 2600 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">90</context></context-group></trans-unit> |
2605 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828"> | 2601 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828"> |
2606 | <source>Comments are disabled.</source> | 2602 | <source>Comments are disabled.</source> |
2607 | <target> | 2603 | <target> |
2608 | Komentáře nejsou povoleny. | 2604 | Komentáře nejsou povoleny. |
2609 | </target> | 2605 | </target> |
2610 | 2606 | ||
2611 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 2607 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit> |
2612 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e"> | 2608 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e"> |
2613 | <source>Add comment...</source> | 2609 | <source>Add comment...</source> |
2614 | <target>Přidat komentář...</target> | 2610 | <target>Přidat komentář...</target> |
2615 | 2611 | ||
2616 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | 2612 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit><trans-unit id="4e5254dedf0c12ce7e7c2197384fceebe3b29a2b" datatype="html"> |
2617 | <trans-unit id="8956c0f4c6974289fc63f1ab6b54f5b32ed65eeb" datatype="html"> | 2613 | <source>Markdown compatible</source><target state="new">Markdown compatible</target> |
2618 | <source> | 2614 | <context-group purpose="location"> |
2619 | Reply | 2615 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> |
2620 | </source> | 2616 | <context context-type="linenumber">13</context> |
2621 | <target state="new"> | 2617 | </context-group> |
2622 | Reply | 2618 | </trans-unit><trans-unit id="4739ffad85f09defefdb6e51b45f43b2ef7c4388" datatype="html"> |
2623 | </target> | 2619 | <source>Markdown compatible that supports:</source><target state="new">Markdown compatible that supports:</target> |
2624 | 2620 | <context-group purpose="location"> | |
2625 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 2621 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> |
2622 | <context context-type="linenumber">15</context> | ||
2623 | </context-group> | ||
2624 | </trans-unit><trans-unit id="9a53b17a021bb0677c156fd893461797fc497a10" datatype="html"> | ||
2625 | <source>Auto generated links</source><target state="new">Auto generated links</target> | ||
2626 | <context-group purpose="location"> | ||
2627 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2628 | <context context-type="linenumber">18</context> | ||
2629 | </context-group> | ||
2630 | </trans-unit><trans-unit id="664f99b8919d6dd2faa1c1f7c378aa86d1be5e8a" datatype="html"> | ||
2631 | <source>Break lines</source><target state="new">Break lines</target> | ||
2632 | <context-group purpose="location"> | ||
2633 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2634 | <context context-type="linenumber">19</context> | ||
2635 | </context-group> | ||
2636 | </trans-unit><trans-unit id="b15e7bec5c7833d2d9634946ccbed68967b1bee1" datatype="html"> | ||
2637 | <source>Lists</source><target state="new">Lists</target> | ||
2638 | <context-group purpose="location"> | ||
2639 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2640 | <context context-type="linenumber">20</context> | ||
2641 | </context-group> | ||
2642 | </trans-unit><trans-unit id="ab4426b60f13c00b61d6b714d390dc629f314980" datatype="html"> | ||
2643 | <source>Emphasis</source><target state="new">Emphasis</target> | ||
2644 | <context-group purpose="location"> | ||
2645 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2646 | <context context-type="linenumber">22</context> | ||
2647 | </context-group> | ||
2648 | </trans-unit><trans-unit id="4e13b179501d3d32721037e03b4c04acb9857c5f" datatype="html"> | ||
2649 | <source>bold</source><target state="new">bold</target> | ||
2650 | <context-group purpose="location"> | ||
2651 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2652 | <context context-type="linenumber">23</context> | ||
2653 | </context-group> | ||
2654 | </trans-unit><trans-unit id="3c12190421fbb2756e6bbead923df9ec5de8ede2" datatype="html"> | ||
2655 | <source>italic</source><target state="new">italic</target> | ||
2656 | <context-group purpose="location"> | ||
2657 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2658 | <context context-type="linenumber">23</context> | ||
2659 | </context-group> | ||
2660 | </trans-unit><trans-unit id="adb4bbdcb961b8aac8298d6cac554d9b25636b7a" datatype="html"> | ||
2661 | <source>Emoji shortcuts</source><target state="new">Emoji shortcuts</target> | ||
2662 | <context-group purpose="location"> | ||
2663 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2664 | <context context-type="linenumber">26</context> | ||
2665 | </context-group> | ||
2666 | </trans-unit><trans-unit id="b9809a21a8eb3c9db2a0282c5dd94bc221575c96" datatype="html"> | ||
2667 | <source>Emoji markup</source><target state="new">Emoji markup</target> | ||
2668 | <context-group purpose="location"> | ||
2669 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2670 | <context context-type="linenumber">30</context> | ||
2671 | </context-group> | ||
2672 | </trans-unit><trans-unit id="f37feb427aaa551edd1f22616be6464bc0d492de" datatype="html"> | ||
2673 | <source>See complete list</source><target state="new">See complete list</target> | ||
2674 | <context-group purpose="location"> | ||
2675 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2676 | <context context-type="linenumber">32</context> | ||
2677 | </context-group> | ||
2678 | </trans-unit> | ||
2679 | |||
2626 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135" datatype="html"> | 2680 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135" datatype="html"> |
2627 | <source>You are one step away from commenting</source> | 2681 | <source>You are one step away from commenting</source> |
2628 | <target state="new">You are one step away from commenting</target> | 2682 | <target state="new">You are one step away from commenting</target> |
2629 | 2683 | ||
2630 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 2684 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
2631 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> | 2685 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> |
2632 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> | 2686 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> |
2633 | <target state="new"> | 2687 | <target state="new"> |
@@ -2636,19 +2690,37 @@ The link will expire within 1 hour.</target> | |||
2636 | from within the software's interface. | 2690 | from within the software's interface. |
2637 | </target> | 2691 | </target> |
2638 | 2692 | ||
2639 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 2693 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
2640 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb" datatype="html"> | 2694 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb" datatype="html"> |
2641 | <source>If you have an account on Mastodon or Pleroma, you can open it directly in their interface:</source> | 2695 | <source>If you have an account on Mastodon or Pleroma, you can open it directly in their interface:</source> |
2642 | <target state="new"> | 2696 | <target state="new"> |
2643 | If you have an account on Mastodon or Pleroma, you can open it directly in their interface: | 2697 | If you have an account on Mastodon or Pleroma, you can open it directly in their interface: |
2644 | </target> | 2698 | </target> |
2645 | 2699 | ||
2646 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">41</context></context-group></trans-unit> | 2700 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">65</context></context-group></trans-unit> |
2647 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> | 2701 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> |
2648 | <source>Login to comment</source> | 2702 | <source>Login to comment</source> |
2649 | <target state="new">Login to comment</target> | 2703 | <target state="new">Login to comment</target> |
2650 | 2704 | ||
2651 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">52</context></context-group></trans-unit> | 2705 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit><trans-unit id="974170f455ff5a9034d5737e84b4194c0046fc6b" datatype="html"> |
2706 | <source>Markdown Emoji List</source><target state="new">Markdown Emoji List</target> | ||
2707 | <context-group purpose="location"> | ||
2708 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2709 | <context context-type="linenumber">84</context> | ||
2710 | </context-group> | ||
2711 | </trans-unit><trans-unit id="2662644497259948010" datatype="html"> | ||
2712 | <source>Comment</source><target state="new">Comment</target> | ||
2713 | <context-group purpose="location"> | ||
2714 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2715 | <context context-type="linenumber">58</context> | ||
2716 | </context-group> | ||
2717 | </trans-unit><trans-unit id="4502286564339177240" datatype="html"> | ||
2718 | <source>Reply</source><target state="new">Reply</target> | ||
2719 | <context-group purpose="location"> | ||
2720 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2721 | <context context-type="linenumber">60</context> | ||
2722 | </context-group> | ||
2723 | </trans-unit> | ||
2652 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285"> | 2724 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285"> |
2653 | <source>Highlighted comment</source> | 2725 | <source>Highlighted comment</source> |
2654 | <target>Zvýrazněné komentáře</target> | 2726 | <target>Zvýrazněné komentáře</target> |
@@ -2663,7 +2735,7 @@ The link will expire within 1 hour.</target> | |||
2663 | <source>This comment has been deleted</source> | 2735 | <source>This comment has been deleted</source> |
2664 | <target state="new">This comment has been deleted</target> | 2736 | <target state="new">This comment has been deleted</target> |
2665 | 2737 | ||
2666 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">62</context></context-group></trans-unit> | 2738 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">61</context></context-group></trans-unit> |
2667 | <trans-unit id="9031514421077169181" datatype="html"> | 2739 | <trans-unit id="9031514421077169181" datatype="html"> |
2668 | <source>Video redundancies</source> | 2740 | <source>Video redundancies</source> |
2669 | <target state="new">Video redundancies</target> | 2741 | <target state="new">Video redundancies</target> |
@@ -3518,7 +3590,25 @@ The link will expire within 1 hour.</target> | |||
3518 | <target state="new">No account found.</target> | 3590 | <target state="new">No account found.</target> |
3519 | 3591 | ||
3520 | 3592 | ||
3521 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit> | 3593 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit><trans-unit id="2338185419645468935" datatype="html"> |
3594 | <source>List installed plugins</source><target state="new">List installed plugins</target> | ||
3595 | <context-group purpose="location"> | ||
3596 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3597 | <context context-type="linenumber">28</context> | ||
3598 | </context-group> | ||
3599 | </trans-unit><trans-unit id="8897412584195581488" datatype="html"> | ||
3600 | <source>Search plugins</source><target state="new">Search plugins</target> | ||
3601 | <context-group purpose="location"> | ||
3602 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3603 | <context context-type="linenumber">37</context> | ||
3604 | </context-group> | ||
3605 | </trans-unit><trans-unit id="4994333937800672218" datatype="html"> | ||
3606 | <source>Show plugin</source><target state="new">Show plugin</target> | ||
3607 | <context-group purpose="location"> | ||
3608 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3609 | <context context-type="linenumber">46</context> | ||
3610 | </context-group> | ||
3611 | </trans-unit> | ||
3522 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> | 3612 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> |
3523 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> | 3613 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> |
3524 | <target state="new">Showing | 3614 | <target state="new">Showing |
@@ -4245,7 +4335,7 @@ The link will expire within 1 hour.</target> | |||
4245 | <source>Administrator</source> | 4335 | <source>Administrator</source> |
4246 | <target>Administrátor</target> | 4336 | <target>Administrátor</target> |
4247 | 4337 | ||
4248 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">385</context></context-group></trans-unit> | 4338 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">383</context></context-group></trans-unit> |
4249 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587"> | 4339 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587"> |
4250 | <source>Admin email</source> | 4340 | <source>Admin email</source> |
4251 | <target>E-mail administrátora</target> | 4341 | <target>E-mail administrátora</target> |
@@ -4507,27 +4597,27 @@ The link will expire within 1 hour.</target> | |||
4507 | <source>VIDEO SETTINGS</source> | 4597 | <source>VIDEO SETTINGS</source> |
4508 | <target state="new">VIDEO SETTINGS</target> | 4598 | <target state="new">VIDEO SETTINGS</target> |
4509 | 4599 | ||
4510 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit> | 4600 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
4511 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> | 4601 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> |
4512 | <source>NOTIFICATIONS</source> | 4602 | <source>NOTIFICATIONS</source> |
4513 | <target state="new">NOTIFICATIONS</target> | 4603 | <target state="new">NOTIFICATIONS</target> |
4514 | 4604 | ||
4515 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 4605 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">37</context></context-group></trans-unit> |
4516 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> | 4606 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> |
4517 | <source>INTERFACE</source> | 4607 | <source>INTERFACE</source> |
4518 | <target state="new">INTERFACE</target> | 4608 | <target state="new">INTERFACE</target> |
4519 | 4609 | ||
4520 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 4610 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit> |
4521 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> | 4611 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> |
4522 | <source>PASSWORD</source> | 4612 | <source>PASSWORD</source> |
4523 | <target state="new">PASSWORD</target> | 4613 | <target state="new">PASSWORD</target> |
4524 | 4614 | ||
4525 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">59</context></context-group></trans-unit> | 4615 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">57</context></context-group></trans-unit> |
4526 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> | 4616 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> |
4527 | <source>EMAIL</source> | 4617 | <source>EMAIL</source> |
4528 | <target state="new">EMAIL</target> | 4618 | <target state="new">EMAIL</target> |
4529 | 4619 | ||
4530 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">69</context></context-group></trans-unit> | 4620 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">67</context></context-group></trans-unit> |
4531 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> | 4621 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> |
4532 | <source>DANGER ZONE</source> | 4622 | <source>DANGER ZONE</source> |
4533 | <target state="new">DANGER ZONE</target> | 4623 | <target state="new">DANGER ZONE</target> |
@@ -4777,7 +4867,31 @@ The link will expire within 1 hour.</target> | |||
4777 | <source>No ownership change request found.</source> | 4867 | <source>No ownership change request found.</source> |
4778 | <target state="new">No ownership change request found.</target> | 4868 | <target state="new">No ownership change request found.</target> |
4779 | 4869 | ||
4780 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit> | 4870 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit><trans-unit id="4247400351982331798" datatype="html"> |
4871 | <source>Account settings</source><target state="new">Account settings</target> | ||
4872 | <context-group purpose="location"> | ||
4873 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4874 | <context context-type="linenumber">37</context> | ||
4875 | </context-group> | ||
4876 | </trans-unit><trans-unit id="154062590416726309" datatype="html"> | ||
4877 | <source>Account playlists</source><target state="new">Account playlists</target> | ||
4878 | <context-group purpose="location"> | ||
4879 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4880 | <context context-type="linenumber">55</context> | ||
4881 | </context-group> | ||
4882 | </trans-unit><trans-unit id="6550287183367517925" datatype="html"> | ||
4883 | <source>Create new playlist</source><target state="new">Create new playlist</target> | ||
4884 | <context-group purpose="location"> | ||
4885 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4886 | <context context-type="linenumber">64</context> | ||
4887 | </context-group> | ||
4888 | </trans-unit><trans-unit id="2864486939135008600" datatype="html"> | ||
4889 | <source>Playlist elements</source><target state="new">Playlist elements</target> | ||
4890 | <context-group purpose="location"> | ||
4891 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4892 | <context context-type="linenumber">73</context> | ||
4893 | </context-group> | ||
4894 | </trans-unit> | ||
4781 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> | 4895 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> |
4782 | <source>My imports</source> | 4896 | <source>My imports</source> |
4783 | <target state="new">My imports</target> | 4897 | <target state="new">My imports</target> |
@@ -5048,7 +5162,25 @@ The link will expire within 1 hour.</target> | |||
5048 | <source>An error occurred.</source> | 5162 | <source>An error occurred.</source> |
5049 | <target state="new">An error occurred.</target> | 5163 | <target state="new">An error occurred.</target> |
5050 | 5164 | ||
5051 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 5165 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit><trans-unit id="9128669621822125729" datatype="html"> |
5166 | <source>Video channel videos</source><target state="new">Video channel videos</target> | ||
5167 | <context-group purpose="location"> | ||
5168 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5169 | <context context-type="linenumber">25</context> | ||
5170 | </context-group> | ||
5171 | </trans-unit><trans-unit id="3193822049276963401" datatype="html"> | ||
5172 | <source>Video channel playlists</source><target state="new">Video channel playlists</target> | ||
5173 | <context-group purpose="location"> | ||
5174 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5175 | <context context-type="linenumber">38</context> | ||
5176 | </context-group> | ||
5177 | </trans-unit><trans-unit id="4723526509708949088" datatype="html"> | ||
5178 | <source>About video channel</source><target state="new">About video channel</target> | ||
5179 | <context-group purpose="location"> | ||
5180 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5181 | <context context-type="linenumber">47</context> | ||
5182 | </context-group> | ||
5183 | </trans-unit> | ||
5052 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97" datatype="html"> | 5184 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97" datatype="html"> |
5053 | <source>Request email for account verification</source> | 5185 | <source>Request email for account verification</source> |
5054 | <target state="new"> | 5186 | <target state="new"> |
@@ -5169,7 +5301,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5169 | <source>Stats</source> | 5301 | <source>Stats</source> |
5170 | <target>Statistiky</target> | 5302 | <target>Statistiky</target> |
5171 | 5303 | ||
5172 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 5304 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
5173 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc"> | 5305 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc"> |
5174 | <source>Joined <x id="INTERPOLATION"/></source> | 5306 | <source>Joined <x id="INTERPOLATION"/></source> |
5175 | <target>Registrován/a od | 5307 | <target>Registrován/a od |
@@ -5622,7 +5754,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5622 | <source>This instance does not have instances followings.</source> | 5754 | <source>This instance does not have instances followings.</source> |
5623 | <target state="new">This instance does not have instances followings.</target> | 5755 | <target state="new">This instance does not have instances followings.</target> |
5624 | 5756 | ||
5625 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit> | 5757 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit><trans-unit id="4195286790385468087" datatype="html"> |
5758 | <source>About this instance</source><target state="new">About this instance</target> | ||
5759 | <context-group purpose="location"> | ||
5760 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5761 | <context context-type="linenumber">26</context> | ||
5762 | </context-group> | ||
5763 | </trans-unit><trans-unit id="8773846522957677259" datatype="html"> | ||
5764 | <source>About PeerTube</source><target state="new">About PeerTube</target> | ||
5765 | <context-group purpose="location"> | ||
5766 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5767 | <context context-type="linenumber">38</context> | ||
5768 | </context-group> | ||
5769 | </trans-unit><trans-unit id="5782088737558028158" datatype="html"> | ||
5770 | <source>About follows</source><target state="new">About follows</target> | ||
5771 | <context-group purpose="location"> | ||
5772 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5773 | <context context-type="linenumber">47</context> | ||
5774 | </context-group> | ||
5775 | </trans-unit> | ||
5626 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> | 5776 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> |
5627 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> | 5777 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> |
5628 | <target state="new">Developed with ❤ by | 5778 | <target state="new">Developed with ❤ by |
@@ -5792,6 +5942,12 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5792 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 5942 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> |
5793 | <context context-type="linenumber">1</context> | 5943 | <context context-type="linenumber">1</context> |
5794 | </context-group> | 5944 | </context-group> |
5945 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
5946 | <source>Get help</source><target state="new">Get help</target> | ||
5947 | <context-group purpose="location"> | ||
5948 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | ||
5949 | <context context-type="linenumber">16</context> | ||
5950 | </context-group> | ||
5795 | </trans-unit> | 5951 | </trans-unit> |
5796 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1"> | 5952 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1"> |
5797 | <source>Create my account</source> | 5953 | <source>Create my account</source> |
@@ -5920,7 +6076,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5920 | 6076 | ||
5921 | </target> | 6077 | </target> |
5922 | 6078 | ||
5923 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 6079 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit><trans-unit id="3301086086650990787" datatype="html"> |
6080 | <source>Register</source><target state="new">Register</target> | ||
6081 | <context-group purpose="location"> | ||
6082 | <context context-type="sourcefile">../app/+signup/+register/register-routing.module.ts</context> | ||
6083 | <context context-type="linenumber">14</context> | ||
6084 | </context-group> | ||
6085 | </trans-unit> | ||
5924 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> | 6086 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> |
5925 | <source>Sorry, we couldn't find the page you were looking for.</source> | 6087 | <source>Sorry, we couldn't find the page you were looking for.</source> |
5926 | <target state="new"> | 6088 | <target state="new"> |
@@ -5943,7 +6105,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5943 | <target>Žádný popis</target> | 6105 | <target>Žádný popis</target> |
5944 | 6106 | ||
5945 | 6107 | ||
5946 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit> | 6108 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit><trans-unit id="819067926858619041" datatype="html"> |
6109 | <source>Account videos</source><target state="new">Account videos</target> | ||
6110 | <context-group purpose="location"> | ||
6111 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6112 | <context context-type="linenumber">29</context> | ||
6113 | </context-group> | ||
6114 | </trans-unit><trans-unit id="6823616469362610020" datatype="html"> | ||
6115 | <source>Account video channels</source><target state="new">Account video channels</target> | ||
6116 | <context-group purpose="location"> | ||
6117 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6118 | <context context-type="linenumber">42</context> | ||
6119 | </context-group> | ||
6120 | </trans-unit><trans-unit id="7678273613459026643" datatype="html"> | ||
6121 | <source>About account</source><target state="new">About account</target> | ||
6122 | <context-group purpose="location"> | ||
6123 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6124 | <context context-type="linenumber">51</context> | ||
6125 | </context-group> | ||
6126 | </trans-unit> | ||
5947 | <trans-unit id="3755500631176893489" datatype="html"> | 6127 | <trans-unit id="3755500631176893489" datatype="html"> |
5948 | <source>Published <x id="PH"/> videos</source> | 6128 | <source>Published <x id="PH"/> videos</source> |
5949 | <target state="new">Published | 6129 | <target state="new">Published |
@@ -6060,7 +6240,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6060 | <source>Configuration updated.</source> | 6240 | <source>Configuration updated.</source> |
6061 | <target>Nastavení aktualizováno.</target> | 6241 | <target>Nastavení aktualizováno.</target> |
6062 | 6242 | ||
6063 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit> | 6243 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit><trans-unit id="6284468333579755406" datatype="html"> |
6244 | <source>Edit custom configuration</source><target state="new">Edit custom configuration</target> | ||
6245 | <context-group purpose="location"> | ||
6246 | <context context-type="sourcefile">../app/+admin/config/config.routes.ts</context> | ||
6247 | <context context-type="linenumber">26</context> | ||
6248 | </context-group> | ||
6249 | </trans-unit> | ||
6064 | 6250 | ||
6065 | 6251 | ||
6066 | <trans-unit id="6549061957433635758" datatype="html"> | 6252 | <trans-unit id="6549061957433635758" datatype="html"> |
@@ -6539,7 +6725,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6539 | <x id="PH"/> updated. | 6725 | <x id="PH"/> updated. |
6540 | </target> | 6726 | </target> |
6541 | 6727 | ||
6542 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 6728 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit><trans-unit id="3229595422546554334" datatype="html"> |
6729 | <source>Jobs</source><target state="new">Jobs</target> | ||
6730 | <context-group purpose="location"> | ||
6731 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6732 | <context context-type="linenumber">26</context> | ||
6733 | </context-group> | ||
6734 | </trans-unit><trans-unit id="4804785061014590286" datatype="html"> | ||
6735 | <source>Logs</source><target state="new">Logs</target> | ||
6736 | <context-group purpose="location"> | ||
6737 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6738 | <context context-type="linenumber">37</context> | ||
6739 | </context-group> | ||
6740 | </trans-unit> | ||
6543 | <trans-unit id="3150704904301058778" datatype="html"> | 6741 | <trans-unit id="3150704904301058778" datatype="html"> |
6544 | <source>The plugin index is not available. Please retry later.</source> | 6742 | <source>The plugin index is not available. Please retry later.</source> |
6545 | <target state="new">The plugin index is not available. Please retry later.</target> | 6743 | <target state="new">The plugin index is not available. Please retry later.</target> |
@@ -6653,6 +6851,18 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6653 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> | 6851 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> |
6654 | <context context-type="linenumber">86</context> | 6852 | <context context-type="linenumber">86</context> |
6655 | </context-group> | 6853 | </context-group> |
6854 | </trans-unit><trans-unit id="2903648076838460070" datatype="html"> | ||
6855 | <source>Videos blocked</source><target state="new">Videos blocked</target> | ||
6856 | <context-group purpose="location"> | ||
6857 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6858 | <context context-type="linenumber">67</context> | ||
6859 | </context-group> | ||
6860 | </trans-unit><trans-unit id="7805059636749367886" datatype="html"> | ||
6861 | <source>Muted instances</source><target state="new">Muted instances</target> | ||
6862 | <context-group purpose="location"> | ||
6863 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6864 | <context context-type="linenumber">89</context> | ||
6865 | </context-group> | ||
6656 | </trans-unit> | 6866 | </trans-unit> |
6657 | <trans-unit id="5974506725502681113" datatype="html"> | 6867 | <trans-unit id="5974506725502681113" datatype="html"> |
6658 | <source>Password changed for user <x id="PH"/>.</source> | 6868 | <source>Password changed for user <x id="PH"/>.</source> |
@@ -6665,7 +6875,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6665 | <source>Update user password</source> | 6875 | <source>Update user password</source> |
6666 | <target state="new">Update user password</target> | 6876 | <target state="new">Update user password</target> |
6667 | 6877 | ||
6668 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit> | 6878 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit><trans-unit id="177544274549739411" datatype="html"> |
6879 | <source>Following list</source><target state="new">Following list</target> | ||
6880 | <context-group purpose="location"> | ||
6881 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6882 | <context context-type="linenumber">28</context> | ||
6883 | </context-group> | ||
6884 | </trans-unit><trans-unit id="8092429110007204784" datatype="html"> | ||
6885 | <source>Followers list</source><target state="new">Followers list</target> | ||
6886 | <context-group purpose="location"> | ||
6887 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6888 | <context context-type="linenumber">37</context> | ||
6889 | </context-group> | ||
6890 | </trans-unit> | ||
6669 | <trans-unit id="780323526182667308" datatype="html"> | 6891 | <trans-unit id="780323526182667308" datatype="html"> |
6670 | <source>User <x id="PH"/> updated.</source> | 6892 | <source>User <x id="PH"/> updated.</source> |
6671 | <target state="new">User | 6893 | <target state="new">User |
@@ -6684,7 +6906,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6684 | <x id="PH"/>. | 6906 | <x id="PH"/>. |
6685 | </target> | 6907 | </target> |
6686 | 6908 | ||
6687 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="8564701209009684429" datatype="html"> | 6909 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="7483807629538115183" datatype="html"> |
6910 | <source>Users list</source><target state="new">Users list</target> | ||
6911 | <context-group purpose="location"> | ||
6912 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6913 | <context context-type="linenumber">27</context> | ||
6914 | </context-group> | ||
6915 | </trans-unit><trans-unit id="1525334987774465166" datatype="html"> | ||
6916 | <source>Create a user</source><target state="new">Create a user</target> | ||
6917 | <context-group purpose="location"> | ||
6918 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6919 | <context context-type="linenumber">36</context> | ||
6920 | </context-group> | ||
6921 | </trans-unit><trans-unit id="5552039423287890133" datatype="html"> | ||
6922 | <source>Update a user</source><target state="new">Update a user</target> | ||
6923 | <context-group purpose="location"> | ||
6924 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6925 | <context context-type="linenumber">48</context> | ||
6926 | </context-group> | ||
6927 | </trans-unit><trans-unit id="8564701209009684429" datatype="html"> | ||
6688 | <source>Federation</source><target state="new">Federation</target> | 6928 | <source>Federation</source><target state="new">Federation</target> |
6689 | <context-group purpose="location"> | 6929 | <context-group purpose="location"> |
6690 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> | 6930 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> |
@@ -7038,7 +7278,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7038 | <source>Views for the day</source> | 7278 | <source>Views for the day</source> |
7039 | <target state="new">Views for the day</target> | 7279 | <target state="new">Views for the day</target> |
7040 | 7280 | ||
7041 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit> | 7281 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit><trans-unit id="4707367314920217630" datatype="html"> |
7282 | <source>Create new video channel</source><target state="new">Create new video channel</target> | ||
7283 | <context-group purpose="location"> | ||
7284 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7285 | <context context-type="linenumber">22</context> | ||
7286 | </context-group> | ||
7287 | </trans-unit><trans-unit id="6059091237492573541" datatype="html"> | ||
7288 | <source>Update video channel</source><target state="new">Update video channel</target> | ||
7289 | <context-group purpose="location"> | ||
7290 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7291 | <context context-type="linenumber">31</context> | ||
7292 | </context-group> | ||
7293 | </trans-unit><trans-unit id="6595008830732269870" datatype="html"> | ||
7294 | <source>Not found</source><target state="new">Not found</target> | ||
7295 | <context-group purpose="location"> | ||
7296 | <context context-type="sourcefile">../app/+page-not-found/page-not-found-routing.module.ts</context> | ||
7297 | <context context-type="linenumber">13</context> | ||
7298 | </context-group> | ||
7299 | </trans-unit> | ||
7042 | <trans-unit id="5032453707232754344"> | 7300 | <trans-unit id="5032453707232754344"> |
7043 | <source>Playlist <x id="PH"/> created.</source> | 7301 | <source>Playlist <x id="PH"/> created.</source> |
7044 | <target>Seznam | 7302 | <target>Seznam |
@@ -7056,7 +7314,31 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7056 | <source>Update playlist</source> | 7314 | <source>Update playlist</source> |
7057 | <target state="new">Update playlist</target> | 7315 | <target state="new">Update playlist</target> |
7058 | 7316 | ||
7059 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-video-playlists/my-account-video-playlist-elements.component.ts</context><context context-type="linenumber">48</context></context-group></trans-unit> | 7317 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">82</context></context-group></trans-unit><trans-unit id="3410331549417637431" datatype="html"> |
7318 | <source>Account video imports</source><target state="new">Account video imports</target> | ||
7319 | <context-group purpose="location"> | ||
7320 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7321 | <context context-type="linenumber">105</context> | ||
7322 | </context-group> | ||
7323 | </trans-unit><trans-unit id="4434998055872154420" datatype="html"> | ||
7324 | <source>Account subscriptions</source><target state="new">Account subscriptions</target> | ||
7325 | <context-group purpose="location"> | ||
7326 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7327 | <context context-type="linenumber">114</context> | ||
7328 | </context-group> | ||
7329 | </trans-unit><trans-unit id="6019411775996586321" datatype="html"> | ||
7330 | <source>Videos history</source><target state="new">Videos history</target> | ||
7331 | <context-group purpose="location"> | ||
7332 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7333 | <context context-type="linenumber">150</context> | ||
7334 | </context-group> | ||
7335 | </trans-unit><trans-unit id="5851560788527570644" datatype="html"> | ||
7336 | <source>Notifications</source><target state="new">Notifications</target> | ||
7337 | <context-group purpose="location"> | ||
7338 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7339 | <context context-type="linenumber">163</context> | ||
7340 | </context-group> | ||
7341 | </trans-unit> | ||
7060 | <trans-unit id="104404386496394770" datatype="html"> | 7342 | <trans-unit id="104404386496394770" datatype="html"> |
7061 | <source>Delete playlist</source> | 7343 | <source>Delete playlist</source> |
7062 | <target state="new">Delete playlist</target> | 7344 | <target state="new">Delete playlist</target> |
@@ -7210,7 +7492,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7210 | <x id="PH"/>. | 7492 | <x id="PH"/>. |
7211 | </target> | 7493 | </target> |
7212 | 7494 | ||
7213 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit> | 7495 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit><trans-unit id="8231550792139699065" datatype="html"> |
7496 | <source>Verify account email</source><target state="new">Verify account email</target> | ||
7497 | <context-group purpose="location"> | ||
7498 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7499 | <context context-type="linenumber">17</context> | ||
7500 | </context-group> | ||
7501 | </trans-unit><trans-unit id="4997281272800290390" datatype="html"> | ||
7502 | <source>Verify account ask send email</source><target state="new">Verify account ask send email</target> | ||
7503 | <context-group purpose="location"> | ||
7504 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7505 | <context context-type="linenumber">26</context> | ||
7506 | </context-group> | ||
7507 | </trans-unit> | ||
7214 | <trans-unit id="4180693983967989981"> | 7508 | <trans-unit id="4180693983967989981"> |
7215 | <source>Unable to find user id or verification string.</source> | 7509 | <source>Unable to find user id or verification string.</source> |
7216 | <target>Nelze najít uživatelovo id nebo verifikační řetězec.</target> | 7510 | <target>Nelze najít uživatelovo id nebo verifikační řetězec.</target> |
@@ -7335,27 +7629,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7335 | <source>any language</source> | 7629 | <source>any language</source> |
7336 | <target state="new">any language</target> | 7630 | <target state="new">any language</target> |
7337 | 7631 | ||
7338 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">202</context></context-group></trans-unit> | 7632 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">229</context></context-group></trans-unit> |
7339 | <trans-unit id="5633144232269377096" datatype="html"> | 7633 | <trans-unit id="5633144232269377096" datatype="html"> |
7340 | <source>hide</source> | 7634 | <source>hide</source> |
7341 | <target state="new">hide</target> | 7635 | <target state="new">hide</target> |
7342 | 7636 | ||
7343 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">118</context></context-group></trans-unit> | 7637 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> |
7344 | <trans-unit id="8603861867909474404" datatype="html"> | 7638 | <trans-unit id="8603861867909474404" datatype="html"> |
7345 | <source>blur</source> | 7639 | <source>blur</source> |
7346 | <target state="new">blur</target> | 7640 | <target state="new">blur</target> |
7347 | 7641 | ||
7348 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> | 7642 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> |
7349 | <trans-unit id="4534458451100881847" datatype="html"> | 7643 | <trans-unit id="4534458451100881847" datatype="html"> |
7350 | <source>display</source> | 7644 | <source>display</source> |
7351 | <target state="new">display</target> | 7645 | <target state="new">display</target> |
7352 | 7646 | ||
7353 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> | 7647 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">127</context></context-group></trans-unit> |
7354 | <trans-unit id="4467323362722952678" datatype="html"> | 7648 | <trans-unit id="4467323362722952678" datatype="html"> |
7355 | <source>Unknown</source> | 7649 | <source>Unknown</source> |
7356 | <target state="new">Unknown</target> | 7650 | <target state="new">Unknown</target> |
7357 | 7651 | ||
7358 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">190</context></context-group></trans-unit> | 7652 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">193</context></context-group></trans-unit> |
7359 | <trans-unit id="8781423666414310853"> | 7653 | <trans-unit id="8781423666414310853"> |
7360 | <source>Your password has been successfully reset!</source> | 7654 | <source>Your password has been successfully reset!</source> |
7361 | <target>Vaše heslo bylo úspěšně resetováno!</target> | 7655 | <target>Vaše heslo bylo úspěšně resetováno!</target> |
@@ -8473,27 +8767,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8473 | <source>Emphasis</source> | 8767 | <source>Emphasis</source> |
8474 | <target>Styly písma</target> | 8768 | <target>Styly písma</target> |
8475 | 8769 | ||
8476 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">77</context></context-group></trans-unit> | 8770 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> |
8477 | <trans-unit id="7565716024468232322"> | 8771 | <trans-unit id="7565716024468232322"> |
8478 | <source>Links</source> | 8772 | <source>Links</source> |
8479 | <target>Odkazy</target> | 8773 | <target>Odkazy</target> |
8480 | 8774 | ||
8481 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">78</context></context-group></trans-unit> | 8775 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> |
8482 | <trans-unit id="7838476952710404110"> | 8776 | <trans-unit id="7838476952710404110"> |
8483 | <source>New lines</source> | 8777 | <source>New lines</source> |
8484 | <target>Odřádkování</target> | 8778 | <target>Odřádkování</target> |
8485 | 8779 | ||
8486 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 8780 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">83</context></context-group></trans-unit> |
8487 | <trans-unit id="8756167649220050929"> | 8781 | <trans-unit id="8756167649220050929"> |
8488 | <source>Lists</source> | 8782 | <source>Lists</source> |
8489 | <target>Seznamy</target> | 8783 | <target>Seznamy</target> |
8490 | 8784 | ||
8491 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">80</context></context-group></trans-unit> | 8785 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">84</context></context-group></trans-unit> |
8492 | <trans-unit id="414887388288176527"> | 8786 | <trans-unit id="414887388288176527"> |
8493 | <source>Images</source> | 8787 | <source>Images</source> |
8494 | <target>Obrázky</target> | 8788 | <target>Obrázky</target> |
8495 | 8789 | ||
8496 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> | 8790 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">85</context></context-group></trans-unit> |
8497 | <trans-unit id="5708680277917691451"> | 8791 | <trans-unit id="5708680277917691451"> |
8498 | <source> | 8792 | <source> |
8499 | <x id="PH"/> users banned. | 8793 | <x id="PH"/> users banned. |
@@ -8889,7 +9183,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8889 | <source>Moderator</source> | 9183 | <source>Moderator</source> |
8890 | <target state="new">Moderator</target> | 9184 | <target state="new">Moderator</target> |
8891 | 9185 | ||
8892 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">386</context></context-group></trans-unit> | 9186 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">384</context></context-group></trans-unit> |
8893 | <trans-unit id="3723085768598852106" datatype="html"> | 9187 | <trans-unit id="3723085768598852106" datatype="html"> |
8894 | <source>Video removed from | 9188 | <source>Video removed from |
8895 | <x id="PH"/> | 9189 | <x id="PH"/> |
@@ -8962,7 +9256,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8962 | <source>Do you really want to delete this comment?</source> | 9256 | <source>Do you really want to delete this comment?</source> |
8963 | <target state="new">Do you really want to delete this comment?</target> | 9257 | <target state="new">Do you really want to delete this comment?</target> |
8964 | 9258 | ||
8965 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">434</context></context-group></trans-unit> | 9259 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">166</context></context-group></trans-unit> |
8966 | <trans-unit id="7837272126865175984" datatype="html"> | 9260 | <trans-unit id="7837272126865175984" datatype="html"> |
8967 | <source>Comment deleted.</source> | 9261 | <source>Comment deleted.</source> |
8968 | <target state="new">Comment deleted.</target> | 9262 | <target state="new">Comment deleted.</target> |
@@ -9074,9 +9368,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9074 | 9368 | ||
9075 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> | 9369 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> |
9076 | <source>Report</source><target state="new">Report</target> | 9370 | <source>Report</source><target state="new">Report</target> |
9371 | |||
9372 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="4814285799071780083" datatype="html"> | ||
9373 | <source>Remove</source><target state="new">Remove</target> | ||
9077 | <context-group purpose="location"> | 9374 | <context-group purpose="location"> |
9078 | <context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> | 9375 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> |
9079 | <context context-type="linenumber">286</context> | 9376 | <context context-type="linenumber">179</context> |
9377 | </context-group> | ||
9378 | </trans-unit><trans-unit id="6871668720687277843" datatype="html"> | ||
9379 | <source>Remove & re-draft</source><target state="new">Remove & re-draft</target> | ||
9380 | <context-group purpose="location"> | ||
9381 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> | ||
9382 | <context context-type="linenumber">187</context> | ||
9080 | </context-group> | 9383 | </context-group> |
9081 | </trans-unit> | 9384 | </trans-unit> |
9082 | <trans-unit id="4903651219400691248" datatype="html"> | 9385 | <trans-unit id="4903651219400691248" datatype="html"> |
@@ -9180,22 +9483,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9180 | <source>Only I can see this video</source> | 9483 | <source>Only I can see this video</source> |
9181 | <target state="new">Only I can see this video</target> | 9484 | <target state="new">Only I can see this video</target> |
9182 | 9485 | ||
9183 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">340</context></context-group></trans-unit> | 9486 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">341</context></context-group></trans-unit> |
9184 | <trans-unit id="6767380569816110388" datatype="html"> | 9487 | <trans-unit id="6767380569816110388" datatype="html"> |
9185 | <source>Only shareable via a private link</source> | 9488 | <source>Only shareable via a private link</source> |
9186 | <target state="new">Only shareable via a private link</target> | 9489 | <target state="new">Only shareable via a private link</target> |
9187 | 9490 | ||
9188 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">344</context></context-group></trans-unit> | 9491 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">345</context></context-group></trans-unit> |
9189 | <trans-unit id="6828965264297239528"> | 9492 | <trans-unit id="6828965264297239528"> |
9190 | <source>Anyone can see this video</source> | 9493 | <source>Anyone can see this video</source> |
9191 | <target>Kdokoliv může vidět toto video</target> | 9494 | <target>Kdokoliv může vidět toto video</target> |
9192 | 9495 | ||
9193 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">348</context></context-group></trans-unit> | 9496 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">349</context></context-group></trans-unit> |
9194 | <trans-unit id="1425933035739773115" datatype="html"> | 9497 | <trans-unit id="1425933035739773115" datatype="html"> |
9195 | <source>Only users of this instance can see this video</source> | 9498 | <source>Only users of this instance can see this video</source> |
9196 | <target state="new">Only users of this instance can see this video</target> | 9499 | <target state="new">Only users of this instance can see this video</target> |
9197 | 9500 | ||
9198 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">352</context></context-group></trans-unit> | 9501 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">353</context></context-group></trans-unit> |
9199 | <trans-unit id="5210096066382592800" datatype="html"> | 9502 | <trans-unit id="5210096066382592800" datatype="html"> |
9200 | <source>Video to import updated.</source> | 9503 | <source>Video to import updated.</source> |
9201 | <target state="new">Video to import updated.</target> | 9504 | <target state="new">Video to import updated.</target> |
@@ -9275,16 +9578,25 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9275 | <target state="new">Report comment</target> | 9578 | <target state="new">Report comment</target> |
9276 | 9579 | ||
9277 | 9580 | ||
9278 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 9581 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/report-modals/comment-report.component.ts</context><context context-type="linenumber">51</context></context-group></trans-unit> |
9279 | <trans-unit id="3691787517663044217" datatype="html"> | 9582 | <trans-unit id="3691787517663044217" datatype="html"> |
9280 | <source> The deletion will be sent to remote instances so they can reflect the change.</source> | 9583 | <source> The deletion will be sent to remote instances so they can reflect the change.</source> |
9281 | <target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> | 9584 | <target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> |
9282 | 9585 | ||
9283 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">163</context></context-group></trans-unit><trans-unit id="7321800851971795962" datatype="html"> | 9586 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">169</context></context-group></trans-unit><trans-unit id="7321800851971795962" datatype="html"> |
9284 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source><target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> | 9587 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source><target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> |
9588 | |||
9589 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="5964038603724691720" datatype="html"> | ||
9590 | <source>Delete and re-draft</source><target state="new">Delete and re-draft</target> | ||
9285 | <context-group purpose="location"> | 9591 | <context-group purpose="location"> |
9286 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | 9592 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> |
9287 | <context context-type="linenumber">165</context> | 9593 | <context context-type="linenumber">197</context> |
9594 | </context-group> | ||
9595 | </trans-unit><trans-unit id="7163633882758007711" datatype="html"> | ||
9596 | <source>Do you really want to delete and re-draft this comment?</source><target state="new">Do you really want to delete and re-draft this comment?</target> | ||
9597 | <context-group purpose="location"> | ||
9598 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | ||
9599 | <context context-type="linenumber">197</context> | ||
9288 | </context-group> | 9600 | </context-group> |
9289 | </trans-unit> | 9601 | </trans-unit> |
9290 | 9602 | ||
@@ -9449,6 +9761,36 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9449 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> | 9761 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> |
9450 | <context context-type="linenumber">36</context> | 9762 | <context context-type="linenumber">36</context> |
9451 | </context-group> | 9763 | </context-group> |
9764 | </trans-unit><trans-unit id="4668975178372693951" datatype="html"> | ||
9765 | <source>Discover videos</source><target state="new">Discover videos</target> | ||
9766 | <context-group purpose="location"> | ||
9767 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9768 | <context context-type="linenumber">23</context> | ||
9769 | </context-group> | ||
9770 | </trans-unit><trans-unit id="8067135025051844577" datatype="html"> | ||
9771 | <source>Trending videos</source><target state="new">Trending videos</target> | ||
9772 | <context-group purpose="location"> | ||
9773 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9774 | <context context-type="linenumber">32</context> | ||
9775 | </context-group> | ||
9776 | </trans-unit><trans-unit id="664221386829541948" datatype="html"> | ||
9777 | <source>Recently added videos</source><target state="new">Recently added videos</target> | ||
9778 | <context-group purpose="location"> | ||
9779 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9780 | <context context-type="linenumber">58</context> | ||
9781 | </context-group> | ||
9782 | </trans-unit><trans-unit id="8212906256415538361" datatype="html"> | ||
9783 | <source>Upload a video</source><target state="new">Upload a video</target> | ||
9784 | <context-group purpose="location"> | ||
9785 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9786 | <context context-type="linenumber">97</context> | ||
9787 | </context-group> | ||
9788 | </trans-unit><trans-unit id="7590784934397800835" datatype="html"> | ||
9789 | <source>Edit a video</source><target state="new">Edit a video</target> | ||
9790 | <context-group purpose="location"> | ||
9791 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9792 | <context context-type="linenumber">106</context> | ||
9793 | </context-group> | ||
9452 | </trans-unit> | 9794 | </trans-unit> |
9453 | </body> | 9795 | </body> |
9454 | </file> | 9796 | </file> |
diff --git a/client/src/locale/angular.da-DK.xlf b/client/src/locale/angular.da-DK.xlf index 93413392d..063951d9d 100644 --- a/client/src/locale/angular.da-DK.xlf +++ b/client/src/locale/angular.da-DK.xlf | |||
@@ -318,7 +318,7 @@ | |||
318 | <target>Indstillinger</target> | 318 | <target>Indstillinger</target> |
319 | 319 | ||
320 | 320 | ||
321 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 321 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">48</context></context-group></trans-unit> |
322 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d"> | 322 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d"> |
323 | <source>Start at</source> | 323 | <source>Start at</source> |
324 | <target>Start ved</target> | 324 | <target>Start ved</target> |
@@ -452,7 +452,7 @@ | |||
452 | Cancel | 452 | Cancel |
453 | </target> | 453 | </target> |
454 | 454 | ||
455 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> | 455 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit> |
456 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd" datatype="html"> | 456 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd" datatype="html"> |
457 | <source>Download</source> | 457 | <source>Download</source> |
458 | <target state="new">Download</target> | 458 | <target state="new">Download</target> |
@@ -575,7 +575,7 @@ | |||
575 | 575 | ||
576 | 576 | ||
577 | 577 | ||
578 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 578 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
579 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc" datatype="html"> | 579 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc" datatype="html"> |
580 | <source>Edit starts/stops at</source> | 580 | <source>Edit starts/stops at</source> |
581 | <target state="new">Edit starts/stops at</target> | 581 | <target state="new">Edit starts/stops at</target> |
@@ -615,7 +615,7 @@ | |||
615 | 615 | ||
616 | 616 | ||
617 | 617 | ||
618 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> | 618 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
619 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> | 619 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> |
620 | <source>Edit</source> | 620 | <source>Edit</source> |
621 | <target>Redigere</target> | 621 | <target>Redigere</target> |
@@ -640,17 +640,10 @@ | |||
640 | <target state="new">Complete preview</target> | 640 | <target state="new">Complete preview</target> |
641 | 641 | ||
642 | <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></trans-unit> | 642 | <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></trans-unit> |
643 | <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f"> | 643 | <trans-unit id="8644431249513874405" datatype="html"> |
644 | <source>Get help</source> | ||
645 | <target>Få hjælp</target> | ||
646 | |||
647 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit><trans-unit id="8644431249513874405" datatype="html"> | ||
648 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> | 644 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> |
649 | <context-group purpose="location"> | 645 | |
650 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 646 | <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></trans-unit> |
651 | <context context-type="linenumber">71</context> | ||
652 | </context-group> | ||
653 | </trans-unit> | ||
654 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> | 647 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> |
655 | <source>Recommended</source> | 648 | <source>Recommended</source> |
656 | <target state="new">Recommended</target> | 649 | <target state="new">Recommended</target> |
@@ -690,7 +683,7 @@ | |||
690 | <source>PROFILE SETTINGS</source> | 683 | <source>PROFILE SETTINGS</source> |
691 | <target state="new">PROFILE SETTINGS</target> | 684 | <target state="new">PROFILE SETTINGS</target> |
692 | 685 | ||
693 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 686 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">12</context></context-group></trans-unit> |
694 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3" datatype="html"> | 687 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3" datatype="html"> |
695 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> | 688 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> |
696 | <target state="new"> | 689 | <target state="new"> |
@@ -862,11 +855,8 @@ | |||
862 | 855 | ||
863 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> | 856 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> |
864 | <source>User</source><target state="new">User</target> | 857 | <source>User</source><target state="new">User</target> |
865 | <context-group purpose="location"> | 858 | |
866 | <context context-type="sourcefile">../app/core/users/user.service.ts</context> | 859 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit> |
867 | <context context-type="linenumber">384</context> | ||
868 | </context-group> | ||
869 | </trans-unit> | ||
870 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0" datatype="html"> | 860 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0" datatype="html"> |
871 | <source>Ban</source> | 861 | <source>Ban</source> |
872 | <target state="new">Ban</target> | 862 | <target state="new">Ban</target> |
@@ -1374,89 +1364,89 @@ The link will expire within 1 hour.</target> | |||
1374 | <source>Account settings</source> | 1364 | <source>Account settings</source> |
1375 | <target state="new">Account settings</target> | 1365 | <target state="new">Account settings</target> |
1376 | 1366 | ||
1377 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 1367 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
1378 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> | 1368 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> |
1379 | <source>Channels settings</source> | 1369 | <source>Channels settings</source> |
1380 | <target state="new">Channels settings</target> | 1370 | <target state="new">Channels settings</target> |
1381 | 1371 | ||
1382 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 1372 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> |
1383 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> | 1373 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> |
1384 | <source>Interface:</source> | 1374 | <source>Interface:</source> |
1385 | <target state="new">Interface:</target> | 1375 | <target state="new">Interface:</target> |
1386 | 1376 | ||
1387 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 1377 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1388 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> | 1378 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> |
1389 | <source>Videos:</source> | 1379 | <source>Videos:</source> |
1390 | <target state="new">Videos:</target> | 1380 | <target state="new">Videos:</target> |
1391 | 1381 | ||
1392 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 1382 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> |
1393 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> | 1383 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> |
1394 | <source>Sensitive:</source> | 1384 | <source>Sensitive:</source> |
1395 | <target state="new">Sensitive:</target> | 1385 | <target state="new">Sensitive:</target> |
1396 | 1386 | ||
1397 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 1387 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">54</context></context-group></trans-unit> |
1398 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1388 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> |
1399 | <source>Interface: <x id="INTERPOLATION"/></source> | 1389 | <source>Interface: <x id="INTERPOLATION"/></source> |
1400 | <target state="new">Interface: | 1390 | <target state="new">Interface: |
1401 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> | 1391 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> |
1402 | </target> | 1392 | </target> |
1403 | 1393 | ||
1404 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">156</context></context-group></trans-unit> | 1394 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> |
1405 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1395 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1406 | <source>Help share videos</source> | 1396 | <source>Help share videos</source> |
1407 | <target state="new">Help share videos</target> | 1397 | <target state="new">Help share videos</target> |
1408 | 1398 | ||
1409 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> | 1399 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
1410 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> | 1400 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> |
1411 | <source>More account settings</source> | 1401 | <source>More account settings</source> |
1412 | <target state="new">More account settings</target> | 1402 | <target state="new">More account settings</target> |
1413 | 1403 | ||
1414 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> | 1404 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> |
1415 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> | 1405 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> |
1416 | <source>Keyboard shortcuts</source> | 1406 | <source>Keyboard shortcuts</source> |
1417 | <target state="new">Keyboard shortcuts</target> | 1407 | <target state="new">Keyboard shortcuts</target> |
1418 | 1408 | ||
1419 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 1409 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">72</context></context-group></trans-unit> |
1420 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> | 1410 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> |
1421 | <source>Help</source> | 1411 | <source>Help</source> |
1422 | <target state="new">Help</target> | 1412 | <target state="new">Help</target> |
1423 | 1413 | ||
1424 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1414 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1425 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> | 1415 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> |
1426 | <source>Get help using PeerTube</source> | 1416 | <source>Get help using PeerTube</source> |
1427 | <target state="new">Get help using PeerTube</target> | 1417 | <target state="new">Get help using PeerTube</target> |
1428 | 1418 | ||
1429 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">161</context></context-group></trans-unit> | 1419 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">167</context></context-group></trans-unit> |
1430 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> | 1420 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> |
1431 | <source>Shortcuts</source> | 1421 | <source>Shortcuts</source> |
1432 | <target state="new">Shortcuts</target> | 1422 | <target state="new">Shortcuts</target> |
1433 | 1423 | ||
1434 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1424 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1435 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> | 1425 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> |
1436 | <source>powered by PeerTube</source> | 1426 | <source>powered by PeerTube</source> |
1437 | <target state="new">powered by PeerTube</target> | 1427 | <target state="new">powered by PeerTube</target> |
1438 | 1428 | ||
1439 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | 1429 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">177</context></context-group></trans-unit> |
1440 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> | 1430 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> |
1441 | <source>powered by PeerTube - CopyLeft 2015-2020</source> | 1431 | <source>powered by PeerTube - CopyLeft 2015-2020</source> |
1442 | <target state="new">powered by PeerTube - CopyLeft 2015-2020</target> | 1432 | <target state="new">powered by PeerTube - CopyLeft 2015-2020</target> |
1443 | 1433 | ||
1444 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> | 1434 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">176</context></context-group></trans-unit> |
1445 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344"> | 1435 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344"> |
1446 | <source>Log out</source> | 1436 | <source>Log out</source> |
1447 | <target>Log ud</target> | 1437 | <target>Log ud</target> |
1448 | 1438 | ||
1449 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">70</context></context-group></trans-unit> | 1439 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit> |
1450 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> | 1440 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> |
1451 | <source>Create an account</source> | 1441 | <source>Create an account</source> |
1452 | <target>Opret en konto</target> | 1442 | <target>Opret en konto</target> |
1453 | 1443 | ||
1454 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">78</context></context-group></trans-unit> | 1444 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
1455 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> | 1445 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> |
1456 | <source>MY LIBRARY</source> | 1446 | <source>MY LIBRARY</source> |
1457 | <target state="new">MY LIBRARY</target> | 1447 | <target state="new">MY LIBRARY</target> |
1458 | 1448 | ||
1459 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 1449 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">88</context></context-group></trans-unit> |
1460 | <trans-unit id="6371572688505952303"> | 1450 | <trans-unit id="6371572688505952303"> |
1461 | <source>My library</source> | 1451 | <source>My library</source> |
1462 | <target>Mit bibliotek</target> | 1452 | <target>Mit bibliotek</target> |
@@ -1496,22 +1486,22 @@ The link will expire within 1 hour.</target> | |||
1496 | <source>Videos</source> | 1486 | <source>Videos</source> |
1497 | <target>Videoer</target> | 1487 | <target>Videoer</target> |
1498 | 1488 | ||
1499 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">86</context></context-group></trans-unit> | 1489 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">92</context></context-group></trans-unit> |
1500 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> | 1490 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> |
1501 | <source>Playlists</source> | 1491 | <source>Playlists</source> |
1502 | <target>Afspilningslister</target> | 1492 | <target>Afspilningslister</target> |
1503 | 1493 | ||
1504 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">91</context></context-group></trans-unit> | 1494 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">97</context></context-group></trans-unit> |
1505 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2"> | 1495 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2"> |
1506 | <source>Subscriptions</source> | 1496 | <source>Subscriptions</source> |
1507 | <target>Abonnementer</target> | 1497 | <target>Abonnementer</target> |
1508 | 1498 | ||
1509 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 1499 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">102</context></context-group></trans-unit> |
1510 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8"> | 1500 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8"> |
1511 | <source>History</source> | 1501 | <source>History</source> |
1512 | <target>Historik</target> | 1502 | <target>Historik</target> |
1513 | 1503 | ||
1514 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit> | 1504 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">107</context></context-group></trans-unit> |
1515 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> | 1505 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> |
1516 | <source>VIDEOS</source> | 1506 | <source>VIDEOS</source> |
1517 | <target state="new">VIDEOS</target> | 1507 | <target state="new">VIDEOS</target> |
@@ -1523,27 +1513,27 @@ The link will expire within 1 hour.</target> | |||
1523 | <target state="new">Discover</target> | 1513 | <target state="new">Discover</target> |
1524 | 1514 | ||
1525 | 1515 | ||
1526 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">111</context></context-group></trans-unit> | 1516 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">117</context></context-group></trans-unit> |
1527 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> | 1517 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> |
1528 | <source>Trending</source> | 1518 | <source>Trending</source> |
1529 | <target state="new">Trending</target> | 1519 | <target state="new">Trending</target> |
1530 | 1520 | ||
1531 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">116</context></context-group></trans-unit> | 1521 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">122</context></context-group></trans-unit> |
1532 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> | 1522 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> |
1533 | <source>Most liked</source> | 1523 | <source>Most liked</source> |
1534 | <target state="new">Most liked</target> | 1524 | <target state="new">Most liked</target> |
1535 | 1525 | ||
1536 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">121</context></context-group></trans-unit> | 1526 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">127</context></context-group></trans-unit> |
1537 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> | 1527 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> |
1538 | <source>Recently added</source> | 1528 | <source>Recently added</source> |
1539 | <target>Nylig tilføjet</target> | 1529 | <target>Nylig tilføjet</target> |
1540 | 1530 | ||
1541 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">126</context></context-group></trans-unit> | 1531 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">132</context></context-group></trans-unit> |
1542 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> | 1532 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> |
1543 | <source>Administration</source> | 1533 | <source>Administration</source> |
1544 | <target>Administration</target> | 1534 | <target>Administration</target> |
1545 | 1535 | ||
1546 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">140</context></context-group></trans-unit> | 1536 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">146</context></context-group></trans-unit> |
1547 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> | 1537 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> |
1548 | <source>About</source> | 1538 | <source>About</source> |
1549 | <target>Om</target> | 1539 | <target>Om</target> |
@@ -1554,7 +1544,7 @@ The link will expire within 1 hour.</target> | |||
1554 | <source>Contact</source> | 1544 | <source>Contact</source> |
1555 | <target state="new">Contact</target> | 1545 | <target state="new">Contact</target> |
1556 | 1546 | ||
1557 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">160</context></context-group></trans-unit> | 1547 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">166</context></context-group></trans-unit> |
1558 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771" datatype="html"> | 1548 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771" datatype="html"> |
1559 | <source>View your notifications</source> | 1549 | <source>View your notifications</source> |
1560 | <target state="new">View your notifications</target> | 1550 | <target state="new">View your notifications</target> |
@@ -1581,7 +1571,7 @@ The link will expire within 1 hour.</target> | |||
1581 | <source>See all your notifications</source> | 1571 | <source>See all your notifications</source> |
1582 | <target state="new">See all your notifications</target> | 1572 | <target state="new">See all your notifications</target> |
1583 | 1573 | ||
1584 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 1574 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">40</context></context-group></trans-unit> |
1585 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> | 1575 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> |
1586 | <source>Search videos, channels…</source> | 1576 | <source>Search videos, channels…</source> |
1587 | <target state="new">Search videos, channels…</target> | 1577 | <target state="new">Search videos, channels…</target> |
@@ -1925,22 +1915,22 @@ The link will expire within 1 hour.</target> | |||
1925 | <source>FAQ</source> | 1915 | <source>FAQ</source> |
1926 | <target state="new">FAQ</target> | 1916 | <target state="new">FAQ</target> |
1927 | 1917 | ||
1928 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">163</context></context-group></trans-unit> | 1918 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
1929 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> | 1919 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> |
1930 | <source>Frequently asked questions about PeerTube</source> | 1920 | <source>Frequently asked questions about PeerTube</source> |
1931 | <target state="new">Frequently asked questions about PeerTube</target> | 1921 | <target state="new">Frequently asked questions about PeerTube</target> |
1932 | 1922 | ||
1933 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1923 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1934 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> | 1924 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> |
1935 | <source>API</source> | 1925 | <source>API</source> |
1936 | <target state="new">API</target> | 1926 | <target state="new">API</target> |
1937 | 1927 | ||
1938 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1928 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1939 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> | 1929 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> |
1940 | <source>API documentation</source> | 1930 | <source>API documentation</source> |
1941 | <target state="new">API documentation</target> | 1931 | <target state="new">API documentation</target> |
1942 | 1932 | ||
1943 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 1933 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
1944 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5" datatype="html"> | 1934 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5" datatype="html"> |
1945 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> | 1935 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> |
1946 | <target state="new">Schedule publication ( | 1936 | <target state="new">Schedule publication ( |
@@ -2341,7 +2331,13 @@ The link will expire within 1 hour.</target> | |||
2341 | Less customization | 2331 | Less customization |
2342 | </target> | 2332 | </target> |
2343 | 2333 | ||
2344 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit> | 2334 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit><trans-unit id="2454050363478003966" datatype="html"> |
2335 | <source>Login</source><target state="new">Login</target> | ||
2336 | <context-group purpose="location"> | ||
2337 | <context context-type="sourcefile">../app/+login/login-routing.module.ts</context> | ||
2338 | <context context-type="linenumber">14</context> | ||
2339 | </context-group> | ||
2340 | </trans-unit> | ||
2345 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e" datatype="html"> | 2341 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e" datatype="html"> |
2346 | <source>Autoplay</source> | 2342 | <source>Autoplay</source> |
2347 | <target state="new">Autoplay</target> | 2343 | <target state="new">Autoplay</target> |
@@ -2616,7 +2612,7 @@ The link will expire within 1 hour.</target> | |||
2616 | <source>No comments.</source> | 2612 | <source>No comments.</source> |
2617 | <target state="new">No comments.</target> | 2613 | <target state="new">No comments.</target> |
2618 | 2614 | ||
2619 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 2615 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> |
2620 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> | 2616 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> |
2621 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> | 2617 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> |
2622 | <target state="new"> | 2618 | <target state="new"> |
@@ -2626,7 +2622,7 @@ The link will expire within 1 hour.</target> | |||
2626 | 2622 | ||
2627 | </target> | 2623 | </target> |
2628 | 2624 | ||
2629 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">79</context></context-group></trans-unit> | 2625 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
2630 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> | 2626 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> |
2631 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> | 2627 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> |
2632 | <target state="new"> | 2628 | <target state="new"> |
@@ -2635,14 +2631,14 @@ The link will expire within 1 hour.</target> | |||
2635 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> | 2631 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> |
2636 | </target> | 2632 | </target> |
2637 | 2633 | ||
2638 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 2634 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">87</context></context-group></trans-unit> |
2639 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> | 2635 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> |
2640 | <source>View <x id="INTERPOLATION"/> replies</source> | 2636 | <source>View <x id="INTERPOLATION"/> replies</source> |
2641 | <target state="new">View | 2637 | <target state="new">View |
2642 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies | 2638 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies |
2643 | </target> | 2639 | </target> |
2644 | 2640 | ||
2645 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">85</context></context-group></trans-unit> | 2641 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">90</context></context-group></trans-unit> |
2646 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828" datatype="html"> | 2642 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828" datatype="html"> |
2647 | <source> | 2643 | <source> |
2648 | Comments are disabled. | 2644 | Comments are disabled. |
@@ -2651,26 +2647,84 @@ The link will expire within 1 hour.</target> | |||
2651 | Comments are disabled. | 2647 | Comments are disabled. |
2652 | </target> | 2648 | </target> |
2653 | 2649 | ||
2654 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 2650 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit> |
2655 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e" datatype="html"> | 2651 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e" datatype="html"> |
2656 | <source>Add comment...</source> | 2652 | <source>Add comment...</source> |
2657 | <target state="new">Add comment...</target> | 2653 | <target state="new">Add comment...</target> |
2658 | 2654 | ||
2659 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | 2655 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit><trans-unit id="4e5254dedf0c12ce7e7c2197384fceebe3b29a2b" datatype="html"> |
2660 | <trans-unit id="8956c0f4c6974289fc63f1ab6b54f5b32ed65eeb" datatype="html"> | 2656 | <source>Markdown compatible</source><target state="new">Markdown compatible</target> |
2661 | <source> | 2657 | <context-group purpose="location"> |
2662 | Reply | 2658 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> |
2663 | </source> | 2659 | <context context-type="linenumber">13</context> |
2664 | <target state="new"> | 2660 | </context-group> |
2665 | Reply | 2661 | </trans-unit><trans-unit id="4739ffad85f09defefdb6e51b45f43b2ef7c4388" datatype="html"> |
2666 | </target> | 2662 | <source>Markdown compatible that supports:</source><target state="new">Markdown compatible that supports:</target> |
2667 | 2663 | <context-group purpose="location"> | |
2668 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 2664 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> |
2665 | <context context-type="linenumber">15</context> | ||
2666 | </context-group> | ||
2667 | </trans-unit><trans-unit id="9a53b17a021bb0677c156fd893461797fc497a10" datatype="html"> | ||
2668 | <source>Auto generated links</source><target state="new">Auto generated links</target> | ||
2669 | <context-group purpose="location"> | ||
2670 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2671 | <context context-type="linenumber">18</context> | ||
2672 | </context-group> | ||
2673 | </trans-unit><trans-unit id="664f99b8919d6dd2faa1c1f7c378aa86d1be5e8a" datatype="html"> | ||
2674 | <source>Break lines</source><target state="new">Break lines</target> | ||
2675 | <context-group purpose="location"> | ||
2676 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2677 | <context context-type="linenumber">19</context> | ||
2678 | </context-group> | ||
2679 | </trans-unit><trans-unit id="b15e7bec5c7833d2d9634946ccbed68967b1bee1" datatype="html"> | ||
2680 | <source>Lists</source><target state="new">Lists</target> | ||
2681 | <context-group purpose="location"> | ||
2682 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2683 | <context context-type="linenumber">20</context> | ||
2684 | </context-group> | ||
2685 | </trans-unit><trans-unit id="ab4426b60f13c00b61d6b714d390dc629f314980" datatype="html"> | ||
2686 | <source>Emphasis</source><target state="new">Emphasis</target> | ||
2687 | <context-group purpose="location"> | ||
2688 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2689 | <context context-type="linenumber">22</context> | ||
2690 | </context-group> | ||
2691 | </trans-unit><trans-unit id="4e13b179501d3d32721037e03b4c04acb9857c5f" datatype="html"> | ||
2692 | <source>bold</source><target state="new">bold</target> | ||
2693 | <context-group purpose="location"> | ||
2694 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2695 | <context context-type="linenumber">23</context> | ||
2696 | </context-group> | ||
2697 | </trans-unit><trans-unit id="3c12190421fbb2756e6bbead923df9ec5de8ede2" datatype="html"> | ||
2698 | <source>italic</source><target state="new">italic</target> | ||
2699 | <context-group purpose="location"> | ||
2700 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2701 | <context context-type="linenumber">23</context> | ||
2702 | </context-group> | ||
2703 | </trans-unit><trans-unit id="adb4bbdcb961b8aac8298d6cac554d9b25636b7a" datatype="html"> | ||
2704 | <source>Emoji shortcuts</source><target state="new">Emoji shortcuts</target> | ||
2705 | <context-group purpose="location"> | ||
2706 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2707 | <context context-type="linenumber">26</context> | ||
2708 | </context-group> | ||
2709 | </trans-unit><trans-unit id="b9809a21a8eb3c9db2a0282c5dd94bc221575c96" datatype="html"> | ||
2710 | <source>Emoji markup</source><target state="new">Emoji markup</target> | ||
2711 | <context-group purpose="location"> | ||
2712 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2713 | <context context-type="linenumber">30</context> | ||
2714 | </context-group> | ||
2715 | </trans-unit><trans-unit id="f37feb427aaa551edd1f22616be6464bc0d492de" datatype="html"> | ||
2716 | <source>See complete list</source><target state="new">See complete list</target> | ||
2717 | <context-group purpose="location"> | ||
2718 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2719 | <context context-type="linenumber">32</context> | ||
2720 | </context-group> | ||
2721 | </trans-unit> | ||
2722 | |||
2669 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135" datatype="html"> | 2723 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135" datatype="html"> |
2670 | <source>You are one step away from commenting</source> | 2724 | <source>You are one step away from commenting</source> |
2671 | <target state="new">You are one step away from commenting</target> | 2725 | <target state="new">You are one step away from commenting</target> |
2672 | 2726 | ||
2673 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 2727 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
2674 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> | 2728 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> |
2675 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> | 2729 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> |
2676 | <target state="new"> | 2730 | <target state="new"> |
@@ -2679,7 +2733,7 @@ The link will expire within 1 hour.</target> | |||
2679 | from within the software's interface. | 2733 | from within the software's interface. |
2680 | </target> | 2734 | </target> |
2681 | 2735 | ||
2682 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 2736 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
2683 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb" datatype="html"> | 2737 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb" datatype="html"> |
2684 | <source> | 2738 | <source> |
2685 | If you have an account on Mastodon or Pleroma, you can open it directly in their interface: | 2739 | If you have an account on Mastodon or Pleroma, you can open it directly in their interface: |
@@ -2688,12 +2742,30 @@ The link will expire within 1 hour.</target> | |||
2688 | If you have an account on Mastodon or Pleroma, you can open it directly in their interface: | 2742 | If you have an account on Mastodon or Pleroma, you can open it directly in their interface: |
2689 | </target> | 2743 | </target> |
2690 | 2744 | ||
2691 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">41</context></context-group></trans-unit> | 2745 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">65</context></context-group></trans-unit> |
2692 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> | 2746 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> |
2693 | <source>Login to comment</source> | 2747 | <source>Login to comment</source> |
2694 | <target state="new">Login to comment</target> | 2748 | <target state="new">Login to comment</target> |
2695 | 2749 | ||
2696 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">52</context></context-group></trans-unit> | 2750 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit><trans-unit id="974170f455ff5a9034d5737e84b4194c0046fc6b" datatype="html"> |
2751 | <source>Markdown Emoji List</source><target state="new">Markdown Emoji List</target> | ||
2752 | <context-group purpose="location"> | ||
2753 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2754 | <context context-type="linenumber">84</context> | ||
2755 | </context-group> | ||
2756 | </trans-unit><trans-unit id="2662644497259948010" datatype="html"> | ||
2757 | <source>Comment</source><target state="new">Comment</target> | ||
2758 | <context-group purpose="location"> | ||
2759 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2760 | <context context-type="linenumber">58</context> | ||
2761 | </context-group> | ||
2762 | </trans-unit><trans-unit id="4502286564339177240" datatype="html"> | ||
2763 | <source>Reply</source><target state="new">Reply</target> | ||
2764 | <context-group purpose="location"> | ||
2765 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2766 | <context context-type="linenumber">60</context> | ||
2767 | </context-group> | ||
2768 | </trans-unit> | ||
2697 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285" datatype="html"> | 2769 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285" datatype="html"> |
2698 | <source>Highlighted comment</source> | 2770 | <source>Highlighted comment</source> |
2699 | <target state="new">Highlighted comment</target> | 2771 | <target state="new">Highlighted comment</target> |
@@ -2708,7 +2780,7 @@ The link will expire within 1 hour.</target> | |||
2708 | <source>This comment has been deleted</source> | 2780 | <source>This comment has been deleted</source> |
2709 | <target state="new">This comment has been deleted</target> | 2781 | <target state="new">This comment has been deleted</target> |
2710 | 2782 | ||
2711 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">62</context></context-group></trans-unit> | 2783 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">61</context></context-group></trans-unit> |
2712 | <trans-unit id="9031514421077169181" datatype="html"> | 2784 | <trans-unit id="9031514421077169181" datatype="html"> |
2713 | <source>Video redundancies</source> | 2785 | <source>Video redundancies</source> |
2714 | <target state="new">Video redundancies</target> | 2786 | <target state="new">Video redundancies</target> |
@@ -3565,7 +3637,25 @@ The link will expire within 1 hour.</target> | |||
3565 | <target state="new">No account found.</target> | 3637 | <target state="new">No account found.</target> |
3566 | 3638 | ||
3567 | 3639 | ||
3568 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit> | 3640 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit><trans-unit id="2338185419645468935" datatype="html"> |
3641 | <source>List installed plugins</source><target state="new">List installed plugins</target> | ||
3642 | <context-group purpose="location"> | ||
3643 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3644 | <context context-type="linenumber">28</context> | ||
3645 | </context-group> | ||
3646 | </trans-unit><trans-unit id="8897412584195581488" datatype="html"> | ||
3647 | <source>Search plugins</source><target state="new">Search plugins</target> | ||
3648 | <context-group purpose="location"> | ||
3649 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3650 | <context context-type="linenumber">37</context> | ||
3651 | </context-group> | ||
3652 | </trans-unit><trans-unit id="4994333937800672218" datatype="html"> | ||
3653 | <source>Show plugin</source><target state="new">Show plugin</target> | ||
3654 | <context-group purpose="location"> | ||
3655 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3656 | <context context-type="linenumber">46</context> | ||
3657 | </context-group> | ||
3658 | </trans-unit> | ||
3569 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> | 3659 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> |
3570 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> | 3660 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> |
3571 | <target state="new">Showing | 3661 | <target state="new">Showing |
@@ -4296,7 +4386,7 @@ The link will expire within 1 hour.</target> | |||
4296 | <source>Administrator</source> | 4386 | <source>Administrator</source> |
4297 | <target>Administrator</target> | 4387 | <target>Administrator</target> |
4298 | 4388 | ||
4299 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">385</context></context-group></trans-unit> | 4389 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">383</context></context-group></trans-unit> |
4300 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587" datatype="html"> | 4390 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587" datatype="html"> |
4301 | <source>Admin email</source> | 4391 | <source>Admin email</source> |
4302 | <target state="new">Admin email</target> | 4392 | <target state="new">Admin email</target> |
@@ -4558,27 +4648,27 @@ The link will expire within 1 hour.</target> | |||
4558 | <source>VIDEO SETTINGS</source> | 4648 | <source>VIDEO SETTINGS</source> |
4559 | <target state="new">VIDEO SETTINGS</target> | 4649 | <target state="new">VIDEO SETTINGS</target> |
4560 | 4650 | ||
4561 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit> | 4651 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
4562 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> | 4652 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> |
4563 | <source>NOTIFICATIONS</source> | 4653 | <source>NOTIFICATIONS</source> |
4564 | <target state="new">NOTIFICATIONS</target> | 4654 | <target state="new">NOTIFICATIONS</target> |
4565 | 4655 | ||
4566 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 4656 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">37</context></context-group></trans-unit> |
4567 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> | 4657 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> |
4568 | <source>INTERFACE</source> | 4658 | <source>INTERFACE</source> |
4569 | <target state="new">INTERFACE</target> | 4659 | <target state="new">INTERFACE</target> |
4570 | 4660 | ||
4571 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 4661 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit> |
4572 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> | 4662 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> |
4573 | <source>PASSWORD</source> | 4663 | <source>PASSWORD</source> |
4574 | <target state="new">PASSWORD</target> | 4664 | <target state="new">PASSWORD</target> |
4575 | 4665 | ||
4576 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">59</context></context-group></trans-unit> | 4666 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">57</context></context-group></trans-unit> |
4577 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> | 4667 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> |
4578 | <source>EMAIL</source> | 4668 | <source>EMAIL</source> |
4579 | <target state="new">EMAIL</target> | 4669 | <target state="new">EMAIL</target> |
4580 | 4670 | ||
4581 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">69</context></context-group></trans-unit> | 4671 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">67</context></context-group></trans-unit> |
4582 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> | 4672 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> |
4583 | <source>DANGER ZONE</source> | 4673 | <source>DANGER ZONE</source> |
4584 | <target state="new">DANGER ZONE</target> | 4674 | <target state="new">DANGER ZONE</target> |
@@ -4828,7 +4918,31 @@ The link will expire within 1 hour.</target> | |||
4828 | <source>No ownership change request found.</source> | 4918 | <source>No ownership change request found.</source> |
4829 | <target state="new">No ownership change request found.</target> | 4919 | <target state="new">No ownership change request found.</target> |
4830 | 4920 | ||
4831 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit> | 4921 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit><trans-unit id="4247400351982331798" datatype="html"> |
4922 | <source>Account settings</source><target state="new">Account settings</target> | ||
4923 | <context-group purpose="location"> | ||
4924 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4925 | <context context-type="linenumber">37</context> | ||
4926 | </context-group> | ||
4927 | </trans-unit><trans-unit id="154062590416726309" datatype="html"> | ||
4928 | <source>Account playlists</source><target state="new">Account playlists</target> | ||
4929 | <context-group purpose="location"> | ||
4930 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4931 | <context context-type="linenumber">55</context> | ||
4932 | </context-group> | ||
4933 | </trans-unit><trans-unit id="6550287183367517925" datatype="html"> | ||
4934 | <source>Create new playlist</source><target state="new">Create new playlist</target> | ||
4935 | <context-group purpose="location"> | ||
4936 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4937 | <context context-type="linenumber">64</context> | ||
4938 | </context-group> | ||
4939 | </trans-unit><trans-unit id="2864486939135008600" datatype="html"> | ||
4940 | <source>Playlist elements</source><target state="new">Playlist elements</target> | ||
4941 | <context-group purpose="location"> | ||
4942 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4943 | <context context-type="linenumber">73</context> | ||
4944 | </context-group> | ||
4945 | </trans-unit> | ||
4832 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> | 4946 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> |
4833 | <source>My imports</source> | 4947 | <source>My imports</source> |
4834 | <target state="new">My imports</target> | 4948 | <target state="new">My imports</target> |
@@ -5103,7 +5217,25 @@ The link will expire within 1 hour.</target> | |||
5103 | <source>An error occurred.</source> | 5217 | <source>An error occurred.</source> |
5104 | <target state="new">An error occurred.</target> | 5218 | <target state="new">An error occurred.</target> |
5105 | 5219 | ||
5106 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 5220 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit><trans-unit id="9128669621822125729" datatype="html"> |
5221 | <source>Video channel videos</source><target state="new">Video channel videos</target> | ||
5222 | <context-group purpose="location"> | ||
5223 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5224 | <context context-type="linenumber">25</context> | ||
5225 | </context-group> | ||
5226 | </trans-unit><trans-unit id="3193822049276963401" datatype="html"> | ||
5227 | <source>Video channel playlists</source><target state="new">Video channel playlists</target> | ||
5228 | <context-group purpose="location"> | ||
5229 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5230 | <context context-type="linenumber">38</context> | ||
5231 | </context-group> | ||
5232 | </trans-unit><trans-unit id="4723526509708949088" datatype="html"> | ||
5233 | <source>About video channel</source><target state="new">About video channel</target> | ||
5234 | <context-group purpose="location"> | ||
5235 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5236 | <context context-type="linenumber">47</context> | ||
5237 | </context-group> | ||
5238 | </trans-unit> | ||
5107 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97" datatype="html"> | 5239 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97" datatype="html"> |
5108 | <source> | 5240 | <source> |
5109 | Request email for account verification | 5241 | Request email for account verification |
@@ -5226,7 +5358,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5226 | <source>Stats</source> | 5358 | <source>Stats</source> |
5227 | <target state="new">Stats</target> | 5359 | <target state="new">Stats</target> |
5228 | 5360 | ||
5229 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 5361 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
5230 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc" datatype="html"> | 5362 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc" datatype="html"> |
5231 | <source>Joined <x id="INTERPOLATION"/></source> | 5363 | <source>Joined <x id="INTERPOLATION"/></source> |
5232 | <target state="new">Joined | 5364 | <target state="new">Joined |
@@ -5679,7 +5811,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5679 | <source>This instance does not have instances followings.</source> | 5811 | <source>This instance does not have instances followings.</source> |
5680 | <target state="new">This instance does not have instances followings.</target> | 5812 | <target state="new">This instance does not have instances followings.</target> |
5681 | 5813 | ||
5682 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit> | 5814 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit><trans-unit id="4195286790385468087" datatype="html"> |
5815 | <source>About this instance</source><target state="new">About this instance</target> | ||
5816 | <context-group purpose="location"> | ||
5817 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5818 | <context context-type="linenumber">26</context> | ||
5819 | </context-group> | ||
5820 | </trans-unit><trans-unit id="8773846522957677259" datatype="html"> | ||
5821 | <source>About PeerTube</source><target state="new">About PeerTube</target> | ||
5822 | <context-group purpose="location"> | ||
5823 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5824 | <context context-type="linenumber">38</context> | ||
5825 | </context-group> | ||
5826 | </trans-unit><trans-unit id="5782088737558028158" datatype="html"> | ||
5827 | <source>About follows</source><target state="new">About follows</target> | ||
5828 | <context-group purpose="location"> | ||
5829 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5830 | <context context-type="linenumber">47</context> | ||
5831 | </context-group> | ||
5832 | </trans-unit> | ||
5683 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> | 5833 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> |
5684 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> | 5834 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> |
5685 | <target state="new">Developed with ❤ by | 5835 | <target state="new">Developed with ❤ by |
@@ -5851,6 +6001,12 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5851 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 6001 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> |
5852 | <context context-type="linenumber">1</context> | 6002 | <context context-type="linenumber">1</context> |
5853 | </context-group> | 6003 | </context-group> |
6004 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
6005 | <source>Get help</source><target state="new">Get help</target> | ||
6006 | <context-group purpose="location"> | ||
6007 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | ||
6008 | <context context-type="linenumber">16</context> | ||
6009 | </context-group> | ||
5854 | </trans-unit> | 6010 | </trans-unit> |
5855 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1" datatype="html"> | 6011 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1" datatype="html"> |
5856 | <source> | 6012 | <source> |
@@ -5985,7 +6141,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5985 | 6141 | ||
5986 | </target> | 6142 | </target> |
5987 | 6143 | ||
5988 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 6144 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit><trans-unit id="3301086086650990787" datatype="html"> |
6145 | <source>Register</source><target state="new">Register</target> | ||
6146 | <context-group purpose="location"> | ||
6147 | <context context-type="sourcefile">../app/+signup/+register/register-routing.module.ts</context> | ||
6148 | <context context-type="linenumber">14</context> | ||
6149 | </context-group> | ||
6150 | </trans-unit> | ||
5989 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> | 6151 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> |
5990 | <source> | 6152 | <source> |
5991 | Sorry, we couldn't find the page you were looking for. | 6153 | Sorry, we couldn't find the page you were looking for. |
@@ -6010,7 +6172,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6010 | <target state="new">No description</target> | 6172 | <target state="new">No description</target> |
6011 | 6173 | ||
6012 | 6174 | ||
6013 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit> | 6175 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit><trans-unit id="819067926858619041" datatype="html"> |
6176 | <source>Account videos</source><target state="new">Account videos</target> | ||
6177 | <context-group purpose="location"> | ||
6178 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6179 | <context context-type="linenumber">29</context> | ||
6180 | </context-group> | ||
6181 | </trans-unit><trans-unit id="6823616469362610020" datatype="html"> | ||
6182 | <source>Account video channels</source><target state="new">Account video channels</target> | ||
6183 | <context-group purpose="location"> | ||
6184 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6185 | <context context-type="linenumber">42</context> | ||
6186 | </context-group> | ||
6187 | </trans-unit><trans-unit id="7678273613459026643" datatype="html"> | ||
6188 | <source>About account</source><target state="new">About account</target> | ||
6189 | <context-group purpose="location"> | ||
6190 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6191 | <context context-type="linenumber">51</context> | ||
6192 | </context-group> | ||
6193 | </trans-unit> | ||
6014 | <trans-unit id="3755500631176893489" datatype="html"> | 6194 | <trans-unit id="3755500631176893489" datatype="html"> |
6015 | <source>Published <x id="PH"/> videos</source> | 6195 | <source>Published <x id="PH"/> videos</source> |
6016 | <target state="new">Published | 6196 | <target state="new">Published |
@@ -6127,7 +6307,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6127 | <source>Configuration updated.</source> | 6307 | <source>Configuration updated.</source> |
6128 | <target state="new">Configuration updated.</target> | 6308 | <target state="new">Configuration updated.</target> |
6129 | 6309 | ||
6130 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit> | 6310 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit><trans-unit id="6284468333579755406" datatype="html"> |
6311 | <source>Edit custom configuration</source><target state="new">Edit custom configuration</target> | ||
6312 | <context-group purpose="location"> | ||
6313 | <context context-type="sourcefile">../app/+admin/config/config.routes.ts</context> | ||
6314 | <context context-type="linenumber">26</context> | ||
6315 | </context-group> | ||
6316 | </trans-unit> | ||
6131 | 6317 | ||
6132 | 6318 | ||
6133 | <trans-unit id="6549061957433635758" datatype="html"> | 6319 | <trans-unit id="6549061957433635758" datatype="html"> |
@@ -6606,7 +6792,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6606 | <x id="PH"/> updated. | 6792 | <x id="PH"/> updated. |
6607 | </target> | 6793 | </target> |
6608 | 6794 | ||
6609 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 6795 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit><trans-unit id="3229595422546554334" datatype="html"> |
6796 | <source>Jobs</source><target state="new">Jobs</target> | ||
6797 | <context-group purpose="location"> | ||
6798 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6799 | <context context-type="linenumber">26</context> | ||
6800 | </context-group> | ||
6801 | </trans-unit><trans-unit id="4804785061014590286" datatype="html"> | ||
6802 | <source>Logs</source><target state="new">Logs</target> | ||
6803 | <context-group purpose="location"> | ||
6804 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6805 | <context context-type="linenumber">37</context> | ||
6806 | </context-group> | ||
6807 | </trans-unit> | ||
6610 | <trans-unit id="3150704904301058778" datatype="html"> | 6808 | <trans-unit id="3150704904301058778" datatype="html"> |
6611 | <source>The plugin index is not available. Please retry later.</source> | 6809 | <source>The plugin index is not available. Please retry later.</source> |
6612 | <target state="new">The plugin index is not available. Please retry later.</target> | 6810 | <target state="new">The plugin index is not available. Please retry later.</target> |
@@ -6720,6 +6918,18 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6720 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> | 6918 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> |
6721 | <context context-type="linenumber">86</context> | 6919 | <context context-type="linenumber">86</context> |
6722 | </context-group> | 6920 | </context-group> |
6921 | </trans-unit><trans-unit id="2903648076838460070" datatype="html"> | ||
6922 | <source>Videos blocked</source><target state="new">Videos blocked</target> | ||
6923 | <context-group purpose="location"> | ||
6924 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6925 | <context context-type="linenumber">67</context> | ||
6926 | </context-group> | ||
6927 | </trans-unit><trans-unit id="7805059636749367886" datatype="html"> | ||
6928 | <source>Muted instances</source><target state="new">Muted instances</target> | ||
6929 | <context-group purpose="location"> | ||
6930 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6931 | <context context-type="linenumber">89</context> | ||
6932 | </context-group> | ||
6723 | </trans-unit> | 6933 | </trans-unit> |
6724 | <trans-unit id="5974506725502681113" datatype="html"> | 6934 | <trans-unit id="5974506725502681113" datatype="html"> |
6725 | <source>Password changed for user <x id="PH"/>.</source> | 6935 | <source>Password changed for user <x id="PH"/>.</source> |
@@ -6732,7 +6942,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6732 | <source>Update user password</source> | 6942 | <source>Update user password</source> |
6733 | <target state="new">Update user password</target> | 6943 | <target state="new">Update user password</target> |
6734 | 6944 | ||
6735 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit> | 6945 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit><trans-unit id="177544274549739411" datatype="html"> |
6946 | <source>Following list</source><target state="new">Following list</target> | ||
6947 | <context-group purpose="location"> | ||
6948 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6949 | <context context-type="linenumber">28</context> | ||
6950 | </context-group> | ||
6951 | </trans-unit><trans-unit id="8092429110007204784" datatype="html"> | ||
6952 | <source>Followers list</source><target state="new">Followers list</target> | ||
6953 | <context-group purpose="location"> | ||
6954 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6955 | <context context-type="linenumber">37</context> | ||
6956 | </context-group> | ||
6957 | </trans-unit> | ||
6736 | <trans-unit id="780323526182667308" datatype="html"> | 6958 | <trans-unit id="780323526182667308" datatype="html"> |
6737 | <source>User <x id="PH"/> updated.</source> | 6959 | <source>User <x id="PH"/> updated.</source> |
6738 | <target state="new">User | 6960 | <target state="new">User |
@@ -6751,7 +6973,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6751 | <x id="PH"/>. | 6973 | <x id="PH"/>. |
6752 | </target> | 6974 | </target> |
6753 | 6975 | ||
6754 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="8564701209009684429" datatype="html"> | 6976 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="7483807629538115183" datatype="html"> |
6977 | <source>Users list</source><target state="new">Users list</target> | ||
6978 | <context-group purpose="location"> | ||
6979 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6980 | <context context-type="linenumber">27</context> | ||
6981 | </context-group> | ||
6982 | </trans-unit><trans-unit id="1525334987774465166" datatype="html"> | ||
6983 | <source>Create a user</source><target state="new">Create a user</target> | ||
6984 | <context-group purpose="location"> | ||
6985 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6986 | <context context-type="linenumber">36</context> | ||
6987 | </context-group> | ||
6988 | </trans-unit><trans-unit id="5552039423287890133" datatype="html"> | ||
6989 | <source>Update a user</source><target state="new">Update a user</target> | ||
6990 | <context-group purpose="location"> | ||
6991 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6992 | <context context-type="linenumber">48</context> | ||
6993 | </context-group> | ||
6994 | </trans-unit><trans-unit id="8564701209009684429" datatype="html"> | ||
6755 | <source>Federation</source><target state="new">Federation</target> | 6995 | <source>Federation</source><target state="new">Federation</target> |
6756 | <context-group purpose="location"> | 6996 | <context-group purpose="location"> |
6757 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> | 6997 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> |
@@ -7105,7 +7345,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7105 | <source>Views for the day</source> | 7345 | <source>Views for the day</source> |
7106 | <target state="new">Views for the day</target> | 7346 | <target state="new">Views for the day</target> |
7107 | 7347 | ||
7108 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit> | 7348 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit><trans-unit id="4707367314920217630" datatype="html"> |
7349 | <source>Create new video channel</source><target state="new">Create new video channel</target> | ||
7350 | <context-group purpose="location"> | ||
7351 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7352 | <context context-type="linenumber">22</context> | ||
7353 | </context-group> | ||
7354 | </trans-unit><trans-unit id="6059091237492573541" datatype="html"> | ||
7355 | <source>Update video channel</source><target state="new">Update video channel</target> | ||
7356 | <context-group purpose="location"> | ||
7357 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7358 | <context context-type="linenumber">31</context> | ||
7359 | </context-group> | ||
7360 | </trans-unit><trans-unit id="6595008830732269870" datatype="html"> | ||
7361 | <source>Not found</source><target state="new">Not found</target> | ||
7362 | <context-group purpose="location"> | ||
7363 | <context context-type="sourcefile">../app/+page-not-found/page-not-found-routing.module.ts</context> | ||
7364 | <context context-type="linenumber">13</context> | ||
7365 | </context-group> | ||
7366 | </trans-unit> | ||
7109 | <trans-unit id="5032453707232754344" datatype="html"> | 7367 | <trans-unit id="5032453707232754344" datatype="html"> |
7110 | <source>Playlist <x id="PH"/> created.</source> | 7368 | <source>Playlist <x id="PH"/> created.</source> |
7111 | <target state="new">Playlist | 7369 | <target state="new">Playlist |
@@ -7123,7 +7381,31 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7123 | <source>Update playlist</source> | 7381 | <source>Update playlist</source> |
7124 | <target state="new">Update playlist</target> | 7382 | <target state="new">Update playlist</target> |
7125 | 7383 | ||
7126 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-video-playlists/my-account-video-playlist-elements.component.ts</context><context context-type="linenumber">48</context></context-group></trans-unit> | 7384 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">82</context></context-group></trans-unit><trans-unit id="3410331549417637431" datatype="html"> |
7385 | <source>Account video imports</source><target state="new">Account video imports</target> | ||
7386 | <context-group purpose="location"> | ||
7387 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7388 | <context context-type="linenumber">105</context> | ||
7389 | </context-group> | ||
7390 | </trans-unit><trans-unit id="4434998055872154420" datatype="html"> | ||
7391 | <source>Account subscriptions</source><target state="new">Account subscriptions</target> | ||
7392 | <context-group purpose="location"> | ||
7393 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7394 | <context context-type="linenumber">114</context> | ||
7395 | </context-group> | ||
7396 | </trans-unit><trans-unit id="6019411775996586321" datatype="html"> | ||
7397 | <source>Videos history</source><target state="new">Videos history</target> | ||
7398 | <context-group purpose="location"> | ||
7399 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7400 | <context context-type="linenumber">150</context> | ||
7401 | </context-group> | ||
7402 | </trans-unit><trans-unit id="5851560788527570644" datatype="html"> | ||
7403 | <source>Notifications</source><target state="new">Notifications</target> | ||
7404 | <context-group purpose="location"> | ||
7405 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7406 | <context context-type="linenumber">163</context> | ||
7407 | </context-group> | ||
7408 | </trans-unit> | ||
7127 | <trans-unit id="104404386496394770" datatype="html"> | 7409 | <trans-unit id="104404386496394770" datatype="html"> |
7128 | <source>Delete playlist</source> | 7410 | <source>Delete playlist</source> |
7129 | <target state="new">Delete playlist</target> | 7411 | <target state="new">Delete playlist</target> |
@@ -7277,7 +7559,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7277 | <x id="PH"/>. | 7559 | <x id="PH"/>. |
7278 | </target> | 7560 | </target> |
7279 | 7561 | ||
7280 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit> | 7562 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit><trans-unit id="8231550792139699065" datatype="html"> |
7563 | <source>Verify account email</source><target state="new">Verify account email</target> | ||
7564 | <context-group purpose="location"> | ||
7565 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7566 | <context context-type="linenumber">17</context> | ||
7567 | </context-group> | ||
7568 | </trans-unit><trans-unit id="4997281272800290390" datatype="html"> | ||
7569 | <source>Verify account ask send email</source><target state="new">Verify account ask send email</target> | ||
7570 | <context-group purpose="location"> | ||
7571 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7572 | <context context-type="linenumber">26</context> | ||
7573 | </context-group> | ||
7574 | </trans-unit> | ||
7281 | <trans-unit id="4180693983967989981" datatype="html"> | 7575 | <trans-unit id="4180693983967989981" datatype="html"> |
7282 | <source>Unable to find user id or verification string.</source> | 7576 | <source>Unable to find user id or verification string.</source> |
7283 | <target state="new">Unable to find user id or verification string.</target> | 7577 | <target state="new">Unable to find user id or verification string.</target> |
@@ -7402,27 +7696,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7402 | <source>any language</source> | 7696 | <source>any language</source> |
7403 | <target state="new">any language</target> | 7697 | <target state="new">any language</target> |
7404 | 7698 | ||
7405 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">202</context></context-group></trans-unit> | 7699 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">229</context></context-group></trans-unit> |
7406 | <trans-unit id="5633144232269377096" datatype="html"> | 7700 | <trans-unit id="5633144232269377096" datatype="html"> |
7407 | <source>hide</source> | 7701 | <source>hide</source> |
7408 | <target state="new">hide</target> | 7702 | <target state="new">hide</target> |
7409 | 7703 | ||
7410 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">118</context></context-group></trans-unit> | 7704 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> |
7411 | <trans-unit id="8603861867909474404" datatype="html"> | 7705 | <trans-unit id="8603861867909474404" datatype="html"> |
7412 | <source>blur</source> | 7706 | <source>blur</source> |
7413 | <target state="new">blur</target> | 7707 | <target state="new">blur</target> |
7414 | 7708 | ||
7415 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> | 7709 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> |
7416 | <trans-unit id="4534458451100881847" datatype="html"> | 7710 | <trans-unit id="4534458451100881847" datatype="html"> |
7417 | <source>display</source> | 7711 | <source>display</source> |
7418 | <target state="new">display</target> | 7712 | <target state="new">display</target> |
7419 | 7713 | ||
7420 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> | 7714 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">127</context></context-group></trans-unit> |
7421 | <trans-unit id="4467323362722952678" datatype="html"> | 7715 | <trans-unit id="4467323362722952678" datatype="html"> |
7422 | <source>Unknown</source> | 7716 | <source>Unknown</source> |
7423 | <target state="new">Unknown</target> | 7717 | <target state="new">Unknown</target> |
7424 | 7718 | ||
7425 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">190</context></context-group></trans-unit> | 7719 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">193</context></context-group></trans-unit> |
7426 | <trans-unit id="8781423666414310853" datatype="html"> | 7720 | <trans-unit id="8781423666414310853" datatype="html"> |
7427 | <source>Your password has been successfully reset!</source> | 7721 | <source>Your password has been successfully reset!</source> |
7428 | <target state="new">Your password has been successfully reset!</target> | 7722 | <target state="new">Your password has been successfully reset!</target> |
@@ -8542,27 +8836,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8542 | <source>Emphasis</source> | 8836 | <source>Emphasis</source> |
8543 | <target state="new">Emphasis</target> | 8837 | <target state="new">Emphasis</target> |
8544 | 8838 | ||
8545 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">77</context></context-group></trans-unit> | 8839 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> |
8546 | <trans-unit id="7565716024468232322" datatype="html"> | 8840 | <trans-unit id="7565716024468232322" datatype="html"> |
8547 | <source>Links</source> | 8841 | <source>Links</source> |
8548 | <target state="new">Links</target> | 8842 | <target state="new">Links</target> |
8549 | 8843 | ||
8550 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">78</context></context-group></trans-unit> | 8844 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> |
8551 | <trans-unit id="7838476952710404110" datatype="html"> | 8845 | <trans-unit id="7838476952710404110" datatype="html"> |
8552 | <source>New lines</source> | 8846 | <source>New lines</source> |
8553 | <target state="new">New lines</target> | 8847 | <target state="new">New lines</target> |
8554 | 8848 | ||
8555 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 8849 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">83</context></context-group></trans-unit> |
8556 | <trans-unit id="8756167649220050929" datatype="html"> | 8850 | <trans-unit id="8756167649220050929" datatype="html"> |
8557 | <source>Lists</source> | 8851 | <source>Lists</source> |
8558 | <target state="new">Lists</target> | 8852 | <target state="new">Lists</target> |
8559 | 8853 | ||
8560 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">80</context></context-group></trans-unit> | 8854 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">84</context></context-group></trans-unit> |
8561 | <trans-unit id="414887388288176527" datatype="html"> | 8855 | <trans-unit id="414887388288176527" datatype="html"> |
8562 | <source>Images</source> | 8856 | <source>Images</source> |
8563 | <target state="new">Images</target> | 8857 | <target state="new">Images</target> |
8564 | 8858 | ||
8565 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> | 8859 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">85</context></context-group></trans-unit> |
8566 | <trans-unit id="5708680277917691451" datatype="html"> | 8860 | <trans-unit id="5708680277917691451" datatype="html"> |
8567 | <source> | 8861 | <source> |
8568 | <x id="PH"/> users banned. | 8862 | <x id="PH"/> users banned. |
@@ -8958,7 +9252,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8958 | <source>Moderator</source> | 9252 | <source>Moderator</source> |
8959 | <target state="new">Moderator</target> | 9253 | <target state="new">Moderator</target> |
8960 | 9254 | ||
8961 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">386</context></context-group></trans-unit> | 9255 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">384</context></context-group></trans-unit> |
8962 | <trans-unit id="3723085768598852106" datatype="html"> | 9256 | <trans-unit id="3723085768598852106" datatype="html"> |
8963 | <source>Video removed from | 9257 | <source>Video removed from |
8964 | <x id="PH"/> | 9258 | <x id="PH"/> |
@@ -9026,7 +9320,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9026 | <source>Do you really want to delete this comment?</source> | 9320 | <source>Do you really want to delete this comment?</source> |
9027 | <target state="new">Do you really want to delete this comment?</target> | 9321 | <target state="new">Do you really want to delete this comment?</target> |
9028 | 9322 | ||
9029 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">434</context></context-group></trans-unit> | 9323 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">166</context></context-group></trans-unit> |
9030 | <trans-unit id="7837272126865175984" datatype="html"> | 9324 | <trans-unit id="7837272126865175984" datatype="html"> |
9031 | <source>Comment deleted.</source> | 9325 | <source>Comment deleted.</source> |
9032 | <target state="new">Comment deleted.</target> | 9326 | <target state="new">Comment deleted.</target> |
@@ -9138,9 +9432,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9138 | 9432 | ||
9139 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> | 9433 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> |
9140 | <source>Report</source><target state="new">Report</target> | 9434 | <source>Report</source><target state="new">Report</target> |
9435 | |||
9436 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="4814285799071780083" datatype="html"> | ||
9437 | <source>Remove</source><target state="new">Remove</target> | ||
9141 | <context-group purpose="location"> | 9438 | <context-group purpose="location"> |
9142 | <context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> | 9439 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> |
9143 | <context context-type="linenumber">286</context> | 9440 | <context context-type="linenumber">179</context> |
9441 | </context-group> | ||
9442 | </trans-unit><trans-unit id="6871668720687277843" datatype="html"> | ||
9443 | <source>Remove & re-draft</source><target state="new">Remove & re-draft</target> | ||
9444 | <context-group purpose="location"> | ||
9445 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> | ||
9446 | <context context-type="linenumber">187</context> | ||
9144 | </context-group> | 9447 | </context-group> |
9145 | </trans-unit> | 9448 | </trans-unit> |
9146 | <trans-unit id="4903651219400691248" datatype="html"> | 9449 | <trans-unit id="4903651219400691248" datatype="html"> |
@@ -9242,22 +9545,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9242 | <source>Only I can see this video</source> | 9545 | <source>Only I can see this video</source> |
9243 | <target>Kun jeg kan se denne video</target> | 9546 | <target>Kun jeg kan se denne video</target> |
9244 | 9547 | ||
9245 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">340</context></context-group></trans-unit> | 9548 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">341</context></context-group></trans-unit> |
9246 | <trans-unit id="6767380569816110388" datatype="html"> | 9549 | <trans-unit id="6767380569816110388" datatype="html"> |
9247 | <source>Only shareable via a private link</source> | 9550 | <source>Only shareable via a private link</source> |
9248 | <target state="new">Only shareable via a private link</target> | 9551 | <target state="new">Only shareable via a private link</target> |
9249 | 9552 | ||
9250 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">344</context></context-group></trans-unit> | 9553 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">345</context></context-group></trans-unit> |
9251 | <trans-unit id="6828965264297239528"> | 9554 | <trans-unit id="6828965264297239528"> |
9252 | <source>Anyone can see this video</source> | 9555 | <source>Anyone can see this video</source> |
9253 | <target>Alle kan se denne video</target> | 9556 | <target>Alle kan se denne video</target> |
9254 | 9557 | ||
9255 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">348</context></context-group></trans-unit> | 9558 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">349</context></context-group></trans-unit> |
9256 | <trans-unit id="1425933035739773115" datatype="html"> | 9559 | <trans-unit id="1425933035739773115" datatype="html"> |
9257 | <source>Only users of this instance can see this video</source> | 9560 | <source>Only users of this instance can see this video</source> |
9258 | <target state="new">Only users of this instance can see this video</target> | 9561 | <target state="new">Only users of this instance can see this video</target> |
9259 | 9562 | ||
9260 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">352</context></context-group></trans-unit> | 9563 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">353</context></context-group></trans-unit> |
9261 | <trans-unit id="5210096066382592800" datatype="html"> | 9564 | <trans-unit id="5210096066382592800" datatype="html"> |
9262 | <source>Video to import updated.</source> | 9565 | <source>Video to import updated.</source> |
9263 | <target state="new">Video to import updated.</target> | 9566 | <target state="new">Video to import updated.</target> |
@@ -9337,17 +9640,29 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9337 | <target state="new">Report comment</target> | 9640 | <target state="new">Report comment</target> |
9338 | 9641 | ||
9339 | 9642 | ||
9340 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 9643 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/report-modals/comment-report.component.ts</context><context context-type="linenumber">51</context></context-group></trans-unit> |
9341 | <trans-unit id="3691787517663044217" datatype="html"> | 9644 | <trans-unit id="3691787517663044217" datatype="html"> |
9342 | <source> The deletion will be sent to remote instances so they can reflect the change.</source> | 9645 | <source> The deletion will be sent to remote instances so they can reflect the change.</source> |
9343 | <target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> | 9646 | <target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> |
9344 | 9647 | ||
9345 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">163</context></context-group></trans-unit> | 9648 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">169</context></context-group></trans-unit> |
9346 | <trans-unit id="7321800851971795962" datatype="html"> | 9649 | <trans-unit id="7321800851971795962" datatype="html"> |
9347 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source> | 9650 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source> |
9348 | <target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> | 9651 | <target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> |
9349 | 9652 | ||
9350 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">165</context></context-group></trans-unit> | 9653 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="5964038603724691720" datatype="html"> |
9654 | <source>Delete and re-draft</source><target state="new">Delete and re-draft</target> | ||
9655 | <context-group purpose="location"> | ||
9656 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | ||
9657 | <context context-type="linenumber">197</context> | ||
9658 | </context-group> | ||
9659 | </trans-unit><trans-unit id="7163633882758007711" datatype="html"> | ||
9660 | <source>Do you really want to delete and re-draft this comment?</source><target state="new">Do you really want to delete and re-draft this comment?</target> | ||
9661 | <context-group purpose="location"> | ||
9662 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | ||
9663 | <context context-type="linenumber">197</context> | ||
9664 | </context-group> | ||
9665 | </trans-unit> | ||
9351 | <trans-unit id="6775540171466219199" datatype="html"> | 9666 | <trans-unit id="6775540171466219199" datatype="html"> |
9352 | <source>Stop autoplaying next video</source> | 9667 | <source>Stop autoplaying next video</source> |
9353 | <target state="new">Stop autoplaying next video</target> | 9668 | <target state="new">Stop autoplaying next video</target> |
@@ -9509,6 +9824,36 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9509 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> | 9824 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> |
9510 | <context context-type="linenumber">36</context> | 9825 | <context context-type="linenumber">36</context> |
9511 | </context-group> | 9826 | </context-group> |
9827 | </trans-unit><trans-unit id="4668975178372693951" datatype="html"> | ||
9828 | <source>Discover videos</source><target state="new">Discover videos</target> | ||
9829 | <context-group purpose="location"> | ||
9830 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9831 | <context context-type="linenumber">23</context> | ||
9832 | </context-group> | ||
9833 | </trans-unit><trans-unit id="8067135025051844577" datatype="html"> | ||
9834 | <source>Trending videos</source><target state="new">Trending videos</target> | ||
9835 | <context-group purpose="location"> | ||
9836 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9837 | <context context-type="linenumber">32</context> | ||
9838 | </context-group> | ||
9839 | </trans-unit><trans-unit id="664221386829541948" datatype="html"> | ||
9840 | <source>Recently added videos</source><target state="new">Recently added videos</target> | ||
9841 | <context-group purpose="location"> | ||
9842 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9843 | <context context-type="linenumber">58</context> | ||
9844 | </context-group> | ||
9845 | </trans-unit><trans-unit id="8212906256415538361" datatype="html"> | ||
9846 | <source>Upload a video</source><target state="new">Upload a video</target> | ||
9847 | <context-group purpose="location"> | ||
9848 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9849 | <context context-type="linenumber">97</context> | ||
9850 | </context-group> | ||
9851 | </trans-unit><trans-unit id="7590784934397800835" datatype="html"> | ||
9852 | <source>Edit a video</source><target state="new">Edit a video</target> | ||
9853 | <context-group purpose="location"> | ||
9854 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9855 | <context context-type="linenumber">106</context> | ||
9856 | </context-group> | ||
9512 | </trans-unit> | 9857 | </trans-unit> |
9513 | </body> | 9858 | </body> |
9514 | </file> | 9859 | </file> |
diff --git a/client/src/locale/angular.de-DE.xlf b/client/src/locale/angular.de-DE.xlf index 3136db2cc..50af1e9d5 100644 --- a/client/src/locale/angular.de-DE.xlf +++ b/client/src/locale/angular.de-DE.xlf | |||
@@ -295,7 +295,7 @@ | |||
295 | <target>Optionen</target> | 295 | <target>Optionen</target> |
296 | 296 | ||
297 | 297 | ||
298 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 298 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">48</context></context-group></trans-unit> |
299 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d"> | 299 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d"> |
300 | <source>Start at</source> | 300 | <source>Start at</source> |
301 | <target>Beginne bei</target> | 301 | <target>Beginne bei</target> |
@@ -427,7 +427,7 @@ | |||
427 | Abbrechen | 427 | Abbrechen |
428 | </target> | 428 | </target> |
429 | 429 | ||
430 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> | 430 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit> |
431 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd"> | 431 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd"> |
432 | <source>Download</source> | 432 | <source>Download</source> |
433 | <target>Herunterladen</target> | 433 | <target>Herunterladen</target> |
@@ -546,7 +546,7 @@ | |||
546 | 546 | ||
547 | 547 | ||
548 | 548 | ||
549 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 549 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
550 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc"> | 550 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc"> |
551 | <source>Edit starts/stops at</source> | 551 | <source>Edit starts/stops at</source> |
552 | <target>Bearbeitung beginnt/endet bei</target> | 552 | <target>Bearbeitung beginnt/endet bei</target> |
@@ -586,7 +586,7 @@ | |||
586 | 586 | ||
587 | 587 | ||
588 | 588 | ||
589 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> | 589 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
590 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> | 590 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> |
591 | <source>Edit</source> | 591 | <source>Edit</source> |
592 | <target>Bearbeiten</target> | 592 | <target>Bearbeiten</target> |
@@ -611,17 +611,10 @@ | |||
611 | <target>Vollständige Vorschau</target> | 611 | <target>Vollständige Vorschau</target> |
612 | 612 | ||
613 | <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></trans-unit> | 613 | <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></trans-unit> |
614 | <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f"> | 614 | <trans-unit id="8644431249513874405" datatype="html"> |
615 | <source>Get help</source> | ||
616 | <target>Hilfe</target> | ||
617 | |||
618 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit><trans-unit id="8644431249513874405" datatype="html"> | ||
619 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> | 615 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> |
620 | <context-group purpose="location"> | 616 | |
621 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 617 | <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></trans-unit> |
622 | <context context-type="linenumber">71</context> | ||
623 | </context-group> | ||
624 | </trans-unit> | ||
625 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> | 618 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> |
626 | <source>Recommended</source> | 619 | <source>Recommended</source> |
627 | <target state="translated">Empfohlen</target> | 620 | <target state="translated">Empfohlen</target> |
@@ -661,7 +654,7 @@ | |||
661 | <source>PROFILE SETTINGS</source> | 654 | <source>PROFILE SETTINGS</source> |
662 | <target state="new">PROFILE SETTINGS</target> | 655 | <target state="new">PROFILE SETTINGS</target> |
663 | 656 | ||
664 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 657 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">12</context></context-group></trans-unit> |
665 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3"> | 658 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3"> |
666 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> | 659 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> |
667 | <target> | 660 | <target> |
@@ -827,11 +820,8 @@ | |||
827 | 820 | ||
828 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> | 821 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> |
829 | <source>User</source><target state="new">User</target> | 822 | <source>User</source><target state="new">User</target> |
830 | <context-group purpose="location"> | 823 | |
831 | <context context-type="sourcefile">../app/core/users/user.service.ts</context> | 824 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit> |
832 | <context context-type="linenumber">384</context> | ||
833 | </context-group> | ||
834 | </trans-unit> | ||
835 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0"> | 825 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0"> |
836 | <source>Ban</source> | 826 | <source>Ban</source> |
837 | <target>Sperren</target> | 827 | <target>Sperren</target> |
@@ -1288,89 +1278,89 @@ Hilf mit PeerTube zu übersetzen!</target> | |||
1288 | <source>Account settings</source> | 1278 | <source>Account settings</source> |
1289 | <target state="translated">Konto Parameters</target> | 1279 | <target state="translated">Konto Parameters</target> |
1290 | 1280 | ||
1291 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 1281 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
1292 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> | 1282 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> |
1293 | <source>Channels settings</source> | 1283 | <source>Channels settings</source> |
1294 | <target state="translated">Kanal Parameters</target> | 1284 | <target state="translated">Kanal Parameters</target> |
1295 | 1285 | ||
1296 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 1286 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> |
1297 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> | 1287 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> |
1298 | <source>Interface:</source> | 1288 | <source>Interface:</source> |
1299 | <target state="new">Interface:</target> | 1289 | <target state="new">Interface:</target> |
1300 | 1290 | ||
1301 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 1291 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1302 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> | 1292 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> |
1303 | <source>Videos:</source> | 1293 | <source>Videos:</source> |
1304 | <target state="new">Videos:</target> | 1294 | <target state="new">Videos:</target> |
1305 | 1295 | ||
1306 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 1296 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> |
1307 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> | 1297 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> |
1308 | <source>Sensitive:</source> | 1298 | <source>Sensitive:</source> |
1309 | <target state="new">Sensitive:</target> | 1299 | <target state="new">Sensitive:</target> |
1310 | 1300 | ||
1311 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 1301 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">54</context></context-group></trans-unit> |
1312 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1302 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> |
1313 | <source>Interface: <x id="INTERPOLATION"/></source> | 1303 | <source>Interface: <x id="INTERPOLATION"/></source> |
1314 | <target state="new">Interface: | 1304 | <target state="new">Interface: |
1315 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> | 1305 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> |
1316 | </target> | 1306 | </target> |
1317 | 1307 | ||
1318 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">156</context></context-group></trans-unit> | 1308 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> |
1319 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1309 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1320 | <source>Help share videos</source> | 1310 | <source>Help share videos</source> |
1321 | <target state="translated">Hilf bei der Weitergabe von Videos</target> | 1311 | <target state="translated">Hilf bei der Weitergabe von Videos</target> |
1322 | 1312 | ||
1323 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> | 1313 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
1324 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> | 1314 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> |
1325 | <source>More account settings</source> | 1315 | <source>More account settings</source> |
1326 | <target state="translated">Weitere Kontoeinstellungen</target> | 1316 | <target state="translated">Weitere Kontoeinstellungen</target> |
1327 | 1317 | ||
1328 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> | 1318 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> |
1329 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> | 1319 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> |
1330 | <source>Keyboard shortcuts</source> | 1320 | <source>Keyboard shortcuts</source> |
1331 | <target state="translated">Tastenkürzel</target> | 1321 | <target state="translated">Tastenkürzel</target> |
1332 | 1322 | ||
1333 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 1323 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">72</context></context-group></trans-unit> |
1334 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> | 1324 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> |
1335 | <source>Help</source> | 1325 | <source>Help</source> |
1336 | <target state="translated">Hilfe</target> | 1326 | <target state="translated">Hilfe</target> |
1337 | 1327 | ||
1338 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1328 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1339 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> | 1329 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> |
1340 | <source>Get help using PeerTube</source> | 1330 | <source>Get help using PeerTube</source> |
1341 | <target state="new">Get help using PeerTube</target> | 1331 | <target state="new">Get help using PeerTube</target> |
1342 | 1332 | ||
1343 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">161</context></context-group></trans-unit> | 1333 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">167</context></context-group></trans-unit> |
1344 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> | 1334 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> |
1345 | <source>Shortcuts</source> | 1335 | <source>Shortcuts</source> |
1346 | <target state="translated">Shortcuts</target> | 1336 | <target state="translated">Shortcuts</target> |
1347 | 1337 | ||
1348 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1338 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1349 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> | 1339 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> |
1350 | <source>powered by PeerTube</source> | 1340 | <source>powered by PeerTube</source> |
1351 | <target state="new">powered by PeerTube</target> | 1341 | <target state="new">powered by PeerTube</target> |
1352 | 1342 | ||
1353 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | 1343 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">177</context></context-group></trans-unit> |
1354 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> | 1344 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> |
1355 | <source>powered by PeerTube - CopyLeft 2015-2020</source> | 1345 | <source>powered by PeerTube - CopyLeft 2015-2020</source> |
1356 | <target state="translated">betrieben durch PeerTube - CopyLeft 2015-2020</target> | 1346 | <target state="translated">betrieben durch PeerTube - CopyLeft 2015-2020</target> |
1357 | 1347 | ||
1358 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> | 1348 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">176</context></context-group></trans-unit> |
1359 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344"> | 1349 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344"> |
1360 | <source>Log out</source> | 1350 | <source>Log out</source> |
1361 | <target>Abmelden</target> | 1351 | <target>Abmelden</target> |
1362 | 1352 | ||
1363 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">70</context></context-group></trans-unit> | 1353 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit> |
1364 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> | 1354 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> |
1365 | <source>Create an account</source> | 1355 | <source>Create an account</source> |
1366 | <target>Konto erstellen</target> | 1356 | <target>Konto erstellen</target> |
1367 | 1357 | ||
1368 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">78</context></context-group></trans-unit> | 1358 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
1369 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> | 1359 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> |
1370 | <source>MY LIBRARY</source> | 1360 | <source>MY LIBRARY</source> |
1371 | <target state="translated">MEINE BIBLIOTHEK</target> | 1361 | <target state="translated">MEINE BIBLIOTHEK</target> |
1372 | 1362 | ||
1373 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 1363 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">88</context></context-group></trans-unit> |
1374 | <trans-unit id="6371572688505952303"> | 1364 | <trans-unit id="6371572688505952303"> |
1375 | <source>My library</source> | 1365 | <source>My library</source> |
1376 | <target>Meine Bibliothek</target> | 1366 | <target>Meine Bibliothek</target> |
@@ -1410,22 +1400,22 @@ Hilf mit PeerTube zu übersetzen!</target> | |||
1410 | <source>Videos</source> | 1400 | <source>Videos</source> |
1411 | <target>Videos</target> | 1401 | <target>Videos</target> |
1412 | 1402 | ||
1413 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">86</context></context-group></trans-unit> | 1403 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">92</context></context-group></trans-unit> |
1414 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> | 1404 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> |
1415 | <source>Playlists</source> | 1405 | <source>Playlists</source> |
1416 | <target>Playlist</target> | 1406 | <target>Playlist</target> |
1417 | 1407 | ||
1418 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">91</context></context-group></trans-unit> | 1408 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">97</context></context-group></trans-unit> |
1419 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2"> | 1409 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2"> |
1420 | <source>Subscriptions</source> | 1410 | <source>Subscriptions</source> |
1421 | <target>Abos</target> | 1411 | <target>Abos</target> |
1422 | 1412 | ||
1423 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 1413 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">102</context></context-group></trans-unit> |
1424 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8"> | 1414 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8"> |
1425 | <source>History</source> | 1415 | <source>History</source> |
1426 | <target>Verlauf</target> | 1416 | <target>Verlauf</target> |
1427 | 1417 | ||
1428 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit> | 1418 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">107</context></context-group></trans-unit> |
1429 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> | 1419 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> |
1430 | <source>VIDEOS</source> | 1420 | <source>VIDEOS</source> |
1431 | <target state="new">VIDEOS</target> | 1421 | <target state="new">VIDEOS</target> |
@@ -1437,27 +1427,27 @@ Hilf mit PeerTube zu übersetzen!</target> | |||
1437 | <target>Entdecken</target> | 1427 | <target>Entdecken</target> |
1438 | 1428 | ||
1439 | 1429 | ||
1440 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">111</context></context-group></trans-unit> | 1430 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">117</context></context-group></trans-unit> |
1441 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> | 1431 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> |
1442 | <source>Trending</source> | 1432 | <source>Trending</source> |
1443 | <target>Beliebt</target> | 1433 | <target>Beliebt</target> |
1444 | 1434 | ||
1445 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">116</context></context-group></trans-unit> | 1435 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">122</context></context-group></trans-unit> |
1446 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> | 1436 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> |
1447 | <source>Most liked</source> | 1437 | <source>Most liked</source> |
1448 | <target state="translated">Beliebteste</target> | 1438 | <target state="translated">Beliebteste</target> |
1449 | 1439 | ||
1450 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">121</context></context-group></trans-unit> | 1440 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">127</context></context-group></trans-unit> |
1451 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> | 1441 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> |
1452 | <source>Recently added</source> | 1442 | <source>Recently added</source> |
1453 | <target>Kürzlich hinzugefügt</target> | 1443 | <target>Kürzlich hinzugefügt</target> |
1454 | 1444 | ||
1455 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">126</context></context-group></trans-unit> | 1445 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">132</context></context-group></trans-unit> |
1456 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> | 1446 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> |
1457 | <source>Administration</source> | 1447 | <source>Administration</source> |
1458 | <target>Administration</target> | 1448 | <target>Administration</target> |
1459 | 1449 | ||
1460 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">140</context></context-group></trans-unit> | 1450 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">146</context></context-group></trans-unit> |
1461 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> | 1451 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> |
1462 | <source>About</source> | 1452 | <source>About</source> |
1463 | <target>Info</target> | 1453 | <target>Info</target> |
@@ -1468,7 +1458,7 @@ Hilf mit PeerTube zu übersetzen!</target> | |||
1468 | <source>Contact</source> | 1458 | <source>Contact</source> |
1469 | <target state="translated">Kontakt</target> | 1459 | <target state="translated">Kontakt</target> |
1470 | 1460 | ||
1471 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">160</context></context-group></trans-unit> | 1461 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">166</context></context-group></trans-unit> |
1472 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771"> | 1462 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771"> |
1473 | <source>View your notifications</source> | 1463 | <source>View your notifications</source> |
1474 | <target>Zeige deine Benachrichtigungen</target> | 1464 | <target>Zeige deine Benachrichtigungen</target> |
@@ -1495,7 +1485,7 @@ Hilf mit PeerTube zu übersetzen!</target> | |||
1495 | <source>See all your notifications</source> | 1485 | <source>See all your notifications</source> |
1496 | <target>Sehe alle deine Benachrichtigungen</target> | 1486 | <target>Sehe alle deine Benachrichtigungen</target> |
1497 | 1487 | ||
1498 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 1488 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">40</context></context-group></trans-unit> |
1499 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> | 1489 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> |
1500 | <source>Search videos, channels…</source> | 1490 | <source>Search videos, channels…</source> |
1501 | <target state="translated">Durchsuche Videos, Kanäle …</target> | 1491 | <target state="translated">Durchsuche Videos, Kanäle …</target> |
@@ -1821,22 +1811,22 @@ Hilf mit PeerTube zu übersetzen!</target> | |||
1821 | <source>FAQ</source> | 1811 | <source>FAQ</source> |
1822 | <target state="new">FAQ</target> | 1812 | <target state="new">FAQ</target> |
1823 | 1813 | ||
1824 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">163</context></context-group></trans-unit> | 1814 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
1825 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> | 1815 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> |
1826 | <source>Frequently asked questions about PeerTube</source> | 1816 | <source>Frequently asked questions about PeerTube</source> |
1827 | <target state="translated">Häufig gestellte Fragen zu PeerTube</target> | 1817 | <target state="translated">Häufig gestellte Fragen zu PeerTube</target> |
1828 | 1818 | ||
1829 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1819 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1830 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> | 1820 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> |
1831 | <source>API</source> | 1821 | <source>API</source> |
1832 | <target state="new">API</target> | 1822 | <target state="new">API</target> |
1833 | 1823 | ||
1834 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1824 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1835 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> | 1825 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> |
1836 | <source>API documentation</source> | 1826 | <source>API documentation</source> |
1837 | <target state="translated">API Dokumentation</target> | 1827 | <target state="translated">API Dokumentation</target> |
1838 | 1828 | ||
1839 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 1829 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
1840 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5"> | 1830 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5"> |
1841 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> | 1831 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> |
1842 | <target>Veröffentlichung planen ( | 1832 | <target>Veröffentlichung planen ( |
@@ -2204,7 +2194,13 @@ Hilf mit PeerTube zu übersetzen!</target> | |||
2204 | <source>Less customization</source> | 2194 | <source>Less customization</source> |
2205 | <target state="translated">Weniger Individualisierungen</target> | 2195 | <target state="translated">Weniger Individualisierungen</target> |
2206 | 2196 | ||
2207 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit> | 2197 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit><trans-unit id="2454050363478003966" datatype="html"> |
2198 | <source>Login</source><target state="new">Login</target> | ||
2199 | <context-group purpose="location"> | ||
2200 | <context context-type="sourcefile">../app/+login/login-routing.module.ts</context> | ||
2201 | <context context-type="linenumber">14</context> | ||
2202 | </context-group> | ||
2203 | </trans-unit> | ||
2208 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e"> | 2204 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e"> |
2209 | <source>Autoplay</source> | 2205 | <source>Autoplay</source> |
2210 | <target>Automatisches Abspielen</target> | 2206 | <target>Automatisches Abspielen</target> |
@@ -2463,7 +2459,7 @@ Hilf mit PeerTube zu übersetzen!</target> | |||
2463 | <source>No comments.</source> | 2459 | <source>No comments.</source> |
2464 | <target>Keine Kommentare.</target> | 2460 | <target>Keine Kommentare.</target> |
2465 | 2461 | ||
2466 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 2462 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> |
2467 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> | 2463 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> |
2468 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> | 2464 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> |
2469 | <target state="translated">Zeige | 2465 | <target state="translated">Zeige |
@@ -2471,7 +2467,7 @@ Hilf mit PeerTube zu übersetzen!</target> | |||
2471 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> und anderen | 2467 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> und anderen |
2472 | </target> | 2468 | </target> |
2473 | 2469 | ||
2474 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">79</context></context-group></trans-unit> | 2470 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
2475 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> | 2471 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> |
2476 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> | 2472 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> |
2477 | <target state="translated">Zeige | 2473 | <target state="translated">Zeige |
@@ -2479,48 +2475,116 @@ Hilf mit PeerTube zu übersetzen!</target> | |||
2479 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> | 2475 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> |
2480 | </target> | 2476 | </target> |
2481 | 2477 | ||
2482 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 2478 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">87</context></context-group></trans-unit> |
2483 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> | 2479 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> |
2484 | <source>View <x id="INTERPOLATION"/> replies</source> | 2480 | <source>View <x id="INTERPOLATION"/> replies</source> |
2485 | <target state="translated">Zeige | 2481 | <target state="translated">Zeige |
2486 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> Antworten | 2482 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> Antworten |
2487 | </target> | 2483 | </target> |
2488 | 2484 | ||
2489 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">85</context></context-group></trans-unit> | 2485 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">90</context></context-group></trans-unit> |
2490 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828"> | 2486 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828"> |
2491 | <source>Comments are disabled.</source> | 2487 | <source>Comments are disabled.</source> |
2492 | <target> | 2488 | <target> |
2493 | Kommentare sind abgeschaltet. | 2489 | Kommentare sind abgeschaltet. |
2494 | </target> | 2490 | </target> |
2495 | 2491 | ||
2496 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit><trans-unit id="3691787517663044217" datatype="html"> | 2492 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit><trans-unit id="3691787517663044217" datatype="html"> |
2497 | <source> The deletion will be sent to remote instances so they can reflect the change.</source><target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> | 2493 | <source> The deletion will be sent to remote instances so they can reflect the change.</source><target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> |
2494 | |||
2495 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">169</context></context-group></trans-unit><trans-unit id="7321800851971795962" datatype="html"> | ||
2496 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source><target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> | ||
2497 | |||
2498 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="5964038603724691720" datatype="html"> | ||
2499 | <source>Delete and re-draft</source><target state="new">Delete and re-draft</target> | ||
2498 | <context-group purpose="location"> | 2500 | <context-group purpose="location"> |
2499 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | 2501 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> |
2500 | <context context-type="linenumber">163</context> | 2502 | <context context-type="linenumber">197</context> |
2501 | </context-group> | 2503 | </context-group> |
2502 | </trans-unit><trans-unit id="7321800851971795962" datatype="html"> | 2504 | </trans-unit><trans-unit id="7163633882758007711" datatype="html"> |
2503 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source><target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> | 2505 | <source>Do you really want to delete and re-draft this comment?</source><target state="new">Do you really want to delete and re-draft this comment?</target> |
2504 | <context-group purpose="location"> | 2506 | <context-group purpose="location"> |
2505 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | 2507 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> |
2506 | <context context-type="linenumber">165</context> | 2508 | <context context-type="linenumber">197</context> |
2507 | </context-group> | 2509 | </context-group> |
2508 | </trans-unit> | 2510 | </trans-unit> |
2509 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e"> | 2511 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e"> |
2510 | <source>Add comment...</source> | 2512 | <source>Add comment...</source> |
2511 | <target>Kommentieren...</target> | 2513 | <target>Kommentieren...</target> |
2512 | 2514 | ||
2513 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | 2515 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit><trans-unit id="4e5254dedf0c12ce7e7c2197384fceebe3b29a2b" datatype="html"> |
2514 | <trans-unit id="8956c0f4c6974289fc63f1ab6b54f5b32ed65eeb" datatype="html"> | 2516 | <source>Markdown compatible</source><target state="new">Markdown compatible</target> |
2515 | <source>Reply</source> | 2517 | <context-group purpose="location"> |
2516 | <target state="translated">Antworten</target> | 2518 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> |
2517 | 2519 | <context context-type="linenumber">13</context> | |
2518 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 2520 | </context-group> |
2521 | </trans-unit><trans-unit id="4739ffad85f09defefdb6e51b45f43b2ef7c4388" datatype="html"> | ||
2522 | <source>Markdown compatible that supports:</source><target state="new">Markdown compatible that supports:</target> | ||
2523 | <context-group purpose="location"> | ||
2524 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2525 | <context context-type="linenumber">15</context> | ||
2526 | </context-group> | ||
2527 | </trans-unit><trans-unit id="9a53b17a021bb0677c156fd893461797fc497a10" datatype="html"> | ||
2528 | <source>Auto generated links</source><target state="new">Auto generated links</target> | ||
2529 | <context-group purpose="location"> | ||
2530 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2531 | <context context-type="linenumber">18</context> | ||
2532 | </context-group> | ||
2533 | </trans-unit><trans-unit id="664f99b8919d6dd2faa1c1f7c378aa86d1be5e8a" datatype="html"> | ||
2534 | <source>Break lines</source><target state="new">Break lines</target> | ||
2535 | <context-group purpose="location"> | ||
2536 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2537 | <context context-type="linenumber">19</context> | ||
2538 | </context-group> | ||
2539 | </trans-unit><trans-unit id="b15e7bec5c7833d2d9634946ccbed68967b1bee1" datatype="html"> | ||
2540 | <source>Lists</source><target state="new">Lists</target> | ||
2541 | <context-group purpose="location"> | ||
2542 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2543 | <context context-type="linenumber">20</context> | ||
2544 | </context-group> | ||
2545 | </trans-unit><trans-unit id="ab4426b60f13c00b61d6b714d390dc629f314980" datatype="html"> | ||
2546 | <source>Emphasis</source><target state="new">Emphasis</target> | ||
2547 | <context-group purpose="location"> | ||
2548 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2549 | <context context-type="linenumber">22</context> | ||
2550 | </context-group> | ||
2551 | </trans-unit><trans-unit id="4e13b179501d3d32721037e03b4c04acb9857c5f" datatype="html"> | ||
2552 | <source>bold</source><target state="new">bold</target> | ||
2553 | <context-group purpose="location"> | ||
2554 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2555 | <context context-type="linenumber">23</context> | ||
2556 | </context-group> | ||
2557 | </trans-unit><trans-unit id="3c12190421fbb2756e6bbead923df9ec5de8ede2" datatype="html"> | ||
2558 | <source>italic</source><target state="new">italic</target> | ||
2559 | <context-group purpose="location"> | ||
2560 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2561 | <context context-type="linenumber">23</context> | ||
2562 | </context-group> | ||
2563 | </trans-unit><trans-unit id="adb4bbdcb961b8aac8298d6cac554d9b25636b7a" datatype="html"> | ||
2564 | <source>Emoji shortcuts</source><target state="new">Emoji shortcuts</target> | ||
2565 | <context-group purpose="location"> | ||
2566 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2567 | <context context-type="linenumber">26</context> | ||
2568 | </context-group> | ||
2569 | </trans-unit><trans-unit id="b9809a21a8eb3c9db2a0282c5dd94bc221575c96" datatype="html"> | ||
2570 | <source>Emoji markup</source><target state="new">Emoji markup</target> | ||
2571 | <context-group purpose="location"> | ||
2572 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2573 | <context context-type="linenumber">30</context> | ||
2574 | </context-group> | ||
2575 | </trans-unit><trans-unit id="f37feb427aaa551edd1f22616be6464bc0d492de" datatype="html"> | ||
2576 | <source>See complete list</source><target state="new">See complete list</target> | ||
2577 | <context-group purpose="location"> | ||
2578 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2579 | <context context-type="linenumber">32</context> | ||
2580 | </context-group> | ||
2581 | </trans-unit> | ||
2582 | |||
2519 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135"> | 2583 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135"> |
2520 | <source>You are one step away from commenting</source> | 2584 | <source>You are one step away from commenting</source> |
2521 | <target>Du bist einen Schritt vom Kommentieren entfernt</target> | 2585 | <target>Du bist einen Schritt vom Kommentieren entfernt</target> |
2522 | 2586 | ||
2523 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 2587 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
2524 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> | 2588 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> |
2525 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> | 2589 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> |
2526 | <target state="new"> | 2590 | <target state="new"> |
@@ -2529,17 +2593,35 @@ Hilf mit PeerTube zu übersetzen!</target> | |||
2529 | from within the software's interface. | 2593 | from within the software's interface. |
2530 | </target> | 2594 | </target> |
2531 | 2595 | ||
2532 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 2596 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
2533 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb"> | 2597 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb"> |
2534 | <source>If you have an account on Mastodon or Pleroma, you can open it directly in their interface:</source> | 2598 | <source>If you have an account on Mastodon or Pleroma, you can open it directly in their interface:</source> |
2535 | <target>Falls du über ein Mastodon- oder Pleroma-Konto verfügst, kannst du es dort direkt öffnen:</target> | 2599 | <target>Falls du über ein Mastodon- oder Pleroma-Konto verfügst, kannst du es dort direkt öffnen:</target> |
2536 | 2600 | ||
2537 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">41</context></context-group></trans-unit> | 2601 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">65</context></context-group></trans-unit> |
2538 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> | 2602 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> |
2539 | <source>Login to comment</source> | 2603 | <source>Login to comment</source> |
2540 | <target state="translated">Anmelden zum Kommentieren</target> | 2604 | <target state="translated">Anmelden zum Kommentieren</target> |
2541 | 2605 | ||
2542 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">52</context></context-group></trans-unit> | 2606 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit><trans-unit id="974170f455ff5a9034d5737e84b4194c0046fc6b" datatype="html"> |
2607 | <source>Markdown Emoji List</source><target state="new">Markdown Emoji List</target> | ||
2608 | <context-group purpose="location"> | ||
2609 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2610 | <context context-type="linenumber">84</context> | ||
2611 | </context-group> | ||
2612 | </trans-unit><trans-unit id="2662644497259948010" datatype="html"> | ||
2613 | <source>Comment</source><target state="new">Comment</target> | ||
2614 | <context-group purpose="location"> | ||
2615 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2616 | <context context-type="linenumber">58</context> | ||
2617 | </context-group> | ||
2618 | </trans-unit><trans-unit id="4502286564339177240" datatype="html"> | ||
2619 | <source>Reply</source><target state="new">Reply</target> | ||
2620 | <context-group purpose="location"> | ||
2621 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2622 | <context context-type="linenumber">60</context> | ||
2623 | </context-group> | ||
2624 | </trans-unit> | ||
2543 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285"> | 2625 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285"> |
2544 | <source>Highlighted comment</source> | 2626 | <source>Highlighted comment</source> |
2545 | <target>Markierter Kommentar</target> | 2627 | <target>Markierter Kommentar</target> |
@@ -2554,7 +2636,7 @@ Hilf mit PeerTube zu übersetzen!</target> | |||
2554 | <source>This comment has been deleted</source> | 2636 | <source>This comment has been deleted</source> |
2555 | <target state="translated">Dieser Kommentar wurde gelöscht</target> | 2637 | <target state="translated">Dieser Kommentar wurde gelöscht</target> |
2556 | 2638 | ||
2557 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">62</context></context-group></trans-unit> | 2639 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">61</context></context-group></trans-unit> |
2558 | <trans-unit id="9031514421077169181" datatype="html"> | 2640 | <trans-unit id="9031514421077169181" datatype="html"> |
2559 | <source>Video redundancies</source> | 2641 | <source>Video redundancies</source> |
2560 | <target state="translated">Video-Redundanzen</target> | 2642 | <target state="translated">Video-Redundanzen</target> |
@@ -3401,7 +3483,25 @@ Hilf mit PeerTube zu übersetzen!</target> | |||
3401 | <target state="new">No account found.</target> | 3483 | <target state="new">No account found.</target> |
3402 | 3484 | ||
3403 | 3485 | ||
3404 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit> | 3486 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit><trans-unit id="2338185419645468935" datatype="html"> |
3487 | <source>List installed plugins</source><target state="new">List installed plugins</target> | ||
3488 | <context-group purpose="location"> | ||
3489 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3490 | <context context-type="linenumber">28</context> | ||
3491 | </context-group> | ||
3492 | </trans-unit><trans-unit id="8897412584195581488" datatype="html"> | ||
3493 | <source>Search plugins</source><target state="new">Search plugins</target> | ||
3494 | <context-group purpose="location"> | ||
3495 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3496 | <context context-type="linenumber">37</context> | ||
3497 | </context-group> | ||
3498 | </trans-unit><trans-unit id="4994333937800672218" datatype="html"> | ||
3499 | <source>Show plugin</source><target state="new">Show plugin</target> | ||
3500 | <context-group purpose="location"> | ||
3501 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3502 | <context context-type="linenumber">46</context> | ||
3503 | </context-group> | ||
3504 | </trans-unit> | ||
3405 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> | 3505 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> |
3406 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> | 3506 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> |
3407 | <target state="new">Showing | 3507 | <target state="new">Showing |
@@ -4127,7 +4227,7 @@ Hilf mit PeerTube zu übersetzen!</target> | |||
4127 | <source>Administrator</source> | 4227 | <source>Administrator</source> |
4128 | <target>Administrator</target> | 4228 | <target>Administrator</target> |
4129 | 4229 | ||
4130 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">385</context></context-group></trans-unit> | 4230 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">383</context></context-group></trans-unit> |
4131 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587"> | 4231 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587"> |
4132 | <source>Admin email</source> | 4232 | <source>Admin email</source> |
4133 | <target>Admin E-Mail</target> | 4233 | <target>Admin E-Mail</target> |
@@ -4383,27 +4483,27 @@ Hilf mit PeerTube zu übersetzen!</target> | |||
4383 | <source>VIDEO SETTINGS</source> | 4483 | <source>VIDEO SETTINGS</source> |
4384 | <target state="new">VIDEO SETTINGS</target> | 4484 | <target state="new">VIDEO SETTINGS</target> |
4385 | 4485 | ||
4386 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit> | 4486 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
4387 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> | 4487 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> |
4388 | <source>NOTIFICATIONS</source> | 4488 | <source>NOTIFICATIONS</source> |
4389 | <target state="new">NOTIFICATIONS</target> | 4489 | <target state="new">NOTIFICATIONS</target> |
4390 | 4490 | ||
4391 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 4491 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">37</context></context-group></trans-unit> |
4392 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> | 4492 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> |
4393 | <source>INTERFACE</source> | 4493 | <source>INTERFACE</source> |
4394 | <target state="new">INTERFACE</target> | 4494 | <target state="new">INTERFACE</target> |
4395 | 4495 | ||
4396 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 4496 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit> |
4397 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> | 4497 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> |
4398 | <source>PASSWORD</source> | 4498 | <source>PASSWORD</source> |
4399 | <target state="new">PASSWORD</target> | 4499 | <target state="new">PASSWORD</target> |
4400 | 4500 | ||
4401 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">59</context></context-group></trans-unit> | 4501 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">57</context></context-group></trans-unit> |
4402 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> | 4502 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> |
4403 | <source>EMAIL</source> | 4503 | <source>EMAIL</source> |
4404 | <target state="new">EMAIL</target> | 4504 | <target state="new">EMAIL</target> |
4405 | 4505 | ||
4406 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">69</context></context-group></trans-unit> | 4506 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">67</context></context-group></trans-unit> |
4407 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> | 4507 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> |
4408 | <source>DANGER ZONE</source> | 4508 | <source>DANGER ZONE</source> |
4409 | <target state="new">DANGER ZONE</target> | 4509 | <target state="new">DANGER ZONE</target> |
@@ -4651,7 +4751,31 @@ Hilf mit PeerTube zu übersetzen!</target> | |||
4651 | <source>No ownership change request found.</source> | 4751 | <source>No ownership change request found.</source> |
4652 | <target state="new">No ownership change request found.</target> | 4752 | <target state="new">No ownership change request found.</target> |
4653 | 4753 | ||
4654 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit> | 4754 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit><trans-unit id="4247400351982331798" datatype="html"> |
4755 | <source>Account settings</source><target state="new">Account settings</target> | ||
4756 | <context-group purpose="location"> | ||
4757 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4758 | <context context-type="linenumber">37</context> | ||
4759 | </context-group> | ||
4760 | </trans-unit><trans-unit id="154062590416726309" datatype="html"> | ||
4761 | <source>Account playlists</source><target state="new">Account playlists</target> | ||
4762 | <context-group purpose="location"> | ||
4763 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4764 | <context context-type="linenumber">55</context> | ||
4765 | </context-group> | ||
4766 | </trans-unit><trans-unit id="6550287183367517925" datatype="html"> | ||
4767 | <source>Create new playlist</source><target state="new">Create new playlist</target> | ||
4768 | <context-group purpose="location"> | ||
4769 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4770 | <context context-type="linenumber">64</context> | ||
4771 | </context-group> | ||
4772 | </trans-unit><trans-unit id="2864486939135008600" datatype="html"> | ||
4773 | <source>Playlist elements</source><target state="new">Playlist elements</target> | ||
4774 | <context-group purpose="location"> | ||
4775 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4776 | <context context-type="linenumber">73</context> | ||
4777 | </context-group> | ||
4778 | </trans-unit> | ||
4655 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> | 4779 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> |
4656 | <source>My imports</source> | 4780 | <source>My imports</source> |
4657 | <target state="new">My imports</target> | 4781 | <target state="new">My imports</target> |
@@ -4920,7 +5044,25 @@ Hilf mit PeerTube zu übersetzen!</target> | |||
4920 | <source>An error occurred.</source> | 5044 | <source>An error occurred.</source> |
4921 | <target>Ein Fehler ist aufgetreten.</target> | 5045 | <target>Ein Fehler ist aufgetreten.</target> |
4922 | 5046 | ||
4923 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 5047 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit><trans-unit id="9128669621822125729" datatype="html"> |
5048 | <source>Video channel videos</source><target state="new">Video channel videos</target> | ||
5049 | <context-group purpose="location"> | ||
5050 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5051 | <context context-type="linenumber">25</context> | ||
5052 | </context-group> | ||
5053 | </trans-unit><trans-unit id="3193822049276963401" datatype="html"> | ||
5054 | <source>Video channel playlists</source><target state="new">Video channel playlists</target> | ||
5055 | <context-group purpose="location"> | ||
5056 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5057 | <context context-type="linenumber">38</context> | ||
5058 | </context-group> | ||
5059 | </trans-unit><trans-unit id="4723526509708949088" datatype="html"> | ||
5060 | <source>About video channel</source><target state="new">About video channel</target> | ||
5061 | <context-group purpose="location"> | ||
5062 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5063 | <context context-type="linenumber">47</context> | ||
5064 | </context-group> | ||
5065 | </trans-unit> | ||
4924 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97"> | 5066 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97"> |
4925 | <source>Request email for account verification</source> | 5067 | <source>Request email for account verification</source> |
4926 | <target> | 5068 | <target> |
@@ -5039,7 +5181,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5039 | <source>Stats</source> | 5181 | <source>Stats</source> |
5040 | <target>Statistiken</target> | 5182 | <target>Statistiken</target> |
5041 | 5183 | ||
5042 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 5184 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
5043 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc"> | 5185 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc"> |
5044 | <source>Joined <x id="INTERPOLATION"/></source> | 5186 | <source>Joined <x id="INTERPOLATION"/></source> |
5045 | <target>Hier seit | 5187 | <target>Hier seit |
@@ -5445,7 +5587,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5445 | <source>This instance does not have instances followings.</source> | 5587 | <source>This instance does not have instances followings.</source> |
5446 | <target state="new">This instance does not have instances followings.</target> | 5588 | <target state="new">This instance does not have instances followings.</target> |
5447 | 5589 | ||
5448 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit> | 5590 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit><trans-unit id="4195286790385468087" datatype="html"> |
5591 | <source>About this instance</source><target state="new">About this instance</target> | ||
5592 | <context-group purpose="location"> | ||
5593 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5594 | <context context-type="linenumber">26</context> | ||
5595 | </context-group> | ||
5596 | </trans-unit><trans-unit id="8773846522957677259" datatype="html"> | ||
5597 | <source>About PeerTube</source><target state="new">About PeerTube</target> | ||
5598 | <context-group purpose="location"> | ||
5599 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5600 | <context context-type="linenumber">38</context> | ||
5601 | </context-group> | ||
5602 | </trans-unit><trans-unit id="5782088737558028158" datatype="html"> | ||
5603 | <source>About follows</source><target state="new">About follows</target> | ||
5604 | <context-group purpose="location"> | ||
5605 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5606 | <context context-type="linenumber">47</context> | ||
5607 | </context-group> | ||
5608 | </trans-unit> | ||
5449 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> | 5609 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> |
5450 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> | 5610 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> |
5451 | <target state="translated">Entwickelt mit ❤ von | 5611 | <target state="translated">Entwickelt mit ❤ von |
@@ -5614,6 +5774,12 @@ Konto erstellen</target> | |||
5614 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 5774 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> |
5615 | <context context-type="linenumber">1</context> | 5775 | <context context-type="linenumber">1</context> |
5616 | </context-group> | 5776 | </context-group> |
5777 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
5778 | <source>Get help</source><target state="new">Get help</target> | ||
5779 | <context-group purpose="location"> | ||
5780 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | ||
5781 | <context context-type="linenumber">16</context> | ||
5782 | </context-group> | ||
5617 | </trans-unit> | 5783 | </trans-unit> |
5618 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1"> | 5784 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1"> |
5619 | <source>Create my account</source> | 5785 | <source>Create my account</source> |
@@ -5731,7 +5897,13 @@ Erstelle mein Konto</target> | |||
5731 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/> dieser Instanz zu | 5897 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/> dieser Instanz zu |
5732 | </target> | 5898 | </target> |
5733 | 5899 | ||
5734 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 5900 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit><trans-unit id="3301086086650990787" datatype="html"> |
5901 | <source>Register</source><target state="new">Register</target> | ||
5902 | <context-group purpose="location"> | ||
5903 | <context context-type="sourcefile">../app/+signup/+register/register-routing.module.ts</context> | ||
5904 | <context context-type="linenumber">14</context> | ||
5905 | </context-group> | ||
5906 | </trans-unit> | ||
5735 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> | 5907 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> |
5736 | <source>Sorry, we couldn't find the page you were looking for.</source> | 5908 | <source>Sorry, we couldn't find the page you were looking for.</source> |
5737 | <target state="translated">Entschuldigung, wir konnten die Seite nach der du gesucht hast nicht finden.</target> | 5909 | <target state="translated">Entschuldigung, wir konnten die Seite nach der du gesucht hast nicht finden.</target> |
@@ -5752,7 +5924,25 @@ Erstelle mein Konto</target> | |||
5752 | <target>Keine Beschreibung</target> | 5924 | <target>Keine Beschreibung</target> |
5753 | 5925 | ||
5754 | 5926 | ||
5755 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit> | 5927 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit><trans-unit id="819067926858619041" datatype="html"> |
5928 | <source>Account videos</source><target state="new">Account videos</target> | ||
5929 | <context-group purpose="location"> | ||
5930 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
5931 | <context context-type="linenumber">29</context> | ||
5932 | </context-group> | ||
5933 | </trans-unit><trans-unit id="6823616469362610020" datatype="html"> | ||
5934 | <source>Account video channels</source><target state="new">Account video channels</target> | ||
5935 | <context-group purpose="location"> | ||
5936 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
5937 | <context context-type="linenumber">42</context> | ||
5938 | </context-group> | ||
5939 | </trans-unit><trans-unit id="7678273613459026643" datatype="html"> | ||
5940 | <source>About account</source><target state="new">About account</target> | ||
5941 | <context-group purpose="location"> | ||
5942 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
5943 | <context context-type="linenumber">51</context> | ||
5944 | </context-group> | ||
5945 | </trans-unit> | ||
5756 | <trans-unit id="3755500631176893489"> | 5946 | <trans-unit id="3755500631176893489"> |
5757 | <source>Published <x id="PH"/> videos</source> | 5947 | <source>Published <x id="PH"/> videos</source> |
5758 | <target>Veröffentlichte | 5948 | <target>Veröffentlichte |
@@ -5869,7 +6059,13 @@ Erstelle mein Konto</target> | |||
5869 | <source>Configuration updated.</source> | 6059 | <source>Configuration updated.</source> |
5870 | <target>Einstellungen aktualisiert.</target> | 6060 | <target>Einstellungen aktualisiert.</target> |
5871 | 6061 | ||
5872 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit> | 6062 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit><trans-unit id="6284468333579755406" datatype="html"> |
6063 | <source>Edit custom configuration</source><target state="new">Edit custom configuration</target> | ||
6064 | <context-group purpose="location"> | ||
6065 | <context context-type="sourcefile">../app/+admin/config/config.routes.ts</context> | ||
6066 | <context context-type="linenumber">26</context> | ||
6067 | </context-group> | ||
6068 | </trans-unit> | ||
5873 | 6069 | ||
5874 | 6070 | ||
5875 | <trans-unit id="6549061957433635758" datatype="html"> | 6071 | <trans-unit id="6549061957433635758" datatype="html"> |
@@ -6348,7 +6544,19 @@ Erstelle mein Konto</target> | |||
6348 | <x id="PH"/> aktualisiert. | 6544 | <x id="PH"/> aktualisiert. |
6349 | </target> | 6545 | </target> |
6350 | 6546 | ||
6351 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 6547 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit><trans-unit id="3229595422546554334" datatype="html"> |
6548 | <source>Jobs</source><target state="new">Jobs</target> | ||
6549 | <context-group purpose="location"> | ||
6550 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6551 | <context context-type="linenumber">26</context> | ||
6552 | </context-group> | ||
6553 | </trans-unit><trans-unit id="4804785061014590286" datatype="html"> | ||
6554 | <source>Logs</source><target state="new">Logs</target> | ||
6555 | <context-group purpose="location"> | ||
6556 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6557 | <context context-type="linenumber">37</context> | ||
6558 | </context-group> | ||
6559 | </trans-unit> | ||
6352 | <trans-unit id="3150704904301058778"> | 6560 | <trans-unit id="3150704904301058778"> |
6353 | <source>The plugin index is not available. Please retry later.</source> | 6561 | <source>The plugin index is not available. Please retry later.</source> |
6354 | <target>Das Plugin-Index ist nicht verfügbar. Bitte versuchen Sie es später noch einmal.</target> | 6562 | <target>Das Plugin-Index ist nicht verfügbar. Bitte versuchen Sie es später noch einmal.</target> |
@@ -6462,6 +6670,18 @@ Erstelle mein Konto</target> | |||
6462 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> | 6670 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> |
6463 | <context context-type="linenumber">86</context> | 6671 | <context context-type="linenumber">86</context> |
6464 | </context-group> | 6672 | </context-group> |
6673 | </trans-unit><trans-unit id="2903648076838460070" datatype="html"> | ||
6674 | <source>Videos blocked</source><target state="new">Videos blocked</target> | ||
6675 | <context-group purpose="location"> | ||
6676 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6677 | <context context-type="linenumber">67</context> | ||
6678 | </context-group> | ||
6679 | </trans-unit><trans-unit id="7805059636749367886" datatype="html"> | ||
6680 | <source>Muted instances</source><target state="new">Muted instances</target> | ||
6681 | <context-group purpose="location"> | ||
6682 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6683 | <context context-type="linenumber">89</context> | ||
6684 | </context-group> | ||
6465 | </trans-unit> | 6685 | </trans-unit> |
6466 | <trans-unit id="5974506725502681113"> | 6686 | <trans-unit id="5974506725502681113"> |
6467 | <source>Password changed for user <x id="PH"/>.</source> | 6687 | <source>Password changed for user <x id="PH"/>.</source> |
@@ -6474,7 +6694,19 @@ Erstelle mein Konto</target> | |||
6474 | <source>Update user password</source> | 6694 | <source>Update user password</source> |
6475 | <target>Benutzerkennwort geändert</target> | 6695 | <target>Benutzerkennwort geändert</target> |
6476 | 6696 | ||
6477 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit> | 6697 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit><trans-unit id="177544274549739411" datatype="html"> |
6698 | <source>Following list</source><target state="new">Following list</target> | ||
6699 | <context-group purpose="location"> | ||
6700 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6701 | <context context-type="linenumber">28</context> | ||
6702 | </context-group> | ||
6703 | </trans-unit><trans-unit id="8092429110007204784" datatype="html"> | ||
6704 | <source>Followers list</source><target state="new">Followers list</target> | ||
6705 | <context-group purpose="location"> | ||
6706 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6707 | <context context-type="linenumber">37</context> | ||
6708 | </context-group> | ||
6709 | </trans-unit> | ||
6478 | <trans-unit id="780323526182667308" datatype="html"> | 6710 | <trans-unit id="780323526182667308" datatype="html"> |
6479 | <source>User <x id="PH"/> updated.</source> | 6711 | <source>User <x id="PH"/> updated.</source> |
6480 | <target state="new">User | 6712 | <target state="new">User |
@@ -6493,7 +6725,25 @@ Erstelle mein Konto</target> | |||
6493 | <x id="PH"/> gesendet. | 6725 | <x id="PH"/> gesendet. |
6494 | </target> | 6726 | </target> |
6495 | 6727 | ||
6496 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="8564701209009684429" datatype="html"> | 6728 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="7483807629538115183" datatype="html"> |
6729 | <source>Users list</source><target state="new">Users list</target> | ||
6730 | <context-group purpose="location"> | ||
6731 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6732 | <context context-type="linenumber">27</context> | ||
6733 | </context-group> | ||
6734 | </trans-unit><trans-unit id="1525334987774465166" datatype="html"> | ||
6735 | <source>Create a user</source><target state="new">Create a user</target> | ||
6736 | <context-group purpose="location"> | ||
6737 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6738 | <context context-type="linenumber">36</context> | ||
6739 | </context-group> | ||
6740 | </trans-unit><trans-unit id="5552039423287890133" datatype="html"> | ||
6741 | <source>Update a user</source><target state="new">Update a user</target> | ||
6742 | <context-group purpose="location"> | ||
6743 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6744 | <context context-type="linenumber">48</context> | ||
6745 | </context-group> | ||
6746 | </trans-unit><trans-unit id="8564701209009684429" datatype="html"> | ||
6497 | <source>Federation</source><target state="new">Federation</target> | 6747 | <source>Federation</source><target state="new">Federation</target> |
6498 | <context-group purpose="location"> | 6748 | <context-group purpose="location"> |
6499 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> | 6749 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> |
@@ -6847,7 +7097,25 @@ Erstelle mein Konto</target> | |||
6847 | <source>Views for the day</source> | 7097 | <source>Views for the day</source> |
6848 | <target state="new">Views for the day</target> | 7098 | <target state="new">Views for the day</target> |
6849 | 7099 | ||
6850 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit> | 7100 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit><trans-unit id="4707367314920217630" datatype="html"> |
7101 | <source>Create new video channel</source><target state="new">Create new video channel</target> | ||
7102 | <context-group purpose="location"> | ||
7103 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7104 | <context context-type="linenumber">22</context> | ||
7105 | </context-group> | ||
7106 | </trans-unit><trans-unit id="6059091237492573541" datatype="html"> | ||
7107 | <source>Update video channel</source><target state="new">Update video channel</target> | ||
7108 | <context-group purpose="location"> | ||
7109 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7110 | <context context-type="linenumber">31</context> | ||
7111 | </context-group> | ||
7112 | </trans-unit><trans-unit id="6595008830732269870" datatype="html"> | ||
7113 | <source>Not found</source><target state="new">Not found</target> | ||
7114 | <context-group purpose="location"> | ||
7115 | <context context-type="sourcefile">../app/+page-not-found/page-not-found-routing.module.ts</context> | ||
7116 | <context context-type="linenumber">13</context> | ||
7117 | </context-group> | ||
7118 | </trans-unit> | ||
6851 | <trans-unit id="5032453707232754344"> | 7119 | <trans-unit id="5032453707232754344"> |
6852 | <source>Playlist <x id="PH"/> created.</source> | 7120 | <source>Playlist <x id="PH"/> created.</source> |
6853 | <target>Abspielliste | 7121 | <target>Abspielliste |
@@ -6865,7 +7133,31 @@ Erstelle mein Konto</target> | |||
6865 | <source>Update playlist</source> | 7133 | <source>Update playlist</source> |
6866 | <target state="new">Update playlist</target> | 7134 | <target state="new">Update playlist</target> |
6867 | 7135 | ||
6868 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-video-playlists/my-account-video-playlist-elements.component.ts</context><context context-type="linenumber">48</context></context-group></trans-unit> | 7136 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">82</context></context-group></trans-unit><trans-unit id="3410331549417637431" datatype="html"> |
7137 | <source>Account video imports</source><target state="new">Account video imports</target> | ||
7138 | <context-group purpose="location"> | ||
7139 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7140 | <context context-type="linenumber">105</context> | ||
7141 | </context-group> | ||
7142 | </trans-unit><trans-unit id="4434998055872154420" datatype="html"> | ||
7143 | <source>Account subscriptions</source><target state="new">Account subscriptions</target> | ||
7144 | <context-group purpose="location"> | ||
7145 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7146 | <context context-type="linenumber">114</context> | ||
7147 | </context-group> | ||
7148 | </trans-unit><trans-unit id="6019411775996586321" datatype="html"> | ||
7149 | <source>Videos history</source><target state="new">Videos history</target> | ||
7150 | <context-group purpose="location"> | ||
7151 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7152 | <context context-type="linenumber">150</context> | ||
7153 | </context-group> | ||
7154 | </trans-unit><trans-unit id="5851560788527570644" datatype="html"> | ||
7155 | <source>Notifications</source><target state="new">Notifications</target> | ||
7156 | <context-group purpose="location"> | ||
7157 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7158 | <context context-type="linenumber">163</context> | ||
7159 | </context-group> | ||
7160 | </trans-unit> | ||
6869 | <trans-unit id="104404386496394770" datatype="html"> | 7161 | <trans-unit id="104404386496394770" datatype="html"> |
6870 | <source>Delete playlist</source> | 7162 | <source>Delete playlist</source> |
6871 | <target state="new">Delete playlist</target> | 7163 | <target state="new">Delete playlist</target> |
@@ -7019,7 +7311,19 @@ Erstelle mein Konto</target> | |||
7019 | <x id="PH"/> gesendet. | 7311 | <x id="PH"/> gesendet. |
7020 | </target> | 7312 | </target> |
7021 | 7313 | ||
7022 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit> | 7314 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit><trans-unit id="8231550792139699065" datatype="html"> |
7315 | <source>Verify account email</source><target state="new">Verify account email</target> | ||
7316 | <context-group purpose="location"> | ||
7317 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7318 | <context context-type="linenumber">17</context> | ||
7319 | </context-group> | ||
7320 | </trans-unit><trans-unit id="4997281272800290390" datatype="html"> | ||
7321 | <source>Verify account ask send email</source><target state="new">Verify account ask send email</target> | ||
7322 | <context-group purpose="location"> | ||
7323 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7324 | <context context-type="linenumber">26</context> | ||
7325 | </context-group> | ||
7326 | </trans-unit> | ||
7023 | <trans-unit id="4180693983967989981"> | 7327 | <trans-unit id="4180693983967989981"> |
7024 | <source>Unable to find user id or verification string.</source> | 7328 | <source>Unable to find user id or verification string.</source> |
7025 | <target>Benutzer-ID oder Verifizierungscode nicht gefunden.</target> | 7329 | <target>Benutzer-ID oder Verifizierungscode nicht gefunden.</target> |
@@ -7144,27 +7448,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7144 | <source>any language</source> | 7448 | <source>any language</source> |
7145 | <target state="new">any language</target> | 7449 | <target state="new">any language</target> |
7146 | 7450 | ||
7147 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">202</context></context-group></trans-unit> | 7451 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">229</context></context-group></trans-unit> |
7148 | <trans-unit id="5633144232269377096" datatype="html"> | 7452 | <trans-unit id="5633144232269377096" datatype="html"> |
7149 | <source>hide</source> | 7453 | <source>hide</source> |
7150 | <target state="new">hide</target> | 7454 | <target state="new">hide</target> |
7151 | 7455 | ||
7152 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">118</context></context-group></trans-unit> | 7456 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> |
7153 | <trans-unit id="8603861867909474404" datatype="html"> | 7457 | <trans-unit id="8603861867909474404" datatype="html"> |
7154 | <source>blur</source> | 7458 | <source>blur</source> |
7155 | <target state="new">blur</target> | 7459 | <target state="new">blur</target> |
7156 | 7460 | ||
7157 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> | 7461 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> |
7158 | <trans-unit id="4534458451100881847" datatype="html"> | 7462 | <trans-unit id="4534458451100881847" datatype="html"> |
7159 | <source>display</source> | 7463 | <source>display</source> |
7160 | <target state="new">display</target> | 7464 | <target state="new">display</target> |
7161 | 7465 | ||
7162 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> | 7466 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">127</context></context-group></trans-unit> |
7163 | <trans-unit id="4467323362722952678" datatype="html"> | 7467 | <trans-unit id="4467323362722952678" datatype="html"> |
7164 | <source>Unknown</source> | 7468 | <source>Unknown</source> |
7165 | <target state="new">Unknown</target> | 7469 | <target state="new">Unknown</target> |
7166 | 7470 | ||
7167 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">190</context></context-group></trans-unit> | 7471 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">193</context></context-group></trans-unit> |
7168 | <trans-unit id="8781423666414310853"> | 7472 | <trans-unit id="8781423666414310853"> |
7169 | <source>Your password has been successfully reset!</source> | 7473 | <source>Your password has been successfully reset!</source> |
7170 | <target>Dein Passwort wurde zurückgesetzt!</target> | 7474 | <target>Dein Passwort wurde zurückgesetzt!</target> |
@@ -8282,27 +8586,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8282 | <source>Emphasis</source> | 8586 | <source>Emphasis</source> |
8283 | <target>Hervorhebungen</target> | 8587 | <target>Hervorhebungen</target> |
8284 | 8588 | ||
8285 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">77</context></context-group></trans-unit> | 8589 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> |
8286 | <trans-unit id="7565716024468232322"> | 8590 | <trans-unit id="7565716024468232322"> |
8287 | <source>Links</source> | 8591 | <source>Links</source> |
8288 | <target>Links</target> | 8592 | <target>Links</target> |
8289 | 8593 | ||
8290 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">78</context></context-group></trans-unit> | 8594 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> |
8291 | <trans-unit id="7838476952710404110"> | 8595 | <trans-unit id="7838476952710404110"> |
8292 | <source>New lines</source> | 8596 | <source>New lines</source> |
8293 | <target>Zeilenumbrüche</target> | 8597 | <target>Zeilenumbrüche</target> |
8294 | 8598 | ||
8295 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 8599 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">83</context></context-group></trans-unit> |
8296 | <trans-unit id="8756167649220050929"> | 8600 | <trans-unit id="8756167649220050929"> |
8297 | <source>Lists</source> | 8601 | <source>Lists</source> |
8298 | <target>Listen</target> | 8602 | <target>Listen</target> |
8299 | 8603 | ||
8300 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">80</context></context-group></trans-unit> | 8604 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">84</context></context-group></trans-unit> |
8301 | <trans-unit id="414887388288176527"> | 8605 | <trans-unit id="414887388288176527"> |
8302 | <source>Images</source> | 8606 | <source>Images</source> |
8303 | <target>Bilder</target> | 8607 | <target>Bilder</target> |
8304 | 8608 | ||
8305 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> | 8609 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">85</context></context-group></trans-unit> |
8306 | <trans-unit id="5708680277917691451"> | 8610 | <trans-unit id="5708680277917691451"> |
8307 | <source> | 8611 | <source> |
8308 | <x id="PH"/> users banned. | 8612 | <x id="PH"/> users banned. |
@@ -8698,7 +9002,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8698 | <source>Moderator</source> | 9002 | <source>Moderator</source> |
8699 | <target>Moderator</target> | 9003 | <target>Moderator</target> |
8700 | 9004 | ||
8701 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">386</context></context-group></trans-unit> | 9005 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">384</context></context-group></trans-unit> |
8702 | <trans-unit id="3723085768598852106"> | 9006 | <trans-unit id="3723085768598852106"> |
8703 | <source>Video removed from | 9007 | <source>Video removed from |
8704 | <x id="PH"/> | 9008 | <x id="PH"/> |
@@ -8771,7 +9075,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8771 | <source>Do you really want to delete this comment?</source> | 9075 | <source>Do you really want to delete this comment?</source> |
8772 | <target state="new">Do you really want to delete this comment?</target> | 9076 | <target state="new">Do you really want to delete this comment?</target> |
8773 | 9077 | ||
8774 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">434</context></context-group></trans-unit> | 9078 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">166</context></context-group></trans-unit> |
8775 | <trans-unit id="7837272126865175984" datatype="html"> | 9079 | <trans-unit id="7837272126865175984" datatype="html"> |
8776 | <source>Comment deleted.</source> | 9080 | <source>Comment deleted.</source> |
8777 | <target state="new">Comment deleted.</target> | 9081 | <target state="new">Comment deleted.</target> |
@@ -8883,9 +9187,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8883 | 9187 | ||
8884 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> | 9188 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> |
8885 | <source>Report</source><target state="new">Report</target> | 9189 | <source>Report</source><target state="new">Report</target> |
9190 | |||
9191 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="4814285799071780083" datatype="html"> | ||
9192 | <source>Remove</source><target state="new">Remove</target> | ||
8886 | <context-group purpose="location"> | 9193 | <context-group purpose="location"> |
8887 | <context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> | 9194 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> |
8888 | <context context-type="linenumber">286</context> | 9195 | <context context-type="linenumber">179</context> |
9196 | </context-group> | ||
9197 | </trans-unit><trans-unit id="6871668720687277843" datatype="html"> | ||
9198 | <source>Remove & re-draft</source><target state="new">Remove & re-draft</target> | ||
9199 | <context-group purpose="location"> | ||
9200 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> | ||
9201 | <context context-type="linenumber">187</context> | ||
8889 | </context-group> | 9202 | </context-group> |
8890 | </trans-unit> | 9203 | </trans-unit> |
8891 | <trans-unit id="4903651219400691248" datatype="html"> | 9204 | <trans-unit id="4903651219400691248" datatype="html"> |
@@ -8989,22 +9302,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8989 | <source>Only I can see this video</source> | 9302 | <source>Only I can see this video</source> |
8990 | <target>Nur ich kann dieses Video sehen</target> | 9303 | <target>Nur ich kann dieses Video sehen</target> |
8991 | 9304 | ||
8992 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">340</context></context-group></trans-unit> | 9305 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">341</context></context-group></trans-unit> |
8993 | <trans-unit id="6767380569816110388" datatype="html"> | 9306 | <trans-unit id="6767380569816110388" datatype="html"> |
8994 | <source>Only shareable via a private link</source> | 9307 | <source>Only shareable via a private link</source> |
8995 | <target state="new">Only shareable via a private link</target> | 9308 | <target state="new">Only shareable via a private link</target> |
8996 | 9309 | ||
8997 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">344</context></context-group></trans-unit> | 9310 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">345</context></context-group></trans-unit> |
8998 | <trans-unit id="6828965264297239528"> | 9311 | <trans-unit id="6828965264297239528"> |
8999 | <source>Anyone can see this video</source> | 9312 | <source>Anyone can see this video</source> |
9000 | <target>Jeder kann dieses Video sehen</target> | 9313 | <target>Jeder kann dieses Video sehen</target> |
9001 | 9314 | ||
9002 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">348</context></context-group></trans-unit> | 9315 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">349</context></context-group></trans-unit> |
9003 | <trans-unit id="1425933035739773115" datatype="html"> | 9316 | <trans-unit id="1425933035739773115" datatype="html"> |
9004 | <source>Only users of this instance can see this video</source> | 9317 | <source>Only users of this instance can see this video</source> |
9005 | <target state="translated">Nur Nutzer dieser Instanz können dieses Video sehen</target> | 9318 | <target state="translated">Nur Nutzer dieser Instanz können dieses Video sehen</target> |
9006 | 9319 | ||
9007 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">352</context></context-group></trans-unit> | 9320 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">353</context></context-group></trans-unit> |
9008 | <trans-unit id="5210096066382592800"> | 9321 | <trans-unit id="5210096066382592800"> |
9009 | <source>Video to import updated.</source> | 9322 | <source>Video to import updated.</source> |
9010 | <target>Zu importierendes Video wurde aktualisiert.</target> | 9323 | <target>Zu importierendes Video wurde aktualisiert.</target> |
@@ -9084,7 +9397,7 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9084 | <target state="new">Report comment</target> | 9397 | <target state="new">Report comment</target> |
9085 | 9398 | ||
9086 | 9399 | ||
9087 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 9400 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/report-modals/comment-report.component.ts</context><context context-type="linenumber">51</context></context-group></trans-unit> |
9088 | 9401 | ||
9089 | 9402 | ||
9090 | <trans-unit id="6775540171466219199" datatype="html"> | 9403 | <trans-unit id="6775540171466219199" datatype="html"> |
@@ -9248,6 +9561,36 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9248 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> | 9561 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> |
9249 | <context context-type="linenumber">36</context> | 9562 | <context context-type="linenumber">36</context> |
9250 | </context-group> | 9563 | </context-group> |
9564 | </trans-unit><trans-unit id="4668975178372693951" datatype="html"> | ||
9565 | <source>Discover videos</source><target state="new">Discover videos</target> | ||
9566 | <context-group purpose="location"> | ||
9567 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9568 | <context context-type="linenumber">23</context> | ||
9569 | </context-group> | ||
9570 | </trans-unit><trans-unit id="8067135025051844577" datatype="html"> | ||
9571 | <source>Trending videos</source><target state="new">Trending videos</target> | ||
9572 | <context-group purpose="location"> | ||
9573 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9574 | <context context-type="linenumber">32</context> | ||
9575 | </context-group> | ||
9576 | </trans-unit><trans-unit id="664221386829541948" datatype="html"> | ||
9577 | <source>Recently added videos</source><target state="new">Recently added videos</target> | ||
9578 | <context-group purpose="location"> | ||
9579 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9580 | <context context-type="linenumber">58</context> | ||
9581 | </context-group> | ||
9582 | </trans-unit><trans-unit id="8212906256415538361" datatype="html"> | ||
9583 | <source>Upload a video</source><target state="new">Upload a video</target> | ||
9584 | <context-group purpose="location"> | ||
9585 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9586 | <context context-type="linenumber">97</context> | ||
9587 | </context-group> | ||
9588 | </trans-unit><trans-unit id="7590784934397800835" datatype="html"> | ||
9589 | <source>Edit a video</source><target state="new">Edit a video</target> | ||
9590 | <context-group purpose="location"> | ||
9591 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9592 | <context context-type="linenumber">106</context> | ||
9593 | </context-group> | ||
9251 | </trans-unit> | 9594 | </trans-unit> |
9252 | </body> | 9595 | </body> |
9253 | </file> | 9596 | </file> |
diff --git a/client/src/locale/angular.el-GR.xlf b/client/src/locale/angular.el-GR.xlf index ba862cd9d..e22756d4d 100644 --- a/client/src/locale/angular.el-GR.xlf +++ b/client/src/locale/angular.el-GR.xlf | |||
@@ -308,7 +308,7 @@ | |||
308 | <target>Επιλογές</target> | 308 | <target>Επιλογές</target> |
309 | 309 | ||
310 | 310 | ||
311 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 311 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">48</context></context-group></trans-unit> |
312 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d"> | 312 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d"> |
313 | <source>Start at</source> | 313 | <source>Start at</source> |
314 | <target>Εκκίνηση στο</target> | 314 | <target>Εκκίνηση στο</target> |
@@ -440,7 +440,7 @@ | |||
440 | Ακύρωση | 440 | Ακύρωση |
441 | </target> | 441 | </target> |
442 | 442 | ||
443 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> | 443 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit> |
444 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd"> | 444 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd"> |
445 | <source>Download</source> | 445 | <source>Download</source> |
446 | <target>Λήψη</target> | 446 | <target>Λήψη</target> |
@@ -559,7 +559,7 @@ | |||
559 | 559 | ||
560 | 560 | ||
561 | 561 | ||
562 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 562 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
563 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc"> | 563 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc"> |
564 | <source>Edit starts/stops at</source> | 564 | <source>Edit starts/stops at</source> |
565 | <target>Επεξεργασία ξεκινά/σταματά στο</target> | 565 | <target>Επεξεργασία ξεκινά/σταματά στο</target> |
@@ -599,7 +599,7 @@ | |||
599 | 599 | ||
600 | 600 | ||
601 | 601 | ||
602 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> | 602 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
603 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> | 603 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> |
604 | <source>Edit</source> | 604 | <source>Edit</source> |
605 | <target>Επεξεργασία</target> | 605 | <target>Επεξεργασία</target> |
@@ -624,17 +624,10 @@ | |||
624 | <target>Πλήρης σύνοψη</target> | 624 | <target>Πλήρης σύνοψη</target> |
625 | 625 | ||
626 | <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></trans-unit> | 626 | <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></trans-unit> |
627 | <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f"> | 627 | <trans-unit id="8644431249513874405" datatype="html"> |
628 | <source>Get help</source> | ||
629 | <target>Βοήθεια</target> | ||
630 | |||
631 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit><trans-unit id="8644431249513874405" datatype="html"> | ||
632 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> | 628 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> |
633 | <context-group purpose="location"> | 629 | |
634 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 630 | <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></trans-unit> |
635 | <context context-type="linenumber">71</context> | ||
636 | </context-group> | ||
637 | </trans-unit> | ||
638 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> | 631 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> |
639 | <source>Recommended</source> | 632 | <source>Recommended</source> |
640 | <target state="new">Recommended</target> | 633 | <target state="new">Recommended</target> |
@@ -674,7 +667,7 @@ | |||
674 | <source>PROFILE SETTINGS</source> | 667 | <source>PROFILE SETTINGS</source> |
675 | <target state="new">PROFILE SETTINGS</target> | 668 | <target state="new">PROFILE SETTINGS</target> |
676 | 669 | ||
677 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 670 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">12</context></context-group></trans-unit> |
678 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3"> | 671 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3"> |
679 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> | 672 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> |
680 | <target> | 673 | <target> |
@@ -846,11 +839,8 @@ | |||
846 | 839 | ||
847 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> | 840 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> |
848 | <source>User</source><target state="new">User</target> | 841 | <source>User</source><target state="new">User</target> |
849 | <context-group purpose="location"> | 842 | |
850 | <context context-type="sourcefile">../app/core/users/user.service.ts</context> | 843 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit> |
851 | <context context-type="linenumber">384</context> | ||
852 | </context-group> | ||
853 | </trans-unit> | ||
854 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0"> | 844 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0"> |
855 | <source>Ban</source> | 845 | <source>Ban</source> |
856 | <target>Αποκλεισμός</target> | 846 | <target>Αποκλεισμός</target> |
@@ -1340,89 +1330,89 @@ The link will expire within 1 hour.</target> | |||
1340 | <source>Account settings</source> | 1330 | <source>Account settings</source> |
1341 | <target state="new">Account settings</target> | 1331 | <target state="new">Account settings</target> |
1342 | 1332 | ||
1343 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 1333 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
1344 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> | 1334 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> |
1345 | <source>Channels settings</source> | 1335 | <source>Channels settings</source> |
1346 | <target state="new">Channels settings</target> | 1336 | <target state="new">Channels settings</target> |
1347 | 1337 | ||
1348 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 1338 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> |
1349 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> | 1339 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> |
1350 | <source>Interface:</source> | 1340 | <source>Interface:</source> |
1351 | <target state="new">Interface:</target> | 1341 | <target state="new">Interface:</target> |
1352 | 1342 | ||
1353 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 1343 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1354 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> | 1344 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> |
1355 | <source>Videos:</source> | 1345 | <source>Videos:</source> |
1356 | <target state="new">Videos:</target> | 1346 | <target state="new">Videos:</target> |
1357 | 1347 | ||
1358 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 1348 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> |
1359 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> | 1349 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> |
1360 | <source>Sensitive:</source> | 1350 | <source>Sensitive:</source> |
1361 | <target state="new">Sensitive:</target> | 1351 | <target state="new">Sensitive:</target> |
1362 | 1352 | ||
1363 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 1353 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">54</context></context-group></trans-unit> |
1364 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1354 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> |
1365 | <source>Interface: <x id="INTERPOLATION"/></source> | 1355 | <source>Interface: <x id="INTERPOLATION"/></source> |
1366 | <target state="new">Interface: | 1356 | <target state="new">Interface: |
1367 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> | 1357 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> |
1368 | </target> | 1358 | </target> |
1369 | 1359 | ||
1370 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">156</context></context-group></trans-unit> | 1360 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> |
1371 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1361 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1372 | <source>Help share videos</source> | 1362 | <source>Help share videos</source> |
1373 | <target state="new">Help share videos</target> | 1363 | <target state="new">Help share videos</target> |
1374 | 1364 | ||
1375 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> | 1365 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
1376 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> | 1366 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> |
1377 | <source>More account settings</source> | 1367 | <source>More account settings</source> |
1378 | <target state="new">More account settings</target> | 1368 | <target state="new">More account settings</target> |
1379 | 1369 | ||
1380 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> | 1370 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> |
1381 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> | 1371 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> |
1382 | <source>Keyboard shortcuts</source> | 1372 | <source>Keyboard shortcuts</source> |
1383 | <target state="new">Keyboard shortcuts</target> | 1373 | <target state="new">Keyboard shortcuts</target> |
1384 | 1374 | ||
1385 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 1375 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">72</context></context-group></trans-unit> |
1386 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> | 1376 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> |
1387 | <source>Help</source> | 1377 | <source>Help</source> |
1388 | <target state="new">Help</target> | 1378 | <target state="new">Help</target> |
1389 | 1379 | ||
1390 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1380 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1391 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> | 1381 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> |
1392 | <source>Get help using PeerTube</source> | 1382 | <source>Get help using PeerTube</source> |
1393 | <target state="new">Get help using PeerTube</target> | 1383 | <target state="new">Get help using PeerTube</target> |
1394 | 1384 | ||
1395 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">161</context></context-group></trans-unit> | 1385 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">167</context></context-group></trans-unit> |
1396 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> | 1386 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> |
1397 | <source>Shortcuts</source> | 1387 | <source>Shortcuts</source> |
1398 | <target state="new">Shortcuts</target> | 1388 | <target state="new">Shortcuts</target> |
1399 | 1389 | ||
1400 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1390 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1401 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> | 1391 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> |
1402 | <source>powered by PeerTube</source> | 1392 | <source>powered by PeerTube</source> |
1403 | <target state="new">powered by PeerTube</target> | 1393 | <target state="new">powered by PeerTube</target> |
1404 | 1394 | ||
1405 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | 1395 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">177</context></context-group></trans-unit> |
1406 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> | 1396 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> |
1407 | <source>powered by PeerTube - CopyLeft 2015-2020</source> | 1397 | <source>powered by PeerTube - CopyLeft 2015-2020</source> |
1408 | <target state="new">powered by PeerTube - CopyLeft 2015-2020</target> | 1398 | <target state="new">powered by PeerTube - CopyLeft 2015-2020</target> |
1409 | 1399 | ||
1410 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> | 1400 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">176</context></context-group></trans-unit> |
1411 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344"> | 1401 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344"> |
1412 | <source>Log out</source> | 1402 | <source>Log out</source> |
1413 | <target>Αποσύνδεση</target> | 1403 | <target>Αποσύνδεση</target> |
1414 | 1404 | ||
1415 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">70</context></context-group></trans-unit> | 1405 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit> |
1416 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> | 1406 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> |
1417 | <source>Create an account</source> | 1407 | <source>Create an account</source> |
1418 | <target>Δημιουργία λογαριασμού</target> | 1408 | <target>Δημιουργία λογαριασμού</target> |
1419 | 1409 | ||
1420 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">78</context></context-group></trans-unit> | 1410 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
1421 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> | 1411 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> |
1422 | <source>MY LIBRARY</source> | 1412 | <source>MY LIBRARY</source> |
1423 | <target state="new">MY LIBRARY</target> | 1413 | <target state="new">MY LIBRARY</target> |
1424 | 1414 | ||
1425 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 1415 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">88</context></context-group></trans-unit> |
1426 | <trans-unit id="6371572688505952303"> | 1416 | <trans-unit id="6371572688505952303"> |
1427 | <source>My library</source> | 1417 | <source>My library</source> |
1428 | <target>Η βιβλιοθήκη μου</target> | 1418 | <target>Η βιβλιοθήκη μου</target> |
@@ -1462,22 +1452,22 @@ The link will expire within 1 hour.</target> | |||
1462 | <source>Videos</source> | 1452 | <source>Videos</source> |
1463 | <target>Βίντεο</target> | 1453 | <target>Βίντεο</target> |
1464 | 1454 | ||
1465 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">86</context></context-group></trans-unit> | 1455 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">92</context></context-group></trans-unit> |
1466 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> | 1456 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> |
1467 | <source>Playlists</source> | 1457 | <source>Playlists</source> |
1468 | <target>Λίστες αναπαραγωγής</target> | 1458 | <target>Λίστες αναπαραγωγής</target> |
1469 | 1459 | ||
1470 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">91</context></context-group></trans-unit> | 1460 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">97</context></context-group></trans-unit> |
1471 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2"> | 1461 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2"> |
1472 | <source>Subscriptions</source> | 1462 | <source>Subscriptions</source> |
1473 | <target>Συνδρομές</target> | 1463 | <target>Συνδρομές</target> |
1474 | 1464 | ||
1475 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 1465 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">102</context></context-group></trans-unit> |
1476 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8"> | 1466 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8"> |
1477 | <source>History</source> | 1467 | <source>History</source> |
1478 | <target>Ιστορικό</target> | 1468 | <target>Ιστορικό</target> |
1479 | 1469 | ||
1480 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit> | 1470 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">107</context></context-group></trans-unit> |
1481 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> | 1471 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> |
1482 | <source>VIDEOS</source> | 1472 | <source>VIDEOS</source> |
1483 | <target state="new">VIDEOS</target> | 1473 | <target state="new">VIDEOS</target> |
@@ -1489,27 +1479,27 @@ The link will expire within 1 hour.</target> | |||
1489 | <target>Ανακαλύψτε</target> | 1479 | <target>Ανακαλύψτε</target> |
1490 | 1480 | ||
1491 | 1481 | ||
1492 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">111</context></context-group></trans-unit> | 1482 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">117</context></context-group></trans-unit> |
1493 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> | 1483 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> |
1494 | <source>Trending</source> | 1484 | <source>Trending</source> |
1495 | <target>Τάσεις</target> | 1485 | <target>Τάσεις</target> |
1496 | 1486 | ||
1497 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">116</context></context-group></trans-unit> | 1487 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">122</context></context-group></trans-unit> |
1498 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> | 1488 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> |
1499 | <source>Most liked</source> | 1489 | <source>Most liked</source> |
1500 | <target state="new">Most liked</target> | 1490 | <target state="new">Most liked</target> |
1501 | 1491 | ||
1502 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">121</context></context-group></trans-unit> | 1492 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">127</context></context-group></trans-unit> |
1503 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> | 1493 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> |
1504 | <source>Recently added</source> | 1494 | <source>Recently added</source> |
1505 | <target>Πρόσφατα</target> | 1495 | <target>Πρόσφατα</target> |
1506 | 1496 | ||
1507 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">126</context></context-group></trans-unit> | 1497 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">132</context></context-group></trans-unit> |
1508 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> | 1498 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> |
1509 | <source>Administration</source> | 1499 | <source>Administration</source> |
1510 | <target>Διαχείριση</target> | 1500 | <target>Διαχείριση</target> |
1511 | 1501 | ||
1512 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">140</context></context-group></trans-unit> | 1502 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">146</context></context-group></trans-unit> |
1513 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> | 1503 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> |
1514 | <source>About</source> | 1504 | <source>About</source> |
1515 | <target>Σχετικά</target> | 1505 | <target>Σχετικά</target> |
@@ -1520,7 +1510,7 @@ The link will expire within 1 hour.</target> | |||
1520 | <source>Contact</source> | 1510 | <source>Contact</source> |
1521 | <target state="new">Contact</target> | 1511 | <target state="new">Contact</target> |
1522 | 1512 | ||
1523 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">160</context></context-group></trans-unit> | 1513 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">166</context></context-group></trans-unit> |
1524 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771"> | 1514 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771"> |
1525 | <source>View your notifications</source> | 1515 | <source>View your notifications</source> |
1526 | <target>Δείτε τις ειδοποιήσεις σας</target> | 1516 | <target>Δείτε τις ειδοποιήσεις σας</target> |
@@ -1547,7 +1537,7 @@ The link will expire within 1 hour.</target> | |||
1547 | <source>See all your notifications</source> | 1537 | <source>See all your notifications</source> |
1548 | <target>Δείτε όλες τις ειδοποιήσεις σας</target> | 1538 | <target>Δείτε όλες τις ειδοποιήσεις σας</target> |
1549 | 1539 | ||
1550 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 1540 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">40</context></context-group></trans-unit> |
1551 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> | 1541 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> |
1552 | <source>Search videos, channels…</source> | 1542 | <source>Search videos, channels…</source> |
1553 | <target state="new">Search videos, channels…</target> | 1543 | <target state="new">Search videos, channels…</target> |
@@ -1881,22 +1871,22 @@ The link will expire within 1 hour.</target> | |||
1881 | <source>FAQ</source> | 1871 | <source>FAQ</source> |
1882 | <target state="new">FAQ</target> | 1872 | <target state="new">FAQ</target> |
1883 | 1873 | ||
1884 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">163</context></context-group></trans-unit> | 1874 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
1885 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> | 1875 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> |
1886 | <source>Frequently asked questions about PeerTube</source> | 1876 | <source>Frequently asked questions about PeerTube</source> |
1887 | <target state="new">Frequently asked questions about PeerTube</target> | 1877 | <target state="new">Frequently asked questions about PeerTube</target> |
1888 | 1878 | ||
1889 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1879 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1890 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> | 1880 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> |
1891 | <source>API</source> | 1881 | <source>API</source> |
1892 | <target state="new">API</target> | 1882 | <target state="new">API</target> |
1893 | 1883 | ||
1894 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1884 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1895 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> | 1885 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> |
1896 | <source>API documentation</source> | 1886 | <source>API documentation</source> |
1897 | <target state="new">API documentation</target> | 1887 | <target state="new">API documentation</target> |
1898 | 1888 | ||
1899 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 1889 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
1900 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5"> | 1890 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5"> |
1901 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> | 1891 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> |
1902 | <target>Προγραμματισμός δημοσίευσης ( | 1892 | <target>Προγραμματισμός δημοσίευσης ( |
@@ -2283,7 +2273,13 @@ The link will expire within 1 hour.</target> | |||
2283 | Less customization | 2273 | Less customization |
2284 | </target> | 2274 | </target> |
2285 | 2275 | ||
2286 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit> | 2276 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit><trans-unit id="2454050363478003966" datatype="html"> |
2277 | <source>Login</source><target state="new">Login</target> | ||
2278 | <context-group purpose="location"> | ||
2279 | <context context-type="sourcefile">../app/+login/login-routing.module.ts</context> | ||
2280 | <context context-type="linenumber">14</context> | ||
2281 | </context-group> | ||
2282 | </trans-unit> | ||
2287 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e"> | 2283 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e"> |
2288 | <source>Autoplay</source> | 2284 | <source>Autoplay</source> |
2289 | <target>Αυτόματη αναπαραγωγή</target> | 2285 | <target>Αυτόματη αναπαραγωγή</target> |
@@ -2548,7 +2544,7 @@ The link will expire within 1 hour.</target> | |||
2548 | <source>No comments.</source> | 2544 | <source>No comments.</source> |
2549 | <target>Κανένα σχόλιο.</target> | 2545 | <target>Κανένα σχόλιο.</target> |
2550 | 2546 | ||
2551 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 2547 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> |
2552 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> | 2548 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> |
2553 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> | 2549 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> |
2554 | <target state="new"> | 2550 | <target state="new"> |
@@ -2558,7 +2554,7 @@ The link will expire within 1 hour.</target> | |||
2558 | 2554 | ||
2559 | </target> | 2555 | </target> |
2560 | 2556 | ||
2561 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">79</context></context-group></trans-unit> | 2557 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
2562 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> | 2558 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> |
2563 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> | 2559 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> |
2564 | <target state="new"> | 2560 | <target state="new"> |
@@ -2567,50 +2563,116 @@ The link will expire within 1 hour.</target> | |||
2567 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> | 2563 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> |
2568 | </target> | 2564 | </target> |
2569 | 2565 | ||
2570 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 2566 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">87</context></context-group></trans-unit> |
2571 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> | 2567 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> |
2572 | <source>View <x id="INTERPOLATION"/> replies</source> | 2568 | <source>View <x id="INTERPOLATION"/> replies</source> |
2573 | <target state="new">View | 2569 | <target state="new">View |
2574 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies | 2570 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies |
2575 | </target> | 2571 | </target> |
2576 | 2572 | ||
2577 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">85</context></context-group></trans-unit> | 2573 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">90</context></context-group></trans-unit> |
2578 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828"> | 2574 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828"> |
2579 | <source>Comments are disabled.</source> | 2575 | <source>Comments are disabled.</source> |
2580 | <target> | 2576 | <target> |
2581 | Τα σχόλια έχουν απενεργοποιηθεί. | 2577 | Τα σχόλια έχουν απενεργοποιηθεί. |
2582 | </target> | 2578 | </target> |
2583 | 2579 | ||
2584 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit><trans-unit id="3691787517663044217" datatype="html"> | 2580 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit><trans-unit id="3691787517663044217" datatype="html"> |
2585 | <source> The deletion will be sent to remote instances so they can reflect the change.</source><target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> | 2581 | <source> The deletion will be sent to remote instances so they can reflect the change.</source><target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> |
2582 | |||
2583 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">169</context></context-group></trans-unit><trans-unit id="7321800851971795962" datatype="html"> | ||
2584 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source><target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> | ||
2585 | |||
2586 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="5964038603724691720" datatype="html"> | ||
2587 | <source>Delete and re-draft</source><target state="new">Delete and re-draft</target> | ||
2586 | <context-group purpose="location"> | 2588 | <context-group purpose="location"> |
2587 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | 2589 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> |
2588 | <context context-type="linenumber">163</context> | 2590 | <context context-type="linenumber">197</context> |
2589 | </context-group> | 2591 | </context-group> |
2590 | </trans-unit><trans-unit id="7321800851971795962" datatype="html"> | 2592 | </trans-unit><trans-unit id="7163633882758007711" datatype="html"> |
2591 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source><target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> | 2593 | <source>Do you really want to delete and re-draft this comment?</source><target state="new">Do you really want to delete and re-draft this comment?</target> |
2592 | <context-group purpose="location"> | 2594 | <context-group purpose="location"> |
2593 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | 2595 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> |
2594 | <context context-type="linenumber">165</context> | 2596 | <context context-type="linenumber">197</context> |
2595 | </context-group> | 2597 | </context-group> |
2596 | </trans-unit> | 2598 | </trans-unit> |
2597 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e"> | 2599 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e"> |
2598 | <source>Add comment...</source> | 2600 | <source>Add comment...</source> |
2599 | <target>Προσθήκη σχολίου...</target> | 2601 | <target>Προσθήκη σχολίου...</target> |
2600 | 2602 | ||
2601 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | 2603 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit><trans-unit id="4e5254dedf0c12ce7e7c2197384fceebe3b29a2b" datatype="html"> |
2602 | <trans-unit id="8956c0f4c6974289fc63f1ab6b54f5b32ed65eeb" datatype="html"> | 2604 | <source>Markdown compatible</source><target state="new">Markdown compatible</target> |
2603 | <source>Reply</source> | 2605 | <context-group purpose="location"> |
2604 | <target state="new"> | 2606 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> |
2605 | Reply | 2607 | <context context-type="linenumber">13</context> |
2606 | </target> | 2608 | </context-group> |
2607 | 2609 | </trans-unit><trans-unit id="4739ffad85f09defefdb6e51b45f43b2ef7c4388" datatype="html"> | |
2608 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 2610 | <source>Markdown compatible that supports:</source><target state="new">Markdown compatible that supports:</target> |
2611 | <context-group purpose="location"> | ||
2612 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2613 | <context context-type="linenumber">15</context> | ||
2614 | </context-group> | ||
2615 | </trans-unit><trans-unit id="9a53b17a021bb0677c156fd893461797fc497a10" datatype="html"> | ||
2616 | <source>Auto generated links</source><target state="new">Auto generated links</target> | ||
2617 | <context-group purpose="location"> | ||
2618 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2619 | <context context-type="linenumber">18</context> | ||
2620 | </context-group> | ||
2621 | </trans-unit><trans-unit id="664f99b8919d6dd2faa1c1f7c378aa86d1be5e8a" datatype="html"> | ||
2622 | <source>Break lines</source><target state="new">Break lines</target> | ||
2623 | <context-group purpose="location"> | ||
2624 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2625 | <context context-type="linenumber">19</context> | ||
2626 | </context-group> | ||
2627 | </trans-unit><trans-unit id="b15e7bec5c7833d2d9634946ccbed68967b1bee1" datatype="html"> | ||
2628 | <source>Lists</source><target state="new">Lists</target> | ||
2629 | <context-group purpose="location"> | ||
2630 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2631 | <context context-type="linenumber">20</context> | ||
2632 | </context-group> | ||
2633 | </trans-unit><trans-unit id="ab4426b60f13c00b61d6b714d390dc629f314980" datatype="html"> | ||
2634 | <source>Emphasis</source><target state="new">Emphasis</target> | ||
2635 | <context-group purpose="location"> | ||
2636 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2637 | <context context-type="linenumber">22</context> | ||
2638 | </context-group> | ||
2639 | </trans-unit><trans-unit id="4e13b179501d3d32721037e03b4c04acb9857c5f" datatype="html"> | ||
2640 | <source>bold</source><target state="new">bold</target> | ||
2641 | <context-group purpose="location"> | ||
2642 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2643 | <context context-type="linenumber">23</context> | ||
2644 | </context-group> | ||
2645 | </trans-unit><trans-unit id="3c12190421fbb2756e6bbead923df9ec5de8ede2" datatype="html"> | ||
2646 | <source>italic</source><target state="new">italic</target> | ||
2647 | <context-group purpose="location"> | ||
2648 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2649 | <context context-type="linenumber">23</context> | ||
2650 | </context-group> | ||
2651 | </trans-unit><trans-unit id="adb4bbdcb961b8aac8298d6cac554d9b25636b7a" datatype="html"> | ||
2652 | <source>Emoji shortcuts</source><target state="new">Emoji shortcuts</target> | ||
2653 | <context-group purpose="location"> | ||
2654 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2655 | <context context-type="linenumber">26</context> | ||
2656 | </context-group> | ||
2657 | </trans-unit><trans-unit id="b9809a21a8eb3c9db2a0282c5dd94bc221575c96" datatype="html"> | ||
2658 | <source>Emoji markup</source><target state="new">Emoji markup</target> | ||
2659 | <context-group purpose="location"> | ||
2660 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2661 | <context context-type="linenumber">30</context> | ||
2662 | </context-group> | ||
2663 | </trans-unit><trans-unit id="f37feb427aaa551edd1f22616be6464bc0d492de" datatype="html"> | ||
2664 | <source>See complete list</source><target state="new">See complete list</target> | ||
2665 | <context-group purpose="location"> | ||
2666 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2667 | <context context-type="linenumber">32</context> | ||
2668 | </context-group> | ||
2669 | </trans-unit> | ||
2670 | |||
2609 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135"> | 2671 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135"> |
2610 | <source>You are one step away from commenting</source> | 2672 | <source>You are one step away from commenting</source> |
2611 | <target>Χρειάζεται ένα επιπλέον βήμα για τον σχολιασμό</target> | 2673 | <target>Χρειάζεται ένα επιπλέον βήμα για τον σχολιασμό</target> |
2612 | 2674 | ||
2613 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 2675 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
2614 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> | 2676 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> |
2615 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> | 2677 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> |
2616 | <target state="new"> | 2678 | <target state="new"> |
@@ -2619,19 +2681,37 @@ The link will expire within 1 hour.</target> | |||
2619 | from within the software's interface. | 2681 | from within the software's interface. |
2620 | </target> | 2682 | </target> |
2621 | 2683 | ||
2622 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 2684 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
2623 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb"> | 2685 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb"> |
2624 | <source>If you have an account on Mastodon or Pleroma, you can open it directly in their interface:</source> | 2686 | <source>If you have an account on Mastodon or Pleroma, you can open it directly in their interface:</source> |
2625 | <target> | 2687 | <target> |
2626 | Αν έχετε λογαριασμό στο Mastodon ή στο Pleroma, μπορείτε να το ανοίξετε κατευθείαν εκεί: | 2688 | Αν έχετε λογαριασμό στο Mastodon ή στο Pleroma, μπορείτε να το ανοίξετε κατευθείαν εκεί: |
2627 | </target> | 2689 | </target> |
2628 | 2690 | ||
2629 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">41</context></context-group></trans-unit> | 2691 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">65</context></context-group></trans-unit> |
2630 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> | 2692 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> |
2631 | <source>Login to comment</source> | 2693 | <source>Login to comment</source> |
2632 | <target state="new">Login to comment</target> | 2694 | <target state="new">Login to comment</target> |
2633 | 2695 | ||
2634 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">52</context></context-group></trans-unit> | 2696 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit><trans-unit id="974170f455ff5a9034d5737e84b4194c0046fc6b" datatype="html"> |
2697 | <source>Markdown Emoji List</source><target state="new">Markdown Emoji List</target> | ||
2698 | <context-group purpose="location"> | ||
2699 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2700 | <context context-type="linenumber">84</context> | ||
2701 | </context-group> | ||
2702 | </trans-unit><trans-unit id="2662644497259948010" datatype="html"> | ||
2703 | <source>Comment</source><target state="new">Comment</target> | ||
2704 | <context-group purpose="location"> | ||
2705 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2706 | <context context-type="linenumber">58</context> | ||
2707 | </context-group> | ||
2708 | </trans-unit><trans-unit id="4502286564339177240" datatype="html"> | ||
2709 | <source>Reply</source><target state="new">Reply</target> | ||
2710 | <context-group purpose="location"> | ||
2711 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2712 | <context context-type="linenumber">60</context> | ||
2713 | </context-group> | ||
2714 | </trans-unit> | ||
2635 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285"> | 2715 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285"> |
2636 | <source>Highlighted comment</source> | 2716 | <source>Highlighted comment</source> |
2637 | <target>Επιλεγμένο περιεχόμενο</target> | 2717 | <target>Επιλεγμένο περιεχόμενο</target> |
@@ -2646,7 +2726,7 @@ The link will expire within 1 hour.</target> | |||
2646 | <source>This comment has been deleted</source> | 2726 | <source>This comment has been deleted</source> |
2647 | <target state="new">This comment has been deleted</target> | 2727 | <target state="new">This comment has been deleted</target> |
2648 | 2728 | ||
2649 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">62</context></context-group></trans-unit> | 2729 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">61</context></context-group></trans-unit> |
2650 | <trans-unit id="9031514421077169181" datatype="html"> | 2730 | <trans-unit id="9031514421077169181" datatype="html"> |
2651 | <source>Video redundancies</source> | 2731 | <source>Video redundancies</source> |
2652 | <target state="new">Video redundancies</target> | 2732 | <target state="new">Video redundancies</target> |
@@ -3495,7 +3575,25 @@ The link will expire within 1 hour.</target> | |||
3495 | <target state="new">No account found.</target> | 3575 | <target state="new">No account found.</target> |
3496 | 3576 | ||
3497 | 3577 | ||
3498 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit> | 3578 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit><trans-unit id="2338185419645468935" datatype="html"> |
3579 | <source>List installed plugins</source><target state="new">List installed plugins</target> | ||
3580 | <context-group purpose="location"> | ||
3581 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3582 | <context context-type="linenumber">28</context> | ||
3583 | </context-group> | ||
3584 | </trans-unit><trans-unit id="8897412584195581488" datatype="html"> | ||
3585 | <source>Search plugins</source><target state="new">Search plugins</target> | ||
3586 | <context-group purpose="location"> | ||
3587 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3588 | <context context-type="linenumber">37</context> | ||
3589 | </context-group> | ||
3590 | </trans-unit><trans-unit id="4994333937800672218" datatype="html"> | ||
3591 | <source>Show plugin</source><target state="new">Show plugin</target> | ||
3592 | <context-group purpose="location"> | ||
3593 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3594 | <context context-type="linenumber">46</context> | ||
3595 | </context-group> | ||
3596 | </trans-unit> | ||
3499 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> | 3597 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> |
3500 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> | 3598 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> |
3501 | <target state="new">Showing | 3599 | <target state="new">Showing |
@@ -4219,7 +4317,7 @@ The link will expire within 1 hour.</target> | |||
4219 | <source>Administrator</source> | 4317 | <source>Administrator</source> |
4220 | <target>Διαχειριστής</target> | 4318 | <target>Διαχειριστής</target> |
4221 | 4319 | ||
4222 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">385</context></context-group></trans-unit> | 4320 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">383</context></context-group></trans-unit> |
4223 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587"> | 4321 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587"> |
4224 | <source>Admin email</source> | 4322 | <source>Admin email</source> |
4225 | <target>E-mail διαχειριστή</target> | 4323 | <target>E-mail διαχειριστή</target> |
@@ -4475,27 +4573,27 @@ The link will expire within 1 hour.</target> | |||
4475 | <source>VIDEO SETTINGS</source> | 4573 | <source>VIDEO SETTINGS</source> |
4476 | <target state="new">VIDEO SETTINGS</target> | 4574 | <target state="new">VIDEO SETTINGS</target> |
4477 | 4575 | ||
4478 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit> | 4576 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
4479 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> | 4577 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> |
4480 | <source>NOTIFICATIONS</source> | 4578 | <source>NOTIFICATIONS</source> |
4481 | <target state="new">NOTIFICATIONS</target> | 4579 | <target state="new">NOTIFICATIONS</target> |
4482 | 4580 | ||
4483 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 4581 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">37</context></context-group></trans-unit> |
4484 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> | 4582 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> |
4485 | <source>INTERFACE</source> | 4583 | <source>INTERFACE</source> |
4486 | <target state="new">INTERFACE</target> | 4584 | <target state="new">INTERFACE</target> |
4487 | 4585 | ||
4488 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 4586 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit> |
4489 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> | 4587 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> |
4490 | <source>PASSWORD</source> | 4588 | <source>PASSWORD</source> |
4491 | <target state="new">PASSWORD</target> | 4589 | <target state="new">PASSWORD</target> |
4492 | 4590 | ||
4493 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">59</context></context-group></trans-unit> | 4591 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">57</context></context-group></trans-unit> |
4494 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> | 4592 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> |
4495 | <source>EMAIL</source> | 4593 | <source>EMAIL</source> |
4496 | <target state="new">EMAIL</target> | 4594 | <target state="new">EMAIL</target> |
4497 | 4595 | ||
4498 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">69</context></context-group></trans-unit> | 4596 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">67</context></context-group></trans-unit> |
4499 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> | 4597 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> |
4500 | <source>DANGER ZONE</source> | 4598 | <source>DANGER ZONE</source> |
4501 | <target state="new">DANGER ZONE</target> | 4599 | <target state="new">DANGER ZONE</target> |
@@ -4745,7 +4843,31 @@ The link will expire within 1 hour.</target> | |||
4745 | <source>No ownership change request found.</source> | 4843 | <source>No ownership change request found.</source> |
4746 | <target state="new">No ownership change request found.</target> | 4844 | <target state="new">No ownership change request found.</target> |
4747 | 4845 | ||
4748 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit> | 4846 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit><trans-unit id="4247400351982331798" datatype="html"> |
4847 | <source>Account settings</source><target state="new">Account settings</target> | ||
4848 | <context-group purpose="location"> | ||
4849 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4850 | <context context-type="linenumber">37</context> | ||
4851 | </context-group> | ||
4852 | </trans-unit><trans-unit id="154062590416726309" datatype="html"> | ||
4853 | <source>Account playlists</source><target state="new">Account playlists</target> | ||
4854 | <context-group purpose="location"> | ||
4855 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4856 | <context context-type="linenumber">55</context> | ||
4857 | </context-group> | ||
4858 | </trans-unit><trans-unit id="6550287183367517925" datatype="html"> | ||
4859 | <source>Create new playlist</source><target state="new">Create new playlist</target> | ||
4860 | <context-group purpose="location"> | ||
4861 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4862 | <context context-type="linenumber">64</context> | ||
4863 | </context-group> | ||
4864 | </trans-unit><trans-unit id="2864486939135008600" datatype="html"> | ||
4865 | <source>Playlist elements</source><target state="new">Playlist elements</target> | ||
4866 | <context-group purpose="location"> | ||
4867 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4868 | <context context-type="linenumber">73</context> | ||
4869 | </context-group> | ||
4870 | </trans-unit> | ||
4749 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> | 4871 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> |
4750 | <source>My imports</source> | 4872 | <source>My imports</source> |
4751 | <target state="new">My imports</target> | 4873 | <target state="new">My imports</target> |
@@ -5016,7 +5138,25 @@ The link will expire within 1 hour.</target> | |||
5016 | <source>An error occurred.</source> | 5138 | <source>An error occurred.</source> |
5017 | <target>Σφάλμα.</target> | 5139 | <target>Σφάλμα.</target> |
5018 | 5140 | ||
5019 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 5141 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit><trans-unit id="9128669621822125729" datatype="html"> |
5142 | <source>Video channel videos</source><target state="new">Video channel videos</target> | ||
5143 | <context-group purpose="location"> | ||
5144 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5145 | <context context-type="linenumber">25</context> | ||
5146 | </context-group> | ||
5147 | </trans-unit><trans-unit id="3193822049276963401" datatype="html"> | ||
5148 | <source>Video channel playlists</source><target state="new">Video channel playlists</target> | ||
5149 | <context-group purpose="location"> | ||
5150 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5151 | <context context-type="linenumber">38</context> | ||
5152 | </context-group> | ||
5153 | </trans-unit><trans-unit id="4723526509708949088" datatype="html"> | ||
5154 | <source>About video channel</source><target state="new">About video channel</target> | ||
5155 | <context-group purpose="location"> | ||
5156 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5157 | <context context-type="linenumber">47</context> | ||
5158 | </context-group> | ||
5159 | </trans-unit> | ||
5020 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97"> | 5160 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97"> |
5021 | <source>Request email for account verification</source> | 5161 | <source>Request email for account verification</source> |
5022 | <target> | 5162 | <target> |
@@ -5135,7 +5275,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5135 | <source>Stats</source> | 5275 | <source>Stats</source> |
5136 | <target>Στατιστικά</target> | 5276 | <target>Στατιστικά</target> |
5137 | 5277 | ||
5138 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 5278 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
5139 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc"> | 5279 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc"> |
5140 | <source>Joined <x id="INTERPOLATION"/></source> | 5280 | <source>Joined <x id="INTERPOLATION"/></source> |
5141 | <target>Εγγραφή στο | 5281 | <target>Εγγραφή στο |
@@ -5572,7 +5712,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5572 | <source>This instance does not have instances followings.</source> | 5712 | <source>This instance does not have instances followings.</source> |
5573 | <target state="new">This instance does not have instances followings.</target> | 5713 | <target state="new">This instance does not have instances followings.</target> |
5574 | 5714 | ||
5575 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit> | 5715 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit><trans-unit id="4195286790385468087" datatype="html"> |
5716 | <source>About this instance</source><target state="new">About this instance</target> | ||
5717 | <context-group purpose="location"> | ||
5718 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5719 | <context context-type="linenumber">26</context> | ||
5720 | </context-group> | ||
5721 | </trans-unit><trans-unit id="8773846522957677259" datatype="html"> | ||
5722 | <source>About PeerTube</source><target state="new">About PeerTube</target> | ||
5723 | <context-group purpose="location"> | ||
5724 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5725 | <context context-type="linenumber">38</context> | ||
5726 | </context-group> | ||
5727 | </trans-unit><trans-unit id="5782088737558028158" datatype="html"> | ||
5728 | <source>About follows</source><target state="new">About follows</target> | ||
5729 | <context-group purpose="location"> | ||
5730 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5731 | <context context-type="linenumber">47</context> | ||
5732 | </context-group> | ||
5733 | </trans-unit> | ||
5576 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> | 5734 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> |
5577 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> | 5735 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> |
5578 | <target state="new">Developed with ❤ by | 5736 | <target state="new">Developed with ❤ by |
@@ -5742,6 +5900,12 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5742 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 5900 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> |
5743 | <context context-type="linenumber">1</context> | 5901 | <context context-type="linenumber">1</context> |
5744 | </context-group> | 5902 | </context-group> |
5903 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
5904 | <source>Get help</source><target state="new">Get help</target> | ||
5905 | <context-group purpose="location"> | ||
5906 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | ||
5907 | <context context-type="linenumber">16</context> | ||
5908 | </context-group> | ||
5745 | </trans-unit> | 5909 | </trans-unit> |
5746 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1"> | 5910 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1"> |
5747 | <source>Create my account</source> | 5911 | <source>Create my account</source> |
@@ -5866,7 +6030,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5866 | 6030 | ||
5867 | </target> | 6031 | </target> |
5868 | 6032 | ||
5869 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 6033 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit><trans-unit id="3301086086650990787" datatype="html"> |
6034 | <source>Register</source><target state="new">Register</target> | ||
6035 | <context-group purpose="location"> | ||
6036 | <context context-type="sourcefile">../app/+signup/+register/register-routing.module.ts</context> | ||
6037 | <context context-type="linenumber">14</context> | ||
6038 | </context-group> | ||
6039 | </trans-unit> | ||
5870 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> | 6040 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> |
5871 | <source>Sorry, we couldn't find the page you were looking for.</source> | 6041 | <source>Sorry, we couldn't find the page you were looking for.</source> |
5872 | <target state="new"> | 6042 | <target state="new"> |
@@ -5889,7 +6059,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5889 | <target>Χωρίς περιγραφή</target> | 6059 | <target>Χωρίς περιγραφή</target> |
5890 | 6060 | ||
5891 | 6061 | ||
5892 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit> | 6062 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit><trans-unit id="819067926858619041" datatype="html"> |
6063 | <source>Account videos</source><target state="new">Account videos</target> | ||
6064 | <context-group purpose="location"> | ||
6065 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6066 | <context context-type="linenumber">29</context> | ||
6067 | </context-group> | ||
6068 | </trans-unit><trans-unit id="6823616469362610020" datatype="html"> | ||
6069 | <source>Account video channels</source><target state="new">Account video channels</target> | ||
6070 | <context-group purpose="location"> | ||
6071 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6072 | <context context-type="linenumber">42</context> | ||
6073 | </context-group> | ||
6074 | </trans-unit><trans-unit id="7678273613459026643" datatype="html"> | ||
6075 | <source>About account</source><target state="new">About account</target> | ||
6076 | <context-group purpose="location"> | ||
6077 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6078 | <context context-type="linenumber">51</context> | ||
6079 | </context-group> | ||
6080 | </trans-unit> | ||
5893 | <trans-unit id="3755500631176893489"> | 6081 | <trans-unit id="3755500631176893489"> |
5894 | <source>Published <x id="PH"/> videos</source> | 6082 | <source>Published <x id="PH"/> videos</source> |
5895 | <target>Έχει δημοσιεύσει | 6083 | <target>Έχει δημοσιεύσει |
@@ -6006,7 +6194,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6006 | <source>Configuration updated.</source> | 6194 | <source>Configuration updated.</source> |
6007 | <target>Οι ρυθμίσεις ενημερώθηκαν.</target> | 6195 | <target>Οι ρυθμίσεις ενημερώθηκαν.</target> |
6008 | 6196 | ||
6009 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit> | 6197 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit><trans-unit id="6284468333579755406" datatype="html"> |
6198 | <source>Edit custom configuration</source><target state="new">Edit custom configuration</target> | ||
6199 | <context-group purpose="location"> | ||
6200 | <context context-type="sourcefile">../app/+admin/config/config.routes.ts</context> | ||
6201 | <context context-type="linenumber">26</context> | ||
6202 | </context-group> | ||
6203 | </trans-unit> | ||
6010 | 6204 | ||
6011 | 6205 | ||
6012 | <trans-unit id="6549061957433635758" datatype="html"> | 6206 | <trans-unit id="6549061957433635758" datatype="html"> |
@@ -6485,7 +6679,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6485 | <x id="PH"/> ενημερώθηκε. | 6679 | <x id="PH"/> ενημερώθηκε. |
6486 | </target> | 6680 | </target> |
6487 | 6681 | ||
6488 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 6682 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit><trans-unit id="3229595422546554334" datatype="html"> |
6683 | <source>Jobs</source><target state="new">Jobs</target> | ||
6684 | <context-group purpose="location"> | ||
6685 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6686 | <context context-type="linenumber">26</context> | ||
6687 | </context-group> | ||
6688 | </trans-unit><trans-unit id="4804785061014590286" datatype="html"> | ||
6689 | <source>Logs</source><target state="new">Logs</target> | ||
6690 | <context-group purpose="location"> | ||
6691 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6692 | <context context-type="linenumber">37</context> | ||
6693 | </context-group> | ||
6694 | </trans-unit> | ||
6489 | <trans-unit id="3150704904301058778"> | 6695 | <trans-unit id="3150704904301058778"> |
6490 | <source>The plugin index is not available. Please retry later.</source> | 6696 | <source>The plugin index is not available. Please retry later.</source> |
6491 | <target>Ο κατάλογος προσθέτων δεν είναι διαθέσιμος. Προσπαθήστε αργότερα.</target> | 6697 | <target>Ο κατάλογος προσθέτων δεν είναι διαθέσιμος. Προσπαθήστε αργότερα.</target> |
@@ -6599,6 +6805,18 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6599 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> | 6805 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> |
6600 | <context context-type="linenumber">86</context> | 6806 | <context context-type="linenumber">86</context> |
6601 | </context-group> | 6807 | </context-group> |
6808 | </trans-unit><trans-unit id="2903648076838460070" datatype="html"> | ||
6809 | <source>Videos blocked</source><target state="new">Videos blocked</target> | ||
6810 | <context-group purpose="location"> | ||
6811 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6812 | <context context-type="linenumber">67</context> | ||
6813 | </context-group> | ||
6814 | </trans-unit><trans-unit id="7805059636749367886" datatype="html"> | ||
6815 | <source>Muted instances</source><target state="new">Muted instances</target> | ||
6816 | <context-group purpose="location"> | ||
6817 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6818 | <context context-type="linenumber">89</context> | ||
6819 | </context-group> | ||
6602 | </trans-unit> | 6820 | </trans-unit> |
6603 | <trans-unit id="5974506725502681113"> | 6821 | <trans-unit id="5974506725502681113"> |
6604 | <source>Password changed for user <x id="PH"/>.</source> | 6822 | <source>Password changed for user <x id="PH"/>.</source> |
@@ -6611,7 +6829,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6611 | <source>Update user password</source> | 6829 | <source>Update user password</source> |
6612 | <target>Ενημέρωση κωδικού χρήστη</target> | 6830 | <target>Ενημέρωση κωδικού χρήστη</target> |
6613 | 6831 | ||
6614 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit> | 6832 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit><trans-unit id="177544274549739411" datatype="html"> |
6833 | <source>Following list</source><target state="new">Following list</target> | ||
6834 | <context-group purpose="location"> | ||
6835 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6836 | <context context-type="linenumber">28</context> | ||
6837 | </context-group> | ||
6838 | </trans-unit><trans-unit id="8092429110007204784" datatype="html"> | ||
6839 | <source>Followers list</source><target state="new">Followers list</target> | ||
6840 | <context-group purpose="location"> | ||
6841 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6842 | <context context-type="linenumber">37</context> | ||
6843 | </context-group> | ||
6844 | </trans-unit> | ||
6615 | <trans-unit id="780323526182667308" datatype="html"> | 6845 | <trans-unit id="780323526182667308" datatype="html"> |
6616 | <source>User <x id="PH"/> updated.</source> | 6846 | <source>User <x id="PH"/> updated.</source> |
6617 | <target state="new">User | 6847 | <target state="new">User |
@@ -6630,7 +6860,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6630 | <x id="PH"/>. | 6860 | <x id="PH"/>. |
6631 | </target> | 6861 | </target> |
6632 | 6862 | ||
6633 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="8564701209009684429" datatype="html"> | 6863 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="7483807629538115183" datatype="html"> |
6864 | <source>Users list</source><target state="new">Users list</target> | ||
6865 | <context-group purpose="location"> | ||
6866 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6867 | <context context-type="linenumber">27</context> | ||
6868 | </context-group> | ||
6869 | </trans-unit><trans-unit id="1525334987774465166" datatype="html"> | ||
6870 | <source>Create a user</source><target state="new">Create a user</target> | ||
6871 | <context-group purpose="location"> | ||
6872 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6873 | <context context-type="linenumber">36</context> | ||
6874 | </context-group> | ||
6875 | </trans-unit><trans-unit id="5552039423287890133" datatype="html"> | ||
6876 | <source>Update a user</source><target state="new">Update a user</target> | ||
6877 | <context-group purpose="location"> | ||
6878 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6879 | <context context-type="linenumber">48</context> | ||
6880 | </context-group> | ||
6881 | </trans-unit><trans-unit id="8564701209009684429" datatype="html"> | ||
6634 | <source>Federation</source><target state="new">Federation</target> | 6882 | <source>Federation</source><target state="new">Federation</target> |
6635 | <context-group purpose="location"> | 6883 | <context-group purpose="location"> |
6636 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> | 6884 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> |
@@ -6984,7 +7232,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6984 | <source>Views for the day</source> | 7232 | <source>Views for the day</source> |
6985 | <target state="new">Views for the day</target> | 7233 | <target state="new">Views for the day</target> |
6986 | 7234 | ||
6987 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit> | 7235 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit><trans-unit id="4707367314920217630" datatype="html"> |
7236 | <source>Create new video channel</source><target state="new">Create new video channel</target> | ||
7237 | <context-group purpose="location"> | ||
7238 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7239 | <context context-type="linenumber">22</context> | ||
7240 | </context-group> | ||
7241 | </trans-unit><trans-unit id="6059091237492573541" datatype="html"> | ||
7242 | <source>Update video channel</source><target state="new">Update video channel</target> | ||
7243 | <context-group purpose="location"> | ||
7244 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7245 | <context context-type="linenumber">31</context> | ||
7246 | </context-group> | ||
7247 | </trans-unit><trans-unit id="6595008830732269870" datatype="html"> | ||
7248 | <source>Not found</source><target state="new">Not found</target> | ||
7249 | <context-group purpose="location"> | ||
7250 | <context context-type="sourcefile">../app/+page-not-found/page-not-found-routing.module.ts</context> | ||
7251 | <context context-type="linenumber">13</context> | ||
7252 | </context-group> | ||
7253 | </trans-unit> | ||
6988 | <trans-unit id="5032453707232754344"> | 7254 | <trans-unit id="5032453707232754344"> |
6989 | <source>Playlist <x id="PH"/> created.</source> | 7255 | <source>Playlist <x id="PH"/> created.</source> |
6990 | <target>Η λίστα | 7256 | <target>Η λίστα |
@@ -7002,7 +7268,31 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7002 | <source>Update playlist</source> | 7268 | <source>Update playlist</source> |
7003 | <target state="new">Update playlist</target> | 7269 | <target state="new">Update playlist</target> |
7004 | 7270 | ||
7005 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-video-playlists/my-account-video-playlist-elements.component.ts</context><context context-type="linenumber">48</context></context-group></trans-unit> | 7271 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">82</context></context-group></trans-unit><trans-unit id="3410331549417637431" datatype="html"> |
7272 | <source>Account video imports</source><target state="new">Account video imports</target> | ||
7273 | <context-group purpose="location"> | ||
7274 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7275 | <context context-type="linenumber">105</context> | ||
7276 | </context-group> | ||
7277 | </trans-unit><trans-unit id="4434998055872154420" datatype="html"> | ||
7278 | <source>Account subscriptions</source><target state="new">Account subscriptions</target> | ||
7279 | <context-group purpose="location"> | ||
7280 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7281 | <context context-type="linenumber">114</context> | ||
7282 | </context-group> | ||
7283 | </trans-unit><trans-unit id="6019411775996586321" datatype="html"> | ||
7284 | <source>Videos history</source><target state="new">Videos history</target> | ||
7285 | <context-group purpose="location"> | ||
7286 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7287 | <context context-type="linenumber">150</context> | ||
7288 | </context-group> | ||
7289 | </trans-unit><trans-unit id="5851560788527570644" datatype="html"> | ||
7290 | <source>Notifications</source><target state="new">Notifications</target> | ||
7291 | <context-group purpose="location"> | ||
7292 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7293 | <context context-type="linenumber">163</context> | ||
7294 | </context-group> | ||
7295 | </trans-unit> | ||
7006 | <trans-unit id="104404386496394770" datatype="html"> | 7296 | <trans-unit id="104404386496394770" datatype="html"> |
7007 | <source>Delete playlist</source> | 7297 | <source>Delete playlist</source> |
7008 | <target state="new">Delete playlist</target> | 7298 | <target state="new">Delete playlist</target> |
@@ -7156,7 +7446,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7156 | <x id="PH"/>. | 7446 | <x id="PH"/>. |
7157 | </target> | 7447 | </target> |
7158 | 7448 | ||
7159 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit> | 7449 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit><trans-unit id="8231550792139699065" datatype="html"> |
7450 | <source>Verify account email</source><target state="new">Verify account email</target> | ||
7451 | <context-group purpose="location"> | ||
7452 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7453 | <context context-type="linenumber">17</context> | ||
7454 | </context-group> | ||
7455 | </trans-unit><trans-unit id="4997281272800290390" datatype="html"> | ||
7456 | <source>Verify account ask send email</source><target state="new">Verify account ask send email</target> | ||
7457 | <context-group purpose="location"> | ||
7458 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7459 | <context context-type="linenumber">26</context> | ||
7460 | </context-group> | ||
7461 | </trans-unit> | ||
7160 | <trans-unit id="4180693983967989981"> | 7462 | <trans-unit id="4180693983967989981"> |
7161 | <source>Unable to find user id or verification string.</source> | 7463 | <source>Unable to find user id or verification string.</source> |
7162 | <target>Δεν βρέθηκε το ID χρήστη ή η συμβολοσειρά επιβεβαίωσης.</target> | 7464 | <target>Δεν βρέθηκε το ID χρήστη ή η συμβολοσειρά επιβεβαίωσης.</target> |
@@ -7281,27 +7583,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7281 | <source>any language</source> | 7583 | <source>any language</source> |
7282 | <target state="new">any language</target> | 7584 | <target state="new">any language</target> |
7283 | 7585 | ||
7284 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">202</context></context-group></trans-unit> | 7586 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">229</context></context-group></trans-unit> |
7285 | <trans-unit id="5633144232269377096" datatype="html"> | 7587 | <trans-unit id="5633144232269377096" datatype="html"> |
7286 | <source>hide</source> | 7588 | <source>hide</source> |
7287 | <target state="new">hide</target> | 7589 | <target state="new">hide</target> |
7288 | 7590 | ||
7289 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">118</context></context-group></trans-unit> | 7591 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> |
7290 | <trans-unit id="8603861867909474404" datatype="html"> | 7592 | <trans-unit id="8603861867909474404" datatype="html"> |
7291 | <source>blur</source> | 7593 | <source>blur</source> |
7292 | <target state="new">blur</target> | 7594 | <target state="new">blur</target> |
7293 | 7595 | ||
7294 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> | 7596 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> |
7295 | <trans-unit id="4534458451100881847" datatype="html"> | 7597 | <trans-unit id="4534458451100881847" datatype="html"> |
7296 | <source>display</source> | 7598 | <source>display</source> |
7297 | <target state="new">display</target> | 7599 | <target state="new">display</target> |
7298 | 7600 | ||
7299 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> | 7601 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">127</context></context-group></trans-unit> |
7300 | <trans-unit id="4467323362722952678" datatype="html"> | 7602 | <trans-unit id="4467323362722952678" datatype="html"> |
7301 | <source>Unknown</source> | 7603 | <source>Unknown</source> |
7302 | <target state="new">Unknown</target> | 7604 | <target state="new">Unknown</target> |
7303 | 7605 | ||
7304 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">190</context></context-group></trans-unit> | 7606 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">193</context></context-group></trans-unit> |
7305 | <trans-unit id="8781423666414310853"> | 7607 | <trans-unit id="8781423666414310853"> |
7306 | <source>Your password has been successfully reset!</source> | 7608 | <source>Your password has been successfully reset!</source> |
7307 | <target>Ο κωδικός σας έχει ανανεωθεί με επιτυχία!</target> | 7609 | <target>Ο κωδικός σας έχει ανανεωθεί με επιτυχία!</target> |
@@ -8419,27 +8721,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8419 | <source>Emphasis</source> | 8721 | <source>Emphasis</source> |
8420 | <target>Έμφαση</target> | 8722 | <target>Έμφαση</target> |
8421 | 8723 | ||
8422 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">77</context></context-group></trans-unit> | 8724 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> |
8423 | <trans-unit id="7565716024468232322"> | 8725 | <trans-unit id="7565716024468232322"> |
8424 | <source>Links</source> | 8726 | <source>Links</source> |
8425 | <target>Σύνδεσμοι</target> | 8727 | <target>Σύνδεσμοι</target> |
8426 | 8728 | ||
8427 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">78</context></context-group></trans-unit> | 8729 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> |
8428 | <trans-unit id="7838476952710404110"> | 8730 | <trans-unit id="7838476952710404110"> |
8429 | <source>New lines</source> | 8731 | <source>New lines</source> |
8430 | <target>Αλλαγή γραμμών</target> | 8732 | <target>Αλλαγή γραμμών</target> |
8431 | 8733 | ||
8432 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 8734 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">83</context></context-group></trans-unit> |
8433 | <trans-unit id="8756167649220050929"> | 8735 | <trans-unit id="8756167649220050929"> |
8434 | <source>Lists</source> | 8736 | <source>Lists</source> |
8435 | <target>Λίστες</target> | 8737 | <target>Λίστες</target> |
8436 | 8738 | ||
8437 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">80</context></context-group></trans-unit> | 8739 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">84</context></context-group></trans-unit> |
8438 | <trans-unit id="414887388288176527"> | 8740 | <trans-unit id="414887388288176527"> |
8439 | <source>Images</source> | 8741 | <source>Images</source> |
8440 | <target>Εικόνες</target> | 8742 | <target>Εικόνες</target> |
8441 | 8743 | ||
8442 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> | 8744 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">85</context></context-group></trans-unit> |
8443 | <trans-unit id="5708680277917691451"> | 8745 | <trans-unit id="5708680277917691451"> |
8444 | <source> | 8746 | <source> |
8445 | <x id="PH"/> users banned. | 8747 | <x id="PH"/> users banned. |
@@ -8835,7 +9137,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8835 | <source>Moderator</source> | 9137 | <source>Moderator</source> |
8836 | <target>Συντονιστής</target> | 9138 | <target>Συντονιστής</target> |
8837 | 9139 | ||
8838 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">386</context></context-group></trans-unit> | 9140 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">384</context></context-group></trans-unit> |
8839 | <trans-unit id="3723085768598852106"> | 9141 | <trans-unit id="3723085768598852106"> |
8840 | <source>Video removed from | 9142 | <source>Video removed from |
8841 | <x id="PH"/> | 9143 | <x id="PH"/> |
@@ -8908,7 +9210,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8908 | <source>Do you really want to delete this comment?</source> | 9210 | <source>Do you really want to delete this comment?</source> |
8909 | <target state="new">Do you really want to delete this comment?</target> | 9211 | <target state="new">Do you really want to delete this comment?</target> |
8910 | 9212 | ||
8911 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">434</context></context-group></trans-unit> | 9213 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">166</context></context-group></trans-unit> |
8912 | <trans-unit id="7837272126865175984" datatype="html"> | 9214 | <trans-unit id="7837272126865175984" datatype="html"> |
8913 | <source>Comment deleted.</source> | 9215 | <source>Comment deleted.</source> |
8914 | <target state="new">Comment deleted.</target> | 9216 | <target state="new">Comment deleted.</target> |
@@ -9020,9 +9322,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9020 | 9322 | ||
9021 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> | 9323 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> |
9022 | <source>Report</source><target state="new">Report</target> | 9324 | <source>Report</source><target state="new">Report</target> |
9325 | |||
9326 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="4814285799071780083" datatype="html"> | ||
9327 | <source>Remove</source><target state="new">Remove</target> | ||
9023 | <context-group purpose="location"> | 9328 | <context-group purpose="location"> |
9024 | <context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> | 9329 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> |
9025 | <context context-type="linenumber">286</context> | 9330 | <context context-type="linenumber">179</context> |
9331 | </context-group> | ||
9332 | </trans-unit><trans-unit id="6871668720687277843" datatype="html"> | ||
9333 | <source>Remove & re-draft</source><target state="new">Remove & re-draft</target> | ||
9334 | <context-group purpose="location"> | ||
9335 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> | ||
9336 | <context context-type="linenumber">187</context> | ||
9026 | </context-group> | 9337 | </context-group> |
9027 | </trans-unit> | 9338 | </trans-unit> |
9028 | <trans-unit id="4903651219400691248" datatype="html"> | 9339 | <trans-unit id="4903651219400691248" datatype="html"> |
@@ -9126,22 +9437,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9126 | <source>Only I can see this video</source> | 9437 | <source>Only I can see this video</source> |
9127 | <target>Μόνο εγώ μπορώ να το δω</target> | 9438 | <target>Μόνο εγώ μπορώ να το δω</target> |
9128 | 9439 | ||
9129 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">340</context></context-group></trans-unit> | 9440 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">341</context></context-group></trans-unit> |
9130 | <trans-unit id="6767380569816110388" datatype="html"> | 9441 | <trans-unit id="6767380569816110388" datatype="html"> |
9131 | <source>Only shareable via a private link</source> | 9442 | <source>Only shareable via a private link</source> |
9132 | <target state="new">Only shareable via a private link</target> | 9443 | <target state="new">Only shareable via a private link</target> |
9133 | 9444 | ||
9134 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">344</context></context-group></trans-unit> | 9445 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">345</context></context-group></trans-unit> |
9135 | <trans-unit id="6828965264297239528"> | 9446 | <trans-unit id="6828965264297239528"> |
9136 | <source>Anyone can see this video</source> | 9447 | <source>Anyone can see this video</source> |
9137 | <target>Όλοι μπορούν να το δουν</target> | 9448 | <target>Όλοι μπορούν να το δουν</target> |
9138 | 9449 | ||
9139 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">348</context></context-group></trans-unit> | 9450 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">349</context></context-group></trans-unit> |
9140 | <trans-unit id="1425933035739773115" datatype="html"> | 9451 | <trans-unit id="1425933035739773115" datatype="html"> |
9141 | <source>Only users of this instance can see this video</source> | 9452 | <source>Only users of this instance can see this video</source> |
9142 | <target state="new">Only users of this instance can see this video</target> | 9453 | <target state="new">Only users of this instance can see this video</target> |
9143 | 9454 | ||
9144 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">352</context></context-group></trans-unit> | 9455 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">353</context></context-group></trans-unit> |
9145 | <trans-unit id="5210096066382592800"> | 9456 | <trans-unit id="5210096066382592800"> |
9146 | <source>Video to import updated.</source> | 9457 | <source>Video to import updated.</source> |
9147 | <target>Ενημερώθηκε το βίντεο προς εισαγωγή.</target> | 9458 | <target>Ενημερώθηκε το βίντεο προς εισαγωγή.</target> |
@@ -9221,7 +9532,7 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9221 | <target state="new">Report comment</target> | 9532 | <target state="new">Report comment</target> |
9222 | 9533 | ||
9223 | 9534 | ||
9224 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 9535 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/report-modals/comment-report.component.ts</context><context context-type="linenumber">51</context></context-group></trans-unit> |
9225 | 9536 | ||
9226 | 9537 | ||
9227 | <trans-unit id="6775540171466219199" datatype="html"> | 9538 | <trans-unit id="6775540171466219199" datatype="html"> |
@@ -9385,6 +9696,36 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9385 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> | 9696 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> |
9386 | <context context-type="linenumber">36</context> | 9697 | <context context-type="linenumber">36</context> |
9387 | </context-group> | 9698 | </context-group> |
9699 | </trans-unit><trans-unit id="4668975178372693951" datatype="html"> | ||
9700 | <source>Discover videos</source><target state="new">Discover videos</target> | ||
9701 | <context-group purpose="location"> | ||
9702 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9703 | <context context-type="linenumber">23</context> | ||
9704 | </context-group> | ||
9705 | </trans-unit><trans-unit id="8067135025051844577" datatype="html"> | ||
9706 | <source>Trending videos</source><target state="new">Trending videos</target> | ||
9707 | <context-group purpose="location"> | ||
9708 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9709 | <context context-type="linenumber">32</context> | ||
9710 | </context-group> | ||
9711 | </trans-unit><trans-unit id="664221386829541948" datatype="html"> | ||
9712 | <source>Recently added videos</source><target state="new">Recently added videos</target> | ||
9713 | <context-group purpose="location"> | ||
9714 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9715 | <context context-type="linenumber">58</context> | ||
9716 | </context-group> | ||
9717 | </trans-unit><trans-unit id="8212906256415538361" datatype="html"> | ||
9718 | <source>Upload a video</source><target state="new">Upload a video</target> | ||
9719 | <context-group purpose="location"> | ||
9720 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9721 | <context context-type="linenumber">97</context> | ||
9722 | </context-group> | ||
9723 | </trans-unit><trans-unit id="7590784934397800835" datatype="html"> | ||
9724 | <source>Edit a video</source><target state="new">Edit a video</target> | ||
9725 | <context-group purpose="location"> | ||
9726 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9727 | <context context-type="linenumber">106</context> | ||
9728 | </context-group> | ||
9388 | </trans-unit> | 9729 | </trans-unit> |
9389 | </body> | 9730 | </body> |
9390 | </file> | 9731 | </file> |
diff --git a/client/src/locale/angular.en-GB.xlf b/client/src/locale/angular.en-GB.xlf index 63a983ee4..186665bd9 100644 --- a/client/src/locale/angular.en-GB.xlf +++ b/client/src/locale/angular.en-GB.xlf | |||
@@ -310,7 +310,7 @@ | |||
310 | <target state="new">Options</target> | 310 | <target state="new">Options</target> |
311 | 311 | ||
312 | 312 | ||
313 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 313 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">48</context></context-group></trans-unit> |
314 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d" datatype="html"> | 314 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d" datatype="html"> |
315 | <source>Start at</source> | 315 | <source>Start at</source> |
316 | <target state="new">Start at</target> | 316 | <target state="new">Start at</target> |
@@ -442,7 +442,7 @@ | |||
442 | Cancel | 442 | Cancel |
443 | </target> | 443 | </target> |
444 | 444 | ||
445 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> | 445 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit> |
446 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd"> | 446 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd"> |
447 | <source>Download</source> | 447 | <source>Download</source> |
448 | <target>Download</target> | 448 | <target>Download</target> |
@@ -561,7 +561,7 @@ | |||
561 | 561 | ||
562 | 562 | ||
563 | 563 | ||
564 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 564 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
565 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc" datatype="html"> | 565 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc" datatype="html"> |
566 | <source>Edit starts/stops at</source> | 566 | <source>Edit starts/stops at</source> |
567 | <target state="new">Edit starts/stops at</target> | 567 | <target state="new">Edit starts/stops at</target> |
@@ -601,7 +601,7 @@ | |||
601 | 601 | ||
602 | 602 | ||
603 | 603 | ||
604 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> | 604 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
605 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> | 605 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> |
606 | <source>Edit</source> | 606 | <source>Edit</source> |
607 | <target>Edit</target> | 607 | <target>Edit</target> |
@@ -626,17 +626,10 @@ | |||
626 | <target>Complete preview</target> | 626 | <target>Complete preview</target> |
627 | 627 | ||
628 | <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></trans-unit> | 628 | <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></trans-unit> |
629 | <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f"> | 629 | <trans-unit id="8644431249513874405" datatype="html"> |
630 | <source>Get help</source> | ||
631 | <target>Get help</target> | ||
632 | |||
633 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit><trans-unit id="8644431249513874405" datatype="html"> | ||
634 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> | 630 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> |
635 | <context-group purpose="location"> | 631 | |
636 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 632 | <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></trans-unit> |
637 | <context context-type="linenumber">71</context> | ||
638 | </context-group> | ||
639 | </trans-unit> | ||
640 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> | 633 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> |
641 | <source>Recommended</source> | 634 | <source>Recommended</source> |
642 | <target state="new">Recommended</target> | 635 | <target state="new">Recommended</target> |
@@ -676,7 +669,7 @@ | |||
676 | <source>PROFILE SETTINGS</source> | 669 | <source>PROFILE SETTINGS</source> |
677 | <target state="new">PROFILE SETTINGS</target> | 670 | <target state="new">PROFILE SETTINGS</target> |
678 | 671 | ||
679 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 672 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">12</context></context-group></trans-unit> |
680 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3"> | 673 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3"> |
681 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> | 674 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> |
682 | <target> | 675 | <target> |
@@ -848,11 +841,8 @@ | |||
848 | 841 | ||
849 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> | 842 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> |
850 | <source>User</source><target state="new">User</target> | 843 | <source>User</source><target state="new">User</target> |
851 | <context-group purpose="location"> | 844 | |
852 | <context context-type="sourcefile">../app/core/users/user.service.ts</context> | 845 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit> |
853 | <context context-type="linenumber">384</context> | ||
854 | </context-group> | ||
855 | </trans-unit> | ||
856 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0"> | 846 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0"> |
857 | <source>Ban</source> | 847 | <source>Ban</source> |
858 | <target>Ban</target> | 848 | <target>Ban</target> |
@@ -1346,89 +1336,89 @@ The link will expire within 1 hour.</target> | |||
1346 | <source>Account settings</source> | 1336 | <source>Account settings</source> |
1347 | <target state="new">Account settings</target> | 1337 | <target state="new">Account settings</target> |
1348 | 1338 | ||
1349 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 1339 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
1350 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> | 1340 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> |
1351 | <source>Channels settings</source> | 1341 | <source>Channels settings</source> |
1352 | <target state="new">Channels settings</target> | 1342 | <target state="new">Channels settings</target> |
1353 | 1343 | ||
1354 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 1344 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> |
1355 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> | 1345 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> |
1356 | <source>Interface:</source> | 1346 | <source>Interface:</source> |
1357 | <target state="new">Interface:</target> | 1347 | <target state="new">Interface:</target> |
1358 | 1348 | ||
1359 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 1349 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1360 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> | 1350 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> |
1361 | <source>Videos:</source> | 1351 | <source>Videos:</source> |
1362 | <target state="new">Videos:</target> | 1352 | <target state="new">Videos:</target> |
1363 | 1353 | ||
1364 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 1354 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> |
1365 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> | 1355 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> |
1366 | <source>Sensitive:</source> | 1356 | <source>Sensitive:</source> |
1367 | <target state="new">Sensitive:</target> | 1357 | <target state="new">Sensitive:</target> |
1368 | 1358 | ||
1369 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 1359 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">54</context></context-group></trans-unit> |
1370 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1360 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> |
1371 | <source>Interface: <x id="INTERPOLATION"/></source> | 1361 | <source>Interface: <x id="INTERPOLATION"/></source> |
1372 | <target state="new">Interface: | 1362 | <target state="new">Interface: |
1373 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> | 1363 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> |
1374 | </target> | 1364 | </target> |
1375 | 1365 | ||
1376 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">156</context></context-group></trans-unit> | 1366 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> |
1377 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1367 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1378 | <source>Help share videos</source> | 1368 | <source>Help share videos</source> |
1379 | <target state="new">Help share videos</target> | 1369 | <target state="new">Help share videos</target> |
1380 | 1370 | ||
1381 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> | 1371 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
1382 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> | 1372 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> |
1383 | <source>More account settings</source> | 1373 | <source>More account settings</source> |
1384 | <target state="new">More account settings</target> | 1374 | <target state="new">More account settings</target> |
1385 | 1375 | ||
1386 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> | 1376 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> |
1387 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> | 1377 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> |
1388 | <source>Keyboard shortcuts</source> | 1378 | <source>Keyboard shortcuts</source> |
1389 | <target state="new">Keyboard shortcuts</target> | 1379 | <target state="new">Keyboard shortcuts</target> |
1390 | 1380 | ||
1391 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 1381 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">72</context></context-group></trans-unit> |
1392 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> | 1382 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> |
1393 | <source>Help</source> | 1383 | <source>Help</source> |
1394 | <target state="new">Help</target> | 1384 | <target state="new">Help</target> |
1395 | 1385 | ||
1396 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1386 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1397 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> | 1387 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> |
1398 | <source>Get help using PeerTube</source> | 1388 | <source>Get help using PeerTube</source> |
1399 | <target state="new">Get help using PeerTube</target> | 1389 | <target state="new">Get help using PeerTube</target> |
1400 | 1390 | ||
1401 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">161</context></context-group></trans-unit> | 1391 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">167</context></context-group></trans-unit> |
1402 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> | 1392 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> |
1403 | <source>Shortcuts</source> | 1393 | <source>Shortcuts</source> |
1404 | <target state="new">Shortcuts</target> | 1394 | <target state="new">Shortcuts</target> |
1405 | 1395 | ||
1406 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1396 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1407 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> | 1397 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> |
1408 | <source>powered by PeerTube</source> | 1398 | <source>powered by PeerTube</source> |
1409 | <target state="new">powered by PeerTube</target> | 1399 | <target state="new">powered by PeerTube</target> |
1410 | 1400 | ||
1411 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | 1401 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">177</context></context-group></trans-unit> |
1412 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> | 1402 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> |
1413 | <source>powered by PeerTube - CopyLeft 2015-2020</source> | 1403 | <source>powered by PeerTube - CopyLeft 2015-2020</source> |
1414 | <target state="new">powered by PeerTube - CopyLeft 2015-2020</target> | 1404 | <target state="new">powered by PeerTube - CopyLeft 2015-2020</target> |
1415 | 1405 | ||
1416 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> | 1406 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">176</context></context-group></trans-unit> |
1417 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344" datatype="html"> | 1407 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344" datatype="html"> |
1418 | <source>Log out</source> | 1408 | <source>Log out</source> |
1419 | <target state="new">Log out</target> | 1409 | <target state="new">Log out</target> |
1420 | 1410 | ||
1421 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">70</context></context-group></trans-unit> | 1411 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit> |
1422 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> | 1412 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> |
1423 | <source>Create an account</source> | 1413 | <source>Create an account</source> |
1424 | <target>Create an account</target> | 1414 | <target>Create an account</target> |
1425 | 1415 | ||
1426 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">78</context></context-group></trans-unit> | 1416 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
1427 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> | 1417 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> |
1428 | <source>MY LIBRARY</source> | 1418 | <source>MY LIBRARY</source> |
1429 | <target state="new">MY LIBRARY</target> | 1419 | <target state="new">MY LIBRARY</target> |
1430 | 1420 | ||
1431 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 1421 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">88</context></context-group></trans-unit> |
1432 | <trans-unit id="6371572688505952303"> | 1422 | <trans-unit id="6371572688505952303"> |
1433 | <source>My library</source> | 1423 | <source>My library</source> |
1434 | <target>My library</target> | 1424 | <target>My library</target> |
@@ -1468,22 +1458,22 @@ The link will expire within 1 hour.</target> | |||
1468 | <source>Videos</source> | 1458 | <source>Videos</source> |
1469 | <target>Videos</target> | 1459 | <target>Videos</target> |
1470 | 1460 | ||
1471 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">86</context></context-group></trans-unit> | 1461 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">92</context></context-group></trans-unit> |
1472 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> | 1462 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> |
1473 | <source>Playlists</source> | 1463 | <source>Playlists</source> |
1474 | <target state="new">Playlists</target> | 1464 | <target state="new">Playlists</target> |
1475 | 1465 | ||
1476 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">91</context></context-group></trans-unit> | 1466 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">97</context></context-group></trans-unit> |
1477 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2"> | 1467 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2"> |
1478 | <source>Subscriptions</source> | 1468 | <source>Subscriptions</source> |
1479 | <target>Subscriptions</target> | 1469 | <target>Subscriptions</target> |
1480 | 1470 | ||
1481 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 1471 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">102</context></context-group></trans-unit> |
1482 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8" datatype="html"> | 1472 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8" datatype="html"> |
1483 | <source>History</source> | 1473 | <source>History</source> |
1484 | <target state="new">History</target> | 1474 | <target state="new">History</target> |
1485 | 1475 | ||
1486 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit> | 1476 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">107</context></context-group></trans-unit> |
1487 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> | 1477 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> |
1488 | <source>VIDEOS</source> | 1478 | <source>VIDEOS</source> |
1489 | <target state="new">VIDEOS</target> | 1479 | <target state="new">VIDEOS</target> |
@@ -1495,27 +1485,27 @@ The link will expire within 1 hour.</target> | |||
1495 | <target state="new">Discover</target> | 1485 | <target state="new">Discover</target> |
1496 | 1486 | ||
1497 | 1487 | ||
1498 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">111</context></context-group></trans-unit> | 1488 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">117</context></context-group></trans-unit> |
1499 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> | 1489 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> |
1500 | <source>Trending</source> | 1490 | <source>Trending</source> |
1501 | <target>Trending</target> | 1491 | <target>Trending</target> |
1502 | 1492 | ||
1503 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">116</context></context-group></trans-unit> | 1493 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">122</context></context-group></trans-unit> |
1504 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> | 1494 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> |
1505 | <source>Most liked</source> | 1495 | <source>Most liked</source> |
1506 | <target state="new">Most liked</target> | 1496 | <target state="new">Most liked</target> |
1507 | 1497 | ||
1508 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">121</context></context-group></trans-unit> | 1498 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">127</context></context-group></trans-unit> |
1509 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> | 1499 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> |
1510 | <source>Recently added</source> | 1500 | <source>Recently added</source> |
1511 | <target>Recently added</target> | 1501 | <target>Recently added</target> |
1512 | 1502 | ||
1513 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">126</context></context-group></trans-unit> | 1503 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">132</context></context-group></trans-unit> |
1514 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> | 1504 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> |
1515 | <source>Administration</source> | 1505 | <source>Administration</source> |
1516 | <target>Administration</target> | 1506 | <target>Administration</target> |
1517 | 1507 | ||
1518 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">140</context></context-group></trans-unit> | 1508 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">146</context></context-group></trans-unit> |
1519 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> | 1509 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> |
1520 | <source>About</source> | 1510 | <source>About</source> |
1521 | <target>About</target> | 1511 | <target>About</target> |
@@ -1526,7 +1516,7 @@ The link will expire within 1 hour.</target> | |||
1526 | <source>Contact</source> | 1516 | <source>Contact</source> |
1527 | <target state="new">Contact</target> | 1517 | <target state="new">Contact</target> |
1528 | 1518 | ||
1529 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">160</context></context-group></trans-unit> | 1519 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">166</context></context-group></trans-unit> |
1530 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771"> | 1520 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771"> |
1531 | <source>View your notifications</source> | 1521 | <source>View your notifications</source> |
1532 | <target>View your notifications</target> | 1522 | <target>View your notifications</target> |
@@ -1553,7 +1543,7 @@ The link will expire within 1 hour.</target> | |||
1553 | <source>See all your notifications</source> | 1543 | <source>See all your notifications</source> |
1554 | <target>See all your notifications</target> | 1544 | <target>See all your notifications</target> |
1555 | 1545 | ||
1556 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 1546 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">40</context></context-group></trans-unit> |
1557 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> | 1547 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> |
1558 | <source>Search videos, channels…</source> | 1548 | <source>Search videos, channels…</source> |
1559 | <target state="new">Search videos, channels…</target> | 1549 | <target state="new">Search videos, channels…</target> |
@@ -1887,22 +1877,22 @@ The link will expire within 1 hour.</target> | |||
1887 | <source>FAQ</source> | 1877 | <source>FAQ</source> |
1888 | <target state="new">FAQ</target> | 1878 | <target state="new">FAQ</target> |
1889 | 1879 | ||
1890 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">163</context></context-group></trans-unit> | 1880 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
1891 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> | 1881 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> |
1892 | <source>Frequently asked questions about PeerTube</source> | 1882 | <source>Frequently asked questions about PeerTube</source> |
1893 | <target state="new">Frequently asked questions about PeerTube</target> | 1883 | <target state="new">Frequently asked questions about PeerTube</target> |
1894 | 1884 | ||
1895 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1885 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1896 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> | 1886 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> |
1897 | <source>API</source> | 1887 | <source>API</source> |
1898 | <target state="new">API</target> | 1888 | <target state="new">API</target> |
1899 | 1889 | ||
1900 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1890 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1901 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> | 1891 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> |
1902 | <source>API documentation</source> | 1892 | <source>API documentation</source> |
1903 | <target state="new">API documentation</target> | 1893 | <target state="new">API documentation</target> |
1904 | 1894 | ||
1905 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 1895 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
1906 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5"> | 1896 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5"> |
1907 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> | 1897 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> |
1908 | <target>Schedule publication ( | 1898 | <target>Schedule publication ( |
@@ -2289,7 +2279,13 @@ The link will expire within 1 hour.</target> | |||
2289 | Less customization | 2279 | Less customization |
2290 | </target> | 2280 | </target> |
2291 | 2281 | ||
2292 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit> | 2282 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit><trans-unit id="2454050363478003966" datatype="html"> |
2283 | <source>Login</source><target state="new">Login</target> | ||
2284 | <context-group purpose="location"> | ||
2285 | <context context-type="sourcefile">../app/+login/login-routing.module.ts</context> | ||
2286 | <context context-type="linenumber">14</context> | ||
2287 | </context-group> | ||
2288 | </trans-unit> | ||
2293 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e" datatype="html"> | 2289 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e" datatype="html"> |
2294 | <source>Autoplay</source> | 2290 | <source>Autoplay</source> |
2295 | <target state="new">Autoplay</target> | 2291 | <target state="new">Autoplay</target> |
@@ -2560,7 +2556,7 @@ The link will expire within 1 hour.</target> | |||
2560 | <source>No comments.</source> | 2556 | <source>No comments.</source> |
2561 | <target>No comments.</target> | 2557 | <target>No comments.</target> |
2562 | 2558 | ||
2563 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 2559 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> |
2564 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> | 2560 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> |
2565 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> | 2561 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> |
2566 | <target state="new"> | 2562 | <target state="new"> |
@@ -2570,7 +2566,7 @@ The link will expire within 1 hour.</target> | |||
2570 | 2566 | ||
2571 | </target> | 2567 | </target> |
2572 | 2568 | ||
2573 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">79</context></context-group></trans-unit> | 2569 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
2574 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> | 2570 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> |
2575 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> | 2571 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> |
2576 | <target state="new"> | 2572 | <target state="new"> |
@@ -2579,38 +2575,98 @@ The link will expire within 1 hour.</target> | |||
2579 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> | 2575 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> |
2580 | </target> | 2576 | </target> |
2581 | 2577 | ||
2582 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 2578 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">87</context></context-group></trans-unit> |
2583 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> | 2579 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> |
2584 | <source>View <x id="INTERPOLATION"/> replies</source> | 2580 | <source>View <x id="INTERPOLATION"/> replies</source> |
2585 | <target state="new">View | 2581 | <target state="new">View |
2586 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies | 2582 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies |
2587 | </target> | 2583 | </target> |
2588 | 2584 | ||
2589 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">85</context></context-group></trans-unit> | 2585 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">90</context></context-group></trans-unit> |
2590 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828"> | 2586 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828"> |
2591 | <source>Comments are disabled.</source> | 2587 | <source>Comments are disabled.</source> |
2592 | <target> | 2588 | <target> |
2593 | Comments are disabled. | 2589 | Comments are disabled. |
2594 | </target> | 2590 | </target> |
2595 | 2591 | ||
2596 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 2592 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit> |
2597 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e"> | 2593 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e"> |
2598 | <source>Add comment...</source> | 2594 | <source>Add comment...</source> |
2599 | <target>Add comment...</target> | 2595 | <target>Add comment...</target> |
2600 | 2596 | ||
2601 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | 2597 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit><trans-unit id="4e5254dedf0c12ce7e7c2197384fceebe3b29a2b" datatype="html"> |
2602 | <trans-unit id="8956c0f4c6974289fc63f1ab6b54f5b32ed65eeb" datatype="html"> | 2598 | <source>Markdown compatible</source><target state="new">Markdown compatible</target> |
2603 | <source>Reply</source> | 2599 | <context-group purpose="location"> |
2604 | <target state="new"> | 2600 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> |
2605 | Reply | 2601 | <context context-type="linenumber">13</context> |
2606 | </target> | 2602 | </context-group> |
2607 | 2603 | </trans-unit><trans-unit id="4739ffad85f09defefdb6e51b45f43b2ef7c4388" datatype="html"> | |
2608 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 2604 | <source>Markdown compatible that supports:</source><target state="new">Markdown compatible that supports:</target> |
2605 | <context-group purpose="location"> | ||
2606 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2607 | <context context-type="linenumber">15</context> | ||
2608 | </context-group> | ||
2609 | </trans-unit><trans-unit id="9a53b17a021bb0677c156fd893461797fc497a10" datatype="html"> | ||
2610 | <source>Auto generated links</source><target state="new">Auto generated links</target> | ||
2611 | <context-group purpose="location"> | ||
2612 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2613 | <context context-type="linenumber">18</context> | ||
2614 | </context-group> | ||
2615 | </trans-unit><trans-unit id="664f99b8919d6dd2faa1c1f7c378aa86d1be5e8a" datatype="html"> | ||
2616 | <source>Break lines</source><target state="new">Break lines</target> | ||
2617 | <context-group purpose="location"> | ||
2618 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2619 | <context context-type="linenumber">19</context> | ||
2620 | </context-group> | ||
2621 | </trans-unit><trans-unit id="b15e7bec5c7833d2d9634946ccbed68967b1bee1" datatype="html"> | ||
2622 | <source>Lists</source><target state="new">Lists</target> | ||
2623 | <context-group purpose="location"> | ||
2624 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2625 | <context context-type="linenumber">20</context> | ||
2626 | </context-group> | ||
2627 | </trans-unit><trans-unit id="ab4426b60f13c00b61d6b714d390dc629f314980" datatype="html"> | ||
2628 | <source>Emphasis</source><target state="new">Emphasis</target> | ||
2629 | <context-group purpose="location"> | ||
2630 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2631 | <context context-type="linenumber">22</context> | ||
2632 | </context-group> | ||
2633 | </trans-unit><trans-unit id="4e13b179501d3d32721037e03b4c04acb9857c5f" datatype="html"> | ||
2634 | <source>bold</source><target state="new">bold</target> | ||
2635 | <context-group purpose="location"> | ||
2636 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2637 | <context context-type="linenumber">23</context> | ||
2638 | </context-group> | ||
2639 | </trans-unit><trans-unit id="3c12190421fbb2756e6bbead923df9ec5de8ede2" datatype="html"> | ||
2640 | <source>italic</source><target state="new">italic</target> | ||
2641 | <context-group purpose="location"> | ||
2642 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2643 | <context context-type="linenumber">23</context> | ||
2644 | </context-group> | ||
2645 | </trans-unit><trans-unit id="adb4bbdcb961b8aac8298d6cac554d9b25636b7a" datatype="html"> | ||
2646 | <source>Emoji shortcuts</source><target state="new">Emoji shortcuts</target> | ||
2647 | <context-group purpose="location"> | ||
2648 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2649 | <context context-type="linenumber">26</context> | ||
2650 | </context-group> | ||
2651 | </trans-unit><trans-unit id="b9809a21a8eb3c9db2a0282c5dd94bc221575c96" datatype="html"> | ||
2652 | <source>Emoji markup</source><target state="new">Emoji markup</target> | ||
2653 | <context-group purpose="location"> | ||
2654 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2655 | <context context-type="linenumber">30</context> | ||
2656 | </context-group> | ||
2657 | </trans-unit><trans-unit id="f37feb427aaa551edd1f22616be6464bc0d492de" datatype="html"> | ||
2658 | <source>See complete list</source><target state="new">See complete list</target> | ||
2659 | <context-group purpose="location"> | ||
2660 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2661 | <context context-type="linenumber">32</context> | ||
2662 | </context-group> | ||
2663 | </trans-unit> | ||
2664 | |||
2609 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135"> | 2665 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135"> |
2610 | <source>You are one step away from commenting</source> | 2666 | <source>You are one step away from commenting</source> |
2611 | <target>You are one step away from commenting</target> | 2667 | <target>You are one step away from commenting</target> |
2612 | 2668 | ||
2613 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 2669 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
2614 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> | 2670 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> |
2615 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> | 2671 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> |
2616 | <target state="new"> | 2672 | <target state="new"> |
@@ -2619,19 +2675,37 @@ The link will expire within 1 hour.</target> | |||
2619 | from within the software's interface. | 2675 | from within the software's interface. |
2620 | </target> | 2676 | </target> |
2621 | 2677 | ||
2622 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 2678 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
2623 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb"> | 2679 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb"> |
2624 | <source>If you have an account on Mastodon or Pleroma, you can open it directly in their interface:</source> | 2680 | <source>If you have an account on Mastodon or Pleroma, you can open it directly in their interface:</source> |
2625 | <target> | 2681 | <target> |
2626 | If you have an account on Mastodon or Pleroma, you can open it directly in their interface: | 2682 | If you have an account on Mastodon or Pleroma, you can open it directly in their interface: |
2627 | </target> | 2683 | </target> |
2628 | 2684 | ||
2629 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">41</context></context-group></trans-unit> | 2685 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">65</context></context-group></trans-unit> |
2630 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> | 2686 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> |
2631 | <source>Login to comment</source> | 2687 | <source>Login to comment</source> |
2632 | <target state="new">Login to comment</target> | 2688 | <target state="new">Login to comment</target> |
2633 | 2689 | ||
2634 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">52</context></context-group></trans-unit> | 2690 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit><trans-unit id="974170f455ff5a9034d5737e84b4194c0046fc6b" datatype="html"> |
2691 | <source>Markdown Emoji List</source><target state="new">Markdown Emoji List</target> | ||
2692 | <context-group purpose="location"> | ||
2693 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2694 | <context context-type="linenumber">84</context> | ||
2695 | </context-group> | ||
2696 | </trans-unit><trans-unit id="2662644497259948010" datatype="html"> | ||
2697 | <source>Comment</source><target state="new">Comment</target> | ||
2698 | <context-group purpose="location"> | ||
2699 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2700 | <context context-type="linenumber">58</context> | ||
2701 | </context-group> | ||
2702 | </trans-unit><trans-unit id="4502286564339177240" datatype="html"> | ||
2703 | <source>Reply</source><target state="new">Reply</target> | ||
2704 | <context-group purpose="location"> | ||
2705 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2706 | <context context-type="linenumber">60</context> | ||
2707 | </context-group> | ||
2708 | </trans-unit> | ||
2635 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285"> | 2709 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285"> |
2636 | <source>Highlighted comment</source> | 2710 | <source>Highlighted comment</source> |
2637 | <target>Highlighted comment</target> | 2711 | <target>Highlighted comment</target> |
@@ -2646,7 +2720,7 @@ The link will expire within 1 hour.</target> | |||
2646 | <source>This comment has been deleted</source> | 2720 | <source>This comment has been deleted</source> |
2647 | <target state="new">This comment has been deleted</target> | 2721 | <target state="new">This comment has been deleted</target> |
2648 | 2722 | ||
2649 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">62</context></context-group></trans-unit> | 2723 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">61</context></context-group></trans-unit> |
2650 | <trans-unit id="9031514421077169181" datatype="html"> | 2724 | <trans-unit id="9031514421077169181" datatype="html"> |
2651 | <source>Video redundancies</source> | 2725 | <source>Video redundancies</source> |
2652 | <target state="new">Video redundancies</target> | 2726 | <target state="new">Video redundancies</target> |
@@ -3501,7 +3575,25 @@ The link will expire within 1 hour.</target> | |||
3501 | <target state="new">No account found.</target> | 3575 | <target state="new">No account found.</target> |
3502 | 3576 | ||
3503 | 3577 | ||
3504 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit> | 3578 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit><trans-unit id="2338185419645468935" datatype="html"> |
3579 | <source>List installed plugins</source><target state="new">List installed plugins</target> | ||
3580 | <context-group purpose="location"> | ||
3581 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3582 | <context context-type="linenumber">28</context> | ||
3583 | </context-group> | ||
3584 | </trans-unit><trans-unit id="8897412584195581488" datatype="html"> | ||
3585 | <source>Search plugins</source><target state="new">Search plugins</target> | ||
3586 | <context-group purpose="location"> | ||
3587 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3588 | <context context-type="linenumber">37</context> | ||
3589 | </context-group> | ||
3590 | </trans-unit><trans-unit id="4994333937800672218" datatype="html"> | ||
3591 | <source>Show plugin</source><target state="new">Show plugin</target> | ||
3592 | <context-group purpose="location"> | ||
3593 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3594 | <context context-type="linenumber">46</context> | ||
3595 | </context-group> | ||
3596 | </trans-unit> | ||
3505 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> | 3597 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> |
3506 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> | 3598 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> |
3507 | <target state="new">Showing | 3599 | <target state="new">Showing |
@@ -4228,7 +4320,7 @@ The link will expire within 1 hour.</target> | |||
4228 | <source>Administrator</source> | 4320 | <source>Administrator</source> |
4229 | <target>Administrator</target> | 4321 | <target>Administrator</target> |
4230 | 4322 | ||
4231 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">385</context></context-group></trans-unit> | 4323 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">383</context></context-group></trans-unit> |
4232 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587"> | 4324 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587"> |
4233 | <source>Admin email</source> | 4325 | <source>Admin email</source> |
4234 | <target>Admin email</target> | 4326 | <target>Admin email</target> |
@@ -4490,27 +4582,27 @@ The link will expire within 1 hour.</target> | |||
4490 | <source>VIDEO SETTINGS</source> | 4582 | <source>VIDEO SETTINGS</source> |
4491 | <target state="new">VIDEO SETTINGS</target> | 4583 | <target state="new">VIDEO SETTINGS</target> |
4492 | 4584 | ||
4493 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit> | 4585 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
4494 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> | 4586 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> |
4495 | <source>NOTIFICATIONS</source> | 4587 | <source>NOTIFICATIONS</source> |
4496 | <target state="new">NOTIFICATIONS</target> | 4588 | <target state="new">NOTIFICATIONS</target> |
4497 | 4589 | ||
4498 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 4590 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">37</context></context-group></trans-unit> |
4499 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> | 4591 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> |
4500 | <source>INTERFACE</source> | 4592 | <source>INTERFACE</source> |
4501 | <target state="new">INTERFACE</target> | 4593 | <target state="new">INTERFACE</target> |
4502 | 4594 | ||
4503 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 4595 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit> |
4504 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> | 4596 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> |
4505 | <source>PASSWORD</source> | 4597 | <source>PASSWORD</source> |
4506 | <target state="new">PASSWORD</target> | 4598 | <target state="new">PASSWORD</target> |
4507 | 4599 | ||
4508 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">59</context></context-group></trans-unit> | 4600 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">57</context></context-group></trans-unit> |
4509 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> | 4601 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> |
4510 | <source>EMAIL</source> | 4602 | <source>EMAIL</source> |
4511 | <target state="new">EMAIL</target> | 4603 | <target state="new">EMAIL</target> |
4512 | 4604 | ||
4513 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">69</context></context-group></trans-unit> | 4605 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">67</context></context-group></trans-unit> |
4514 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> | 4606 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> |
4515 | <source>DANGER ZONE</source> | 4607 | <source>DANGER ZONE</source> |
4516 | <target state="new">DANGER ZONE</target> | 4608 | <target state="new">DANGER ZONE</target> |
@@ -4760,7 +4852,31 @@ The link will expire within 1 hour.</target> | |||
4760 | <source>No ownership change request found.</source> | 4852 | <source>No ownership change request found.</source> |
4761 | <target state="new">No ownership change request found.</target> | 4853 | <target state="new">No ownership change request found.</target> |
4762 | 4854 | ||
4763 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit> | 4855 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit><trans-unit id="4247400351982331798" datatype="html"> |
4856 | <source>Account settings</source><target state="new">Account settings</target> | ||
4857 | <context-group purpose="location"> | ||
4858 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4859 | <context context-type="linenumber">37</context> | ||
4860 | </context-group> | ||
4861 | </trans-unit><trans-unit id="154062590416726309" datatype="html"> | ||
4862 | <source>Account playlists</source><target state="new">Account playlists</target> | ||
4863 | <context-group purpose="location"> | ||
4864 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4865 | <context context-type="linenumber">55</context> | ||
4866 | </context-group> | ||
4867 | </trans-unit><trans-unit id="6550287183367517925" datatype="html"> | ||
4868 | <source>Create new playlist</source><target state="new">Create new playlist</target> | ||
4869 | <context-group purpose="location"> | ||
4870 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4871 | <context context-type="linenumber">64</context> | ||
4872 | </context-group> | ||
4873 | </trans-unit><trans-unit id="2864486939135008600" datatype="html"> | ||
4874 | <source>Playlist elements</source><target state="new">Playlist elements</target> | ||
4875 | <context-group purpose="location"> | ||
4876 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4877 | <context context-type="linenumber">73</context> | ||
4878 | </context-group> | ||
4879 | </trans-unit> | ||
4764 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> | 4880 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> |
4765 | <source>My imports</source> | 4881 | <source>My imports</source> |
4766 | <target state="new">My imports</target> | 4882 | <target state="new">My imports</target> |
@@ -5031,7 +5147,25 @@ The link will expire within 1 hour.</target> | |||
5031 | <source>An error occurred.</source> | 5147 | <source>An error occurred.</source> |
5032 | <target state="new">An error occurred.</target> | 5148 | <target state="new">An error occurred.</target> |
5033 | 5149 | ||
5034 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 5150 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit><trans-unit id="9128669621822125729" datatype="html"> |
5151 | <source>Video channel videos</source><target state="new">Video channel videos</target> | ||
5152 | <context-group purpose="location"> | ||
5153 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5154 | <context context-type="linenumber">25</context> | ||
5155 | </context-group> | ||
5156 | </trans-unit><trans-unit id="3193822049276963401" datatype="html"> | ||
5157 | <source>Video channel playlists</source><target state="new">Video channel playlists</target> | ||
5158 | <context-group purpose="location"> | ||
5159 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5160 | <context context-type="linenumber">38</context> | ||
5161 | </context-group> | ||
5162 | </trans-unit><trans-unit id="4723526509708949088" datatype="html"> | ||
5163 | <source>About video channel</source><target state="new">About video channel</target> | ||
5164 | <context-group purpose="location"> | ||
5165 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5166 | <context context-type="linenumber">47</context> | ||
5167 | </context-group> | ||
5168 | </trans-unit> | ||
5035 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97"> | 5169 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97"> |
5036 | <source>Request email for account verification</source> | 5170 | <source>Request email for account verification</source> |
5037 | <target> | 5171 | <target> |
@@ -5152,7 +5286,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5152 | <source>Stats</source> | 5286 | <source>Stats</source> |
5153 | <target>Stats</target> | 5287 | <target>Stats</target> |
5154 | 5288 | ||
5155 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 5289 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
5156 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc"> | 5290 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc"> |
5157 | <source>Joined <x id="INTERPOLATION"/></source> | 5291 | <source>Joined <x id="INTERPOLATION"/></source> |
5158 | <target>Joined | 5292 | <target>Joined |
@@ -5593,7 +5727,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5593 | <source>This instance does not have instances followings.</source> | 5727 | <source>This instance does not have instances followings.</source> |
5594 | <target state="new">This instance does not have instances followings.</target> | 5728 | <target state="new">This instance does not have instances followings.</target> |
5595 | 5729 | ||
5596 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit> | 5730 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit><trans-unit id="4195286790385468087" datatype="html"> |
5731 | <source>About this instance</source><target state="new">About this instance</target> | ||
5732 | <context-group purpose="location"> | ||
5733 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5734 | <context context-type="linenumber">26</context> | ||
5735 | </context-group> | ||
5736 | </trans-unit><trans-unit id="8773846522957677259" datatype="html"> | ||
5737 | <source>About PeerTube</source><target state="new">About PeerTube</target> | ||
5738 | <context-group purpose="location"> | ||
5739 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5740 | <context context-type="linenumber">38</context> | ||
5741 | </context-group> | ||
5742 | </trans-unit><trans-unit id="5782088737558028158" datatype="html"> | ||
5743 | <source>About follows</source><target state="new">About follows</target> | ||
5744 | <context-group purpose="location"> | ||
5745 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5746 | <context context-type="linenumber">47</context> | ||
5747 | </context-group> | ||
5748 | </trans-unit> | ||
5597 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> | 5749 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> |
5598 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> | 5750 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> |
5599 | <target state="new">Developed with ❤ by | 5751 | <target state="new">Developed with ❤ by |
@@ -5763,6 +5915,12 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5763 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 5915 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> |
5764 | <context context-type="linenumber">1</context> | 5916 | <context context-type="linenumber">1</context> |
5765 | </context-group> | 5917 | </context-group> |
5918 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
5919 | <source>Get help</source><target state="new">Get help</target> | ||
5920 | <context-group purpose="location"> | ||
5921 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | ||
5922 | <context context-type="linenumber">16</context> | ||
5923 | </context-group> | ||
5766 | </trans-unit> | 5924 | </trans-unit> |
5767 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1" datatype="html"> | 5925 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1" datatype="html"> |
5768 | <source>Create my account</source> | 5926 | <source>Create my account</source> |
@@ -5891,7 +6049,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5891 | 6049 | ||
5892 | </target> | 6050 | </target> |
5893 | 6051 | ||
5894 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 6052 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit><trans-unit id="3301086086650990787" datatype="html"> |
6053 | <source>Register</source><target state="new">Register</target> | ||
6054 | <context-group purpose="location"> | ||
6055 | <context context-type="sourcefile">../app/+signup/+register/register-routing.module.ts</context> | ||
6056 | <context context-type="linenumber">14</context> | ||
6057 | </context-group> | ||
6058 | </trans-unit> | ||
5895 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> | 6059 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> |
5896 | <source>Sorry, we couldn't find the page you were looking for.</source> | 6060 | <source>Sorry, we couldn't find the page you were looking for.</source> |
5897 | <target state="new"> | 6061 | <target state="new"> |
@@ -5914,7 +6078,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5914 | <target>No description</target> | 6078 | <target>No description</target> |
5915 | 6079 | ||
5916 | 6080 | ||
5917 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit> | 6081 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit><trans-unit id="819067926858619041" datatype="html"> |
6082 | <source>Account videos</source><target state="new">Account videos</target> | ||
6083 | <context-group purpose="location"> | ||
6084 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6085 | <context context-type="linenumber">29</context> | ||
6086 | </context-group> | ||
6087 | </trans-unit><trans-unit id="6823616469362610020" datatype="html"> | ||
6088 | <source>Account video channels</source><target state="new">Account video channels</target> | ||
6089 | <context-group purpose="location"> | ||
6090 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6091 | <context context-type="linenumber">42</context> | ||
6092 | </context-group> | ||
6093 | </trans-unit><trans-unit id="7678273613459026643" datatype="html"> | ||
6094 | <source>About account</source><target state="new">About account</target> | ||
6095 | <context-group purpose="location"> | ||
6096 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6097 | <context context-type="linenumber">51</context> | ||
6098 | </context-group> | ||
6099 | </trans-unit> | ||
5918 | <trans-unit id="3755500631176893489" datatype="html"> | 6100 | <trans-unit id="3755500631176893489" datatype="html"> |
5919 | <source>Published <x id="PH"/> videos</source> | 6101 | <source>Published <x id="PH"/> videos</source> |
5920 | <target state="new">Published | 6102 | <target state="new">Published |
@@ -6031,7 +6213,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6031 | <source>Configuration updated.</source> | 6213 | <source>Configuration updated.</source> |
6032 | <target>Configuration updated.</target> | 6214 | <target>Configuration updated.</target> |
6033 | 6215 | ||
6034 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit> | 6216 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit><trans-unit id="6284468333579755406" datatype="html"> |
6217 | <source>Edit custom configuration</source><target state="new">Edit custom configuration</target> | ||
6218 | <context-group purpose="location"> | ||
6219 | <context context-type="sourcefile">../app/+admin/config/config.routes.ts</context> | ||
6220 | <context context-type="linenumber">26</context> | ||
6221 | </context-group> | ||
6222 | </trans-unit> | ||
6035 | 6223 | ||
6036 | 6224 | ||
6037 | <trans-unit id="6549061957433635758" datatype="html"> | 6225 | <trans-unit id="6549061957433635758" datatype="html"> |
@@ -6510,7 +6698,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6510 | <x id="PH"/> updated. | 6698 | <x id="PH"/> updated. |
6511 | </target> | 6699 | </target> |
6512 | 6700 | ||
6513 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 6701 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit><trans-unit id="3229595422546554334" datatype="html"> |
6702 | <source>Jobs</source><target state="new">Jobs</target> | ||
6703 | <context-group purpose="location"> | ||
6704 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6705 | <context context-type="linenumber">26</context> | ||
6706 | </context-group> | ||
6707 | </trans-unit><trans-unit id="4804785061014590286" datatype="html"> | ||
6708 | <source>Logs</source><target state="new">Logs</target> | ||
6709 | <context-group purpose="location"> | ||
6710 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6711 | <context context-type="linenumber">37</context> | ||
6712 | </context-group> | ||
6713 | </trans-unit> | ||
6514 | <trans-unit id="3150704904301058778" datatype="html"> | 6714 | <trans-unit id="3150704904301058778" datatype="html"> |
6515 | <source>The plugin index is not available. Please retry later.</source> | 6715 | <source>The plugin index is not available. Please retry later.</source> |
6516 | <target state="new">The plugin index is not available. Please retry later.</target> | 6716 | <target state="new">The plugin index is not available. Please retry later.</target> |
@@ -6624,6 +6824,18 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6624 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> | 6824 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> |
6625 | <context context-type="linenumber">86</context> | 6825 | <context context-type="linenumber">86</context> |
6626 | </context-group> | 6826 | </context-group> |
6827 | </trans-unit><trans-unit id="2903648076838460070" datatype="html"> | ||
6828 | <source>Videos blocked</source><target state="new">Videos blocked</target> | ||
6829 | <context-group purpose="location"> | ||
6830 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6831 | <context context-type="linenumber">67</context> | ||
6832 | </context-group> | ||
6833 | </trans-unit><trans-unit id="7805059636749367886" datatype="html"> | ||
6834 | <source>Muted instances</source><target state="new">Muted instances</target> | ||
6835 | <context-group purpose="location"> | ||
6836 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6837 | <context context-type="linenumber">89</context> | ||
6838 | </context-group> | ||
6627 | </trans-unit> | 6839 | </trans-unit> |
6628 | <trans-unit id="5974506725502681113" datatype="html"> | 6840 | <trans-unit id="5974506725502681113" datatype="html"> |
6629 | <source>Password changed for user <x id="PH"/>.</source> | 6841 | <source>Password changed for user <x id="PH"/>.</source> |
@@ -6636,7 +6848,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6636 | <source>Update user password</source> | 6848 | <source>Update user password</source> |
6637 | <target>Update the user password</target> | 6849 | <target>Update the user password</target> |
6638 | 6850 | ||
6639 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit> | 6851 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit><trans-unit id="177544274549739411" datatype="html"> |
6852 | <source>Following list</source><target state="new">Following list</target> | ||
6853 | <context-group purpose="location"> | ||
6854 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6855 | <context context-type="linenumber">28</context> | ||
6856 | </context-group> | ||
6857 | </trans-unit><trans-unit id="8092429110007204784" datatype="html"> | ||
6858 | <source>Followers list</source><target state="new">Followers list</target> | ||
6859 | <context-group purpose="location"> | ||
6860 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6861 | <context context-type="linenumber">37</context> | ||
6862 | </context-group> | ||
6863 | </trans-unit> | ||
6640 | <trans-unit id="780323526182667308" datatype="html"> | 6864 | <trans-unit id="780323526182667308" datatype="html"> |
6641 | <source>User <x id="PH"/> updated.</source> | 6865 | <source>User <x id="PH"/> updated.</source> |
6642 | <target state="new">User | 6866 | <target state="new">User |
@@ -6655,7 +6879,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6655 | <x id="PH"/>. | 6879 | <x id="PH"/>. |
6656 | </target> | 6880 | </target> |
6657 | 6881 | ||
6658 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="8564701209009684429" datatype="html"> | 6882 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="7483807629538115183" datatype="html"> |
6883 | <source>Users list</source><target state="new">Users list</target> | ||
6884 | <context-group purpose="location"> | ||
6885 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6886 | <context context-type="linenumber">27</context> | ||
6887 | </context-group> | ||
6888 | </trans-unit><trans-unit id="1525334987774465166" datatype="html"> | ||
6889 | <source>Create a user</source><target state="new">Create a user</target> | ||
6890 | <context-group purpose="location"> | ||
6891 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6892 | <context context-type="linenumber">36</context> | ||
6893 | </context-group> | ||
6894 | </trans-unit><trans-unit id="5552039423287890133" datatype="html"> | ||
6895 | <source>Update a user</source><target state="new">Update a user</target> | ||
6896 | <context-group purpose="location"> | ||
6897 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6898 | <context context-type="linenumber">48</context> | ||
6899 | </context-group> | ||
6900 | </trans-unit><trans-unit id="8564701209009684429" datatype="html"> | ||
6659 | <source>Federation</source><target state="new">Federation</target> | 6901 | <source>Federation</source><target state="new">Federation</target> |
6660 | <context-group purpose="location"> | 6902 | <context-group purpose="location"> |
6661 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> | 6903 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> |
@@ -7009,7 +7251,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7009 | <source>Views for the day</source> | 7251 | <source>Views for the day</source> |
7010 | <target state="new">Views for the day</target> | 7252 | <target state="new">Views for the day</target> |
7011 | 7253 | ||
7012 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit> | 7254 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit><trans-unit id="4707367314920217630" datatype="html"> |
7255 | <source>Create new video channel</source><target state="new">Create new video channel</target> | ||
7256 | <context-group purpose="location"> | ||
7257 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7258 | <context context-type="linenumber">22</context> | ||
7259 | </context-group> | ||
7260 | </trans-unit><trans-unit id="6059091237492573541" datatype="html"> | ||
7261 | <source>Update video channel</source><target state="new">Update video channel</target> | ||
7262 | <context-group purpose="location"> | ||
7263 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7264 | <context context-type="linenumber">31</context> | ||
7265 | </context-group> | ||
7266 | </trans-unit><trans-unit id="6595008830732269870" datatype="html"> | ||
7267 | <source>Not found</source><target state="new">Not found</target> | ||
7268 | <context-group purpose="location"> | ||
7269 | <context context-type="sourcefile">../app/+page-not-found/page-not-found-routing.module.ts</context> | ||
7270 | <context context-type="linenumber">13</context> | ||
7271 | </context-group> | ||
7272 | </trans-unit> | ||
7013 | <trans-unit id="5032453707232754344" datatype="html"> | 7273 | <trans-unit id="5032453707232754344" datatype="html"> |
7014 | <source>Playlist <x id="PH"/> created.</source> | 7274 | <source>Playlist <x id="PH"/> created.</source> |
7015 | <target state="new">Playlist | 7275 | <target state="new">Playlist |
@@ -7027,7 +7287,31 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7027 | <source>Update playlist</source> | 7287 | <source>Update playlist</source> |
7028 | <target state="new">Update playlist</target> | 7288 | <target state="new">Update playlist</target> |
7029 | 7289 | ||
7030 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-video-playlists/my-account-video-playlist-elements.component.ts</context><context context-type="linenumber">48</context></context-group></trans-unit> | 7290 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">82</context></context-group></trans-unit><trans-unit id="3410331549417637431" datatype="html"> |
7291 | <source>Account video imports</source><target state="new">Account video imports</target> | ||
7292 | <context-group purpose="location"> | ||
7293 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7294 | <context context-type="linenumber">105</context> | ||
7295 | </context-group> | ||
7296 | </trans-unit><trans-unit id="4434998055872154420" datatype="html"> | ||
7297 | <source>Account subscriptions</source><target state="new">Account subscriptions</target> | ||
7298 | <context-group purpose="location"> | ||
7299 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7300 | <context context-type="linenumber">114</context> | ||
7301 | </context-group> | ||
7302 | </trans-unit><trans-unit id="6019411775996586321" datatype="html"> | ||
7303 | <source>Videos history</source><target state="new">Videos history</target> | ||
7304 | <context-group purpose="location"> | ||
7305 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7306 | <context context-type="linenumber">150</context> | ||
7307 | </context-group> | ||
7308 | </trans-unit><trans-unit id="5851560788527570644" datatype="html"> | ||
7309 | <source>Notifications</source><target state="new">Notifications</target> | ||
7310 | <context-group purpose="location"> | ||
7311 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7312 | <context context-type="linenumber">163</context> | ||
7313 | </context-group> | ||
7314 | </trans-unit> | ||
7031 | <trans-unit id="104404386496394770" datatype="html"> | 7315 | <trans-unit id="104404386496394770" datatype="html"> |
7032 | <source>Delete playlist</source> | 7316 | <source>Delete playlist</source> |
7033 | <target state="new">Delete playlist</target> | 7317 | <target state="new">Delete playlist</target> |
@@ -7181,7 +7465,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7181 | <x id="PH"/>. | 7465 | <x id="PH"/>. |
7182 | </target> | 7466 | </target> |
7183 | 7467 | ||
7184 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit> | 7468 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit><trans-unit id="8231550792139699065" datatype="html"> |
7469 | <source>Verify account email</source><target state="new">Verify account email</target> | ||
7470 | <context-group purpose="location"> | ||
7471 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7472 | <context context-type="linenumber">17</context> | ||
7473 | </context-group> | ||
7474 | </trans-unit><trans-unit id="4997281272800290390" datatype="html"> | ||
7475 | <source>Verify account ask send email</source><target state="new">Verify account ask send email</target> | ||
7476 | <context-group purpose="location"> | ||
7477 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7478 | <context context-type="linenumber">26</context> | ||
7479 | </context-group> | ||
7480 | </trans-unit> | ||
7185 | <trans-unit id="4180693983967989981"> | 7481 | <trans-unit id="4180693983967989981"> |
7186 | <source>Unable to find user id or verification string.</source> | 7482 | <source>Unable to find user id or verification string.</source> |
7187 | <target>Unable to find user id or verification string.</target> | 7483 | <target>Unable to find user id or verification string.</target> |
@@ -7306,27 +7602,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7306 | <source>any language</source> | 7602 | <source>any language</source> |
7307 | <target state="new">any language</target> | 7603 | <target state="new">any language</target> |
7308 | 7604 | ||
7309 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">202</context></context-group></trans-unit> | 7605 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">229</context></context-group></trans-unit> |
7310 | <trans-unit id="5633144232269377096" datatype="html"> | 7606 | <trans-unit id="5633144232269377096" datatype="html"> |
7311 | <source>hide</source> | 7607 | <source>hide</source> |
7312 | <target state="new">hide</target> | 7608 | <target state="new">hide</target> |
7313 | 7609 | ||
7314 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">118</context></context-group></trans-unit> | 7610 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> |
7315 | <trans-unit id="8603861867909474404" datatype="html"> | 7611 | <trans-unit id="8603861867909474404" datatype="html"> |
7316 | <source>blur</source> | 7612 | <source>blur</source> |
7317 | <target state="new">blur</target> | 7613 | <target state="new">blur</target> |
7318 | 7614 | ||
7319 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> | 7615 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> |
7320 | <trans-unit id="4534458451100881847" datatype="html"> | 7616 | <trans-unit id="4534458451100881847" datatype="html"> |
7321 | <source>display</source> | 7617 | <source>display</source> |
7322 | <target state="new">display</target> | 7618 | <target state="new">display</target> |
7323 | 7619 | ||
7324 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> | 7620 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">127</context></context-group></trans-unit> |
7325 | <trans-unit id="4467323362722952678" datatype="html"> | 7621 | <trans-unit id="4467323362722952678" datatype="html"> |
7326 | <source>Unknown</source> | 7622 | <source>Unknown</source> |
7327 | <target state="new">Unknown</target> | 7623 | <target state="new">Unknown</target> |
7328 | 7624 | ||
7329 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">190</context></context-group></trans-unit> | 7625 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">193</context></context-group></trans-unit> |
7330 | <trans-unit id="8781423666414310853"> | 7626 | <trans-unit id="8781423666414310853"> |
7331 | <source>Your password has been successfully reset!</source> | 7627 | <source>Your password has been successfully reset!</source> |
7332 | <target>Your password has been successfully reset!</target> | 7628 | <target>Your password has been successfully reset!</target> |
@@ -8444,27 +8740,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8444 | <source>Emphasis</source> | 8740 | <source>Emphasis</source> |
8445 | <target>Emphasis</target> | 8741 | <target>Emphasis</target> |
8446 | 8742 | ||
8447 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">77</context></context-group></trans-unit> | 8743 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> |
8448 | <trans-unit id="7565716024468232322"> | 8744 | <trans-unit id="7565716024468232322"> |
8449 | <source>Links</source> | 8745 | <source>Links</source> |
8450 | <target>Links</target> | 8746 | <target>Links</target> |
8451 | 8747 | ||
8452 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">78</context></context-group></trans-unit> | 8748 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> |
8453 | <trans-unit id="7838476952710404110"> | 8749 | <trans-unit id="7838476952710404110"> |
8454 | <source>New lines</source> | 8750 | <source>New lines</source> |
8455 | <target>New lines</target> | 8751 | <target>New lines</target> |
8456 | 8752 | ||
8457 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 8753 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">83</context></context-group></trans-unit> |
8458 | <trans-unit id="8756167649220050929"> | 8754 | <trans-unit id="8756167649220050929"> |
8459 | <source>Lists</source> | 8755 | <source>Lists</source> |
8460 | <target>Lists</target> | 8756 | <target>Lists</target> |
8461 | 8757 | ||
8462 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">80</context></context-group></trans-unit> | 8758 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">84</context></context-group></trans-unit> |
8463 | <trans-unit id="414887388288176527"> | 8759 | <trans-unit id="414887388288176527"> |
8464 | <source>Images</source> | 8760 | <source>Images</source> |
8465 | <target>Images</target> | 8761 | <target>Images</target> |
8466 | 8762 | ||
8467 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> | 8763 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">85</context></context-group></trans-unit> |
8468 | <trans-unit id="5708680277917691451"> | 8764 | <trans-unit id="5708680277917691451"> |
8469 | <source> | 8765 | <source> |
8470 | <x id="PH"/> users banned. | 8766 | <x id="PH"/> users banned. |
@@ -8860,7 +9156,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8860 | <source>Moderator</source> | 9156 | <source>Moderator</source> |
8861 | <target>Moderator</target> | 9157 | <target>Moderator</target> |
8862 | 9158 | ||
8863 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">386</context></context-group></trans-unit> | 9159 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">384</context></context-group></trans-unit> |
8864 | <trans-unit id="3723085768598852106" datatype="html"> | 9160 | <trans-unit id="3723085768598852106" datatype="html"> |
8865 | <source>Video removed from | 9161 | <source>Video removed from |
8866 | <x id="PH"/> | 9162 | <x id="PH"/> |
@@ -8933,7 +9229,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8933 | <source>Do you really want to delete this comment?</source> | 9229 | <source>Do you really want to delete this comment?</source> |
8934 | <target state="new">Do you really want to delete this comment?</target> | 9230 | <target state="new">Do you really want to delete this comment?</target> |
8935 | 9231 | ||
8936 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">434</context></context-group></trans-unit> | 9232 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">166</context></context-group></trans-unit> |
8937 | <trans-unit id="7837272126865175984" datatype="html"> | 9233 | <trans-unit id="7837272126865175984" datatype="html"> |
8938 | <source>Comment deleted.</source> | 9234 | <source>Comment deleted.</source> |
8939 | <target state="new">Comment deleted.</target> | 9235 | <target state="new">Comment deleted.</target> |
@@ -9045,9 +9341,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9045 | 9341 | ||
9046 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> | 9342 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> |
9047 | <source>Report</source><target state="new">Report</target> | 9343 | <source>Report</source><target state="new">Report</target> |
9344 | |||
9345 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="4814285799071780083" datatype="html"> | ||
9346 | <source>Remove</source><target state="new">Remove</target> | ||
9048 | <context-group purpose="location"> | 9347 | <context-group purpose="location"> |
9049 | <context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> | 9348 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> |
9050 | <context context-type="linenumber">286</context> | 9349 | <context context-type="linenumber">179</context> |
9350 | </context-group> | ||
9351 | </trans-unit><trans-unit id="6871668720687277843" datatype="html"> | ||
9352 | <source>Remove & re-draft</source><target state="new">Remove & re-draft</target> | ||
9353 | <context-group purpose="location"> | ||
9354 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> | ||
9355 | <context context-type="linenumber">187</context> | ||
9051 | </context-group> | 9356 | </context-group> |
9052 | </trans-unit> | 9357 | </trans-unit> |
9053 | <trans-unit id="4903651219400691248" datatype="html"> | 9358 | <trans-unit id="4903651219400691248" datatype="html"> |
@@ -9151,22 +9456,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9151 | <source>Only I can see this video</source> | 9456 | <source>Only I can see this video</source> |
9152 | <target>Only I can see this video</target> | 9457 | <target>Only I can see this video</target> |
9153 | 9458 | ||
9154 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">340</context></context-group></trans-unit> | 9459 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">341</context></context-group></trans-unit> |
9155 | <trans-unit id="6767380569816110388" datatype="html"> | 9460 | <trans-unit id="6767380569816110388" datatype="html"> |
9156 | <source>Only shareable via a private link</source> | 9461 | <source>Only shareable via a private link</source> |
9157 | <target state="new">Only shareable via a private link</target> | 9462 | <target state="new">Only shareable via a private link</target> |
9158 | 9463 | ||
9159 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">344</context></context-group></trans-unit> | 9464 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">345</context></context-group></trans-unit> |
9160 | <trans-unit id="6828965264297239528"> | 9465 | <trans-unit id="6828965264297239528"> |
9161 | <source>Anyone can see this video</source> | 9466 | <source>Anyone can see this video</source> |
9162 | <target>Anyone can see this video</target> | 9467 | <target>Anyone can see this video</target> |
9163 | 9468 | ||
9164 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">348</context></context-group></trans-unit> | 9469 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">349</context></context-group></trans-unit> |
9165 | <trans-unit id="1425933035739773115" datatype="html"> | 9470 | <trans-unit id="1425933035739773115" datatype="html"> |
9166 | <source>Only users of this instance can see this video</source> | 9471 | <source>Only users of this instance can see this video</source> |
9167 | <target state="new">Only users of this instance can see this video</target> | 9472 | <target state="new">Only users of this instance can see this video</target> |
9168 | 9473 | ||
9169 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">352</context></context-group></trans-unit> | 9474 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">353</context></context-group></trans-unit> |
9170 | <trans-unit id="5210096066382592800"> | 9475 | <trans-unit id="5210096066382592800"> |
9171 | <source>Video to import updated.</source> | 9476 | <source>Video to import updated.</source> |
9172 | <target>Video to import updated.</target> | 9477 | <target>Video to import updated.</target> |
@@ -9246,16 +9551,25 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9246 | <target state="new">Report comment</target> | 9551 | <target state="new">Report comment</target> |
9247 | 9552 | ||
9248 | 9553 | ||
9249 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 9554 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/report-modals/comment-report.component.ts</context><context context-type="linenumber">51</context></context-group></trans-unit> |
9250 | <trans-unit id="3691787517663044217" datatype="html"> | 9555 | <trans-unit id="3691787517663044217" datatype="html"> |
9251 | <source> The deletion will be sent to remote instances so they can reflect the change.</source> | 9556 | <source> The deletion will be sent to remote instances so they can reflect the change.</source> |
9252 | <target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> | 9557 | <target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> |
9253 | 9558 | ||
9254 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">163</context></context-group></trans-unit><trans-unit id="7321800851971795962" datatype="html"> | 9559 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">169</context></context-group></trans-unit><trans-unit id="7321800851971795962" datatype="html"> |
9255 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source><target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> | 9560 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source><target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> |
9561 | |||
9562 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="5964038603724691720" datatype="html"> | ||
9563 | <source>Delete and re-draft</source><target state="new">Delete and re-draft</target> | ||
9256 | <context-group purpose="location"> | 9564 | <context-group purpose="location"> |
9257 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | 9565 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> |
9258 | <context context-type="linenumber">165</context> | 9566 | <context context-type="linenumber">197</context> |
9567 | </context-group> | ||
9568 | </trans-unit><trans-unit id="7163633882758007711" datatype="html"> | ||
9569 | <source>Do you really want to delete and re-draft this comment?</source><target state="new">Do you really want to delete and re-draft this comment?</target> | ||
9570 | <context-group purpose="location"> | ||
9571 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | ||
9572 | <context context-type="linenumber">197</context> | ||
9259 | </context-group> | 9573 | </context-group> |
9260 | </trans-unit> | 9574 | </trans-unit> |
9261 | 9575 | ||
@@ -9420,6 +9734,36 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9420 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> | 9734 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> |
9421 | <context context-type="linenumber">36</context> | 9735 | <context context-type="linenumber">36</context> |
9422 | </context-group> | 9736 | </context-group> |
9737 | </trans-unit><trans-unit id="4668975178372693951" datatype="html"> | ||
9738 | <source>Discover videos</source><target state="new">Discover videos</target> | ||
9739 | <context-group purpose="location"> | ||
9740 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9741 | <context context-type="linenumber">23</context> | ||
9742 | </context-group> | ||
9743 | </trans-unit><trans-unit id="8067135025051844577" datatype="html"> | ||
9744 | <source>Trending videos</source><target state="new">Trending videos</target> | ||
9745 | <context-group purpose="location"> | ||
9746 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9747 | <context context-type="linenumber">32</context> | ||
9748 | </context-group> | ||
9749 | </trans-unit><trans-unit id="664221386829541948" datatype="html"> | ||
9750 | <source>Recently added videos</source><target state="new">Recently added videos</target> | ||
9751 | <context-group purpose="location"> | ||
9752 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9753 | <context context-type="linenumber">58</context> | ||
9754 | </context-group> | ||
9755 | </trans-unit><trans-unit id="8212906256415538361" datatype="html"> | ||
9756 | <source>Upload a video</source><target state="new">Upload a video</target> | ||
9757 | <context-group purpose="location"> | ||
9758 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9759 | <context context-type="linenumber">97</context> | ||
9760 | </context-group> | ||
9761 | </trans-unit><trans-unit id="7590784934397800835" datatype="html"> | ||
9762 | <source>Edit a video</source><target state="new">Edit a video</target> | ||
9763 | <context-group purpose="location"> | ||
9764 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9765 | <context context-type="linenumber">106</context> | ||
9766 | </context-group> | ||
9423 | </trans-unit> | 9767 | </trans-unit> |
9424 | </body> | 9768 | </body> |
9425 | </file> | 9769 | </file> |
diff --git a/client/src/locale/angular.en-US.xlf b/client/src/locale/angular.en-US.xlf index 27955dea3..9d8f36c11 100644 --- a/client/src/locale/angular.en-US.xlf +++ b/client/src/locale/angular.en-US.xlf | |||
@@ -198,7 +198,7 @@ | |||
198 | <target>Options</target> | 198 | <target>Options</target> |
199 | 199 | ||
200 | 200 | ||
201 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 201 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">48</context></context-group></trans-unit> |
202 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d"> | 202 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d"> |
203 | <source>Start at</source> | 203 | <source>Start at</source> |
204 | <target>Start at</target> | 204 | <target>Start at</target> |
@@ -323,7 +323,7 @@ | |||
323 | Cancel | 323 | Cancel |
324 | </target> | 324 | </target> |
325 | 325 | ||
326 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> | 326 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit> |
327 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd"> | 327 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd"> |
328 | <source>Download</source> | 328 | <source>Download</source> |
329 | <target>Download</target> | 329 | <target>Download</target> |
@@ -434,7 +434,7 @@ | |||
434 | 434 | ||
435 | 435 | ||
436 | 436 | ||
437 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 437 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
438 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc"> | 438 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc"> |
439 | <source>Edit starts/stops at</source> | 439 | <source>Edit starts/stops at</source> |
440 | <target>Edit starts/stops at</target> | 440 | <target>Edit starts/stops at</target> |
@@ -472,7 +472,7 @@ | |||
472 | 472 | ||
473 | 473 | ||
474 | 474 | ||
475 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> | 475 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
476 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c" datatype="html"> | 476 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c" datatype="html"> |
477 | <source>Edit</source> | 477 | <source>Edit</source> |
478 | <target state="final">Edit</target> | 478 | <target state="final">Edit</target> |
@@ -497,17 +497,10 @@ | |||
497 | <target state="final">Complete preview</target> | 497 | <target state="final">Complete preview</target> |
498 | 498 | ||
499 | <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></trans-unit> | 499 | <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></trans-unit> |
500 | <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f" datatype="html"> | 500 | <trans-unit id="8644431249513874405" datatype="html"> |
501 | <source>Get help</source> | ||
502 | <target state="final">Get help</target> | ||
503 | |||
504 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit><trans-unit id="8644431249513874405" datatype="html"> | ||
505 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="final"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> | 501 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="final"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> |
506 | <context-group purpose="location"> | 502 | |
507 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 503 | <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></trans-unit> |
508 | <context context-type="linenumber">71</context> | ||
509 | </context-group> | ||
510 | </trans-unit> | ||
511 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> | 504 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> |
512 | <source>Recommended</source> | 505 | <source>Recommended</source> |
513 | <target state="final">Recommended</target> | 506 | <target state="final">Recommended</target> |
@@ -547,7 +540,7 @@ | |||
547 | <source>PROFILE SETTINGS</source> | 540 | <source>PROFILE SETTINGS</source> |
548 | <target state="final">PROFILE SETTINGS</target> | 541 | <target state="final">PROFILE SETTINGS</target> |
549 | 542 | ||
550 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 543 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">12</context></context-group></trans-unit> |
551 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3" datatype="html"> | 544 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3" datatype="html"> |
552 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> | 545 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> |
553 | <target state="final"><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></target> | 546 | <target state="final"><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></target> |
@@ -692,11 +685,8 @@ | |||
692 | 685 | ||
693 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> | 686 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> |
694 | <source>User</source><target state="final">User</target> | 687 | <source>User</source><target state="final">User</target> |
695 | <context-group purpose="location"> | 688 | |
696 | <context context-type="sourcefile">../app/core/users/user.service.ts</context> | 689 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit> |
697 | <context context-type="linenumber">384</context> | ||
698 | </context-group> | ||
699 | </trans-unit> | ||
700 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0" datatype="html"> | 690 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0" datatype="html"> |
701 | <source>Ban</source> | 691 | <source>Ban</source> |
702 | <target state="final">Ban</target> | 692 | <target state="final">Ban</target> |
@@ -1111,87 +1101,87 @@ The link will expire within 1 hour.</target> | |||
1111 | <source>Account settings</source> | 1101 | <source>Account settings</source> |
1112 | <target state="final">Account settings</target> | 1102 | <target state="final">Account settings</target> |
1113 | 1103 | ||
1114 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 1104 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
1115 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> | 1105 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> |
1116 | <source>Channels settings</source> | 1106 | <source>Channels settings</source> |
1117 | <target state="final">Channels settings</target> | 1107 | <target state="final">Channels settings</target> |
1118 | 1108 | ||
1119 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 1109 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> |
1120 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> | 1110 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> |
1121 | <source>Interface:</source> | 1111 | <source>Interface:</source> |
1122 | <target state="final">Interface:</target> | 1112 | <target state="final">Interface:</target> |
1123 | 1113 | ||
1124 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 1114 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1125 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> | 1115 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> |
1126 | <source>Videos:</source> | 1116 | <source>Videos:</source> |
1127 | <target state="final">Videos:</target> | 1117 | <target state="final">Videos:</target> |
1128 | 1118 | ||
1129 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 1119 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> |
1130 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> | 1120 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> |
1131 | <source>Sensitive:</source> | 1121 | <source>Sensitive:</source> |
1132 | <target state="final">Sensitive:</target> | 1122 | <target state="final">Sensitive:</target> |
1133 | 1123 | ||
1134 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 1124 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">54</context></context-group></trans-unit> |
1135 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1125 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> |
1136 | <source>Interface: <x id="INTERPOLATION"/></source> | 1126 | <source>Interface: <x id="INTERPOLATION"/></source> |
1137 | <target state="final">Interface: <x id="INTERPOLATION"/></target> | 1127 | <target state="final">Interface: <x id="INTERPOLATION"/></target> |
1138 | 1128 | ||
1139 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">156</context></context-group></trans-unit> | 1129 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> |
1140 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1130 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1141 | <source>Help share videos</source> | 1131 | <source>Help share videos</source> |
1142 | <target state="final">Help share videos</target> | 1132 | <target state="final">Help share videos</target> |
1143 | 1133 | ||
1144 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> | 1134 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
1145 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> | 1135 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> |
1146 | <source>More account settings</source> | 1136 | <source>More account settings</source> |
1147 | <target state="final">More account settings</target> | 1137 | <target state="final">More account settings</target> |
1148 | 1138 | ||
1149 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> | 1139 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> |
1150 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> | 1140 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> |
1151 | <source>Keyboard shortcuts</source> | 1141 | <source>Keyboard shortcuts</source> |
1152 | <target state="final">Keyboard shortcuts</target> | 1142 | <target state="final">Keyboard shortcuts</target> |
1153 | 1143 | ||
1154 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 1144 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">72</context></context-group></trans-unit> |
1155 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> | 1145 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> |
1156 | <source>Help</source> | 1146 | <source>Help</source> |
1157 | <target state="final">Help</target> | 1147 | <target state="final">Help</target> |
1158 | 1148 | ||
1159 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1149 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1160 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> | 1150 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> |
1161 | <source>Get help using PeerTube</source> | 1151 | <source>Get help using PeerTube</source> |
1162 | <target state="final">Get help using PeerTube</target> | 1152 | <target state="final">Get help using PeerTube</target> |
1163 | 1153 | ||
1164 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">161</context></context-group></trans-unit> | 1154 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">167</context></context-group></trans-unit> |
1165 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> | 1155 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> |
1166 | <source>Shortcuts</source> | 1156 | <source>Shortcuts</source> |
1167 | <target state="final">Shortcuts</target> | 1157 | <target state="final">Shortcuts</target> |
1168 | 1158 | ||
1169 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1159 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1170 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> | 1160 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> |
1171 | <source>powered by PeerTube</source> | 1161 | <source>powered by PeerTube</source> |
1172 | <target state="final">powered by PeerTube</target> | 1162 | <target state="final">powered by PeerTube</target> |
1173 | 1163 | ||
1174 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | 1164 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">177</context></context-group></trans-unit> |
1175 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> | 1165 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> |
1176 | <source>powered by PeerTube - CopyLeft 2015-2020</source> | 1166 | <source>powered by PeerTube - CopyLeft 2015-2020</source> |
1177 | <target state="final">powered by PeerTube - CopyLeft 2015-2020</target> | 1167 | <target state="final">powered by PeerTube - CopyLeft 2015-2020</target> |
1178 | 1168 | ||
1179 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> | 1169 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">176</context></context-group></trans-unit> |
1180 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344" datatype="html"> | 1170 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344" datatype="html"> |
1181 | <source>Log out</source> | 1171 | <source>Log out</source> |
1182 | <target state="final">Log out</target> | 1172 | <target state="final">Log out</target> |
1183 | 1173 | ||
1184 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">70</context></context-group></trans-unit> | 1174 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit> |
1185 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87" datatype="html"> | 1175 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87" datatype="html"> |
1186 | <source>Create an account</source> | 1176 | <source>Create an account</source> |
1187 | <target state="final">Create an account</target> | 1177 | <target state="final">Create an account</target> |
1188 | 1178 | ||
1189 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">78</context></context-group></trans-unit> | 1179 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
1190 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> | 1180 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> |
1191 | <source>MY LIBRARY</source> | 1181 | <source>MY LIBRARY</source> |
1192 | <target state="final">MY LIBRARY</target> | 1182 | <target state="final">MY LIBRARY</target> |
1193 | 1183 | ||
1194 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 1184 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">88</context></context-group></trans-unit> |
1195 | <trans-unit id="6371572688505952303" datatype="html"> | 1185 | <trans-unit id="6371572688505952303" datatype="html"> |
1196 | <source>My library</source> | 1186 | <source>My library</source> |
1197 | <target state="final">My library</target> | 1187 | <target state="final">My library</target> |
@@ -1231,22 +1221,22 @@ The link will expire within 1 hour.</target> | |||
1231 | <source>Videos</source> | 1221 | <source>Videos</source> |
1232 | <target state="final">Videos</target> | 1222 | <target state="final">Videos</target> |
1233 | 1223 | ||
1234 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">86</context></context-group></trans-unit> | 1224 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">92</context></context-group></trans-unit> |
1235 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> | 1225 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> |
1236 | <source>Playlists</source> | 1226 | <source>Playlists</source> |
1237 | <target state="final">Playlists</target> | 1227 | <target state="final">Playlists</target> |
1238 | 1228 | ||
1239 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">91</context></context-group></trans-unit> | 1229 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">97</context></context-group></trans-unit> |
1240 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2" datatype="html"> | 1230 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2" datatype="html"> |
1241 | <source>Subscriptions</source> | 1231 | <source>Subscriptions</source> |
1242 | <target state="final">Subscriptions</target> | 1232 | <target state="final">Subscriptions</target> |
1243 | 1233 | ||
1244 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 1234 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">102</context></context-group></trans-unit> |
1245 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8" datatype="html"> | 1235 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8" datatype="html"> |
1246 | <source>History</source> | 1236 | <source>History</source> |
1247 | <target state="final">History</target> | 1237 | <target state="final">History</target> |
1248 | 1238 | ||
1249 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit> | 1239 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">107</context></context-group></trans-unit> |
1250 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> | 1240 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> |
1251 | <source>VIDEOS</source> | 1241 | <source>VIDEOS</source> |
1252 | <target state="final">VIDEOS</target> | 1242 | <target state="final">VIDEOS</target> |
@@ -1258,27 +1248,27 @@ The link will expire within 1 hour.</target> | |||
1258 | <target state="final">Discover</target> | 1248 | <target state="final">Discover</target> |
1259 | 1249 | ||
1260 | 1250 | ||
1261 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">111</context></context-group></trans-unit> | 1251 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">117</context></context-group></trans-unit> |
1262 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807" datatype="html"> | 1252 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807" datatype="html"> |
1263 | <source>Trending</source> | 1253 | <source>Trending</source> |
1264 | <target state="final">Trending</target> | 1254 | <target state="final">Trending</target> |
1265 | 1255 | ||
1266 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">116</context></context-group></trans-unit> | 1256 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">122</context></context-group></trans-unit> |
1267 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> | 1257 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> |
1268 | <source>Most liked</source> | 1258 | <source>Most liked</source> |
1269 | <target state="final">Most liked</target> | 1259 | <target state="final">Most liked</target> |
1270 | 1260 | ||
1271 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">121</context></context-group></trans-unit> | 1261 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">127</context></context-group></trans-unit> |
1272 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1" datatype="html"> | 1262 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1" datatype="html"> |
1273 | <source>Recently added</source> | 1263 | <source>Recently added</source> |
1274 | <target state="final">Recently added</target> | 1264 | <target state="final">Recently added</target> |
1275 | 1265 | ||
1276 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">126</context></context-group></trans-unit> | 1266 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">132</context></context-group></trans-unit> |
1277 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919" datatype="html"> | 1267 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919" datatype="html"> |
1278 | <source>Administration</source> | 1268 | <source>Administration</source> |
1279 | <target state="final">Administration</target> | 1269 | <target state="final">Administration</target> |
1280 | 1270 | ||
1281 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">140</context></context-group></trans-unit> | 1271 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">146</context></context-group></trans-unit> |
1282 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a" datatype="html"> | 1272 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a" datatype="html"> |
1283 | <source>About</source> | 1273 | <source>About</source> |
1284 | <target state="final">About</target> | 1274 | <target state="final">About</target> |
@@ -1289,7 +1279,7 @@ The link will expire within 1 hour.</target> | |||
1289 | <source>Contact</source> | 1279 | <source>Contact</source> |
1290 | <target state="final">Contact</target> | 1280 | <target state="final">Contact</target> |
1291 | 1281 | ||
1292 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">160</context></context-group></trans-unit> | 1282 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">166</context></context-group></trans-unit> |
1293 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771" datatype="html"> | 1283 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771" datatype="html"> |
1294 | <source>View your notifications</source> | 1284 | <source>View your notifications</source> |
1295 | <target state="final">View your notifications</target> | 1285 | <target state="final">View your notifications</target> |
@@ -1316,7 +1306,7 @@ The link will expire within 1 hour.</target> | |||
1316 | <source>See all your notifications</source> | 1306 | <source>See all your notifications</source> |
1317 | <target state="final">See all your notifications</target> | 1307 | <target state="final">See all your notifications</target> |
1318 | 1308 | ||
1319 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 1309 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">40</context></context-group></trans-unit> |
1320 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> | 1310 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> |
1321 | <source>Search videos, channels…</source> | 1311 | <source>Search videos, channels…</source> |
1322 | <target state="final">Search videos, channels…</target> | 1312 | <target state="final">Search videos, channels…</target> |
@@ -1645,22 +1635,22 @@ The link will expire within 1 hour.</target> | |||
1645 | <source>FAQ</source> | 1635 | <source>FAQ</source> |
1646 | <target state="final">FAQ</target> | 1636 | <target state="final">FAQ</target> |
1647 | 1637 | ||
1648 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">163</context></context-group></trans-unit> | 1638 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
1649 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> | 1639 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> |
1650 | <source>Frequently asked questions about PeerTube</source> | 1640 | <source>Frequently asked questions about PeerTube</source> |
1651 | <target state="final">Frequently asked questions about PeerTube</target> | 1641 | <target state="final">Frequently asked questions about PeerTube</target> |
1652 | 1642 | ||
1653 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1643 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1654 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> | 1644 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> |
1655 | <source>API</source> | 1645 | <source>API</source> |
1656 | <target state="final">API</target> | 1646 | <target state="final">API</target> |
1657 | 1647 | ||
1658 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1648 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1659 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> | 1649 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> |
1660 | <source>API documentation</source> | 1650 | <source>API documentation</source> |
1661 | <target state="final">API documentation</target> | 1651 | <target state="final">API documentation</target> |
1662 | 1652 | ||
1663 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 1653 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
1664 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5" datatype="html"> | 1654 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5" datatype="html"> |
1665 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> | 1655 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> |
1666 | <target state="final">Schedule publication (<x id="INTERPOLATION"/>)</target> | 1656 | <target state="final">Schedule publication (<x id="INTERPOLATION"/>)</target> |
@@ -2020,7 +2010,13 @@ The link will expire within 1 hour.</target> | |||
2020 | Less customization | 2010 | Less customization |
2021 | </target> | 2011 | </target> |
2022 | 2012 | ||
2023 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit> | 2013 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit><trans-unit id="2454050363478003966" datatype="html"> |
2014 | <source>Login</source><target state="final">Login</target> | ||
2015 | <context-group purpose="location"> | ||
2016 | <context context-type="sourcefile">../app/+login/login-routing.module.ts</context> | ||
2017 | <context context-type="linenumber">14</context> | ||
2018 | </context-group> | ||
2019 | </trans-unit> | ||
2024 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e" datatype="html"> | 2020 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e" datatype="html"> |
2025 | <source>Autoplay</source> | 2021 | <source>Autoplay</source> |
2026 | <target state="final">Autoplay</target> | 2022 | <target state="final">Autoplay</target> |
@@ -2269,65 +2265,141 @@ The link will expire within 1 hour.</target> | |||
2269 | <source>No comments.</source> | 2265 | <source>No comments.</source> |
2270 | <target state="final">No comments.</target> | 2266 | <target state="final">No comments.</target> |
2271 | 2267 | ||
2272 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 2268 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> |
2273 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> | 2269 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> |
2274 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> | 2270 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> |
2275 | <target state="final"> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </target> | 2271 | <target state="final"> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </target> |
2276 | 2272 | ||
2277 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">79</context></context-group></trans-unit> | 2273 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
2278 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> | 2274 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> |
2279 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> | 2275 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> |
2280 | <target state="final"> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </target> | 2276 | <target state="final"> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </target> |
2281 | 2277 | ||
2282 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 2278 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">87</context></context-group></trans-unit> |
2283 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> | 2279 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> |
2284 | <source>View <x id="INTERPOLATION"/> replies</source> | 2280 | <source>View <x id="INTERPOLATION"/> replies</source> |
2285 | <target state="final">View <x id="INTERPOLATION"/> replies</target> | 2281 | <target state="final">View <x id="INTERPOLATION"/> replies</target> |
2286 | 2282 | ||
2287 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">85</context></context-group></trans-unit> | 2283 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">90</context></context-group></trans-unit> |
2288 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828" datatype="html"> | 2284 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828" datatype="html"> |
2289 | <source>Comments are disabled.</source> | 2285 | <source>Comments are disabled.</source> |
2290 | <target state="final"> | 2286 | <target state="final"> |
2291 | Comments are disabled. | 2287 | Comments are disabled. |
2292 | </target> | 2288 | </target> |
2293 | 2289 | ||
2294 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 2290 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit> |
2295 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e" datatype="html"> | 2291 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e" datatype="html"> |
2296 | <source>Add comment...</source> | 2292 | <source>Add comment...</source> |
2297 | <target state="final">Add comment...</target> | 2293 | <target state="final">Add comment...</target> |
2298 | 2294 | ||
2299 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | 2295 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit><trans-unit id="4e5254dedf0c12ce7e7c2197384fceebe3b29a2b" datatype="html"> |
2300 | <trans-unit id="8956c0f4c6974289fc63f1ab6b54f5b32ed65eeb" datatype="html"> | 2296 | <source>Markdown compatible</source><target state="final">Markdown compatible</target> |
2301 | <source> | 2297 | <context-group purpose="location"> |
2302 | Reply | 2298 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> |
2303 | </source> | 2299 | <context context-type="linenumber">13</context> |
2304 | <target state="final"> | 2300 | </context-group> |
2305 | Reply | 2301 | </trans-unit><trans-unit id="4739ffad85f09defefdb6e51b45f43b2ef7c4388" datatype="html"> |
2306 | </target> | 2302 | <source>Markdown compatible that supports:</source><target state="final">Markdown compatible that supports:</target> |
2307 | 2303 | <context-group purpose="location"> | |
2308 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 2304 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> |
2305 | <context context-type="linenumber">15</context> | ||
2306 | </context-group> | ||
2307 | </trans-unit><trans-unit id="9a53b17a021bb0677c156fd893461797fc497a10" datatype="html"> | ||
2308 | <source>Auto generated links</source><target state="final">Auto generated links</target> | ||
2309 | <context-group purpose="location"> | ||
2310 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2311 | <context context-type="linenumber">18</context> | ||
2312 | </context-group> | ||
2313 | </trans-unit><trans-unit id="664f99b8919d6dd2faa1c1f7c378aa86d1be5e8a" datatype="html"> | ||
2314 | <source>Break lines</source><target state="final">Break lines</target> | ||
2315 | <context-group purpose="location"> | ||
2316 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2317 | <context context-type="linenumber">19</context> | ||
2318 | </context-group> | ||
2319 | </trans-unit><trans-unit id="b15e7bec5c7833d2d9634946ccbed68967b1bee1" datatype="html"> | ||
2320 | <source>Lists</source><target state="final">Lists</target> | ||
2321 | <context-group purpose="location"> | ||
2322 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2323 | <context context-type="linenumber">20</context> | ||
2324 | </context-group> | ||
2325 | </trans-unit><trans-unit id="ab4426b60f13c00b61d6b714d390dc629f314980" datatype="html"> | ||
2326 | <source>Emphasis</source><target state="final">Emphasis</target> | ||
2327 | <context-group purpose="location"> | ||
2328 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2329 | <context context-type="linenumber">22</context> | ||
2330 | </context-group> | ||
2331 | </trans-unit><trans-unit id="4e13b179501d3d32721037e03b4c04acb9857c5f" datatype="html"> | ||
2332 | <source>bold</source><target state="final">bold</target> | ||
2333 | <context-group purpose="location"> | ||
2334 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2335 | <context context-type="linenumber">23</context> | ||
2336 | </context-group> | ||
2337 | </trans-unit><trans-unit id="3c12190421fbb2756e6bbead923df9ec5de8ede2" datatype="html"> | ||
2338 | <source>italic</source><target state="final">italic</target> | ||
2339 | <context-group purpose="location"> | ||
2340 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2341 | <context context-type="linenumber">23</context> | ||
2342 | </context-group> | ||
2343 | </trans-unit><trans-unit id="adb4bbdcb961b8aac8298d6cac554d9b25636b7a" datatype="html"> | ||
2344 | <source>Emoji shortcuts</source><target state="final">Emoji shortcuts</target> | ||
2345 | <context-group purpose="location"> | ||
2346 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2347 | <context context-type="linenumber">26</context> | ||
2348 | </context-group> | ||
2349 | </trans-unit><trans-unit id="b9809a21a8eb3c9db2a0282c5dd94bc221575c96" datatype="html"> | ||
2350 | <source>Emoji markup</source><target state="final">Emoji markup</target> | ||
2351 | <context-group purpose="location"> | ||
2352 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2353 | <context context-type="linenumber">30</context> | ||
2354 | </context-group> | ||
2355 | </trans-unit><trans-unit id="f37feb427aaa551edd1f22616be6464bc0d492de" datatype="html"> | ||
2356 | <source>See complete list</source><target state="final">See complete list</target> | ||
2357 | <context-group purpose="location"> | ||
2358 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2359 | <context context-type="linenumber">32</context> | ||
2360 | </context-group> | ||
2361 | </trans-unit> | ||
2362 | |||
2309 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135" datatype="html"> | 2363 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135" datatype="html"> |
2310 | <source>You are one step away from commenting</source> | 2364 | <source>You are one step away from commenting</source> |
2311 | <target state="final">You are one step away from commenting</target> | 2365 | <target state="final">You are one step away from commenting</target> |
2312 | 2366 | ||
2313 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 2367 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
2314 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> | 2368 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> |
2315 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> | 2369 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> |
2316 | <target state="final"> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </target> | 2370 | <target state="final"> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </target> |
2317 | 2371 | ||
2318 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 2372 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
2319 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb" datatype="html"> | 2373 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb" datatype="html"> |
2320 | <source>If you have an account on Mastodon or Pleroma, you can open it directly in their interface:</source> | 2374 | <source>If you have an account on Mastodon or Pleroma, you can open it directly in their interface:</source> |
2321 | <target state="final"> | 2375 | <target state="final"> |
2322 | If you have an account on Mastodon or Pleroma, you can open it directly in their interface: | 2376 | If you have an account on Mastodon or Pleroma, you can open it directly in their interface: |
2323 | </target> | 2377 | </target> |
2324 | 2378 | ||
2325 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">41</context></context-group></trans-unit> | 2379 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">65</context></context-group></trans-unit> |
2326 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> | 2380 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> |
2327 | <source>Login to comment</source> | 2381 | <source>Login to comment</source> |
2328 | <target state="final">Login to comment</target> | 2382 | <target state="final">Login to comment</target> |
2329 | 2383 | ||
2330 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">52</context></context-group></trans-unit> | 2384 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit><trans-unit id="974170f455ff5a9034d5737e84b4194c0046fc6b" datatype="html"> |
2385 | <source>Markdown Emoji List</source><target state="final">Markdown Emoji List</target> | ||
2386 | <context-group purpose="location"> | ||
2387 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2388 | <context context-type="linenumber">84</context> | ||
2389 | </context-group> | ||
2390 | </trans-unit><trans-unit id="2662644497259948010" datatype="html"> | ||
2391 | <source>Comment</source><target state="final">Comment</target> | ||
2392 | <context-group purpose="location"> | ||
2393 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2394 | <context context-type="linenumber">58</context> | ||
2395 | </context-group> | ||
2396 | </trans-unit><trans-unit id="4502286564339177240" datatype="html"> | ||
2397 | <source>Reply</source><target state="final">Reply</target> | ||
2398 | <context-group purpose="location"> | ||
2399 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2400 | <context context-type="linenumber">60</context> | ||
2401 | </context-group> | ||
2402 | </trans-unit> | ||
2331 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285" datatype="html"> | 2403 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285" datatype="html"> |
2332 | <source>Highlighted comment</source> | 2404 | <source>Highlighted comment</source> |
2333 | <target state="final">Highlighted comment</target> | 2405 | <target state="final">Highlighted comment</target> |
@@ -2342,7 +2414,7 @@ The link will expire within 1 hour.</target> | |||
2342 | <source>This comment has been deleted</source> | 2414 | <source>This comment has been deleted</source> |
2343 | <target state="final">This comment has been deleted</target> | 2415 | <target state="final">This comment has been deleted</target> |
2344 | 2416 | ||
2345 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">62</context></context-group></trans-unit> | 2417 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">61</context></context-group></trans-unit> |
2346 | <trans-unit id="9031514421077169181" datatype="html"> | 2418 | <trans-unit id="9031514421077169181" datatype="html"> |
2347 | <source>Video redundancies</source> | 2419 | <source>Video redundancies</source> |
2348 | <target state="final">Video redundancies</target> | 2420 | <target state="final">Video redundancies</target> |
@@ -3122,7 +3194,25 @@ The link will expire within 1 hour.</target> | |||
3122 | <target state="final">No account found.</target> | 3194 | <target state="final">No account found.</target> |
3123 | 3195 | ||
3124 | 3196 | ||
3125 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit> | 3197 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit><trans-unit id="2338185419645468935" datatype="html"> |
3198 | <source>List installed plugins</source><target state="final">List installed plugins</target> | ||
3199 | <context-group purpose="location"> | ||
3200 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3201 | <context context-type="linenumber">28</context> | ||
3202 | </context-group> | ||
3203 | </trans-unit><trans-unit id="8897412584195581488" datatype="html"> | ||
3204 | <source>Search plugins</source><target state="final">Search plugins</target> | ||
3205 | <context-group purpose="location"> | ||
3206 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3207 | <context context-type="linenumber">37</context> | ||
3208 | </context-group> | ||
3209 | </trans-unit><trans-unit id="4994333937800672218" datatype="html"> | ||
3210 | <source>Show plugin</source><target state="final">Show plugin</target> | ||
3211 | <context-group purpose="location"> | ||
3212 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3213 | <context context-type="linenumber">46</context> | ||
3214 | </context-group> | ||
3215 | </trans-unit> | ||
3126 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> | 3216 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> |
3127 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> | 3217 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> |
3128 | <target state="final">Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</target> | 3218 | <target state="final">Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</target> |
@@ -3780,7 +3870,7 @@ The link will expire within 1 hour.</target> | |||
3780 | <source>Administrator</source> | 3870 | <source>Administrator</source> |
3781 | <target state="final">Administrator</target> | 3871 | <target state="final">Administrator</target> |
3782 | 3872 | ||
3783 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">385</context></context-group></trans-unit> | 3873 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">383</context></context-group></trans-unit> |
3784 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587" datatype="html"> | 3874 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587" datatype="html"> |
3785 | <source>Admin email</source> | 3875 | <source>Admin email</source> |
3786 | <target state="final">Admin email</target> | 3876 | <target state="final">Admin email</target> |
@@ -3984,27 +4074,27 @@ The link will expire within 1 hour.</target> | |||
3984 | <source>VIDEO SETTINGS</source> | 4074 | <source>VIDEO SETTINGS</source> |
3985 | <target state="final">VIDEO SETTINGS</target> | 4075 | <target state="final">VIDEO SETTINGS</target> |
3986 | 4076 | ||
3987 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit> | 4077 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
3988 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> | 4078 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> |
3989 | <source>NOTIFICATIONS</source> | 4079 | <source>NOTIFICATIONS</source> |
3990 | <target state="final">NOTIFICATIONS</target> | 4080 | <target state="final">NOTIFICATIONS</target> |
3991 | 4081 | ||
3992 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 4082 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">37</context></context-group></trans-unit> |
3993 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> | 4083 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> |
3994 | <source>INTERFACE</source> | 4084 | <source>INTERFACE</source> |
3995 | <target state="final">INTERFACE</target> | 4085 | <target state="final">INTERFACE</target> |
3996 | 4086 | ||
3997 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 4087 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit> |
3998 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> | 4088 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> |
3999 | <source>PASSWORD</source> | 4089 | <source>PASSWORD</source> |
4000 | <target state="final">PASSWORD</target> | 4090 | <target state="final">PASSWORD</target> |
4001 | 4091 | ||
4002 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">59</context></context-group></trans-unit> | 4092 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">57</context></context-group></trans-unit> |
4003 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> | 4093 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> |
4004 | <source>EMAIL</source> | 4094 | <source>EMAIL</source> |
4005 | <target state="final">EMAIL</target> | 4095 | <target state="final">EMAIL</target> |
4006 | 4096 | ||
4007 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">69</context></context-group></trans-unit> | 4097 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">67</context></context-group></trans-unit> |
4008 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> | 4098 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> |
4009 | <source>DANGER ZONE</source> | 4099 | <source>DANGER ZONE</source> |
4010 | <target state="final">DANGER ZONE</target> | 4100 | <target state="final">DANGER ZONE</target> |
@@ -4233,7 +4323,31 @@ The link will expire within 1 hour.</target> | |||
4233 | <source>No ownership change request found.</source> | 4323 | <source>No ownership change request found.</source> |
4234 | <target state="final">No ownership change request found.</target> | 4324 | <target state="final">No ownership change request found.</target> |
4235 | 4325 | ||
4236 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit> | 4326 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit><trans-unit id="4247400351982331798" datatype="html"> |
4327 | <source>Account settings</source><target state="final">Account settings</target> | ||
4328 | <context-group purpose="location"> | ||
4329 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4330 | <context context-type="linenumber">37</context> | ||
4331 | </context-group> | ||
4332 | </trans-unit><trans-unit id="154062590416726309" datatype="html"> | ||
4333 | <source>Account playlists</source><target state="final">Account playlists</target> | ||
4334 | <context-group purpose="location"> | ||
4335 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4336 | <context context-type="linenumber">55</context> | ||
4337 | </context-group> | ||
4338 | </trans-unit><trans-unit id="6550287183367517925" datatype="html"> | ||
4339 | <source>Create new playlist</source><target state="final">Create new playlist</target> | ||
4340 | <context-group purpose="location"> | ||
4341 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4342 | <context context-type="linenumber">64</context> | ||
4343 | </context-group> | ||
4344 | </trans-unit><trans-unit id="2864486939135008600" datatype="html"> | ||
4345 | <source>Playlist elements</source><target state="final">Playlist elements</target> | ||
4346 | <context-group purpose="location"> | ||
4347 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4348 | <context context-type="linenumber">73</context> | ||
4349 | </context-group> | ||
4350 | </trans-unit> | ||
4237 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> | 4351 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> |
4238 | <source>My imports</source> | 4352 | <source>My imports</source> |
4239 | <target state="final">My imports</target> | 4353 | <target state="final">My imports</target> |
@@ -4478,7 +4592,25 @@ The link will expire within 1 hour.</target> | |||
4478 | <source>An error occurred.</source> | 4592 | <source>An error occurred.</source> |
4479 | <target state="final">An error occurred.</target> | 4593 | <target state="final">An error occurred.</target> |
4480 | 4594 | ||
4481 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 4595 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit><trans-unit id="9128669621822125729" datatype="html"> |
4596 | <source>Video channel videos</source><target state="final">Video channel videos</target> | ||
4597 | <context-group purpose="location"> | ||
4598 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
4599 | <context context-type="linenumber">25</context> | ||
4600 | </context-group> | ||
4601 | </trans-unit><trans-unit id="3193822049276963401" datatype="html"> | ||
4602 | <source>Video channel playlists</source><target state="final">Video channel playlists</target> | ||
4603 | <context-group purpose="location"> | ||
4604 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
4605 | <context context-type="linenumber">38</context> | ||
4606 | </context-group> | ||
4607 | </trans-unit><trans-unit id="4723526509708949088" datatype="html"> | ||
4608 | <source>About video channel</source><target state="final">About video channel</target> | ||
4609 | <context-group purpose="location"> | ||
4610 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
4611 | <context context-type="linenumber">47</context> | ||
4612 | </context-group> | ||
4613 | </trans-unit> | ||
4482 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97" datatype="html"> | 4614 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97" datatype="html"> |
4483 | <source>Request email for account verification</source> | 4615 | <source>Request email for account verification</source> |
4484 | <target state="final"> | 4616 | <target state="final"> |
@@ -4595,7 +4727,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
4595 | <source>Stats</source> | 4727 | <source>Stats</source> |
4596 | <target state="final">Stats</target> | 4728 | <target state="final">Stats</target> |
4597 | 4729 | ||
4598 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 4730 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
4599 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc" datatype="html"> | 4731 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc" datatype="html"> |
4600 | <source>Joined <x id="INTERPOLATION"/></source> | 4732 | <source>Joined <x id="INTERPOLATION"/></source> |
4601 | <target state="final">Joined <x id="INTERPOLATION"/></target> | 4733 | <target state="final">Joined <x id="INTERPOLATION"/></target> |
@@ -4976,7 +5108,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
4976 | <source>This instance does not have instances followings.</source> | 5108 | <source>This instance does not have instances followings.</source> |
4977 | <target state="final">This instance does not have instances followings.</target> | 5109 | <target state="final">This instance does not have instances followings.</target> |
4978 | 5110 | ||
4979 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit> | 5111 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit><trans-unit id="4195286790385468087" datatype="html"> |
5112 | <source>About this instance</source><target state="final">About this instance</target> | ||
5113 | <context-group purpose="location"> | ||
5114 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5115 | <context context-type="linenumber">26</context> | ||
5116 | </context-group> | ||
5117 | </trans-unit><trans-unit id="8773846522957677259" datatype="html"> | ||
5118 | <source>About PeerTube</source><target state="final">About PeerTube</target> | ||
5119 | <context-group purpose="location"> | ||
5120 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5121 | <context context-type="linenumber">38</context> | ||
5122 | </context-group> | ||
5123 | </trans-unit><trans-unit id="5782088737558028158" datatype="html"> | ||
5124 | <source>About follows</source><target state="final">About follows</target> | ||
5125 | <context-group purpose="location"> | ||
5126 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5127 | <context context-type="linenumber">47</context> | ||
5128 | </context-group> | ||
5129 | </trans-unit> | ||
4980 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> | 5130 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> |
4981 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> | 5131 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> |
4982 | <target state="final">Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></target> | 5132 | <target state="final">Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></target> |
@@ -5143,6 +5293,12 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5143 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 5293 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> |
5144 | <context context-type="linenumber">1</context> | 5294 | <context context-type="linenumber">1</context> |
5145 | </context-group> | 5295 | </context-group> |
5296 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
5297 | <source>Get help</source><target state="final">Get help</target> | ||
5298 | <context-group purpose="location"> | ||
5299 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | ||
5300 | <context context-type="linenumber">16</context> | ||
5301 | </context-group> | ||
5146 | </trans-unit> | 5302 | </trans-unit> |
5147 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1" datatype="html"> | 5303 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1" datatype="html"> |
5148 | <source>Create my account</source> | 5304 | <source>Create my account</source> |
@@ -5255,7 +5411,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5255 | <source> I am at least 16 years old and agree to the <x id="START_LINK"/>Terms<x id="CLOSE_LINK"/><x id="START_TAG_NG_CONTAINER"/> and to the <x id="START_LINK_1"/>Code of Conduct<x id="CLOSE_LINK"/><x id="CLOSE_TAG_NG_CONTAINER"/> of this instance </source> | 5411 | <source> I am at least 16 years old and agree to the <x id="START_LINK"/>Terms<x id="CLOSE_LINK"/><x id="START_TAG_NG_CONTAINER"/> and to the <x id="START_LINK_1"/>Code of Conduct<x id="CLOSE_LINK"/><x id="CLOSE_TAG_NG_CONTAINER"/> of this instance </source> |
5256 | <target state="final"> I am at least 16 years old and agree to the <x id="START_LINK"/>Terms<x id="CLOSE_LINK"/><x id="START_TAG_NG_CONTAINER"/> and to the <x id="START_LINK_1"/>Code of Conduct<x id="CLOSE_LINK"/><x id="CLOSE_TAG_NG_CONTAINER"/> of this instance </target> | 5412 | <target state="final"> I am at least 16 years old and agree to the <x id="START_LINK"/>Terms<x id="CLOSE_LINK"/><x id="START_TAG_NG_CONTAINER"/> and to the <x id="START_LINK_1"/>Code of Conduct<x id="CLOSE_LINK"/><x id="CLOSE_TAG_NG_CONTAINER"/> of this instance </target> |
5257 | 5413 | ||
5258 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 5414 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit><trans-unit id="3301086086650990787" datatype="html"> |
5415 | <source>Register</source><target state="final">Register</target> | ||
5416 | <context-group purpose="location"> | ||
5417 | <context context-type="sourcefile">../app/+signup/+register/register-routing.module.ts</context> | ||
5418 | <context context-type="linenumber">14</context> | ||
5419 | </context-group> | ||
5420 | </trans-unit> | ||
5259 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> | 5421 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> |
5260 | <source>Sorry, we couldn't find the page you were looking for.</source> | 5422 | <source>Sorry, we couldn't find the page you were looking for.</source> |
5261 | <target state="final"> | 5423 | <target state="final"> |
@@ -5278,7 +5440,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5278 | <target state="final">No description</target> | 5440 | <target state="final">No description</target> |
5279 | 5441 | ||
5280 | 5442 | ||
5281 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit> | 5443 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit><trans-unit id="819067926858619041" datatype="html"> |
5444 | <source>Account videos</source><target state="final">Account videos</target> | ||
5445 | <context-group purpose="location"> | ||
5446 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
5447 | <context context-type="linenumber">29</context> | ||
5448 | </context-group> | ||
5449 | </trans-unit><trans-unit id="6823616469362610020" datatype="html"> | ||
5450 | <source>Account video channels</source><target state="final">Account video channels</target> | ||
5451 | <context-group purpose="location"> | ||
5452 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
5453 | <context context-type="linenumber">42</context> | ||
5454 | </context-group> | ||
5455 | </trans-unit><trans-unit id="7678273613459026643" datatype="html"> | ||
5456 | <source>About account</source><target state="final">About account</target> | ||
5457 | <context-group purpose="location"> | ||
5458 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
5459 | <context context-type="linenumber">51</context> | ||
5460 | </context-group> | ||
5461 | </trans-unit> | ||
5282 | <trans-unit id="3755500631176893489" datatype="html"> | 5462 | <trans-unit id="3755500631176893489" datatype="html"> |
5283 | <source>Published <x id="PH"/> videos</source> | 5463 | <source>Published <x id="PH"/> videos</source> |
5284 | <target state="final">Published <x id="PH"/> videos</target> | 5464 | <target state="final">Published <x id="PH"/> videos</target> |
@@ -5393,7 +5573,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5393 | <source>Configuration updated.</source> | 5573 | <source>Configuration updated.</source> |
5394 | <target state="final">Configuration updated.</target> | 5574 | <target state="final">Configuration updated.</target> |
5395 | 5575 | ||
5396 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit> | 5576 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit><trans-unit id="6284468333579755406" datatype="html"> |
5577 | <source>Edit custom configuration</source><target state="final">Edit custom configuration</target> | ||
5578 | <context-group purpose="location"> | ||
5579 | <context context-type="sourcefile">../app/+admin/config/config.routes.ts</context> | ||
5580 | <context context-type="linenumber">26</context> | ||
5581 | </context-group> | ||
5582 | </trans-unit> | ||
5397 | 5583 | ||
5398 | 5584 | ||
5399 | <trans-unit id="6549061957433635758" datatype="html"> | 5585 | <trans-unit id="6549061957433635758" datatype="html"> |
@@ -5851,7 +6037,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5851 | <x id="PH"/> updated. | 6037 | <x id="PH"/> updated. |
5852 | </target> | 6038 | </target> |
5853 | 6039 | ||
5854 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 6040 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit><trans-unit id="3229595422546554334" datatype="html"> |
6041 | <source>Jobs</source><target state="final">Jobs</target> | ||
6042 | <context-group purpose="location"> | ||
6043 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6044 | <context context-type="linenumber">26</context> | ||
6045 | </context-group> | ||
6046 | </trans-unit><trans-unit id="4804785061014590286" datatype="html"> | ||
6047 | <source>Logs</source><target state="final">Logs</target> | ||
6048 | <context-group purpose="location"> | ||
6049 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6050 | <context context-type="linenumber">37</context> | ||
6051 | </context-group> | ||
6052 | </trans-unit> | ||
5855 | <trans-unit id="3150704904301058778" datatype="html"> | 6053 | <trans-unit id="3150704904301058778" datatype="html"> |
5856 | <source>The plugin index is not available. Please retry later.</source> | 6054 | <source>The plugin index is not available. Please retry later.</source> |
5857 | <target state="final">The plugin index is not available. Please retry later.</target> | 6055 | <target state="final">The plugin index is not available. Please retry later.</target> |
@@ -5961,6 +6159,18 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5961 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> | 6159 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> |
5962 | <context context-type="linenumber">86</context> | 6160 | <context context-type="linenumber">86</context> |
5963 | </context-group> | 6161 | </context-group> |
6162 | </trans-unit><trans-unit id="2903648076838460070" datatype="html"> | ||
6163 | <source>Videos blocked</source><target state="final">Videos blocked</target> | ||
6164 | <context-group purpose="location"> | ||
6165 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6166 | <context context-type="linenumber">67</context> | ||
6167 | </context-group> | ||
6168 | </trans-unit><trans-unit id="7805059636749367886" datatype="html"> | ||
6169 | <source>Muted instances</source><target state="final">Muted instances</target> | ||
6170 | <context-group purpose="location"> | ||
6171 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6172 | <context context-type="linenumber">89</context> | ||
6173 | </context-group> | ||
5964 | </trans-unit> | 6174 | </trans-unit> |
5965 | <trans-unit id="5974506725502681113" datatype="html"> | 6175 | <trans-unit id="5974506725502681113" datatype="html"> |
5966 | <source>Password changed for user <x id="PH"/>.</source> | 6176 | <source>Password changed for user <x id="PH"/>.</source> |
@@ -5971,7 +6181,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5971 | <source>Update user password</source> | 6181 | <source>Update user password</source> |
5972 | <target state="final">Update user password</target> | 6182 | <target state="final">Update user password</target> |
5973 | 6183 | ||
5974 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit> | 6184 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit><trans-unit id="177544274549739411" datatype="html"> |
6185 | <source>Following list</source><target state="final">Following list</target> | ||
6186 | <context-group purpose="location"> | ||
6187 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6188 | <context context-type="linenumber">28</context> | ||
6189 | </context-group> | ||
6190 | </trans-unit><trans-unit id="8092429110007204784" datatype="html"> | ||
6191 | <source>Followers list</source><target state="final">Followers list</target> | ||
6192 | <context-group purpose="location"> | ||
6193 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6194 | <context context-type="linenumber">37</context> | ||
6195 | </context-group> | ||
6196 | </trans-unit> | ||
5975 | <trans-unit id="780323526182667308" datatype="html"> | 6197 | <trans-unit id="780323526182667308" datatype="html"> |
5976 | <source>User <x id="PH"/> updated.</source> | 6198 | <source>User <x id="PH"/> updated.</source> |
5977 | <target state="final">User <x id="PH"/> updated.</target> | 6199 | <target state="final">User <x id="PH"/> updated.</target> |
@@ -5986,7 +6208,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5986 | <source>An email asking for password reset has been sent to <x id="PH"/>.</source> | 6208 | <source>An email asking for password reset has been sent to <x id="PH"/>.</source> |
5987 | <target state="final">An email asking for password reset has been sent to <x id="PH"/>.</target> | 6209 | <target state="final">An email asking for password reset has been sent to <x id="PH"/>.</target> |
5988 | 6210 | ||
5989 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="8564701209009684429" datatype="html"> | 6211 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="7483807629538115183" datatype="html"> |
6212 | <source>Users list</source><target state="final">Users list</target> | ||
6213 | <context-group purpose="location"> | ||
6214 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6215 | <context context-type="linenumber">27</context> | ||
6216 | </context-group> | ||
6217 | </trans-unit><trans-unit id="1525334987774465166" datatype="html"> | ||
6218 | <source>Create a user</source><target state="final">Create a user</target> | ||
6219 | <context-group purpose="location"> | ||
6220 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6221 | <context context-type="linenumber">36</context> | ||
6222 | </context-group> | ||
6223 | </trans-unit><trans-unit id="5552039423287890133" datatype="html"> | ||
6224 | <source>Update a user</source><target state="final">Update a user</target> | ||
6225 | <context-group purpose="location"> | ||
6226 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6227 | <context context-type="linenumber">48</context> | ||
6228 | </context-group> | ||
6229 | </trans-unit><trans-unit id="8564701209009684429" datatype="html"> | ||
5990 | <source>Federation</source><target state="final">Federation</target> | 6230 | <source>Federation</source><target state="final">Federation</target> |
5991 | <context-group purpose="location"> | 6231 | <context-group purpose="location"> |
5992 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> | 6232 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> |
@@ -6326,7 +6566,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6326 | <source>Views for the day</source> | 6566 | <source>Views for the day</source> |
6327 | <target state="final">Views for the day</target> | 6567 | <target state="final">Views for the day</target> |
6328 | 6568 | ||
6329 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit> | 6569 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit><trans-unit id="4707367314920217630" datatype="html"> |
6570 | <source>Create new video channel</source><target state="final">Create new video channel</target> | ||
6571 | <context-group purpose="location"> | ||
6572 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
6573 | <context context-type="linenumber">22</context> | ||
6574 | </context-group> | ||
6575 | </trans-unit><trans-unit id="6059091237492573541" datatype="html"> | ||
6576 | <source>Update video channel</source><target state="final">Update video channel</target> | ||
6577 | <context-group purpose="location"> | ||
6578 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
6579 | <context context-type="linenumber">31</context> | ||
6580 | </context-group> | ||
6581 | </trans-unit><trans-unit id="6595008830732269870" datatype="html"> | ||
6582 | <source>Not found</source><target state="final">Not found</target> | ||
6583 | <context-group purpose="location"> | ||
6584 | <context context-type="sourcefile">../app/+page-not-found/page-not-found-routing.module.ts</context> | ||
6585 | <context context-type="linenumber">13</context> | ||
6586 | </context-group> | ||
6587 | </trans-unit> | ||
6330 | <trans-unit id="5032453707232754344" datatype="html"> | 6588 | <trans-unit id="5032453707232754344" datatype="html"> |
6331 | <source>Playlist <x id="PH"/> created.</source> | 6589 | <source>Playlist <x id="PH"/> created.</source> |
6332 | <target state="final">Playlist <x id="PH"/> created.</target> | 6590 | <target state="final">Playlist <x id="PH"/> created.</target> |
@@ -6342,7 +6600,31 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6342 | <source>Update playlist</source> | 6600 | <source>Update playlist</source> |
6343 | <target state="final">Update playlist</target> | 6601 | <target state="final">Update playlist</target> |
6344 | 6602 | ||
6345 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-video-playlists/my-account-video-playlist-elements.component.ts</context><context context-type="linenumber">48</context></context-group></trans-unit> | 6603 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">82</context></context-group></trans-unit><trans-unit id="3410331549417637431" datatype="html"> |
6604 | <source>Account video imports</source><target state="final">Account video imports</target> | ||
6605 | <context-group purpose="location"> | ||
6606 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
6607 | <context context-type="linenumber">105</context> | ||
6608 | </context-group> | ||
6609 | </trans-unit><trans-unit id="4434998055872154420" datatype="html"> | ||
6610 | <source>Account subscriptions</source><target state="final">Account subscriptions</target> | ||
6611 | <context-group purpose="location"> | ||
6612 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
6613 | <context context-type="linenumber">114</context> | ||
6614 | </context-group> | ||
6615 | </trans-unit><trans-unit id="6019411775996586321" datatype="html"> | ||
6616 | <source>Videos history</source><target state="final">Videos history</target> | ||
6617 | <context-group purpose="location"> | ||
6618 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
6619 | <context context-type="linenumber">150</context> | ||
6620 | </context-group> | ||
6621 | </trans-unit><trans-unit id="5851560788527570644" datatype="html"> | ||
6622 | <source>Notifications</source><target state="final">Notifications</target> | ||
6623 | <context-group purpose="location"> | ||
6624 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
6625 | <context context-type="linenumber">163</context> | ||
6626 | </context-group> | ||
6627 | </trans-unit> | ||
6346 | <trans-unit id="104404386496394770" datatype="html"> | 6628 | <trans-unit id="104404386496394770" datatype="html"> |
6347 | <source>Delete playlist</source> | 6629 | <source>Delete playlist</source> |
6348 | <target state="final">Delete playlist</target> | 6630 | <target state="final">Delete playlist</target> |
@@ -6482,7 +6764,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6482 | <source>An email with verification link will be sent to <x id="PH"/>.</source> | 6764 | <source>An email with verification link will be sent to <x id="PH"/>.</source> |
6483 | <target state="final">An email with verification link will be sent to <x id="PH"/>.</target> | 6765 | <target state="final">An email with verification link will be sent to <x id="PH"/>.</target> |
6484 | 6766 | ||
6485 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit> | 6767 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit><trans-unit id="8231550792139699065" datatype="html"> |
6768 | <source>Verify account email</source><target state="final">Verify account email</target> | ||
6769 | <context-group purpose="location"> | ||
6770 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
6771 | <context context-type="linenumber">17</context> | ||
6772 | </context-group> | ||
6773 | </trans-unit><trans-unit id="4997281272800290390" datatype="html"> | ||
6774 | <source>Verify account ask send email</source><target state="final">Verify account ask send email</target> | ||
6775 | <context-group purpose="location"> | ||
6776 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
6777 | <context context-type="linenumber">26</context> | ||
6778 | </context-group> | ||
6779 | </trans-unit> | ||
6486 | <trans-unit id="4180693983967989981" datatype="html"> | 6780 | <trans-unit id="4180693983967989981" datatype="html"> |
6487 | <source>Unable to find user id or verification string.</source> | 6781 | <source>Unable to find user id or verification string.</source> |
6488 | <target state="final">Unable to find user id or verification string.</target> | 6782 | <target state="final">Unable to find user id or verification string.</target> |
@@ -6607,27 +6901,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
6607 | <source>any language</source> | 6901 | <source>any language</source> |
6608 | <target state="final">any language</target> | 6902 | <target state="final">any language</target> |
6609 | 6903 | ||
6610 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">202</context></context-group></trans-unit> | 6904 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">229</context></context-group></trans-unit> |
6611 | <trans-unit id="5633144232269377096" datatype="html"> | 6905 | <trans-unit id="5633144232269377096" datatype="html"> |
6612 | <source>hide</source> | 6906 | <source>hide</source> |
6613 | <target state="final">hide</target> | 6907 | <target state="final">hide</target> |
6614 | 6908 | ||
6615 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">118</context></context-group></trans-unit> | 6909 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> |
6616 | <trans-unit id="8603861867909474404" datatype="html"> | 6910 | <trans-unit id="8603861867909474404" datatype="html"> |
6617 | <source>blur</source> | 6911 | <source>blur</source> |
6618 | <target state="final">blur</target> | 6912 | <target state="final">blur</target> |
6619 | 6913 | ||
6620 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> | 6914 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> |
6621 | <trans-unit id="4534458451100881847" datatype="html"> | 6915 | <trans-unit id="4534458451100881847" datatype="html"> |
6622 | <source>display</source> | 6916 | <source>display</source> |
6623 | <target state="final">display</target> | 6917 | <target state="final">display</target> |
6624 | 6918 | ||
6625 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> | 6919 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">127</context></context-group></trans-unit> |
6626 | <trans-unit id="4467323362722952678" datatype="html"> | 6920 | <trans-unit id="4467323362722952678" datatype="html"> |
6627 | <source>Unknown</source> | 6921 | <source>Unknown</source> |
6628 | <target state="final">Unknown</target> | 6922 | <target state="final">Unknown</target> |
6629 | 6923 | ||
6630 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">190</context></context-group></trans-unit> | 6924 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">193</context></context-group></trans-unit> |
6631 | <trans-unit id="8781423666414310853" datatype="html"> | 6925 | <trans-unit id="8781423666414310853" datatype="html"> |
6632 | <source>Your password has been successfully reset!</source> | 6926 | <source>Your password has been successfully reset!</source> |
6633 | <target state="final">Your password has been successfully reset!</target> | 6927 | <target state="final">Your password has been successfully reset!</target> |
@@ -7738,27 +8032,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7738 | <source>Emphasis</source> | 8032 | <source>Emphasis</source> |
7739 | <target state="final">Emphasis</target> | 8033 | <target state="final">Emphasis</target> |
7740 | 8034 | ||
7741 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">77</context></context-group></trans-unit> | 8035 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> |
7742 | <trans-unit id="7565716024468232322" datatype="html"> | 8036 | <trans-unit id="7565716024468232322" datatype="html"> |
7743 | <source>Links</source> | 8037 | <source>Links</source> |
7744 | <target state="final">Links</target> | 8038 | <target state="final">Links</target> |
7745 | 8039 | ||
7746 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">78</context></context-group></trans-unit> | 8040 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> |
7747 | <trans-unit id="7838476952710404110" datatype="html"> | 8041 | <trans-unit id="7838476952710404110" datatype="html"> |
7748 | <source>New lines</source> | 8042 | <source>New lines</source> |
7749 | <target state="final">New lines</target> | 8043 | <target state="final">New lines</target> |
7750 | 8044 | ||
7751 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 8045 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">83</context></context-group></trans-unit> |
7752 | <trans-unit id="8756167649220050929" datatype="html"> | 8046 | <trans-unit id="8756167649220050929" datatype="html"> |
7753 | <source>Lists</source> | 8047 | <source>Lists</source> |
7754 | <target state="final">Lists</target> | 8048 | <target state="final">Lists</target> |
7755 | 8049 | ||
7756 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">80</context></context-group></trans-unit> | 8050 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">84</context></context-group></trans-unit> |
7757 | <trans-unit id="414887388288176527" datatype="html"> | 8051 | <trans-unit id="414887388288176527" datatype="html"> |
7758 | <source>Images</source> | 8052 | <source>Images</source> |
7759 | <target state="final">Images</target> | 8053 | <target state="final">Images</target> |
7760 | 8054 | ||
7761 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> | 8055 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">85</context></context-group></trans-unit> |
7762 | <trans-unit id="5708680277917691451" datatype="html"> | 8056 | <trans-unit id="5708680277917691451" datatype="html"> |
7763 | <source> | 8057 | <source> |
7764 | <x id="PH"/> users banned. | 8058 | <x id="PH"/> users banned. |
@@ -8126,7 +8420,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8126 | <source>Moderator</source> | 8420 | <source>Moderator</source> |
8127 | <target state="final">Moderator</target> | 8421 | <target state="final">Moderator</target> |
8128 | 8422 | ||
8129 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">386</context></context-group></trans-unit> | 8423 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">384</context></context-group></trans-unit> |
8130 | <trans-unit id="3723085768598852106" datatype="html"> | 8424 | <trans-unit id="3723085768598852106" datatype="html"> |
8131 | <source>Video removed from | 8425 | <source>Video removed from |
8132 | <x id="PH"/> | 8426 | <x id="PH"/> |
@@ -8196,7 +8490,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8196 | <source>Do you really want to delete this comment?</source> | 8490 | <source>Do you really want to delete this comment?</source> |
8197 | <target state="final">Do you really want to delete this comment?</target> | 8491 | <target state="final">Do you really want to delete this comment?</target> |
8198 | 8492 | ||
8199 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">434</context></context-group></trans-unit> | 8493 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">166</context></context-group></trans-unit> |
8200 | <trans-unit id="7837272126865175984" datatype="html"> | 8494 | <trans-unit id="7837272126865175984" datatype="html"> |
8201 | <source>Comment deleted.</source> | 8495 | <source>Comment deleted.</source> |
8202 | <target state="final">Comment deleted.</target> | 8496 | <target state="final">Comment deleted.</target> |
@@ -8308,9 +8602,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8308 | 8602 | ||
8309 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> | 8603 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> |
8310 | <source>Report</source><target state="final">Report</target> | 8604 | <source>Report</source><target state="final">Report</target> |
8605 | |||
8606 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="4814285799071780083" datatype="html"> | ||
8607 | <source>Remove</source><target state="final">Remove</target> | ||
8311 | <context-group purpose="location"> | 8608 | <context-group purpose="location"> |
8312 | <context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> | 8609 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> |
8313 | <context context-type="linenumber">286</context> | 8610 | <context context-type="linenumber">179</context> |
8611 | </context-group> | ||
8612 | </trans-unit><trans-unit id="6871668720687277843" datatype="html"> | ||
8613 | <source>Remove & re-draft</source><target state="final">Remove & re-draft</target> | ||
8614 | <context-group purpose="location"> | ||
8615 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> | ||
8616 | <context context-type="linenumber">187</context> | ||
8314 | </context-group> | 8617 | </context-group> |
8315 | </trans-unit> | 8618 | </trans-unit> |
8316 | <trans-unit id="4903651219400691248" datatype="html"> | 8619 | <trans-unit id="4903651219400691248" datatype="html"> |
@@ -8414,22 +8717,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8414 | <source>Only I can see this video</source> | 8717 | <source>Only I can see this video</source> |
8415 | <target state="final">Only I can see this video</target> | 8718 | <target state="final">Only I can see this video</target> |
8416 | 8719 | ||
8417 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">340</context></context-group></trans-unit> | 8720 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">341</context></context-group></trans-unit> |
8418 | <trans-unit id="6767380569816110388" datatype="html"> | 8721 | <trans-unit id="6767380569816110388" datatype="html"> |
8419 | <source>Only shareable via a private link</source> | 8722 | <source>Only shareable via a private link</source> |
8420 | <target state="final">Only shareable via a private link</target> | 8723 | <target state="final">Only shareable via a private link</target> |
8421 | 8724 | ||
8422 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">344</context></context-group></trans-unit> | 8725 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">345</context></context-group></trans-unit> |
8423 | <trans-unit id="6828965264297239528" datatype="html"> | 8726 | <trans-unit id="6828965264297239528" datatype="html"> |
8424 | <source>Anyone can see this video</source> | 8727 | <source>Anyone can see this video</source> |
8425 | <target state="final">Anyone can see this video</target> | 8728 | <target state="final">Anyone can see this video</target> |
8426 | 8729 | ||
8427 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">348</context></context-group></trans-unit> | 8730 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">349</context></context-group></trans-unit> |
8428 | <trans-unit id="1425933035739773115" datatype="html"> | 8731 | <trans-unit id="1425933035739773115" datatype="html"> |
8429 | <source>Only users of this instance can see this video</source> | 8732 | <source>Only users of this instance can see this video</source> |
8430 | <target state="final">Only users of this instance can see this video</target> | 8733 | <target state="final">Only users of this instance can see this video</target> |
8431 | 8734 | ||
8432 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">352</context></context-group></trans-unit> | 8735 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">353</context></context-group></trans-unit> |
8433 | <trans-unit id="5210096066382592800" datatype="html"> | 8736 | <trans-unit id="5210096066382592800" datatype="html"> |
8434 | <source>Video to import updated.</source> | 8737 | <source>Video to import updated.</source> |
8435 | <target state="final">Video to import updated.</target> | 8738 | <target state="final">Video to import updated.</target> |
@@ -8509,16 +8812,25 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
8509 | <target state="final">Report comment</target> | 8812 | <target state="final">Report comment</target> |
8510 | 8813 | ||
8511 | 8814 | ||
8512 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 8815 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/report-modals/comment-report.component.ts</context><context context-type="linenumber">51</context></context-group></trans-unit> |
8513 | <trans-unit id="3691787517663044217" datatype="html"> | 8816 | <trans-unit id="3691787517663044217" datatype="html"> |
8514 | <source> The deletion will be sent to remote instances so they can reflect the change.</source> | 8817 | <source> The deletion will be sent to remote instances so they can reflect the change.</source> |
8515 | <target state="final"> The deletion will be sent to remote instances so they can reflect the change.</target> | 8818 | <target state="final"> The deletion will be sent to remote instances so they can reflect the change.</target> |
8516 | 8819 | ||
8517 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">163</context></context-group></trans-unit><trans-unit id="7321800851971795962" datatype="html"> | 8820 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">169</context></context-group></trans-unit><trans-unit id="7321800851971795962" datatype="html"> |
8518 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source><target state="final"> It is a remote comment, so the deletion will only be effective on your instance.</target> | 8821 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source><target state="final"> It is a remote comment, so the deletion will only be effective on your instance.</target> |
8822 | |||
8823 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="5964038603724691720" datatype="html"> | ||
8824 | <source>Delete and re-draft</source><target state="final">Delete and re-draft</target> | ||
8519 | <context-group purpose="location"> | 8825 | <context-group purpose="location"> |
8520 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | 8826 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> |
8521 | <context context-type="linenumber">165</context> | 8827 | <context context-type="linenumber">197</context> |
8828 | </context-group> | ||
8829 | </trans-unit><trans-unit id="7163633882758007711" datatype="html"> | ||
8830 | <source>Do you really want to delete and re-draft this comment?</source><target state="final">Do you really want to delete and re-draft this comment?</target> | ||
8831 | <context-group purpose="location"> | ||
8832 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | ||
8833 | <context context-type="linenumber">197</context> | ||
8522 | </context-group> | 8834 | </context-group> |
8523 | </trans-unit> | 8835 | </trans-unit> |
8524 | 8836 | ||
@@ -8683,6 +8995,36 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
8683 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> | 8995 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> |
8684 | <context context-type="linenumber">36</context> | 8996 | <context context-type="linenumber">36</context> |
8685 | </context-group> | 8997 | </context-group> |
8998 | </trans-unit><trans-unit id="4668975178372693951" datatype="html"> | ||
8999 | <source>Discover videos</source><target state="final">Discover videos</target> | ||
9000 | <context-group purpose="location"> | ||
9001 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9002 | <context context-type="linenumber">23</context> | ||
9003 | </context-group> | ||
9004 | </trans-unit><trans-unit id="8067135025051844577" datatype="html"> | ||
9005 | <source>Trending videos</source><target state="final">Trending videos</target> | ||
9006 | <context-group purpose="location"> | ||
9007 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9008 | <context context-type="linenumber">32</context> | ||
9009 | </context-group> | ||
9010 | </trans-unit><trans-unit id="664221386829541948" datatype="html"> | ||
9011 | <source>Recently added videos</source><target state="final">Recently added videos</target> | ||
9012 | <context-group purpose="location"> | ||
9013 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9014 | <context context-type="linenumber">58</context> | ||
9015 | </context-group> | ||
9016 | </trans-unit><trans-unit id="8212906256415538361" datatype="html"> | ||
9017 | <source>Upload a video</source><target state="final">Upload a video</target> | ||
9018 | <context-group purpose="location"> | ||
9019 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9020 | <context context-type="linenumber">97</context> | ||
9021 | </context-group> | ||
9022 | </trans-unit><trans-unit id="7590784934397800835" datatype="html"> | ||
9023 | <source>Edit a video</source><target state="final">Edit a video</target> | ||
9024 | <context-group purpose="location"> | ||
9025 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9026 | <context context-type="linenumber">106</context> | ||
9027 | </context-group> | ||
8686 | </trans-unit> | 9028 | </trans-unit> |
8687 | </body> | 9029 | </body> |
8688 | </file> | 9030 | </file> |
diff --git a/client/src/locale/angular.eo.xlf b/client/src/locale/angular.eo.xlf index 586b8a281..f8bbd2e99 100644 --- a/client/src/locale/angular.eo.xlf +++ b/client/src/locale/angular.eo.xlf | |||
@@ -290,7 +290,7 @@ | |||
290 | <target>Elektebloj</target> | 290 | <target>Elektebloj</target> |
291 | 291 | ||
292 | 292 | ||
293 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 293 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">48</context></context-group></trans-unit> |
294 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d"> | 294 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d"> |
295 | <source>Start at</source> | 295 | <source>Start at</source> |
296 | <target>Komenci je</target> | 296 | <target>Komenci je</target> |
@@ -420,7 +420,7 @@ | |||
420 | Nuligi | 420 | Nuligi |
421 | </target> | 421 | </target> |
422 | 422 | ||
423 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> | 423 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit> |
424 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd"> | 424 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd"> |
425 | <source>Download</source> | 425 | <source>Download</source> |
426 | <target>Elŝuto</target> | 426 | <target>Elŝuto</target> |
@@ -539,7 +539,7 @@ | |||
539 | 539 | ||
540 | 540 | ||
541 | 541 | ||
542 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 542 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
543 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc"> | 543 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc"> |
544 | <source>Edit starts/stops at</source> | 544 | <source>Edit starts/stops at</source> |
545 | <target>Redakti tempojn de komenco kaj ĉeso</target> | 545 | <target>Redakti tempojn de komenco kaj ĉeso</target> |
@@ -579,7 +579,7 @@ | |||
579 | 579 | ||
580 | 580 | ||
581 | 581 | ||
582 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> | 582 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
583 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> | 583 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> |
584 | <source>Edit</source> | 584 | <source>Edit</source> |
585 | <target>Redakti</target> | 585 | <target>Redakti</target> |
@@ -604,17 +604,10 @@ | |||
604 | <target>Plena antaŭrigardo</target> | 604 | <target>Plena antaŭrigardo</target> |
605 | 605 | ||
606 | <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></trans-unit> | 606 | <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></trans-unit> |
607 | <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f"> | 607 | <trans-unit id="8644431249513874405" datatype="html"> |
608 | <source>Get help</source> | ||
609 | <target>Peti helpon</target> | ||
610 | |||
611 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit><trans-unit id="8644431249513874405" datatype="html"> | ||
612 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> | 608 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> |
613 | <context-group purpose="location"> | 609 | |
614 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 610 | <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></trans-unit> |
615 | <context context-type="linenumber">71</context> | ||
616 | </context-group> | ||
617 | </trans-unit> | ||
618 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> | 611 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> |
619 | <source>Recommended</source> | 612 | <source>Recommended</source> |
620 | <target state="translated">Rekomendita</target> | 613 | <target state="translated">Rekomendita</target> |
@@ -654,7 +647,7 @@ | |||
654 | <source>PROFILE SETTINGS</source> | 647 | <source>PROFILE SETTINGS</source> |
655 | <target state="translated">AGORDOJ DE PROFILO</target> | 648 | <target state="translated">AGORDOJ DE PROFILO</target> |
656 | 649 | ||
657 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 650 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">12</context></context-group></trans-unit> |
658 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3"> | 651 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3"> |
659 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> | 652 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> |
660 | <target> | 653 | <target> |
@@ -826,11 +819,8 @@ | |||
826 | 819 | ||
827 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> | 820 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> |
828 | <source>User</source><target state="new">User</target> | 821 | <source>User</source><target state="new">User</target> |
829 | <context-group purpose="location"> | 822 | |
830 | <context context-type="sourcefile">../app/core/users/user.service.ts</context> | 823 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit> |
831 | <context context-type="linenumber">384</context> | ||
832 | </context-group> | ||
833 | </trans-unit> | ||
834 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0"> | 824 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0"> |
835 | <source>Ban</source> | 825 | <source>Ban</source> |
836 | <target>Forbari</target> | 826 | <target>Forbari</target> |
@@ -1300,89 +1290,89 @@ The link will expire within 1 hour.</target> | |||
1300 | <source>Account settings</source> | 1290 | <source>Account settings</source> |
1301 | <target state="translated">Agordoj de konto</target> | 1291 | <target state="translated">Agordoj de konto</target> |
1302 | 1292 | ||
1303 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 1293 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
1304 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> | 1294 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> |
1305 | <source>Channels settings</source> | 1295 | <source>Channels settings</source> |
1306 | <target state="translated">Agordoj de kanalo</target> | 1296 | <target state="translated">Agordoj de kanalo</target> |
1307 | 1297 | ||
1308 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 1298 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> |
1309 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> | 1299 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> |
1310 | <source>Interface:</source> | 1300 | <source>Interface:</source> |
1311 | <target state="new">Interface:</target> | 1301 | <target state="new">Interface:</target> |
1312 | 1302 | ||
1313 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 1303 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1314 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> | 1304 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> |
1315 | <source>Videos:</source> | 1305 | <source>Videos:</source> |
1316 | <target state="new">Videos:</target> | 1306 | <target state="new">Videos:</target> |
1317 | 1307 | ||
1318 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 1308 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> |
1319 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> | 1309 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> |
1320 | <source>Sensitive:</source> | 1310 | <source>Sensitive:</source> |
1321 | <target state="new">Sensitive:</target> | 1311 | <target state="new">Sensitive:</target> |
1322 | 1312 | ||
1323 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 1313 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">54</context></context-group></trans-unit> |
1324 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1314 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> |
1325 | <source>Interface: <x id="INTERPOLATION"/></source> | 1315 | <source>Interface: <x id="INTERPOLATION"/></source> |
1326 | <target state="translated">Fasado: | 1316 | <target state="translated">Fasado: |
1327 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> | 1317 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> |
1328 | </target> | 1318 | </target> |
1329 | 1319 | ||
1330 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">156</context></context-group></trans-unit> | 1320 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> |
1331 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1321 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1332 | <source>Help share videos</source> | 1322 | <source>Help share videos</source> |
1333 | <target state="translated">Helpu disigi filmojn</target> | 1323 | <target state="translated">Helpu disigi filmojn</target> |
1334 | 1324 | ||
1335 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> | 1325 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
1336 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> | 1326 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> |
1337 | <source>More account settings</source> | 1327 | <source>More account settings</source> |
1338 | <target state="translated">Pliaj agordoj de konto</target> | 1328 | <target state="translated">Pliaj agordoj de konto</target> |
1339 | 1329 | ||
1340 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> | 1330 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> |
1341 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> | 1331 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> |
1342 | <source>Keyboard shortcuts</source> | 1332 | <source>Keyboard shortcuts</source> |
1343 | <target state="translated">Klavkombinoj</target> | 1333 | <target state="translated">Klavkombinoj</target> |
1344 | 1334 | ||
1345 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 1335 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">72</context></context-group></trans-unit> |
1346 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> | 1336 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> |
1347 | <source>Help</source> | 1337 | <source>Help</source> |
1348 | <target state="translated">Helpo</target> | 1338 | <target state="translated">Helpo</target> |
1349 | 1339 | ||
1350 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1340 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1351 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> | 1341 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> |
1352 | <source>Get help using PeerTube</source> | 1342 | <source>Get help using PeerTube</source> |
1353 | <target state="translated">Helpiĝu pri uzo de PeerTube</target> | 1343 | <target state="translated">Helpiĝu pri uzo de PeerTube</target> |
1354 | 1344 | ||
1355 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">161</context></context-group></trans-unit> | 1345 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">167</context></context-group></trans-unit> |
1356 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> | 1346 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> |
1357 | <source>Shortcuts</source> | 1347 | <source>Shortcuts</source> |
1358 | <target state="translated">Mallongigoj</target> | 1348 | <target state="translated">Mallongigoj</target> |
1359 | 1349 | ||
1360 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1350 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1361 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> | 1351 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> |
1362 | <source>powered by PeerTube</source> | 1352 | <source>powered by PeerTube</source> |
1363 | <target state="translated">povigata de PeerTube</target> | 1353 | <target state="translated">povigata de PeerTube</target> |
1364 | 1354 | ||
1365 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | 1355 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">177</context></context-group></trans-unit> |
1366 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> | 1356 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> |
1367 | <source>powered by PeerTube - CopyLeft 2015-2020</source> | 1357 | <source>powered by PeerTube - CopyLeft 2015-2020</source> |
1368 | <target state="translated">povigata de PeerTube – Kopilasigo 2015–2020</target> | 1358 | <target state="translated">povigata de PeerTube – Kopilasigo 2015–2020</target> |
1369 | 1359 | ||
1370 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> | 1360 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">176</context></context-group></trans-unit> |
1371 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344"> | 1361 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344"> |
1372 | <source>Log out</source> | 1362 | <source>Log out</source> |
1373 | <target>Adiaŭi</target> | 1363 | <target>Adiaŭi</target> |
1374 | 1364 | ||
1375 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">70</context></context-group></trans-unit> | 1365 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit> |
1376 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> | 1366 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> |
1377 | <source>Create an account</source> | 1367 | <source>Create an account</source> |
1378 | <target>Krei konton</target> | 1368 | <target>Krei konton</target> |
1379 | 1369 | ||
1380 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">78</context></context-group></trans-unit> | 1370 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
1381 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> | 1371 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> |
1382 | <source>MY LIBRARY</source> | 1372 | <source>MY LIBRARY</source> |
1383 | <target state="translated">MIA BIBLIOTEKO</target> | 1373 | <target state="translated">MIA BIBLIOTEKO</target> |
1384 | 1374 | ||
1385 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 1375 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">88</context></context-group></trans-unit> |
1386 | <trans-unit id="6371572688505952303"> | 1376 | <trans-unit id="6371572688505952303"> |
1387 | <source>My library</source> | 1377 | <source>My library</source> |
1388 | <target>Mia biblioteko</target> | 1378 | <target>Mia biblioteko</target> |
@@ -1422,22 +1412,22 @@ The link will expire within 1 hour.</target> | |||
1422 | <source>Videos</source> | 1412 | <source>Videos</source> |
1423 | <target>Filmoj</target> | 1413 | <target>Filmoj</target> |
1424 | 1414 | ||
1425 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">86</context></context-group></trans-unit> | 1415 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">92</context></context-group></trans-unit> |
1426 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> | 1416 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> |
1427 | <source>Playlists</source> | 1417 | <source>Playlists</source> |
1428 | <target>Ludlistoj</target> | 1418 | <target>Ludlistoj</target> |
1429 | 1419 | ||
1430 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">91</context></context-group></trans-unit> | 1420 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">97</context></context-group></trans-unit> |
1431 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2"> | 1421 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2"> |
1432 | <source>Subscriptions</source> | 1422 | <source>Subscriptions</source> |
1433 | <target>Abonoj</target> | 1423 | <target>Abonoj</target> |
1434 | 1424 | ||
1435 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 1425 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">102</context></context-group></trans-unit> |
1436 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8"> | 1426 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8"> |
1437 | <source>History</source> | 1427 | <source>History</source> |
1438 | <target>Historio</target> | 1428 | <target>Historio</target> |
1439 | 1429 | ||
1440 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit> | 1430 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">107</context></context-group></trans-unit> |
1441 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> | 1431 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> |
1442 | <source>VIDEOS</source> | 1432 | <source>VIDEOS</source> |
1443 | <target state="translated">FILMOJ</target> | 1433 | <target state="translated">FILMOJ</target> |
@@ -1449,27 +1439,27 @@ The link will expire within 1 hour.</target> | |||
1449 | <target>Esplori</target> | 1439 | <target>Esplori</target> |
1450 | 1440 | ||
1451 | 1441 | ||
1452 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">111</context></context-group></trans-unit> | 1442 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">117</context></context-group></trans-unit> |
1453 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> | 1443 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> |
1454 | <source>Trending</source> | 1444 | <source>Trending</source> |
1455 | <target>Furoraj</target> | 1445 | <target>Furoraj</target> |
1456 | 1446 | ||
1457 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">116</context></context-group></trans-unit> | 1447 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">122</context></context-group></trans-unit> |
1458 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac"> | 1448 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac"> |
1459 | <source>Most liked</source> | 1449 | <source>Most liked</source> |
1460 | <target>Plej ŝatataj</target> | 1450 | <target>Plej ŝatataj</target> |
1461 | 1451 | ||
1462 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">121</context></context-group></trans-unit> | 1452 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">127</context></context-group></trans-unit> |
1463 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> | 1453 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> |
1464 | <source>Recently added</source> | 1454 | <source>Recently added</source> |
1465 | <target>Freŝe aldonitaj</target> | 1455 | <target>Freŝe aldonitaj</target> |
1466 | 1456 | ||
1467 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">126</context></context-group></trans-unit> | 1457 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">132</context></context-group></trans-unit> |
1468 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> | 1458 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> |
1469 | <source>Administration</source> | 1459 | <source>Administration</source> |
1470 | <target>Administrado</target> | 1460 | <target>Administrado</target> |
1471 | 1461 | ||
1472 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">140</context></context-group></trans-unit> | 1462 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">146</context></context-group></trans-unit> |
1473 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> | 1463 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> |
1474 | <source>About</source> | 1464 | <source>About</source> |
1475 | <target>Pri</target> | 1465 | <target>Pri</target> |
@@ -1480,7 +1470,7 @@ The link will expire within 1 hour.</target> | |||
1480 | <source>Contact</source> | 1470 | <source>Contact</source> |
1481 | <target state="translated">Kontakto</target> | 1471 | <target state="translated">Kontakto</target> |
1482 | 1472 | ||
1483 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">160</context></context-group></trans-unit> | 1473 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">166</context></context-group></trans-unit> |
1484 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771"> | 1474 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771"> |
1485 | <source>View your notifications</source> | 1475 | <source>View your notifications</source> |
1486 | <target>Vidi viajn sciigojn</target> | 1476 | <target>Vidi viajn sciigojn</target> |
@@ -1507,7 +1497,7 @@ The link will expire within 1 hour.</target> | |||
1507 | <source>See all your notifications</source> | 1497 | <source>See all your notifications</source> |
1508 | <target>Vidi ĉiujn viajn sciigojn</target> | 1498 | <target>Vidi ĉiujn viajn sciigojn</target> |
1509 | 1499 | ||
1510 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 1500 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">40</context></context-group></trans-unit> |
1511 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> | 1501 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> |
1512 | <source>Search videos, channels…</source> | 1502 | <source>Search videos, channels…</source> |
1513 | <target state="translated">Serĉi filmojn, kanalojn…</target> | 1503 | <target state="translated">Serĉi filmojn, kanalojn…</target> |
@@ -1835,22 +1825,22 @@ The link will expire within 1 hour.</target> | |||
1835 | <source>FAQ</source> | 1825 | <source>FAQ</source> |
1836 | <target state="translated">Oftaj demandoj</target> | 1826 | <target state="translated">Oftaj demandoj</target> |
1837 | 1827 | ||
1838 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">163</context></context-group></trans-unit> | 1828 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
1839 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> | 1829 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> |
1840 | <source>Frequently asked questions about PeerTube</source> | 1830 | <source>Frequently asked questions about PeerTube</source> |
1841 | <target state="translated">Oftaj demandoj pri PeerTube</target> | 1831 | <target state="translated">Oftaj demandoj pri PeerTube</target> |
1842 | 1832 | ||
1843 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1833 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1844 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> | 1834 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> |
1845 | <source>API</source> | 1835 | <source>API</source> |
1846 | <target state="translated">API</target> | 1836 | <target state="translated">API</target> |
1847 | 1837 | ||
1848 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1838 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1849 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> | 1839 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> |
1850 | <source>API documentation</source> | 1840 | <source>API documentation</source> |
1851 | <target state="translated">Dokumentaĵo de API</target> | 1841 | <target state="translated">Dokumentaĵo de API</target> |
1852 | 1842 | ||
1853 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 1843 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
1854 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5"> | 1844 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5"> |
1855 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> | 1845 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> |
1856 | <target>Plani publikigon ( | 1846 | <target>Plani publikigon ( |
@@ -2225,7 +2215,13 @@ The link will expire within 1 hour.</target> | |||
2225 | <source>Less customization</source> | 2215 | <source>Less customization</source> |
2226 | <target state="translated">Malpliaj adaptebloj</target> | 2216 | <target state="translated">Malpliaj adaptebloj</target> |
2227 | 2217 | ||
2228 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit> | 2218 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit><trans-unit id="2454050363478003966" datatype="html"> |
2219 | <source>Login</source><target state="new">Login</target> | ||
2220 | <context-group purpose="location"> | ||
2221 | <context context-type="sourcefile">../app/+login/login-routing.module.ts</context> | ||
2222 | <context context-type="linenumber">14</context> | ||
2223 | </context-group> | ||
2224 | </trans-unit> | ||
2229 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e"> | 2225 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e"> |
2230 | <source>Autoplay</source> | 2226 | <source>Autoplay</source> |
2231 | <target>Memaga ludo</target> | 2227 | <target>Memaga ludo</target> |
@@ -2482,7 +2478,7 @@ The link will expire within 1 hour.</target> | |||
2482 | <source>No comments.</source> | 2478 | <source>No comments.</source> |
2483 | <target>Neniuj komentoj.</target> | 2479 | <target>Neniuj komentoj.</target> |
2484 | 2480 | ||
2485 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 2481 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> |
2486 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> | 2482 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> |
2487 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> | 2483 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> |
2488 | <target state="translated">Montri | 2484 | <target state="translated">Montri |
@@ -2490,7 +2486,7 @@ The link will expire within 1 hour.</target> | |||
2490 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> kaj aliaj | 2486 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> kaj aliaj |
2491 | </target> | 2487 | </target> |
2492 | 2488 | ||
2493 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">79</context></context-group></trans-unit> | 2489 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
2494 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> | 2490 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> |
2495 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> | 2491 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> |
2496 | <target state="translated">Montri | 2492 | <target state="translated">Montri |
@@ -2498,65 +2494,151 @@ The link will expire within 1 hour.</target> | |||
2498 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> | 2494 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> |
2499 | </target> | 2495 | </target> |
2500 | 2496 | ||
2501 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 2497 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">87</context></context-group></trans-unit> |
2502 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> | 2498 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> |
2503 | <source>View <x id="INTERPOLATION"/> replies</source> | 2499 | <source>View <x id="INTERPOLATION"/> replies</source> |
2504 | <target state="translated">Montri | 2500 | <target state="translated">Montri |
2505 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> respondojn | 2501 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> respondojn |
2506 | </target> | 2502 | </target> |
2507 | 2503 | ||
2508 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">85</context></context-group></trans-unit> | 2504 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">90</context></context-group></trans-unit> |
2509 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828"> | 2505 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828"> |
2510 | <source>Comments are disabled.</source> | 2506 | <source>Comments are disabled.</source> |
2511 | <target> | 2507 | <target> |
2512 | Komentoj estas malŝaltitaj. | 2508 | Komentoj estas malŝaltitaj. |
2513 | </target> | 2509 | </target> |
2514 | 2510 | ||
2515 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit><trans-unit id="3691787517663044217" datatype="html"> | 2511 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit><trans-unit id="3691787517663044217" datatype="html"> |
2516 | <source> The deletion will be sent to remote instances so they can reflect the change.</source><target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> | 2512 | <source> The deletion will be sent to remote instances so they can reflect the change.</source><target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> |
2513 | |||
2514 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">169</context></context-group></trans-unit><trans-unit id="7321800851971795962" datatype="html"> | ||
2515 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source><target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> | ||
2516 | |||
2517 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="5964038603724691720" datatype="html"> | ||
2518 | <source>Delete and re-draft</source><target state="new">Delete and re-draft</target> | ||
2517 | <context-group purpose="location"> | 2519 | <context-group purpose="location"> |
2518 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | 2520 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> |
2519 | <context context-type="linenumber">163</context> | 2521 | <context context-type="linenumber">197</context> |
2520 | </context-group> | 2522 | </context-group> |
2521 | </trans-unit><trans-unit id="7321800851971795962" datatype="html"> | 2523 | </trans-unit><trans-unit id="7163633882758007711" datatype="html"> |
2522 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source><target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> | 2524 | <source>Do you really want to delete and re-draft this comment?</source><target state="new">Do you really want to delete and re-draft this comment?</target> |
2523 | <context-group purpose="location"> | 2525 | <context-group purpose="location"> |
2524 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | 2526 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> |
2525 | <context context-type="linenumber">165</context> | 2527 | <context context-type="linenumber">197</context> |
2526 | </context-group> | 2528 | </context-group> |
2527 | </trans-unit> | 2529 | </trans-unit> |
2528 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e"> | 2530 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e"> |
2529 | <source>Add comment...</source> | 2531 | <source>Add comment...</source> |
2530 | <target>Aldoni komenton…</target> | 2532 | <target>Aldoni komenton…</target> |
2531 | 2533 | ||
2532 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | 2534 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit><trans-unit id="4e5254dedf0c12ce7e7c2197384fceebe3b29a2b" datatype="html"> |
2533 | <trans-unit id="8956c0f4c6974289fc63f1ab6b54f5b32ed65eeb" datatype="html"> | 2535 | <source>Markdown compatible</source><target state="new">Markdown compatible</target> |
2534 | <source>Reply</source> | 2536 | <context-group purpose="location"> |
2535 | <target state="translated">Respondi</target> | 2537 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> |
2536 | 2538 | <context context-type="linenumber">13</context> | |
2537 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 2539 | </context-group> |
2540 | </trans-unit><trans-unit id="4739ffad85f09defefdb6e51b45f43b2ef7c4388" datatype="html"> | ||
2541 | <source>Markdown compatible that supports:</source><target state="new">Markdown compatible that supports:</target> | ||
2542 | <context-group purpose="location"> | ||
2543 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2544 | <context context-type="linenumber">15</context> | ||
2545 | </context-group> | ||
2546 | </trans-unit><trans-unit id="9a53b17a021bb0677c156fd893461797fc497a10" datatype="html"> | ||
2547 | <source>Auto generated links</source><target state="new">Auto generated links</target> | ||
2548 | <context-group purpose="location"> | ||
2549 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2550 | <context context-type="linenumber">18</context> | ||
2551 | </context-group> | ||
2552 | </trans-unit><trans-unit id="664f99b8919d6dd2faa1c1f7c378aa86d1be5e8a" datatype="html"> | ||
2553 | <source>Break lines</source><target state="new">Break lines</target> | ||
2554 | <context-group purpose="location"> | ||
2555 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2556 | <context context-type="linenumber">19</context> | ||
2557 | </context-group> | ||
2558 | </trans-unit><trans-unit id="b15e7bec5c7833d2d9634946ccbed68967b1bee1" datatype="html"> | ||
2559 | <source>Lists</source><target state="new">Lists</target> | ||
2560 | <context-group purpose="location"> | ||
2561 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2562 | <context context-type="linenumber">20</context> | ||
2563 | </context-group> | ||
2564 | </trans-unit><trans-unit id="ab4426b60f13c00b61d6b714d390dc629f314980" datatype="html"> | ||
2565 | <source>Emphasis</source><target state="new">Emphasis</target> | ||
2566 | <context-group purpose="location"> | ||
2567 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2568 | <context context-type="linenumber">22</context> | ||
2569 | </context-group> | ||
2570 | </trans-unit><trans-unit id="4e13b179501d3d32721037e03b4c04acb9857c5f" datatype="html"> | ||
2571 | <source>bold</source><target state="new">bold</target> | ||
2572 | <context-group purpose="location"> | ||
2573 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2574 | <context context-type="linenumber">23</context> | ||
2575 | </context-group> | ||
2576 | </trans-unit><trans-unit id="3c12190421fbb2756e6bbead923df9ec5de8ede2" datatype="html"> | ||
2577 | <source>italic</source><target state="new">italic</target> | ||
2578 | <context-group purpose="location"> | ||
2579 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2580 | <context context-type="linenumber">23</context> | ||
2581 | </context-group> | ||
2582 | </trans-unit><trans-unit id="adb4bbdcb961b8aac8298d6cac554d9b25636b7a" datatype="html"> | ||
2583 | <source>Emoji shortcuts</source><target state="new">Emoji shortcuts</target> | ||
2584 | <context-group purpose="location"> | ||
2585 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2586 | <context context-type="linenumber">26</context> | ||
2587 | </context-group> | ||
2588 | </trans-unit><trans-unit id="b9809a21a8eb3c9db2a0282c5dd94bc221575c96" datatype="html"> | ||
2589 | <source>Emoji markup</source><target state="new">Emoji markup</target> | ||
2590 | <context-group purpose="location"> | ||
2591 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2592 | <context context-type="linenumber">30</context> | ||
2593 | </context-group> | ||
2594 | </trans-unit><trans-unit id="f37feb427aaa551edd1f22616be6464bc0d492de" datatype="html"> | ||
2595 | <source>See complete list</source><target state="new">See complete list</target> | ||
2596 | <context-group purpose="location"> | ||
2597 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2598 | <context context-type="linenumber">32</context> | ||
2599 | </context-group> | ||
2600 | </trans-unit> | ||
2601 | |||
2538 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135"> | 2602 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135"> |
2539 | <source>You are one step away from commenting</source> | 2603 | <source>You are one step away from commenting</source> |
2540 | <target>Nur unu paŝon vi foras de komentado</target> | 2604 | <target>Nur unu paŝon vi foras de komentado</target> |
2541 | 2605 | ||
2542 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 2606 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
2543 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> | 2607 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> |
2544 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> | 2608 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> |
2545 | <target state="translated">Vi povas komenti per konto de iu ajn nodo akorda kun la normo « ActivityPub ». Sur plej multaj platformoj, vi povas trovi la filmon per entajpo de ĝia URL en la serĉujon, kaj poste ĝin komenti en fasado de la programaro.</target> | 2609 | <target state="translated">Vi povas komenti per konto de iu ajn nodo akorda kun la normo « ActivityPub ». Sur plej multaj platformoj, vi povas trovi la filmon per entajpo de ĝia URL en la serĉujon, kaj poste ĝin komenti en fasado de la programaro.</target> |
2546 | 2610 | ||
2547 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 2611 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
2548 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb"> | 2612 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb"> |
2549 | <source>If you have an account on Mastodon or Pleroma, you can open it directly in their interface:</source> | 2613 | <source>If you have an account on Mastodon or Pleroma, you can open it directly in their interface:</source> |
2550 | <target> | 2614 | <target> |
2551 | Se vi havas konton ĉe Mastodon aŭ Pleroma, vi povas malfermi ĝin rekte en iliaj fasadoj: | 2615 | Se vi havas konton ĉe Mastodon aŭ Pleroma, vi povas malfermi ĝin rekte en iliaj fasadoj: |
2552 | </target> | 2616 | </target> |
2553 | 2617 | ||
2554 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">41</context></context-group></trans-unit> | 2618 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">65</context></context-group></trans-unit> |
2555 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> | 2619 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> |
2556 | <source>Login to comment</source> | 2620 | <source>Login to comment</source> |
2557 | <target state="translated">Salutu pr komenti</target> | 2621 | <target state="translated">Salutu pr komenti</target> |
2558 | 2622 | ||
2559 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">52</context></context-group></trans-unit> | 2623 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit><trans-unit id="974170f455ff5a9034d5737e84b4194c0046fc6b" datatype="html"> |
2624 | <source>Markdown Emoji List</source><target state="new">Markdown Emoji List</target> | ||
2625 | <context-group purpose="location"> | ||
2626 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2627 | <context context-type="linenumber">84</context> | ||
2628 | </context-group> | ||
2629 | </trans-unit><trans-unit id="2662644497259948010" datatype="html"> | ||
2630 | <source>Comment</source><target state="new">Comment</target> | ||
2631 | <context-group purpose="location"> | ||
2632 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2633 | <context context-type="linenumber">58</context> | ||
2634 | </context-group> | ||
2635 | </trans-unit><trans-unit id="4502286564339177240" datatype="html"> | ||
2636 | <source>Reply</source><target state="new">Reply</target> | ||
2637 | <context-group purpose="location"> | ||
2638 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2639 | <context context-type="linenumber">60</context> | ||
2640 | </context-group> | ||
2641 | </trans-unit> | ||
2560 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285"> | 2642 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285"> |
2561 | <source>Highlighted comment</source> | 2643 | <source>Highlighted comment</source> |
2562 | <target>Markita komento</target> | 2644 | <target>Markita komento</target> |
@@ -2571,7 +2653,7 @@ The link will expire within 1 hour.</target> | |||
2571 | <source>This comment has been deleted</source> | 2653 | <source>This comment has been deleted</source> |
2572 | <target state="translated">Ĉi tiu komento estas forigita</target> | 2654 | <target state="translated">Ĉi tiu komento estas forigita</target> |
2573 | 2655 | ||
2574 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">62</context></context-group></trans-unit> | 2656 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">61</context></context-group></trans-unit> |
2575 | <trans-unit id="9031514421077169181" datatype="html"> | 2657 | <trans-unit id="9031514421077169181" datatype="html"> |
2576 | <source>Video redundancies</source> | 2658 | <source>Video redundancies</source> |
2577 | <target state="translated">Filmaj ripetaĵoj</target> | 2659 | <target state="translated">Filmaj ripetaĵoj</target> |
@@ -3411,7 +3493,25 @@ The link will expire within 1 hour.</target> | |||
3411 | <target state="translated">Neniu konto troviĝis.</target> | 3493 | <target state="translated">Neniu konto troviĝis.</target> |
3412 | 3494 | ||
3413 | 3495 | ||
3414 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit> | 3496 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit><trans-unit id="2338185419645468935" datatype="html"> |
3497 | <source>List installed plugins</source><target state="new">List installed plugins</target> | ||
3498 | <context-group purpose="location"> | ||
3499 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3500 | <context context-type="linenumber">28</context> | ||
3501 | </context-group> | ||
3502 | </trans-unit><trans-unit id="8897412584195581488" datatype="html"> | ||
3503 | <source>Search plugins</source><target state="new">Search plugins</target> | ||
3504 | <context-group purpose="location"> | ||
3505 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3506 | <context context-type="linenumber">37</context> | ||
3507 | </context-group> | ||
3508 | </trans-unit><trans-unit id="4994333937800672218" datatype="html"> | ||
3509 | <source>Show plugin</source><target state="new">Show plugin</target> | ||
3510 | <context-group purpose="location"> | ||
3511 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3512 | <context context-type="linenumber">46</context> | ||
3513 | </context-group> | ||
3514 | </trans-unit> | ||
3415 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> | 3515 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> |
3416 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> | 3516 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> |
3417 | <target state="translated">Montrante | 3517 | <target state="translated">Montrante |
@@ -4116,7 +4216,7 @@ The link will expire within 1 hour.</target> | |||
4116 | <source>Administrator</source> | 4216 | <source>Administrator</source> |
4117 | <target>Administranto</target> | 4217 | <target>Administranto</target> |
4118 | 4218 | ||
4119 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">385</context></context-group></trans-unit> | 4219 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">383</context></context-group></trans-unit> |
4120 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587"> | 4220 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587"> |
4121 | <source>Admin email</source> | 4221 | <source>Admin email</source> |
4122 | <target>Retpoŝtadreso de administranto</target> | 4222 | <target>Retpoŝtadreso de administranto</target> |
@@ -4350,27 +4450,27 @@ The link will expire within 1 hour.</target> | |||
4350 | <source>VIDEO SETTINGS</source> | 4450 | <source>VIDEO SETTINGS</source> |
4351 | <target state="translated">FILMAJ AGORDOJ</target> | 4451 | <target state="translated">FILMAJ AGORDOJ</target> |
4352 | 4452 | ||
4353 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit> | 4453 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
4354 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> | 4454 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> |
4355 | <source>NOTIFICATIONS</source> | 4455 | <source>NOTIFICATIONS</source> |
4356 | <target state="translated">SCIIGOJ</target> | 4456 | <target state="translated">SCIIGOJ</target> |
4357 | 4457 | ||
4358 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 4458 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">37</context></context-group></trans-unit> |
4359 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> | 4459 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> |
4360 | <source>INTERFACE</source> | 4460 | <source>INTERFACE</source> |
4361 | <target state="translated">FASADO</target> | 4461 | <target state="translated">FASADO</target> |
4362 | 4462 | ||
4363 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 4463 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit> |
4364 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> | 4464 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> |
4365 | <source>PASSWORD</source> | 4465 | <source>PASSWORD</source> |
4366 | <target state="translated">PASVORTO</target> | 4466 | <target state="translated">PASVORTO</target> |
4367 | 4467 | ||
4368 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">59</context></context-group></trans-unit> | 4468 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">57</context></context-group></trans-unit> |
4369 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> | 4469 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> |
4370 | <source>EMAIL</source> | 4470 | <source>EMAIL</source> |
4371 | <target state="translated">RETPOŜTO</target> | 4471 | <target state="translated">RETPOŜTO</target> |
4372 | 4472 | ||
4373 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">69</context></context-group></trans-unit> | 4473 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">67</context></context-group></trans-unit> |
4374 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> | 4474 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> |
4375 | <source>DANGER ZONE</source> | 4475 | <source>DANGER ZONE</source> |
4376 | <target state="translated">DANĜERUJO</target> | 4476 | <target state="translated">DANĜERUJO</target> |
@@ -4620,7 +4720,31 @@ The link will expire within 1 hour.</target> | |||
4620 | <source>No ownership change request found.</source> | 4720 | <source>No ownership change request found.</source> |
4621 | <target state="translated">Neniu peto de ŝanĝo de posedo troviĝis.</target> | 4721 | <target state="translated">Neniu peto de ŝanĝo de posedo troviĝis.</target> |
4622 | 4722 | ||
4623 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit> | 4723 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit><trans-unit id="4247400351982331798" datatype="html"> |
4724 | <source>Account settings</source><target state="new">Account settings</target> | ||
4725 | <context-group purpose="location"> | ||
4726 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4727 | <context context-type="linenumber">37</context> | ||
4728 | </context-group> | ||
4729 | </trans-unit><trans-unit id="154062590416726309" datatype="html"> | ||
4730 | <source>Account playlists</source><target state="new">Account playlists</target> | ||
4731 | <context-group purpose="location"> | ||
4732 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4733 | <context context-type="linenumber">55</context> | ||
4734 | </context-group> | ||
4735 | </trans-unit><trans-unit id="6550287183367517925" datatype="html"> | ||
4736 | <source>Create new playlist</source><target state="new">Create new playlist</target> | ||
4737 | <context-group purpose="location"> | ||
4738 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4739 | <context context-type="linenumber">64</context> | ||
4740 | </context-group> | ||
4741 | </trans-unit><trans-unit id="2864486939135008600" datatype="html"> | ||
4742 | <source>Playlist elements</source><target state="new">Playlist elements</target> | ||
4743 | <context-group purpose="location"> | ||
4744 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4745 | <context context-type="linenumber">73</context> | ||
4746 | </context-group> | ||
4747 | </trans-unit> | ||
4624 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> | 4748 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> |
4625 | <source>My imports</source> | 4749 | <source>My imports</source> |
4626 | <target state="new">My imports</target> | 4750 | <target state="new">My imports</target> |
@@ -4890,7 +5014,25 @@ The link will expire within 1 hour.</target> | |||
4890 | <source>An error occurred.</source> | 5014 | <source>An error occurred.</source> |
4891 | <target>Eraris.</target> | 5015 | <target>Eraris.</target> |
4892 | 5016 | ||
4893 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 5017 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit><trans-unit id="9128669621822125729" datatype="html"> |
5018 | <source>Video channel videos</source><target state="new">Video channel videos</target> | ||
5019 | <context-group purpose="location"> | ||
5020 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5021 | <context context-type="linenumber">25</context> | ||
5022 | </context-group> | ||
5023 | </trans-unit><trans-unit id="3193822049276963401" datatype="html"> | ||
5024 | <source>Video channel playlists</source><target state="new">Video channel playlists</target> | ||
5025 | <context-group purpose="location"> | ||
5026 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5027 | <context context-type="linenumber">38</context> | ||
5028 | </context-group> | ||
5029 | </trans-unit><trans-unit id="4723526509708949088" datatype="html"> | ||
5030 | <source>About video channel</source><target state="new">About video channel</target> | ||
5031 | <context-group purpose="location"> | ||
5032 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5033 | <context context-type="linenumber">47</context> | ||
5034 | </context-group> | ||
5035 | </trans-unit> | ||
4894 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97"> | 5036 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97"> |
4895 | <source>Request email for account verification</source> | 5037 | <source>Request email for account verification</source> |
4896 | <target> | 5038 | <target> |
@@ -5007,7 +5149,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5007 | <source>Stats</source> | 5149 | <source>Stats</source> |
5008 | <target>Statistiko</target> | 5150 | <target>Statistiko</target> |
5009 | 5151 | ||
5010 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 5152 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
5011 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc"> | 5153 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc"> |
5012 | <source>Joined <x id="INTERPOLATION"/></source> | 5154 | <source>Joined <x id="INTERPOLATION"/></source> |
5013 | <target>Aliĝis je | 5155 | <target>Aliĝis je |
@@ -5377,7 +5519,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5377 | <source>This instance does not have instances followings.</source> | 5519 | <source>This instance does not have instances followings.</source> |
5378 | <target state="new">This instance does not have instances followings.</target> | 5520 | <target state="new">This instance does not have instances followings.</target> |
5379 | 5521 | ||
5380 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit> | 5522 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit><trans-unit id="4195286790385468087" datatype="html"> |
5523 | <source>About this instance</source><target state="new">About this instance</target> | ||
5524 | <context-group purpose="location"> | ||
5525 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5526 | <context context-type="linenumber">26</context> | ||
5527 | </context-group> | ||
5528 | </trans-unit><trans-unit id="8773846522957677259" datatype="html"> | ||
5529 | <source>About PeerTube</source><target state="new">About PeerTube</target> | ||
5530 | <context-group purpose="location"> | ||
5531 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5532 | <context context-type="linenumber">38</context> | ||
5533 | </context-group> | ||
5534 | </trans-unit><trans-unit id="5782088737558028158" datatype="html"> | ||
5535 | <source>About follows</source><target state="new">About follows</target> | ||
5536 | <context-group purpose="location"> | ||
5537 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5538 | <context context-type="linenumber">47</context> | ||
5539 | </context-group> | ||
5540 | </trans-unit> | ||
5381 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> | 5541 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> |
5382 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> | 5542 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> |
5383 | <target state="translated">Evoluigita kun ❤ de | 5543 | <target state="translated">Evoluigita kun ❤ de |
@@ -5547,6 +5707,12 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5547 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 5707 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> |
5548 | <context context-type="linenumber">1</context> | 5708 | <context context-type="linenumber">1</context> |
5549 | </context-group> | 5709 | </context-group> |
5710 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
5711 | <source>Get help</source><target state="new">Get help</target> | ||
5712 | <context-group purpose="location"> | ||
5713 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | ||
5714 | <context context-type="linenumber">16</context> | ||
5715 | </context-group> | ||
5550 | </trans-unit> | 5716 | </trans-unit> |
5551 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1"> | 5717 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1"> |
5552 | <source>Create my account</source> | 5718 | <source>Create my account</source> |
@@ -5667,7 +5833,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5667 | 5833 | ||
5668 | </target> | 5834 | </target> |
5669 | 5835 | ||
5670 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 5836 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit><trans-unit id="3301086086650990787" datatype="html"> |
5837 | <source>Register</source><target state="new">Register</target> | ||
5838 | <context-group purpose="location"> | ||
5839 | <context context-type="sourcefile">../app/+signup/+register/register-routing.module.ts</context> | ||
5840 | <context context-type="linenumber">14</context> | ||
5841 | </context-group> | ||
5842 | </trans-unit> | ||
5671 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c"> | 5843 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c"> |
5672 | <source>Sorry, we couldn't find the page you were looking for.</source> | 5844 | <source>Sorry, we couldn't find the page you were looking for.</source> |
5673 | <target> | 5845 | <target> |
@@ -5690,7 +5862,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5690 | <target>Neniu priskribo</target> | 5862 | <target>Neniu priskribo</target> |
5691 | 5863 | ||
5692 | 5864 | ||
5693 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit> | 5865 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit><trans-unit id="819067926858619041" datatype="html"> |
5866 | <source>Account videos</source><target state="new">Account videos</target> | ||
5867 | <context-group purpose="location"> | ||
5868 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
5869 | <context context-type="linenumber">29</context> | ||
5870 | </context-group> | ||
5871 | </trans-unit><trans-unit id="6823616469362610020" datatype="html"> | ||
5872 | <source>Account video channels</source><target state="new">Account video channels</target> | ||
5873 | <context-group purpose="location"> | ||
5874 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
5875 | <context context-type="linenumber">42</context> | ||
5876 | </context-group> | ||
5877 | </trans-unit><trans-unit id="7678273613459026643" datatype="html"> | ||
5878 | <source>About account</source><target state="new">About account</target> | ||
5879 | <context-group purpose="location"> | ||
5880 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
5881 | <context context-type="linenumber">51</context> | ||
5882 | </context-group> | ||
5883 | </trans-unit> | ||
5694 | <trans-unit id="3755500631176893489"> | 5884 | <trans-unit id="3755500631176893489"> |
5695 | <source>Published <x id="PH"/> videos</source> | 5885 | <source>Published <x id="PH"/> videos</source> |
5696 | <target>Publikigis | 5886 | <target>Publikigis |
@@ -5807,7 +5997,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5807 | <source>Configuration updated.</source> | 5997 | <source>Configuration updated.</source> |
5808 | <target>Agordo ĝisdatiĝis.</target> | 5998 | <target>Agordo ĝisdatiĝis.</target> |
5809 | 5999 | ||
5810 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit> | 6000 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit><trans-unit id="6284468333579755406" datatype="html"> |
6001 | <source>Edit custom configuration</source><target state="new">Edit custom configuration</target> | ||
6002 | <context-group purpose="location"> | ||
6003 | <context context-type="sourcefile">../app/+admin/config/config.routes.ts</context> | ||
6004 | <context context-type="linenumber">26</context> | ||
6005 | </context-group> | ||
6006 | </trans-unit> | ||
5811 | 6007 | ||
5812 | 6008 | ||
5813 | <trans-unit id="6549061957433635758" datatype="html"> | 6009 | <trans-unit id="6549061957433635758" datatype="html"> |
@@ -6286,7 +6482,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6286 | <x id="PH"/> ĝisdatiĝis. | 6482 | <x id="PH"/> ĝisdatiĝis. |
6287 | </target> | 6483 | </target> |
6288 | 6484 | ||
6289 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 6485 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit><trans-unit id="3229595422546554334" datatype="html"> |
6486 | <source>Jobs</source><target state="new">Jobs</target> | ||
6487 | <context-group purpose="location"> | ||
6488 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6489 | <context context-type="linenumber">26</context> | ||
6490 | </context-group> | ||
6491 | </trans-unit><trans-unit id="4804785061014590286" datatype="html"> | ||
6492 | <source>Logs</source><target state="new">Logs</target> | ||
6493 | <context-group purpose="location"> | ||
6494 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6495 | <context context-type="linenumber">37</context> | ||
6496 | </context-group> | ||
6497 | </trans-unit> | ||
6290 | <trans-unit id="3150704904301058778"> | 6498 | <trans-unit id="3150704904301058778"> |
6291 | <source>The plugin index is not available. Please retry later.</source> | 6499 | <source>The plugin index is not available. Please retry later.</source> |
6292 | <target>Indekso de kromprogramoj ne atingeblas. Bonvolu reprovi poste.</target> | 6500 | <target>Indekso de kromprogramoj ne atingeblas. Bonvolu reprovi poste.</target> |
@@ -6400,6 +6608,18 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6400 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> | 6608 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> |
6401 | <context context-type="linenumber">86</context> | 6609 | <context context-type="linenumber">86</context> |
6402 | </context-group> | 6610 | </context-group> |
6611 | </trans-unit><trans-unit id="2903648076838460070" datatype="html"> | ||
6612 | <source>Videos blocked</source><target state="new">Videos blocked</target> | ||
6613 | <context-group purpose="location"> | ||
6614 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6615 | <context context-type="linenumber">67</context> | ||
6616 | </context-group> | ||
6617 | </trans-unit><trans-unit id="7805059636749367886" datatype="html"> | ||
6618 | <source>Muted instances</source><target state="new">Muted instances</target> | ||
6619 | <context-group purpose="location"> | ||
6620 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6621 | <context context-type="linenumber">89</context> | ||
6622 | </context-group> | ||
6403 | </trans-unit> | 6623 | </trans-unit> |
6404 | <trans-unit id="5974506725502681113"> | 6624 | <trans-unit id="5974506725502681113"> |
6405 | <source>Password changed for user <x id="PH"/>.</source> | 6625 | <source>Password changed for user <x id="PH"/>.</source> |
@@ -6412,7 +6632,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6412 | <source>Update user password</source> | 6632 | <source>Update user password</source> |
6413 | <target>Ĝisdatigi pasvorton de uzanto</target> | 6633 | <target>Ĝisdatigi pasvorton de uzanto</target> |
6414 | 6634 | ||
6415 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit> | 6635 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit><trans-unit id="177544274549739411" datatype="html"> |
6636 | <source>Following list</source><target state="new">Following list</target> | ||
6637 | <context-group purpose="location"> | ||
6638 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6639 | <context context-type="linenumber">28</context> | ||
6640 | </context-group> | ||
6641 | </trans-unit><trans-unit id="8092429110007204784" datatype="html"> | ||
6642 | <source>Followers list</source><target state="new">Followers list</target> | ||
6643 | <context-group purpose="location"> | ||
6644 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6645 | <context context-type="linenumber">37</context> | ||
6646 | </context-group> | ||
6647 | </trans-unit> | ||
6416 | <trans-unit id="780323526182667308" datatype="html"> | 6648 | <trans-unit id="780323526182667308" datatype="html"> |
6417 | <source>User <x id="PH"/> updated.</source> | 6649 | <source>User <x id="PH"/> updated.</source> |
6418 | <target state="translated">Uzanto | 6650 | <target state="translated">Uzanto |
@@ -6431,7 +6663,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6431 | <x id="PH"/>. | 6663 | <x id="PH"/>. |
6432 | </target> | 6664 | </target> |
6433 | 6665 | ||
6434 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="8564701209009684429" datatype="html"> | 6666 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="7483807629538115183" datatype="html"> |
6667 | <source>Users list</source><target state="new">Users list</target> | ||
6668 | <context-group purpose="location"> | ||
6669 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6670 | <context context-type="linenumber">27</context> | ||
6671 | </context-group> | ||
6672 | </trans-unit><trans-unit id="1525334987774465166" datatype="html"> | ||
6673 | <source>Create a user</source><target state="new">Create a user</target> | ||
6674 | <context-group purpose="location"> | ||
6675 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6676 | <context context-type="linenumber">36</context> | ||
6677 | </context-group> | ||
6678 | </trans-unit><trans-unit id="5552039423287890133" datatype="html"> | ||
6679 | <source>Update a user</source><target state="new">Update a user</target> | ||
6680 | <context-group purpose="location"> | ||
6681 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6682 | <context context-type="linenumber">48</context> | ||
6683 | </context-group> | ||
6684 | </trans-unit><trans-unit id="8564701209009684429" datatype="html"> | ||
6435 | <source>Federation</source><target state="new">Federation</target> | 6685 | <source>Federation</source><target state="new">Federation</target> |
6436 | <context-group purpose="location"> | 6686 | <context-group purpose="location"> |
6437 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> | 6687 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> |
@@ -6785,7 +7035,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6785 | <source>Views for the day</source> | 7035 | <source>Views for the day</source> |
6786 | <target state="translated">Vidoj dum la tago</target> | 7036 | <target state="translated">Vidoj dum la tago</target> |
6787 | 7037 | ||
6788 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit> | 7038 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit><trans-unit id="4707367314920217630" datatype="html"> |
7039 | <source>Create new video channel</source><target state="new">Create new video channel</target> | ||
7040 | <context-group purpose="location"> | ||
7041 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7042 | <context context-type="linenumber">22</context> | ||
7043 | </context-group> | ||
7044 | </trans-unit><trans-unit id="6059091237492573541" datatype="html"> | ||
7045 | <source>Update video channel</source><target state="new">Update video channel</target> | ||
7046 | <context-group purpose="location"> | ||
7047 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7048 | <context context-type="linenumber">31</context> | ||
7049 | </context-group> | ||
7050 | </trans-unit><trans-unit id="6595008830732269870" datatype="html"> | ||
7051 | <source>Not found</source><target state="new">Not found</target> | ||
7052 | <context-group purpose="location"> | ||
7053 | <context context-type="sourcefile">../app/+page-not-found/page-not-found-routing.module.ts</context> | ||
7054 | <context context-type="linenumber">13</context> | ||
7055 | </context-group> | ||
7056 | </trans-unit> | ||
6789 | <trans-unit id="5032453707232754344"> | 7057 | <trans-unit id="5032453707232754344"> |
6790 | <source>Playlist <x id="PH"/> created.</source> | 7058 | <source>Playlist <x id="PH"/> created.</source> |
6791 | <target>Ludlisto | 7059 | <target>Ludlisto |
@@ -6803,7 +7071,31 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6803 | <source>Update playlist</source> | 7071 | <source>Update playlist</source> |
6804 | <target state="new">Update playlist</target> | 7072 | <target state="new">Update playlist</target> |
6805 | 7073 | ||
6806 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-video-playlists/my-account-video-playlist-elements.component.ts</context><context context-type="linenumber">48</context></context-group></trans-unit> | 7074 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">82</context></context-group></trans-unit><trans-unit id="3410331549417637431" datatype="html"> |
7075 | <source>Account video imports</source><target state="new">Account video imports</target> | ||
7076 | <context-group purpose="location"> | ||
7077 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7078 | <context context-type="linenumber">105</context> | ||
7079 | </context-group> | ||
7080 | </trans-unit><trans-unit id="4434998055872154420" datatype="html"> | ||
7081 | <source>Account subscriptions</source><target state="new">Account subscriptions</target> | ||
7082 | <context-group purpose="location"> | ||
7083 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7084 | <context context-type="linenumber">114</context> | ||
7085 | </context-group> | ||
7086 | </trans-unit><trans-unit id="6019411775996586321" datatype="html"> | ||
7087 | <source>Videos history</source><target state="new">Videos history</target> | ||
7088 | <context-group purpose="location"> | ||
7089 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7090 | <context context-type="linenumber">150</context> | ||
7091 | </context-group> | ||
7092 | </trans-unit><trans-unit id="5851560788527570644" datatype="html"> | ||
7093 | <source>Notifications</source><target state="new">Notifications</target> | ||
7094 | <context-group purpose="location"> | ||
7095 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7096 | <context context-type="linenumber">163</context> | ||
7097 | </context-group> | ||
7098 | </trans-unit> | ||
6807 | <trans-unit id="104404386496394770" datatype="html"> | 7099 | <trans-unit id="104404386496394770" datatype="html"> |
6808 | <source>Delete playlist</source> | 7100 | <source>Delete playlist</source> |
6809 | <target state="new">Delete playlist</target> | 7101 | <target state="new">Delete playlist</target> |
@@ -6957,7 +7249,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6957 | <x id="PH"/>. | 7249 | <x id="PH"/>. |
6958 | </target> | 7250 | </target> |
6959 | 7251 | ||
6960 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit> | 7252 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit><trans-unit id="8231550792139699065" datatype="html"> |
7253 | <source>Verify account email</source><target state="new">Verify account email</target> | ||
7254 | <context-group purpose="location"> | ||
7255 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7256 | <context context-type="linenumber">17</context> | ||
7257 | </context-group> | ||
7258 | </trans-unit><trans-unit id="4997281272800290390" datatype="html"> | ||
7259 | <source>Verify account ask send email</source><target state="new">Verify account ask send email</target> | ||
7260 | <context-group purpose="location"> | ||
7261 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7262 | <context context-type="linenumber">26</context> | ||
7263 | </context-group> | ||
7264 | </trans-unit> | ||
6961 | <trans-unit id="4180693983967989981"> | 7265 | <trans-unit id="4180693983967989981"> |
6962 | <source>Unable to find user id or verification string.</source> | 7266 | <source>Unable to find user id or verification string.</source> |
6963 | <target>Ne povas trovi identigilon aŭ konfirman ĉenon de uzanto.</target> | 7267 | <target>Ne povas trovi identigilon aŭ konfirman ĉenon de uzanto.</target> |
@@ -7082,27 +7386,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7082 | <source>any language</source> | 7386 | <source>any language</source> |
7083 | <target state="translated">ajna lingvo</target> | 7387 | <target state="translated">ajna lingvo</target> |
7084 | 7388 | ||
7085 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">202</context></context-group></trans-unit> | 7389 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">229</context></context-group></trans-unit> |
7086 | <trans-unit id="5633144232269377096" datatype="html"> | 7390 | <trans-unit id="5633144232269377096" datatype="html"> |
7087 | <source>hide</source> | 7391 | <source>hide</source> |
7088 | <target state="translated">kaŝi</target> | 7392 | <target state="translated">kaŝi</target> |
7089 | 7393 | ||
7090 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">118</context></context-group></trans-unit> | 7394 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> |
7091 | <trans-unit id="8603861867909474404" datatype="html"> | 7395 | <trans-unit id="8603861867909474404" datatype="html"> |
7092 | <source>blur</source> | 7396 | <source>blur</source> |
7093 | <target state="translated">malklarigo</target> | 7397 | <target state="translated">malklarigo</target> |
7094 | 7398 | ||
7095 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> | 7399 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> |
7096 | <trans-unit id="4534458451100881847" datatype="html"> | 7400 | <trans-unit id="4534458451100881847" datatype="html"> |
7097 | <source>display</source> | 7401 | <source>display</source> |
7098 | <target state="new">display</target> | 7402 | <target state="new">display</target> |
7099 | 7403 | ||
7100 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> | 7404 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">127</context></context-group></trans-unit> |
7101 | <trans-unit id="4467323362722952678" datatype="html"> | 7405 | <trans-unit id="4467323362722952678" datatype="html"> |
7102 | <source>Unknown</source> | 7406 | <source>Unknown</source> |
7103 | <target state="translated">Nekonata</target> | 7407 | <target state="translated">Nekonata</target> |
7104 | 7408 | ||
7105 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">190</context></context-group></trans-unit> | 7409 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">193</context></context-group></trans-unit> |
7106 | <trans-unit id="8781423666414310853"> | 7410 | <trans-unit id="8781423666414310853"> |
7107 | <source>Your password has been successfully reset!</source> | 7411 | <source>Your password has been successfully reset!</source> |
7108 | <target>Via pasvorto estas sukcese restarigita!</target> | 7412 | <target>Via pasvorto estas sukcese restarigita!</target> |
@@ -8220,27 +8524,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8220 | <source>Emphasis</source> | 8524 | <source>Emphasis</source> |
8221 | <target>Emfazo</target> | 8525 | <target>Emfazo</target> |
8222 | 8526 | ||
8223 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">77</context></context-group></trans-unit> | 8527 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> |
8224 | <trans-unit id="7565716024468232322"> | 8528 | <trans-unit id="7565716024468232322"> |
8225 | <source>Links</source> | 8529 | <source>Links</source> |
8226 | <target>Ligiloj</target> | 8530 | <target>Ligiloj</target> |
8227 | 8531 | ||
8228 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">78</context></context-group></trans-unit> | 8532 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> |
8229 | <trans-unit id="7838476952710404110"> | 8533 | <trans-unit id="7838476952710404110"> |
8230 | <source>New lines</source> | 8534 | <source>New lines</source> |
8231 | <target>Linifinoj</target> | 8535 | <target>Linifinoj</target> |
8232 | 8536 | ||
8233 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 8537 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">83</context></context-group></trans-unit> |
8234 | <trans-unit id="8756167649220050929"> | 8538 | <trans-unit id="8756167649220050929"> |
8235 | <source>Lists</source> | 8539 | <source>Lists</source> |
8236 | <target>Listoj</target> | 8540 | <target>Listoj</target> |
8237 | 8541 | ||
8238 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">80</context></context-group></trans-unit> | 8542 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">84</context></context-group></trans-unit> |
8239 | <trans-unit id="414887388288176527"> | 8543 | <trans-unit id="414887388288176527"> |
8240 | <source>Images</source> | 8544 | <source>Images</source> |
8241 | <target>Bildoj</target> | 8545 | <target>Bildoj</target> |
8242 | 8546 | ||
8243 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> | 8547 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">85</context></context-group></trans-unit> |
8244 | <trans-unit id="5708680277917691451"> | 8548 | <trans-unit id="5708680277917691451"> |
8245 | <source> | 8549 | <source> |
8246 | <x id="PH"/> users banned. | 8550 | <x id="PH"/> users banned. |
@@ -8636,7 +8940,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8636 | <source>Moderator</source> | 8940 | <source>Moderator</source> |
8637 | <target>Reguligisto</target> | 8941 | <target>Reguligisto</target> |
8638 | 8942 | ||
8639 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">386</context></context-group></trans-unit> | 8943 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">384</context></context-group></trans-unit> |
8640 | <trans-unit id="3723085768598852106"> | 8944 | <trans-unit id="3723085768598852106"> |
8641 | <source>Video removed from | 8945 | <source>Video removed from |
8642 | <x id="PH"/> | 8946 | <x id="PH"/> |
@@ -8709,7 +9013,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8709 | <source>Do you really want to delete this comment?</source> | 9013 | <source>Do you really want to delete this comment?</source> |
8710 | <target state="new">Do you really want to delete this comment?</target> | 9014 | <target state="new">Do you really want to delete this comment?</target> |
8711 | 9015 | ||
8712 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">434</context></context-group></trans-unit> | 9016 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">166</context></context-group></trans-unit> |
8713 | <trans-unit id="7837272126865175984" datatype="html"> | 9017 | <trans-unit id="7837272126865175984" datatype="html"> |
8714 | <source>Comment deleted.</source> | 9018 | <source>Comment deleted.</source> |
8715 | <target state="new">Comment deleted.</target> | 9019 | <target state="new">Comment deleted.</target> |
@@ -8821,9 +9125,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8821 | 9125 | ||
8822 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> | 9126 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> |
8823 | <source>Report</source><target state="new">Report</target> | 9127 | <source>Report</source><target state="new">Report</target> |
9128 | |||
9129 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="4814285799071780083" datatype="html"> | ||
9130 | <source>Remove</source><target state="new">Remove</target> | ||
8824 | <context-group purpose="location"> | 9131 | <context-group purpose="location"> |
8825 | <context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> | 9132 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> |
8826 | <context context-type="linenumber">286</context> | 9133 | <context context-type="linenumber">179</context> |
9134 | </context-group> | ||
9135 | </trans-unit><trans-unit id="6871668720687277843" datatype="html"> | ||
9136 | <source>Remove & re-draft</source><target state="new">Remove & re-draft</target> | ||
9137 | <context-group purpose="location"> | ||
9138 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> | ||
9139 | <context context-type="linenumber">187</context> | ||
8827 | </context-group> | 9140 | </context-group> |
8828 | </trans-unit> | 9141 | </trans-unit> |
8829 | <trans-unit id="4903651219400691248" datatype="html"> | 9142 | <trans-unit id="4903651219400691248" datatype="html"> |
@@ -8927,22 +9240,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8927 | <source>Only I can see this video</source> | 9240 | <source>Only I can see this video</source> |
8928 | <target>Nur mi povas vidi ĉi tiun filmon</target> | 9241 | <target>Nur mi povas vidi ĉi tiun filmon</target> |
8929 | 9242 | ||
8930 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">340</context></context-group></trans-unit> | 9243 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">341</context></context-group></trans-unit> |
8931 | <trans-unit id="6767380569816110388" datatype="html"> | 9244 | <trans-unit id="6767380569816110388" datatype="html"> |
8932 | <source>Only shareable via a private link</source> | 9245 | <source>Only shareable via a private link</source> |
8933 | <target state="new">Only shareable via a private link</target> | 9246 | <target state="new">Only shareable via a private link</target> |
8934 | 9247 | ||
8935 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">344</context></context-group></trans-unit> | 9248 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">345</context></context-group></trans-unit> |
8936 | <trans-unit id="6828965264297239528"> | 9249 | <trans-unit id="6828965264297239528"> |
8937 | <source>Anyone can see this video</source> | 9250 | <source>Anyone can see this video</source> |
8938 | <target>Iu ajn povas vidi ĉi tiun filmon</target> | 9251 | <target>Iu ajn povas vidi ĉi tiun filmon</target> |
8939 | 9252 | ||
8940 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">348</context></context-group></trans-unit> | 9253 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">349</context></context-group></trans-unit> |
8941 | <trans-unit id="1425933035739773115" datatype="html"> | 9254 | <trans-unit id="1425933035739773115" datatype="html"> |
8942 | <source>Only users of this instance can see this video</source> | 9255 | <source>Only users of this instance can see this video</source> |
8943 | <target state="translated">Nur uzantoj de ĉi tiu nodo povas vidi ĉi tiun filmon</target> | 9256 | <target state="translated">Nur uzantoj de ĉi tiu nodo povas vidi ĉi tiun filmon</target> |
8944 | 9257 | ||
8945 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">352</context></context-group></trans-unit> | 9258 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">353</context></context-group></trans-unit> |
8946 | <trans-unit id="5210096066382592800"> | 9259 | <trans-unit id="5210096066382592800"> |
8947 | <source>Video to import updated.</source> | 9260 | <source>Video to import updated.</source> |
8948 | <target>Enportota filmo ĝisdatigita.</target> | 9261 | <target>Enportota filmo ĝisdatigita.</target> |
@@ -9022,7 +9335,7 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9022 | <target state="new">Report comment</target> | 9335 | <target state="new">Report comment</target> |
9023 | 9336 | ||
9024 | 9337 | ||
9025 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 9338 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/report-modals/comment-report.component.ts</context><context context-type="linenumber">51</context></context-group></trans-unit> |
9026 | 9339 | ||
9027 | 9340 | ||
9028 | <trans-unit id="6775540171466219199" datatype="html"> | 9341 | <trans-unit id="6775540171466219199" datatype="html"> |
@@ -9186,6 +9499,36 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9186 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> | 9499 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> |
9187 | <context context-type="linenumber">36</context> | 9500 | <context context-type="linenumber">36</context> |
9188 | </context-group> | 9501 | </context-group> |
9502 | </trans-unit><trans-unit id="4668975178372693951" datatype="html"> | ||
9503 | <source>Discover videos</source><target state="new">Discover videos</target> | ||
9504 | <context-group purpose="location"> | ||
9505 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9506 | <context context-type="linenumber">23</context> | ||
9507 | </context-group> | ||
9508 | </trans-unit><trans-unit id="8067135025051844577" datatype="html"> | ||
9509 | <source>Trending videos</source><target state="new">Trending videos</target> | ||
9510 | <context-group purpose="location"> | ||
9511 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9512 | <context context-type="linenumber">32</context> | ||
9513 | </context-group> | ||
9514 | </trans-unit><trans-unit id="664221386829541948" datatype="html"> | ||
9515 | <source>Recently added videos</source><target state="new">Recently added videos</target> | ||
9516 | <context-group purpose="location"> | ||
9517 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9518 | <context context-type="linenumber">58</context> | ||
9519 | </context-group> | ||
9520 | </trans-unit><trans-unit id="8212906256415538361" datatype="html"> | ||
9521 | <source>Upload a video</source><target state="new">Upload a video</target> | ||
9522 | <context-group purpose="location"> | ||
9523 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9524 | <context context-type="linenumber">97</context> | ||
9525 | </context-group> | ||
9526 | </trans-unit><trans-unit id="7590784934397800835" datatype="html"> | ||
9527 | <source>Edit a video</source><target state="new">Edit a video</target> | ||
9528 | <context-group purpose="location"> | ||
9529 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9530 | <context context-type="linenumber">106</context> | ||
9531 | </context-group> | ||
9189 | </trans-unit> | 9532 | </trans-unit> |
9190 | </body> | 9533 | </body> |
9191 | </file> | 9534 | </file> |
diff --git a/client/src/locale/angular.eu-ES.xlf b/client/src/locale/angular.eu-ES.xlf index ef9ebb7db..be2a9ea5e 100644 --- a/client/src/locale/angular.eu-ES.xlf +++ b/client/src/locale/angular.eu-ES.xlf | |||
@@ -295,7 +295,7 @@ | |||
295 | <target state="translated">Aukerak</target> | 295 | <target state="translated">Aukerak</target> |
296 | 296 | ||
297 | 297 | ||
298 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 298 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">48</context></context-group></trans-unit> |
299 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d" datatype="html"> | 299 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d" datatype="html"> |
300 | <source>Start at</source> | 300 | <source>Start at</source> |
301 | <target state="new">Start at</target> | 301 | <target state="new">Start at</target> |
@@ -427,7 +427,7 @@ | |||
427 | Utzi | 427 | Utzi |
428 | </target> | 428 | </target> |
429 | 429 | ||
430 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> | 430 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit> |
431 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd"> | 431 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd"> |
432 | <source>Download</source> | 432 | <source>Download</source> |
433 | <target>Deskargatu</target> | 433 | <target>Deskargatu</target> |
@@ -544,7 +544,7 @@ | |||
544 | 544 | ||
545 | 545 | ||
546 | 546 | ||
547 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 547 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
548 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc" datatype="html"> | 548 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc" datatype="html"> |
549 | <source>Edit starts/stops at</source> | 549 | <source>Edit starts/stops at</source> |
550 | <target state="new">Edit starts/stops at</target> | 550 | <target state="new">Edit starts/stops at</target> |
@@ -584,7 +584,7 @@ | |||
584 | 584 | ||
585 | 585 | ||
586 | 586 | ||
587 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> | 587 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
588 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> | 588 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> |
589 | <source>Edit</source> | 589 | <source>Edit</source> |
590 | <target>Editatu</target> | 590 | <target>Editatu</target> |
@@ -609,17 +609,10 @@ | |||
609 | <target>Aurrebista osoa</target> | 609 | <target>Aurrebista osoa</target> |
610 | 610 | ||
611 | <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></trans-unit> | 611 | <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></trans-unit> |
612 | <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f"> | 612 | <trans-unit id="8644431249513874405" datatype="html"> |
613 | <source>Get help</source> | ||
614 | <target>Jaso laguntza</target> | ||
615 | |||
616 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit><trans-unit id="8644431249513874405" datatype="html"> | ||
617 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> | 613 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> |
618 | <context-group purpose="location"> | 614 | |
619 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 615 | <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></trans-unit> |
620 | <context context-type="linenumber">71</context> | ||
621 | </context-group> | ||
622 | </trans-unit> | ||
623 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> | 616 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> |
624 | <source>Recommended</source> | 617 | <source>Recommended</source> |
625 | <target state="translated">Gomendatuak</target> | 618 | <target state="translated">Gomendatuak</target> |
@@ -659,7 +652,7 @@ | |||
659 | <source>PROFILE SETTINGS</source> | 652 | <source>PROFILE SETTINGS</source> |
660 | <target state="new">PROFILE SETTINGS</target> | 653 | <target state="new">PROFILE SETTINGS</target> |
661 | 654 | ||
662 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 655 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">12</context></context-group></trans-unit> |
663 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3"> | 656 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3"> |
664 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> | 657 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> |
665 | <target> | 658 | <target> |
@@ -825,11 +818,8 @@ | |||
825 | 818 | ||
826 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> | 819 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> |
827 | <source>User</source><target state="new">User</target> | 820 | <source>User</source><target state="new">User</target> |
828 | <context-group purpose="location"> | 821 | |
829 | <context context-type="sourcefile">../app/core/users/user.service.ts</context> | 822 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit> |
830 | <context context-type="linenumber">384</context> | ||
831 | </context-group> | ||
832 | </trans-unit> | ||
833 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0"> | 823 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0"> |
834 | <source>Ban</source> | 824 | <source>Ban</source> |
835 | <target>Debekatu</target> | 825 | <target>Debekatu</target> |
@@ -1267,89 +1257,89 @@ The link will expire within 1 hour.</target> | |||
1267 | <source>Account settings</source> | 1257 | <source>Account settings</source> |
1268 | <target state="translated">Kontuaren konfigurazioa</target> | 1258 | <target state="translated">Kontuaren konfigurazioa</target> |
1269 | 1259 | ||
1270 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 1260 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
1271 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> | 1261 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> |
1272 | <source>Channels settings</source> | 1262 | <source>Channels settings</source> |
1273 | <target state="translated">Kanalaren konfigurazioa</target> | 1263 | <target state="translated">Kanalaren konfigurazioa</target> |
1274 | 1264 | ||
1275 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 1265 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> |
1276 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> | 1266 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> |
1277 | <source>Interface:</source> | 1267 | <source>Interface:</source> |
1278 | <target state="new">Interface:</target> | 1268 | <target state="new">Interface:</target> |
1279 | 1269 | ||
1280 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 1270 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1281 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> | 1271 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> |
1282 | <source>Videos:</source> | 1272 | <source>Videos:</source> |
1283 | <target state="new">Videos:</target> | 1273 | <target state="new">Videos:</target> |
1284 | 1274 | ||
1285 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 1275 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> |
1286 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> | 1276 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> |
1287 | <source>Sensitive:</source> | 1277 | <source>Sensitive:</source> |
1288 | <target state="new">Sensitive:</target> | 1278 | <target state="new">Sensitive:</target> |
1289 | 1279 | ||
1290 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 1280 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">54</context></context-group></trans-unit> |
1291 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1281 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> |
1292 | <source>Interface: <x id="INTERPOLATION"/></source> | 1282 | <source>Interface: <x id="INTERPOLATION"/></source> |
1293 | <target state="translated">Interfazea: | 1283 | <target state="translated">Interfazea: |
1294 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> | 1284 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> |
1295 | </target> | 1285 | </target> |
1296 | 1286 | ||
1297 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">156</context></context-group></trans-unit> | 1287 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> |
1298 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1288 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1299 | <source>Help share videos</source> | 1289 | <source>Help share videos</source> |
1300 | <target state="new">Help share videos</target> | 1290 | <target state="new">Help share videos</target> |
1301 | 1291 | ||
1302 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> | 1292 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
1303 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> | 1293 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> |
1304 | <source>More account settings</source> | 1294 | <source>More account settings</source> |
1305 | <target state="translated">Kontuaren konfigurazio gehiago</target> | 1295 | <target state="translated">Kontuaren konfigurazio gehiago</target> |
1306 | 1296 | ||
1307 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> | 1297 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> |
1308 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> | 1298 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> |
1309 | <source>Keyboard shortcuts</source> | 1299 | <source>Keyboard shortcuts</source> |
1310 | <target state="translated">Teklatu-lasterbideak</target> | 1300 | <target state="translated">Teklatu-lasterbideak</target> |
1311 | 1301 | ||
1312 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 1302 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">72</context></context-group></trans-unit> |
1313 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> | 1303 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> |
1314 | <source>Help</source> | 1304 | <source>Help</source> |
1315 | <target state="translated">Laguntza</target> | 1305 | <target state="translated">Laguntza</target> |
1316 | 1306 | ||
1317 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1307 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1318 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> | 1308 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> |
1319 | <source>Get help using PeerTube</source> | 1309 | <source>Get help using PeerTube</source> |
1320 | <target state="translated">Lortu PeerTube erabiltzeko laguntza</target> | 1310 | <target state="translated">Lortu PeerTube erabiltzeko laguntza</target> |
1321 | 1311 | ||
1322 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">161</context></context-group></trans-unit> | 1312 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">167</context></context-group></trans-unit> |
1323 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> | 1313 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> |
1324 | <source>Shortcuts</source> | 1314 | <source>Shortcuts</source> |
1325 | <target state="translated">Lasterbideak</target> | 1315 | <target state="translated">Lasterbideak</target> |
1326 | 1316 | ||
1327 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1317 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1328 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> | 1318 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> |
1329 | <source>powered by PeerTube</source> | 1319 | <source>powered by PeerTube</source> |
1330 | <target state="new">powered by PeerTube</target> | 1320 | <target state="new">powered by PeerTube</target> |
1331 | 1321 | ||
1332 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | 1322 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">177</context></context-group></trans-unit> |
1333 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> | 1323 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> |
1334 | <source>powered by PeerTube - CopyLeft 2015-2020</source> | 1324 | <source>powered by PeerTube - CopyLeft 2015-2020</source> |
1335 | <target state="new">powered by PeerTube - CopyLeft 2015-2020</target> | 1325 | <target state="new">powered by PeerTube - CopyLeft 2015-2020</target> |
1336 | 1326 | ||
1337 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> | 1327 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">176</context></context-group></trans-unit> |
1338 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344" datatype="html"> | 1328 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344" datatype="html"> |
1339 | <source>Log out</source> | 1329 | <source>Log out</source> |
1340 | <target state="translated">Saioa itxi</target> | 1330 | <target state="translated">Saioa itxi</target> |
1341 | 1331 | ||
1342 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">70</context></context-group></trans-unit> | 1332 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit> |
1343 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> | 1333 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> |
1344 | <source>Create an account</source> | 1334 | <source>Create an account</source> |
1345 | <target>Sortu kontu bat</target> | 1335 | <target>Sortu kontu bat</target> |
1346 | 1336 | ||
1347 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">78</context></context-group></trans-unit> | 1337 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
1348 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> | 1338 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> |
1349 | <source>MY LIBRARY</source> | 1339 | <source>MY LIBRARY</source> |
1350 | <target state="new">MY LIBRARY</target> | 1340 | <target state="new">MY LIBRARY</target> |
1351 | 1341 | ||
1352 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 1342 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">88</context></context-group></trans-unit> |
1353 | <trans-unit id="6371572688505952303"> | 1343 | <trans-unit id="6371572688505952303"> |
1354 | <source>My library</source> | 1344 | <source>My library</source> |
1355 | <target>Nire liburutegia</target> | 1345 | <target>Nire liburutegia</target> |
@@ -1389,22 +1379,22 @@ The link will expire within 1 hour.</target> | |||
1389 | <source>Videos</source> | 1379 | <source>Videos</source> |
1390 | <target>Bideoak</target> | 1380 | <target>Bideoak</target> |
1391 | 1381 | ||
1392 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">86</context></context-group></trans-unit> | 1382 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">92</context></context-group></trans-unit> |
1393 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> | 1383 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> |
1394 | <source>Playlists</source> | 1384 | <source>Playlists</source> |
1395 | <target state="new">Playlists</target> | 1385 | <target state="new">Playlists</target> |
1396 | 1386 | ||
1397 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">91</context></context-group></trans-unit> | 1387 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">97</context></context-group></trans-unit> |
1398 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2"> | 1388 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2"> |
1399 | <source>Subscriptions</source> | 1389 | <source>Subscriptions</source> |
1400 | <target>Harpidetzak</target> | 1390 | <target>Harpidetzak</target> |
1401 | 1391 | ||
1402 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 1392 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">102</context></context-group></trans-unit> |
1403 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8" datatype="html"> | 1393 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8" datatype="html"> |
1404 | <source>History</source> | 1394 | <source>History</source> |
1405 | <target state="new">History</target> | 1395 | <target state="new">History</target> |
1406 | 1396 | ||
1407 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit> | 1397 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">107</context></context-group></trans-unit> |
1408 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> | 1398 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> |
1409 | <source>VIDEOS</source> | 1399 | <source>VIDEOS</source> |
1410 | <target state="translated">BIDEOAK</target> | 1400 | <target state="translated">BIDEOAK</target> |
@@ -1416,27 +1406,27 @@ The link will expire within 1 hour.</target> | |||
1416 | <target state="translated">Aurkitu</target> | 1406 | <target state="translated">Aurkitu</target> |
1417 | 1407 | ||
1418 | 1408 | ||
1419 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">111</context></context-group></trans-unit> | 1409 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">117</context></context-group></trans-unit> |
1420 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> | 1410 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> |
1421 | <source>Trending</source> | 1411 | <source>Trending</source> |
1422 | <target>Joerak</target> | 1412 | <target>Joerak</target> |
1423 | 1413 | ||
1424 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">116</context></context-group></trans-unit> | 1414 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">122</context></context-group></trans-unit> |
1425 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> | 1415 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> |
1426 | <source>Most liked</source> | 1416 | <source>Most liked</source> |
1427 | <target state="new">Most liked</target> | 1417 | <target state="new">Most liked</target> |
1428 | 1418 | ||
1429 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">121</context></context-group></trans-unit> | 1419 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">127</context></context-group></trans-unit> |
1430 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> | 1420 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> |
1431 | <source>Recently added</source> | 1421 | <source>Recently added</source> |
1432 | <target>Gehitutako azkenak</target> | 1422 | <target>Gehitutako azkenak</target> |
1433 | 1423 | ||
1434 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">126</context></context-group></trans-unit> | 1424 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">132</context></context-group></trans-unit> |
1435 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> | 1425 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> |
1436 | <source>Administration</source> | 1426 | <source>Administration</source> |
1437 | <target>Administrazioa</target> | 1427 | <target>Administrazioa</target> |
1438 | 1428 | ||
1439 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">140</context></context-group></trans-unit> | 1429 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">146</context></context-group></trans-unit> |
1440 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> | 1430 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> |
1441 | <source>About</source> | 1431 | <source>About</source> |
1442 | <target>Honi buruz</target> | 1432 | <target>Honi buruz</target> |
@@ -1447,7 +1437,7 @@ The link will expire within 1 hour.</target> | |||
1447 | <source>Contact</source> | 1437 | <source>Contact</source> |
1448 | <target state="translated">Kontaktatu</target> | 1438 | <target state="translated">Kontaktatu</target> |
1449 | 1439 | ||
1450 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">160</context></context-group></trans-unit> | 1440 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">166</context></context-group></trans-unit> |
1451 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771" datatype="html"> | 1441 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771" datatype="html"> |
1452 | <source>View your notifications</source> | 1442 | <source>View your notifications</source> |
1453 | <target state="translated">Ikusi zure jakinarazpenak</target> | 1443 | <target state="translated">Ikusi zure jakinarazpenak</target> |
@@ -1474,7 +1464,7 @@ The link will expire within 1 hour.</target> | |||
1474 | <source>See all your notifications</source> | 1464 | <source>See all your notifications</source> |
1475 | <target state="translated">Ikusi zure jakinarazpen guztiak</target> | 1465 | <target state="translated">Ikusi zure jakinarazpen guztiak</target> |
1476 | 1466 | ||
1477 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 1467 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">40</context></context-group></trans-unit> |
1478 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> | 1468 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> |
1479 | <source>Search videos, channels…</source> | 1469 | <source>Search videos, channels…</source> |
1480 | <target state="translated">Bilatu bideoak, kanalak…</target> | 1470 | <target state="translated">Bilatu bideoak, kanalak…</target> |
@@ -1806,22 +1796,22 @@ The link will expire within 1 hour.</target> | |||
1806 | <source>FAQ</source> | 1796 | <source>FAQ</source> |
1807 | <target state="new">FAQ</target> | 1797 | <target state="new">FAQ</target> |
1808 | 1798 | ||
1809 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">163</context></context-group></trans-unit> | 1799 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
1810 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> | 1800 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> |
1811 | <source>Frequently asked questions about PeerTube</source> | 1801 | <source>Frequently asked questions about PeerTube</source> |
1812 | <target state="translated">PeerTube -ren inguruan maiz egiten diren galderak</target> | 1802 | <target state="translated">PeerTube -ren inguruan maiz egiten diren galderak</target> |
1813 | 1803 | ||
1814 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1804 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1815 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> | 1805 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> |
1816 | <source>API</source> | 1806 | <source>API</source> |
1817 | <target state="new">API</target> | 1807 | <target state="new">API</target> |
1818 | 1808 | ||
1819 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1809 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1820 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> | 1810 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> |
1821 | <source>API documentation</source> | 1811 | <source>API documentation</source> |
1822 | <target state="translated">API dokumentazioa</target> | 1812 | <target state="translated">API dokumentazioa</target> |
1823 | 1813 | ||
1824 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 1814 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
1825 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5"> | 1815 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5"> |
1826 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> | 1816 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> |
1827 | <target>Programatutako argitaratzea ( | 1817 | <target>Programatutako argitaratzea ( |
@@ -2190,7 +2180,13 @@ The link will expire within 1 hour.</target> | |||
2190 | Less customization | 2180 | Less customization |
2191 | </target> | 2181 | </target> |
2192 | 2182 | ||
2193 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit> | 2183 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit><trans-unit id="2454050363478003966" datatype="html"> |
2184 | <source>Login</source><target state="new">Login</target> | ||
2185 | <context-group purpose="location"> | ||
2186 | <context context-type="sourcefile">../app/+login/login-routing.module.ts</context> | ||
2187 | <context context-type="linenumber">14</context> | ||
2188 | </context-group> | ||
2189 | </trans-unit> | ||
2194 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e" datatype="html"> | 2190 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e" datatype="html"> |
2195 | <source>Autoplay</source> | 2191 | <source>Autoplay</source> |
2196 | <target state="new">Autoplay</target> | 2192 | <target state="new">Autoplay</target> |
@@ -2443,7 +2439,7 @@ The link will expire within 1 hour.</target> | |||
2443 | <source>No comments.</source> | 2439 | <source>No comments.</source> |
2444 | <target>Iruzkinik ez.</target> | 2440 | <target>Iruzkinik ez.</target> |
2445 | 2441 | ||
2446 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 2442 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> |
2447 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> | 2443 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> |
2448 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> | 2444 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> |
2449 | <target state="translated">Ikusi | 2445 | <target state="translated">Ikusi |
@@ -2451,7 +2447,7 @@ The link will expire within 1 hour.</target> | |||
2451 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> eta beste batzuenak | 2447 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> eta beste batzuenak |
2452 | </target> | 2448 | </target> |
2453 | 2449 | ||
2454 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">79</context></context-group></trans-unit> | 2450 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
2455 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> | 2451 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> |
2456 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> | 2452 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> |
2457 | <target state="new"> | 2453 | <target state="new"> |
@@ -2460,63 +2456,149 @@ The link will expire within 1 hour.</target> | |||
2460 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> | 2456 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> |
2461 | </target> | 2457 | </target> |
2462 | 2458 | ||
2463 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 2459 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">87</context></context-group></trans-unit> |
2464 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> | 2460 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> |
2465 | <source>View <x id="INTERPOLATION"/> replies</source> | 2461 | <source>View <x id="INTERPOLATION"/> replies</source> |
2466 | <target state="translated">Ikusi | 2462 | <target state="translated">Ikusi |
2467 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> erantzunak | 2463 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> erantzunak |
2468 | </target> | 2464 | </target> |
2469 | 2465 | ||
2470 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">85</context></context-group></trans-unit> | 2466 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">90</context></context-group></trans-unit> |
2471 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828"> | 2467 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828"> |
2472 | <source>Comments are disabled.</source> | 2468 | <source>Comments are disabled.</source> |
2473 | <target> | 2469 | <target> |
2474 | Iruzkinak desgaituta daude. | 2470 | Iruzkinak desgaituta daude. |
2475 | </target> | 2471 | </target> |
2476 | 2472 | ||
2477 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit><trans-unit id="3691787517663044217" datatype="html"> | 2473 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit><trans-unit id="3691787517663044217" datatype="html"> |
2478 | <source> The deletion will be sent to remote instances so they can reflect the change.</source><target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> | 2474 | <source> The deletion will be sent to remote instances so they can reflect the change.</source><target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> |
2475 | |||
2476 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">169</context></context-group></trans-unit><trans-unit id="7321800851971795962" datatype="html"> | ||
2477 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source><target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> | ||
2478 | |||
2479 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="5964038603724691720" datatype="html"> | ||
2480 | <source>Delete and re-draft</source><target state="new">Delete and re-draft</target> | ||
2479 | <context-group purpose="location"> | 2481 | <context-group purpose="location"> |
2480 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | 2482 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> |
2481 | <context context-type="linenumber">163</context> | 2483 | <context context-type="linenumber">197</context> |
2482 | </context-group> | 2484 | </context-group> |
2483 | </trans-unit><trans-unit id="7321800851971795962" datatype="html"> | 2485 | </trans-unit><trans-unit id="7163633882758007711" datatype="html"> |
2484 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source><target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> | 2486 | <source>Do you really want to delete and re-draft this comment?</source><target state="new">Do you really want to delete and re-draft this comment?</target> |
2485 | <context-group purpose="location"> | 2487 | <context-group purpose="location"> |
2486 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | 2488 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> |
2487 | <context context-type="linenumber">165</context> | 2489 | <context context-type="linenumber">197</context> |
2488 | </context-group> | 2490 | </context-group> |
2489 | </trans-unit> | 2491 | </trans-unit> |
2490 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e"> | 2492 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e"> |
2491 | <source>Add comment...</source> | 2493 | <source>Add comment...</source> |
2492 | <target>Gehitu iruzkina...</target> | 2494 | <target>Gehitu iruzkina...</target> |
2493 | 2495 | ||
2494 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | 2496 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit><trans-unit id="4e5254dedf0c12ce7e7c2197384fceebe3b29a2b" datatype="html"> |
2495 | <trans-unit id="8956c0f4c6974289fc63f1ab6b54f5b32ed65eeb" datatype="html"> | 2497 | <source>Markdown compatible</source><target state="new">Markdown compatible</target> |
2496 | <source>Reply</source> | 2498 | <context-group purpose="location"> |
2497 | <target state="translated">Erantzun</target> | 2499 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> |
2498 | 2500 | <context context-type="linenumber">13</context> | |
2499 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 2501 | </context-group> |
2502 | </trans-unit><trans-unit id="4739ffad85f09defefdb6e51b45f43b2ef7c4388" datatype="html"> | ||
2503 | <source>Markdown compatible that supports:</source><target state="new">Markdown compatible that supports:</target> | ||
2504 | <context-group purpose="location"> | ||
2505 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2506 | <context context-type="linenumber">15</context> | ||
2507 | </context-group> | ||
2508 | </trans-unit><trans-unit id="9a53b17a021bb0677c156fd893461797fc497a10" datatype="html"> | ||
2509 | <source>Auto generated links</source><target state="new">Auto generated links</target> | ||
2510 | <context-group purpose="location"> | ||
2511 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2512 | <context context-type="linenumber">18</context> | ||
2513 | </context-group> | ||
2514 | </trans-unit><trans-unit id="664f99b8919d6dd2faa1c1f7c378aa86d1be5e8a" datatype="html"> | ||
2515 | <source>Break lines</source><target state="new">Break lines</target> | ||
2516 | <context-group purpose="location"> | ||
2517 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2518 | <context context-type="linenumber">19</context> | ||
2519 | </context-group> | ||
2520 | </trans-unit><trans-unit id="b15e7bec5c7833d2d9634946ccbed68967b1bee1" datatype="html"> | ||
2521 | <source>Lists</source><target state="new">Lists</target> | ||
2522 | <context-group purpose="location"> | ||
2523 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2524 | <context context-type="linenumber">20</context> | ||
2525 | </context-group> | ||
2526 | </trans-unit><trans-unit id="ab4426b60f13c00b61d6b714d390dc629f314980" datatype="html"> | ||
2527 | <source>Emphasis</source><target state="new">Emphasis</target> | ||
2528 | <context-group purpose="location"> | ||
2529 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2530 | <context context-type="linenumber">22</context> | ||
2531 | </context-group> | ||
2532 | </trans-unit><trans-unit id="4e13b179501d3d32721037e03b4c04acb9857c5f" datatype="html"> | ||
2533 | <source>bold</source><target state="new">bold</target> | ||
2534 | <context-group purpose="location"> | ||
2535 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2536 | <context context-type="linenumber">23</context> | ||
2537 | </context-group> | ||
2538 | </trans-unit><trans-unit id="3c12190421fbb2756e6bbead923df9ec5de8ede2" datatype="html"> | ||
2539 | <source>italic</source><target state="new">italic</target> | ||
2540 | <context-group purpose="location"> | ||
2541 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2542 | <context context-type="linenumber">23</context> | ||
2543 | </context-group> | ||
2544 | </trans-unit><trans-unit id="adb4bbdcb961b8aac8298d6cac554d9b25636b7a" datatype="html"> | ||
2545 | <source>Emoji shortcuts</source><target state="new">Emoji shortcuts</target> | ||
2546 | <context-group purpose="location"> | ||
2547 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2548 | <context context-type="linenumber">26</context> | ||
2549 | </context-group> | ||
2550 | </trans-unit><trans-unit id="b9809a21a8eb3c9db2a0282c5dd94bc221575c96" datatype="html"> | ||
2551 | <source>Emoji markup</source><target state="new">Emoji markup</target> | ||
2552 | <context-group purpose="location"> | ||
2553 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2554 | <context context-type="linenumber">30</context> | ||
2555 | </context-group> | ||
2556 | </trans-unit><trans-unit id="f37feb427aaa551edd1f22616be6464bc0d492de" datatype="html"> | ||
2557 | <source>See complete list</source><target state="new">See complete list</target> | ||
2558 | <context-group purpose="location"> | ||
2559 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2560 | <context context-type="linenumber">32</context> | ||
2561 | </context-group> | ||
2562 | </trans-unit> | ||
2563 | |||
2500 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135"> | 2564 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135"> |
2501 | <source>You are one step away from commenting</source> | 2565 | <source>You are one step away from commenting</source> |
2502 | <target>Iruzkina egitetik urrats batera zaude</target> | 2566 | <target>Iruzkina egitetik urrats batera zaude</target> |
2503 | 2567 | ||
2504 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 2568 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
2505 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> | 2569 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> |
2506 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> | 2570 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> |
2507 | <target state="translated">ActivityPub-ekin bateragarria den edozein instantziatan kontu bat erabiliz komentatu dezakezu. Plataforma gehienetan, bideoa bilaketa-barran URLa idatzita aurki dezakezu, eta gero softwarearen interfazetik komentatu.</target> | 2571 | <target state="translated">ActivityPub-ekin bateragarria den edozein instantziatan kontu bat erabiliz komentatu dezakezu. Plataforma gehienetan, bideoa bilaketa-barran URLa idatzita aurki dezakezu, eta gero softwarearen interfazetik komentatu.</target> |
2508 | 2572 | ||
2509 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 2573 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
2510 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb"> | 2574 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb"> |
2511 | <source>If you have an account on Mastodon or Pleroma, you can open it directly in their interface:</source> | 2575 | <source>If you have an account on Mastodon or Pleroma, you can open it directly in their interface:</source> |
2512 | <target>Mastodon edo Pleroma sareetan kontua baduzu, zuzenean ireki dezakezu hango interfazean:</target> | 2576 | <target>Mastodon edo Pleroma sareetan kontua baduzu, zuzenean ireki dezakezu hango interfazean:</target> |
2513 | 2577 | ||
2514 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">41</context></context-group></trans-unit> | 2578 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">65</context></context-group></trans-unit> |
2515 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> | 2579 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> |
2516 | <source>Login to comment</source> | 2580 | <source>Login to comment</source> |
2517 | <target state="translated">Sartu iruzkina jartzeko</target> | 2581 | <target state="translated">Sartu iruzkina jartzeko</target> |
2518 | 2582 | ||
2519 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">52</context></context-group></trans-unit> | 2583 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit><trans-unit id="974170f455ff5a9034d5737e84b4194c0046fc6b" datatype="html"> |
2584 | <source>Markdown Emoji List</source><target state="new">Markdown Emoji List</target> | ||
2585 | <context-group purpose="location"> | ||
2586 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2587 | <context context-type="linenumber">84</context> | ||
2588 | </context-group> | ||
2589 | </trans-unit><trans-unit id="2662644497259948010" datatype="html"> | ||
2590 | <source>Comment</source><target state="new">Comment</target> | ||
2591 | <context-group purpose="location"> | ||
2592 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2593 | <context context-type="linenumber">58</context> | ||
2594 | </context-group> | ||
2595 | </trans-unit><trans-unit id="4502286564339177240" datatype="html"> | ||
2596 | <source>Reply</source><target state="new">Reply</target> | ||
2597 | <context-group purpose="location"> | ||
2598 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2599 | <context context-type="linenumber">60</context> | ||
2600 | </context-group> | ||
2601 | </trans-unit> | ||
2520 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285"> | 2602 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285"> |
2521 | <source>Highlighted comment</source> | 2603 | <source>Highlighted comment</source> |
2522 | <target>Nabarmendutako iruzkina</target> | 2604 | <target>Nabarmendutako iruzkina</target> |
@@ -2531,7 +2613,7 @@ The link will expire within 1 hour.</target> | |||
2531 | <source>This comment has been deleted</source> | 2613 | <source>This comment has been deleted</source> |
2532 | <target state="translated">Iruzkina ezabatua izan da</target> | 2614 | <target state="translated">Iruzkina ezabatua izan da</target> |
2533 | 2615 | ||
2534 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">62</context></context-group></trans-unit> | 2616 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">61</context></context-group></trans-unit> |
2535 | <trans-unit id="9031514421077169181" datatype="html"> | 2617 | <trans-unit id="9031514421077169181" datatype="html"> |
2536 | <source>Video redundancies</source> | 2618 | <source>Video redundancies</source> |
2537 | <target state="new">Video redundancies</target> | 2619 | <target state="new">Video redundancies</target> |
@@ -3376,7 +3458,25 @@ The link will expire within 1 hour.</target> | |||
3376 | <target state="translated">Ez da konturik aurkitu.</target> | 3458 | <target state="translated">Ez da konturik aurkitu.</target> |
3377 | 3459 | ||
3378 | 3460 | ||
3379 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit> | 3461 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit><trans-unit id="2338185419645468935" datatype="html"> |
3462 | <source>List installed plugins</source><target state="new">List installed plugins</target> | ||
3463 | <context-group purpose="location"> | ||
3464 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3465 | <context context-type="linenumber">28</context> | ||
3466 | </context-group> | ||
3467 | </trans-unit><trans-unit id="8897412584195581488" datatype="html"> | ||
3468 | <source>Search plugins</source><target state="new">Search plugins</target> | ||
3469 | <context-group purpose="location"> | ||
3470 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3471 | <context context-type="linenumber">37</context> | ||
3472 | </context-group> | ||
3473 | </trans-unit><trans-unit id="4994333937800672218" datatype="html"> | ||
3474 | <source>Show plugin</source><target state="new">Show plugin</target> | ||
3475 | <context-group purpose="location"> | ||
3476 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3477 | <context context-type="linenumber">46</context> | ||
3478 | </context-group> | ||
3479 | </trans-unit> | ||
3380 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> | 3480 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> |
3381 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> | 3481 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> |
3382 | <target state="new">Showing | 3482 | <target state="new">Showing |
@@ -4094,7 +4194,7 @@ The link will expire within 1 hour.</target> | |||
4094 | <source>Administrator</source> | 4194 | <source>Administrator</source> |
4095 | <target>Administratzailea</target> | 4195 | <target>Administratzailea</target> |
4096 | 4196 | ||
4097 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">385</context></context-group></trans-unit> | 4197 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">383</context></context-group></trans-unit> |
4098 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587"> | 4198 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587"> |
4099 | <source>Admin email</source> | 4199 | <source>Admin email</source> |
4100 | <target>Administratzailearen e-maila</target> | 4200 | <target>Administratzailearen e-maila</target> |
@@ -4342,27 +4442,27 @@ The link will expire within 1 hour.</target> | |||
4342 | <source>VIDEO SETTINGS</source> | 4442 | <source>VIDEO SETTINGS</source> |
4343 | <target state="translated">BIDEO EZARPENAK</target> | 4443 | <target state="translated">BIDEO EZARPENAK</target> |
4344 | 4444 | ||
4345 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit> | 4445 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
4346 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> | 4446 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> |
4347 | <source>NOTIFICATIONS</source> | 4447 | <source>NOTIFICATIONS</source> |
4348 | <target state="translated">JAKINARAZPENAK</target> | 4448 | <target state="translated">JAKINARAZPENAK</target> |
4349 | 4449 | ||
4350 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 4450 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">37</context></context-group></trans-unit> |
4351 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> | 4451 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> |
4352 | <source>INTERFACE</source> | 4452 | <source>INTERFACE</source> |
4353 | <target state="translated">INTERFAZEA</target> | 4453 | <target state="translated">INTERFAZEA</target> |
4354 | 4454 | ||
4355 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 4455 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit> |
4356 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> | 4456 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> |
4357 | <source>PASSWORD</source> | 4457 | <source>PASSWORD</source> |
4358 | <target state="translated">PASAHITZA</target> | 4458 | <target state="translated">PASAHITZA</target> |
4359 | 4459 | ||
4360 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">59</context></context-group></trans-unit> | 4460 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">57</context></context-group></trans-unit> |
4361 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> | 4461 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> |
4362 | <source>EMAIL</source> | 4462 | <source>EMAIL</source> |
4363 | <target state="translated">EMAILA</target> | 4463 | <target state="translated">EMAILA</target> |
4364 | 4464 | ||
4365 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">69</context></context-group></trans-unit> | 4465 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">67</context></context-group></trans-unit> |
4366 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> | 4466 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> |
4367 | <source>DANGER ZONE</source> | 4467 | <source>DANGER ZONE</source> |
4368 | <target state="translated">ARRISKU GUNEA</target> | 4468 | <target state="translated">ARRISKU GUNEA</target> |
@@ -4607,7 +4707,31 @@ The link will expire within 1 hour.</target> | |||
4607 | <source>No ownership change request found.</source> | 4707 | <source>No ownership change request found.</source> |
4608 | <target state="new">No ownership change request found.</target> | 4708 | <target state="new">No ownership change request found.</target> |
4609 | 4709 | ||
4610 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit> | 4710 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit><trans-unit id="4247400351982331798" datatype="html"> |
4711 | <source>Account settings</source><target state="new">Account settings</target> | ||
4712 | <context-group purpose="location"> | ||
4713 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4714 | <context context-type="linenumber">37</context> | ||
4715 | </context-group> | ||
4716 | </trans-unit><trans-unit id="154062590416726309" datatype="html"> | ||
4717 | <source>Account playlists</source><target state="new">Account playlists</target> | ||
4718 | <context-group purpose="location"> | ||
4719 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4720 | <context context-type="linenumber">55</context> | ||
4721 | </context-group> | ||
4722 | </trans-unit><trans-unit id="6550287183367517925" datatype="html"> | ||
4723 | <source>Create new playlist</source><target state="new">Create new playlist</target> | ||
4724 | <context-group purpose="location"> | ||
4725 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4726 | <context context-type="linenumber">64</context> | ||
4727 | </context-group> | ||
4728 | </trans-unit><trans-unit id="2864486939135008600" datatype="html"> | ||
4729 | <source>Playlist elements</source><target state="new">Playlist elements</target> | ||
4730 | <context-group purpose="location"> | ||
4731 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4732 | <context context-type="linenumber">73</context> | ||
4733 | </context-group> | ||
4734 | </trans-unit> | ||
4611 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> | 4735 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> |
4612 | <source>My imports</source> | 4736 | <source>My imports</source> |
4613 | <target state="new">My imports</target> | 4737 | <target state="new">My imports</target> |
@@ -4864,7 +4988,25 @@ The link will expire within 1 hour.</target> | |||
4864 | <source>An error occurred.</source> | 4988 | <source>An error occurred.</source> |
4865 | <target state="new">An error occurred.</target> | 4989 | <target state="new">An error occurred.</target> |
4866 | 4990 | ||
4867 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 4991 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit><trans-unit id="9128669621822125729" datatype="html"> |
4992 | <source>Video channel videos</source><target state="new">Video channel videos</target> | ||
4993 | <context-group purpose="location"> | ||
4994 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
4995 | <context context-type="linenumber">25</context> | ||
4996 | </context-group> | ||
4997 | </trans-unit><trans-unit id="3193822049276963401" datatype="html"> | ||
4998 | <source>Video channel playlists</source><target state="new">Video channel playlists</target> | ||
4999 | <context-group purpose="location"> | ||
5000 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5001 | <context context-type="linenumber">38</context> | ||
5002 | </context-group> | ||
5003 | </trans-unit><trans-unit id="4723526509708949088" datatype="html"> | ||
5004 | <source>About video channel</source><target state="new">About video channel</target> | ||
5005 | <context-group purpose="location"> | ||
5006 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5007 | <context context-type="linenumber">47</context> | ||
5008 | </context-group> | ||
5009 | </trans-unit> | ||
4868 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97"> | 5010 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97"> |
4869 | <source>Request email for account verification</source> | 5011 | <source>Request email for account verification</source> |
4870 | <target> | 5012 | <target> |
@@ -4983,7 +5125,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
4983 | <source>Stats</source> | 5125 | <source>Stats</source> |
4984 | <target>Estatistikak</target> | 5126 | <target>Estatistikak</target> |
4985 | 5127 | ||
4986 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 5128 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
4987 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc"> | 5129 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc"> |
4988 | <source>Joined <x id="INTERPOLATION"/></source> | 5130 | <source>Joined <x id="INTERPOLATION"/></source> |
4989 | <target> | 5131 | <target> |
@@ -5422,7 +5564,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5422 | <source>This instance does not have instances followings.</source> | 5564 | <source>This instance does not have instances followings.</source> |
5423 | <target state="new">This instance does not have instances followings.</target> | 5565 | <target state="new">This instance does not have instances followings.</target> |
5424 | 5566 | ||
5425 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit> | 5567 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit><trans-unit id="4195286790385468087" datatype="html"> |
5568 | <source>About this instance</source><target state="new">About this instance</target> | ||
5569 | <context-group purpose="location"> | ||
5570 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5571 | <context context-type="linenumber">26</context> | ||
5572 | </context-group> | ||
5573 | </trans-unit><trans-unit id="8773846522957677259" datatype="html"> | ||
5574 | <source>About PeerTube</source><target state="new">About PeerTube</target> | ||
5575 | <context-group purpose="location"> | ||
5576 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5577 | <context context-type="linenumber">38</context> | ||
5578 | </context-group> | ||
5579 | </trans-unit><trans-unit id="5782088737558028158" datatype="html"> | ||
5580 | <source>About follows</source><target state="new">About follows</target> | ||
5581 | <context-group purpose="location"> | ||
5582 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5583 | <context context-type="linenumber">47</context> | ||
5584 | </context-group> | ||
5585 | </trans-unit> | ||
5426 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> | 5586 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> |
5427 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> | 5587 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> |
5428 | <target state="new">Developed with ❤ by | 5588 | <target state="new">Developed with ❤ by |
@@ -5592,6 +5752,12 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5592 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 5752 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> |
5593 | <context context-type="linenumber">1</context> | 5753 | <context context-type="linenumber">1</context> |
5594 | </context-group> | 5754 | </context-group> |
5755 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
5756 | <source>Get help</source><target state="new">Get help</target> | ||
5757 | <context-group purpose="location"> | ||
5758 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | ||
5759 | <context context-type="linenumber">16</context> | ||
5760 | </context-group> | ||
5595 | </trans-unit> | 5761 | </trans-unit> |
5596 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1" datatype="html"> | 5762 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1" datatype="html"> |
5597 | <source>Create my account</source> | 5763 | <source>Create my account</source> |
@@ -5694,7 +5860,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5694 | <source> I am at least 16 years old and agree to the <x id="START_LINK"/>Terms<x id="CLOSE_LINK"/><x id="START_TAG_NG_CONTAINER"/> and to the <x id="START_LINK_1"/>Code of Conduct<x id="CLOSE_LINK"/><x id="CLOSE_TAG_NG_CONTAINER"/> of this instance </source> | 5860 | <source> I am at least 16 years old and agree to the <x id="START_LINK"/>Terms<x id="CLOSE_LINK"/><x id="START_TAG_NG_CONTAINER"/> and to the <x id="START_LINK_1"/>Code of Conduct<x id="CLOSE_LINK"/><x id="CLOSE_TAG_NG_CONTAINER"/> of this instance </source> |
5695 | <target state="new"/> | 5861 | <target state="new"/> |
5696 | 5862 | ||
5697 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 5863 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit><trans-unit id="3301086086650990787" datatype="html"> |
5864 | <source>Register</source><target state="new">Register</target> | ||
5865 | <context-group purpose="location"> | ||
5866 | <context context-type="sourcefile">../app/+signup/+register/register-routing.module.ts</context> | ||
5867 | <context context-type="linenumber">14</context> | ||
5868 | </context-group> | ||
5869 | </trans-unit> | ||
5698 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> | 5870 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> |
5699 | <source>Sorry, we couldn't find the page you were looking for.</source> | 5871 | <source>Sorry, we couldn't find the page you were looking for.</source> |
5700 | <target state="new">Sorry, we couldn't find the page you were looking for.</target> | 5872 | <target state="new">Sorry, we couldn't find the page you were looking for.</target> |
@@ -5715,7 +5887,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5715 | <target>Deskripziorik ez</target> | 5887 | <target>Deskripziorik ez</target> |
5716 | 5888 | ||
5717 | 5889 | ||
5718 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit> | 5890 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit><trans-unit id="819067926858619041" datatype="html"> |
5891 | <source>Account videos</source><target state="new">Account videos</target> | ||
5892 | <context-group purpose="location"> | ||
5893 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
5894 | <context context-type="linenumber">29</context> | ||
5895 | </context-group> | ||
5896 | </trans-unit><trans-unit id="6823616469362610020" datatype="html"> | ||
5897 | <source>Account video channels</source><target state="new">Account video channels</target> | ||
5898 | <context-group purpose="location"> | ||
5899 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
5900 | <context context-type="linenumber">42</context> | ||
5901 | </context-group> | ||
5902 | </trans-unit><trans-unit id="7678273613459026643" datatype="html"> | ||
5903 | <source>About account</source><target state="new">About account</target> | ||
5904 | <context-group purpose="location"> | ||
5905 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
5906 | <context context-type="linenumber">51</context> | ||
5907 | </context-group> | ||
5908 | </trans-unit> | ||
5719 | <trans-unit id="3755500631176893489" datatype="html"> | 5909 | <trans-unit id="3755500631176893489" datatype="html"> |
5720 | <source>Published <x id="PH"/> videos</source> | 5910 | <source>Published <x id="PH"/> videos</source> |
5721 | <target state="new">Published | 5911 | <target state="new">Published |
@@ -5832,7 +6022,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5832 | <source>Configuration updated.</source> | 6022 | <source>Configuration updated.</source> |
5833 | <target>Konfigurazioa eguneratuta.</target> | 6023 | <target>Konfigurazioa eguneratuta.</target> |
5834 | 6024 | ||
5835 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit> | 6025 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit><trans-unit id="6284468333579755406" datatype="html"> |
6026 | <source>Edit custom configuration</source><target state="new">Edit custom configuration</target> | ||
6027 | <context-group purpose="location"> | ||
6028 | <context context-type="sourcefile">../app/+admin/config/config.routes.ts</context> | ||
6029 | <context context-type="linenumber">26</context> | ||
6030 | </context-group> | ||
6031 | </trans-unit> | ||
5836 | 6032 | ||
5837 | 6033 | ||
5838 | <trans-unit id="6549061957433635758" datatype="html"> | 6034 | <trans-unit id="6549061957433635758" datatype="html"> |
@@ -6311,7 +6507,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6311 | <x id="PH"/> updated. | 6507 | <x id="PH"/> updated. |
6312 | </target> | 6508 | </target> |
6313 | 6509 | ||
6314 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 6510 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit><trans-unit id="3229595422546554334" datatype="html"> |
6511 | <source>Jobs</source><target state="new">Jobs</target> | ||
6512 | <context-group purpose="location"> | ||
6513 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6514 | <context context-type="linenumber">26</context> | ||
6515 | </context-group> | ||
6516 | </trans-unit><trans-unit id="4804785061014590286" datatype="html"> | ||
6517 | <source>Logs</source><target state="new">Logs</target> | ||
6518 | <context-group purpose="location"> | ||
6519 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6520 | <context context-type="linenumber">37</context> | ||
6521 | </context-group> | ||
6522 | </trans-unit> | ||
6315 | <trans-unit id="3150704904301058778" datatype="html"> | 6523 | <trans-unit id="3150704904301058778" datatype="html"> |
6316 | <source>The plugin index is not available. Please retry later.</source> | 6524 | <source>The plugin index is not available. Please retry later.</source> |
6317 | <target state="new">The plugin index is not available. Please retry later.</target> | 6525 | <target state="new">The plugin index is not available. Please retry later.</target> |
@@ -6425,6 +6633,18 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6425 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> | 6633 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> |
6426 | <context context-type="linenumber">86</context> | 6634 | <context context-type="linenumber">86</context> |
6427 | </context-group> | 6635 | </context-group> |
6636 | </trans-unit><trans-unit id="2903648076838460070" datatype="html"> | ||
6637 | <source>Videos blocked</source><target state="new">Videos blocked</target> | ||
6638 | <context-group purpose="location"> | ||
6639 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6640 | <context context-type="linenumber">67</context> | ||
6641 | </context-group> | ||
6642 | </trans-unit><trans-unit id="7805059636749367886" datatype="html"> | ||
6643 | <source>Muted instances</source><target state="new">Muted instances</target> | ||
6644 | <context-group purpose="location"> | ||
6645 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6646 | <context context-type="linenumber">89</context> | ||
6647 | </context-group> | ||
6428 | </trans-unit> | 6648 | </trans-unit> |
6429 | <trans-unit id="5974506725502681113" datatype="html"> | 6649 | <trans-unit id="5974506725502681113" datatype="html"> |
6430 | <source>Password changed for user <x id="PH"/>.</source> | 6650 | <source>Password changed for user <x id="PH"/>.</source> |
@@ -6437,7 +6657,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6437 | <source>Update user password</source> | 6657 | <source>Update user password</source> |
6438 | <target state="new">Update user password</target> | 6658 | <target state="new">Update user password</target> |
6439 | 6659 | ||
6440 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit> | 6660 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit><trans-unit id="177544274549739411" datatype="html"> |
6661 | <source>Following list</source><target state="new">Following list</target> | ||
6662 | <context-group purpose="location"> | ||
6663 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6664 | <context context-type="linenumber">28</context> | ||
6665 | </context-group> | ||
6666 | </trans-unit><trans-unit id="8092429110007204784" datatype="html"> | ||
6667 | <source>Followers list</source><target state="new">Followers list</target> | ||
6668 | <context-group purpose="location"> | ||
6669 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6670 | <context context-type="linenumber">37</context> | ||
6671 | </context-group> | ||
6672 | </trans-unit> | ||
6441 | <trans-unit id="780323526182667308" datatype="html"> | 6673 | <trans-unit id="780323526182667308" datatype="html"> |
6442 | <source>User <x id="PH"/> updated.</source> | 6674 | <source>User <x id="PH"/> updated.</source> |
6443 | <target state="new">User | 6675 | <target state="new">User |
@@ -6456,7 +6688,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6456 | <x id="PH"/>. | 6688 | <x id="PH"/>. |
6457 | </target> | 6689 | </target> |
6458 | 6690 | ||
6459 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="8564701209009684429" datatype="html"> | 6691 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="7483807629538115183" datatype="html"> |
6692 | <source>Users list</source><target state="new">Users list</target> | ||
6693 | <context-group purpose="location"> | ||
6694 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6695 | <context context-type="linenumber">27</context> | ||
6696 | </context-group> | ||
6697 | </trans-unit><trans-unit id="1525334987774465166" datatype="html"> | ||
6698 | <source>Create a user</source><target state="new">Create a user</target> | ||
6699 | <context-group purpose="location"> | ||
6700 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6701 | <context context-type="linenumber">36</context> | ||
6702 | </context-group> | ||
6703 | </trans-unit><trans-unit id="5552039423287890133" datatype="html"> | ||
6704 | <source>Update a user</source><target state="new">Update a user</target> | ||
6705 | <context-group purpose="location"> | ||
6706 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6707 | <context context-type="linenumber">48</context> | ||
6708 | </context-group> | ||
6709 | </trans-unit><trans-unit id="8564701209009684429" datatype="html"> | ||
6460 | <source>Federation</source><target state="new">Federation</target> | 6710 | <source>Federation</source><target state="new">Federation</target> |
6461 | <context-group purpose="location"> | 6711 | <context-group purpose="location"> |
6462 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> | 6712 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> |
@@ -6810,7 +7060,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6810 | <source>Views for the day</source> | 7060 | <source>Views for the day</source> |
6811 | <target state="new">Views for the day</target> | 7061 | <target state="new">Views for the day</target> |
6812 | 7062 | ||
6813 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit> | 7063 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit><trans-unit id="4707367314920217630" datatype="html"> |
7064 | <source>Create new video channel</source><target state="new">Create new video channel</target> | ||
7065 | <context-group purpose="location"> | ||
7066 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7067 | <context context-type="linenumber">22</context> | ||
7068 | </context-group> | ||
7069 | </trans-unit><trans-unit id="6059091237492573541" datatype="html"> | ||
7070 | <source>Update video channel</source><target state="new">Update video channel</target> | ||
7071 | <context-group purpose="location"> | ||
7072 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7073 | <context context-type="linenumber">31</context> | ||
7074 | </context-group> | ||
7075 | </trans-unit><trans-unit id="6595008830732269870" datatype="html"> | ||
7076 | <source>Not found</source><target state="new">Not found</target> | ||
7077 | <context-group purpose="location"> | ||
7078 | <context context-type="sourcefile">../app/+page-not-found/page-not-found-routing.module.ts</context> | ||
7079 | <context context-type="linenumber">13</context> | ||
7080 | </context-group> | ||
7081 | </trans-unit> | ||
6814 | <trans-unit id="5032453707232754344" datatype="html"> | 7082 | <trans-unit id="5032453707232754344" datatype="html"> |
6815 | <source>Playlist <x id="PH"/> created.</source> | 7083 | <source>Playlist <x id="PH"/> created.</source> |
6816 | <target state="new">Playlist | 7084 | <target state="new">Playlist |
@@ -6828,7 +7096,31 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6828 | <source>Update playlist</source> | 7096 | <source>Update playlist</source> |
6829 | <target state="new">Update playlist</target> | 7097 | <target state="new">Update playlist</target> |
6830 | 7098 | ||
6831 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-video-playlists/my-account-video-playlist-elements.component.ts</context><context context-type="linenumber">48</context></context-group></trans-unit> | 7099 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">82</context></context-group></trans-unit><trans-unit id="3410331549417637431" datatype="html"> |
7100 | <source>Account video imports</source><target state="new">Account video imports</target> | ||
7101 | <context-group purpose="location"> | ||
7102 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7103 | <context context-type="linenumber">105</context> | ||
7104 | </context-group> | ||
7105 | </trans-unit><trans-unit id="4434998055872154420" datatype="html"> | ||
7106 | <source>Account subscriptions</source><target state="new">Account subscriptions</target> | ||
7107 | <context-group purpose="location"> | ||
7108 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7109 | <context context-type="linenumber">114</context> | ||
7110 | </context-group> | ||
7111 | </trans-unit><trans-unit id="6019411775996586321" datatype="html"> | ||
7112 | <source>Videos history</source><target state="new">Videos history</target> | ||
7113 | <context-group purpose="location"> | ||
7114 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7115 | <context context-type="linenumber">150</context> | ||
7116 | </context-group> | ||
7117 | </trans-unit><trans-unit id="5851560788527570644" datatype="html"> | ||
7118 | <source>Notifications</source><target state="new">Notifications</target> | ||
7119 | <context-group purpose="location"> | ||
7120 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7121 | <context context-type="linenumber">163</context> | ||
7122 | </context-group> | ||
7123 | </trans-unit> | ||
6832 | <trans-unit id="104404386496394770" datatype="html"> | 7124 | <trans-unit id="104404386496394770" datatype="html"> |
6833 | <source>Delete playlist</source> | 7125 | <source>Delete playlist</source> |
6834 | <target state="new">Delete playlist</target> | 7126 | <target state="new">Delete playlist</target> |
@@ -6982,7 +7274,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6982 | <x id="PH"/> helbidera. | 7274 | <x id="PH"/> helbidera. |
6983 | </target> | 7275 | </target> |
6984 | 7276 | ||
6985 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit> | 7277 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit><trans-unit id="8231550792139699065" datatype="html"> |
7278 | <source>Verify account email</source><target state="new">Verify account email</target> | ||
7279 | <context-group purpose="location"> | ||
7280 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7281 | <context context-type="linenumber">17</context> | ||
7282 | </context-group> | ||
7283 | </trans-unit><trans-unit id="4997281272800290390" datatype="html"> | ||
7284 | <source>Verify account ask send email</source><target state="new">Verify account ask send email</target> | ||
7285 | <context-group purpose="location"> | ||
7286 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7287 | <context context-type="linenumber">26</context> | ||
7288 | </context-group> | ||
7289 | </trans-unit> | ||
6986 | <trans-unit id="4180693983967989981"> | 7290 | <trans-unit id="4180693983967989981"> |
6987 | <source>Unable to find user id or verification string.</source> | 7291 | <source>Unable to find user id or verification string.</source> |
6988 | <target>Ezin izan da erabiltzailearen id-a edo berreste katea aurkitu.</target> | 7292 | <target>Ezin izan da erabiltzailearen id-a edo berreste katea aurkitu.</target> |
@@ -7107,27 +7411,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7107 | <source>any language</source> | 7411 | <source>any language</source> |
7108 | <target state="new">any language</target> | 7412 | <target state="new">any language</target> |
7109 | 7413 | ||
7110 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">202</context></context-group></trans-unit> | 7414 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">229</context></context-group></trans-unit> |
7111 | <trans-unit id="5633144232269377096" datatype="html"> | 7415 | <trans-unit id="5633144232269377096" datatype="html"> |
7112 | <source>hide</source> | 7416 | <source>hide</source> |
7113 | <target state="new">hide</target> | 7417 | <target state="new">hide</target> |
7114 | 7418 | ||
7115 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">118</context></context-group></trans-unit> | 7419 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> |
7116 | <trans-unit id="8603861867909474404" datatype="html"> | 7420 | <trans-unit id="8603861867909474404" datatype="html"> |
7117 | <source>blur</source> | 7421 | <source>blur</source> |
7118 | <target state="new">blur</target> | 7422 | <target state="new">blur</target> |
7119 | 7423 | ||
7120 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> | 7424 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> |
7121 | <trans-unit id="4534458451100881847" datatype="html"> | 7425 | <trans-unit id="4534458451100881847" datatype="html"> |
7122 | <source>display</source> | 7426 | <source>display</source> |
7123 | <target state="new">display</target> | 7427 | <target state="new">display</target> |
7124 | 7428 | ||
7125 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> | 7429 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">127</context></context-group></trans-unit> |
7126 | <trans-unit id="4467323362722952678" datatype="html"> | 7430 | <trans-unit id="4467323362722952678" datatype="html"> |
7127 | <source>Unknown</source> | 7431 | <source>Unknown</source> |
7128 | <target state="new">Unknown</target> | 7432 | <target state="new">Unknown</target> |
7129 | 7433 | ||
7130 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">190</context></context-group></trans-unit> | 7434 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">193</context></context-group></trans-unit> |
7131 | <trans-unit id="8781423666414310853"> | 7435 | <trans-unit id="8781423666414310853"> |
7132 | <source>Your password has been successfully reset!</source> | 7436 | <source>Your password has been successfully reset!</source> |
7133 | <target>Zure pasahitza ongi berrezarri da!</target> | 7437 | <target>Zure pasahitza ongi berrezarri da!</target> |
@@ -8245,27 +8549,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8245 | <source>Emphasis</source> | 8549 | <source>Emphasis</source> |
8246 | <target>Enfasia</target> | 8550 | <target>Enfasia</target> |
8247 | 8551 | ||
8248 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">77</context></context-group></trans-unit> | 8552 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> |
8249 | <trans-unit id="7565716024468232322"> | 8553 | <trans-unit id="7565716024468232322"> |
8250 | <source>Links</source> | 8554 | <source>Links</source> |
8251 | <target>Estekak</target> | 8555 | <target>Estekak</target> |
8252 | 8556 | ||
8253 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">78</context></context-group></trans-unit> | 8557 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> |
8254 | <trans-unit id="7838476952710404110"> | 8558 | <trans-unit id="7838476952710404110"> |
8255 | <source>New lines</source> | 8559 | <source>New lines</source> |
8256 | <target>Lerro jauziak</target> | 8560 | <target>Lerro jauziak</target> |
8257 | 8561 | ||
8258 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 8562 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">83</context></context-group></trans-unit> |
8259 | <trans-unit id="8756167649220050929"> | 8563 | <trans-unit id="8756167649220050929"> |
8260 | <source>Lists</source> | 8564 | <source>Lists</source> |
8261 | <target>Zerrendak</target> | 8565 | <target>Zerrendak</target> |
8262 | 8566 | ||
8263 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">80</context></context-group></trans-unit> | 8567 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">84</context></context-group></trans-unit> |
8264 | <trans-unit id="414887388288176527"> | 8568 | <trans-unit id="414887388288176527"> |
8265 | <source>Images</source> | 8569 | <source>Images</source> |
8266 | <target>Irudiak</target> | 8570 | <target>Irudiak</target> |
8267 | 8571 | ||
8268 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> | 8572 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">85</context></context-group></trans-unit> |
8269 | <trans-unit id="5708680277917691451"> | 8573 | <trans-unit id="5708680277917691451"> |
8270 | <source> | 8574 | <source> |
8271 | <x id="PH"/> users banned. | 8575 | <x id="PH"/> users banned. |
@@ -8661,7 +8965,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8661 | <source>Moderator</source> | 8965 | <source>Moderator</source> |
8662 | <target>Moderatzailea</target> | 8966 | <target>Moderatzailea</target> |
8663 | 8967 | ||
8664 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">386</context></context-group></trans-unit> | 8968 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">384</context></context-group></trans-unit> |
8665 | <trans-unit id="3723085768598852106" datatype="html"> | 8969 | <trans-unit id="3723085768598852106" datatype="html"> |
8666 | <source>Video removed from | 8970 | <source>Video removed from |
8667 | <x id="PH"/> | 8971 | <x id="PH"/> |
@@ -8734,7 +9038,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8734 | <source>Do you really want to delete this comment?</source> | 9038 | <source>Do you really want to delete this comment?</source> |
8735 | <target state="new">Do you really want to delete this comment?</target> | 9039 | <target state="new">Do you really want to delete this comment?</target> |
8736 | 9040 | ||
8737 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">434</context></context-group></trans-unit> | 9041 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">166</context></context-group></trans-unit> |
8738 | <trans-unit id="7837272126865175984" datatype="html"> | 9042 | <trans-unit id="7837272126865175984" datatype="html"> |
8739 | <source>Comment deleted.</source> | 9043 | <source>Comment deleted.</source> |
8740 | <target state="new">Comment deleted.</target> | 9044 | <target state="new">Comment deleted.</target> |
@@ -8846,9 +9150,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8846 | 9150 | ||
8847 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> | 9151 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> |
8848 | <source>Report</source><target state="new">Report</target> | 9152 | <source>Report</source><target state="new">Report</target> |
9153 | |||
9154 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="4814285799071780083" datatype="html"> | ||
9155 | <source>Remove</source><target state="new">Remove</target> | ||
8849 | <context-group purpose="location"> | 9156 | <context-group purpose="location"> |
8850 | <context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> | 9157 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> |
8851 | <context context-type="linenumber">286</context> | 9158 | <context context-type="linenumber">179</context> |
9159 | </context-group> | ||
9160 | </trans-unit><trans-unit id="6871668720687277843" datatype="html"> | ||
9161 | <source>Remove & re-draft</source><target state="new">Remove & re-draft</target> | ||
9162 | <context-group purpose="location"> | ||
9163 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> | ||
9164 | <context context-type="linenumber">187</context> | ||
8852 | </context-group> | 9165 | </context-group> |
8853 | </trans-unit> | 9166 | </trans-unit> |
8854 | <trans-unit id="4903651219400691248" datatype="html"> | 9167 | <trans-unit id="4903651219400691248" datatype="html"> |
@@ -8952,22 +9265,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8952 | <source>Only I can see this video</source> | 9265 | <source>Only I can see this video</source> |
8953 | <target>Bakarrik nik ikusi dezaket bideo hau</target> | 9266 | <target>Bakarrik nik ikusi dezaket bideo hau</target> |
8954 | 9267 | ||
8955 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">340</context></context-group></trans-unit> | 9268 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">341</context></context-group></trans-unit> |
8956 | <trans-unit id="6767380569816110388" datatype="html"> | 9269 | <trans-unit id="6767380569816110388" datatype="html"> |
8957 | <source>Only shareable via a private link</source> | 9270 | <source>Only shareable via a private link</source> |
8958 | <target state="new">Only shareable via a private link</target> | 9271 | <target state="new">Only shareable via a private link</target> |
8959 | 9272 | ||
8960 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">344</context></context-group></trans-unit> | 9273 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">345</context></context-group></trans-unit> |
8961 | <trans-unit id="6828965264297239528"> | 9274 | <trans-unit id="6828965264297239528"> |
8962 | <source>Anyone can see this video</source> | 9275 | <source>Anyone can see this video</source> |
8963 | <target>Edonork ikusi dezake bideo hau</target> | 9276 | <target>Edonork ikusi dezake bideo hau</target> |
8964 | 9277 | ||
8965 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">348</context></context-group></trans-unit> | 9278 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">349</context></context-group></trans-unit> |
8966 | <trans-unit id="1425933035739773115" datatype="html"> | 9279 | <trans-unit id="1425933035739773115" datatype="html"> |
8967 | <source>Only users of this instance can see this video</source> | 9280 | <source>Only users of this instance can see this video</source> |
8968 | <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> |
8969 | 9282 | ||
8970 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">352</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">353</context></context-group></trans-unit> |
8971 | <trans-unit id="5210096066382592800"> | 9284 | <trans-unit id="5210096066382592800"> |
8972 | <source>Video to import updated.</source> | 9285 | <source>Video to import updated.</source> |
8973 | <target>Inportatzeko bideoa eguneratuta.</target> | 9286 | <target>Inportatzeko bideoa eguneratuta.</target> |
@@ -9047,7 +9360,7 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9047 | <target state="new">Report comment</target> | 9360 | <target state="new">Report comment</target> |
9048 | 9361 | ||
9049 | 9362 | ||
9050 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 9363 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/report-modals/comment-report.component.ts</context><context context-type="linenumber">51</context></context-group></trans-unit> |
9051 | 9364 | ||
9052 | 9365 | ||
9053 | <trans-unit id="6775540171466219199" datatype="html"> | 9366 | <trans-unit id="6775540171466219199" datatype="html"> |
@@ -9211,6 +9524,36 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9211 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> | 9524 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> |
9212 | <context context-type="linenumber">36</context> | 9525 | <context context-type="linenumber">36</context> |
9213 | </context-group> | 9526 | </context-group> |
9527 | </trans-unit><trans-unit id="4668975178372693951" datatype="html"> | ||
9528 | <source>Discover videos</source><target state="new">Discover videos</target> | ||
9529 | <context-group purpose="location"> | ||
9530 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9531 | <context context-type="linenumber">23</context> | ||
9532 | </context-group> | ||
9533 | </trans-unit><trans-unit id="8067135025051844577" datatype="html"> | ||
9534 | <source>Trending videos</source><target state="new">Trending videos</target> | ||
9535 | <context-group purpose="location"> | ||
9536 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9537 | <context context-type="linenumber">32</context> | ||
9538 | </context-group> | ||
9539 | </trans-unit><trans-unit id="664221386829541948" datatype="html"> | ||
9540 | <source>Recently added videos</source><target state="new">Recently added videos</target> | ||
9541 | <context-group purpose="location"> | ||
9542 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9543 | <context context-type="linenumber">58</context> | ||
9544 | </context-group> | ||
9545 | </trans-unit><trans-unit id="8212906256415538361" datatype="html"> | ||
9546 | <source>Upload a video</source><target state="new">Upload a video</target> | ||
9547 | <context-group purpose="location"> | ||
9548 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9549 | <context context-type="linenumber">97</context> | ||
9550 | </context-group> | ||
9551 | </trans-unit><trans-unit id="7590784934397800835" datatype="html"> | ||
9552 | <source>Edit a video</source><target state="new">Edit a video</target> | ||
9553 | <context-group purpose="location"> | ||
9554 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9555 | <context context-type="linenumber">106</context> | ||
9556 | </context-group> | ||
9214 | </trans-unit> | 9557 | </trans-unit> |
9215 | </body> | 9558 | </body> |
9216 | </file> | 9559 | </file> |
diff --git a/client/src/locale/angular.fa-IR.xlf b/client/src/locale/angular.fa-IR.xlf index da50db25d..8207998b1 100644 --- a/client/src/locale/angular.fa-IR.xlf +++ b/client/src/locale/angular.fa-IR.xlf | |||
@@ -309,7 +309,7 @@ | |||
309 | <target state="new">Options</target> | 309 | <target state="new">Options</target> |
310 | 310 | ||
311 | 311 | ||
312 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 312 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">48</context></context-group></trans-unit> |
313 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d" datatype="html"> | 313 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d" datatype="html"> |
314 | <source>Start at</source> | 314 | <source>Start at</source> |
315 | <target state="new">Start at</target> | 315 | <target state="new">Start at</target> |
@@ -441,7 +441,7 @@ | |||
441 | Cancel | 441 | Cancel |
442 | </target> | 442 | </target> |
443 | 443 | ||
444 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> | 444 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit> |
445 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd" datatype="html"> | 445 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd" datatype="html"> |
446 | <source>Download</source> | 446 | <source>Download</source> |
447 | <target state="new">Download</target> | 447 | <target state="new">Download</target> |
@@ -560,7 +560,7 @@ | |||
560 | 560 | ||
561 | 561 | ||
562 | 562 | ||
563 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 563 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
564 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc" datatype="html"> | 564 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc" datatype="html"> |
565 | <source>Edit starts/stops at</source> | 565 | <source>Edit starts/stops at</source> |
566 | <target state="new">Edit starts/stops at</target> | 566 | <target state="new">Edit starts/stops at</target> |
@@ -600,7 +600,7 @@ | |||
600 | 600 | ||
601 | 601 | ||
602 | 602 | ||
603 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> | 603 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
604 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> | 604 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> |
605 | <source>Edit</source> | 605 | <source>Edit</source> |
606 | <target>ویرایش</target> | 606 | <target>ویرایش</target> |
@@ -625,17 +625,10 @@ | |||
625 | <target>تکمیلپیشنمایش</target> | 625 | <target>تکمیلپیشنمایش</target> |
626 | 626 | ||
627 | <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></trans-unit> | 627 | <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></trans-unit> |
628 | <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f"> | 628 | <trans-unit id="8644431249513874405" datatype="html"> |
629 | <source>Get help</source> | ||
630 | <target>کمک گرفتن</target> | ||
631 | |||
632 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit><trans-unit id="8644431249513874405" datatype="html"> | ||
633 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> | 629 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> |
634 | <context-group purpose="location"> | 630 | |
635 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 631 | <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></trans-unit> |
636 | <context context-type="linenumber">71</context> | ||
637 | </context-group> | ||
638 | </trans-unit> | ||
639 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> | 632 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> |
640 | <source>Recommended</source> | 633 | <source>Recommended</source> |
641 | <target state="new">Recommended</target> | 634 | <target state="new">Recommended</target> |
@@ -675,7 +668,7 @@ | |||
675 | <source>PROFILE SETTINGS</source> | 668 | <source>PROFILE SETTINGS</source> |
676 | <target state="new">PROFILE SETTINGS</target> | 669 | <target state="new">PROFILE SETTINGS</target> |
677 | 670 | ||
678 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 671 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">12</context></context-group></trans-unit> |
679 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3" datatype="html"> | 672 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3" datatype="html"> |
680 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> | 673 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> |
681 | <target state="new"> | 674 | <target state="new"> |
@@ -847,11 +840,8 @@ | |||
847 | 840 | ||
848 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> | 841 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> |
849 | <source>User</source><target state="new">User</target> | 842 | <source>User</source><target state="new">User</target> |
850 | <context-group purpose="location"> | 843 | |
851 | <context context-type="sourcefile">../app/core/users/user.service.ts</context> | 844 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit> |
852 | <context context-type="linenumber">384</context> | ||
853 | </context-group> | ||
854 | </trans-unit> | ||
855 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0" datatype="html"> | 845 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0" datatype="html"> |
856 | <source>Ban</source> | 846 | <source>Ban</source> |
857 | <target state="new">Ban</target> | 847 | <target state="new">Ban</target> |
@@ -1345,89 +1335,89 @@ The link will expire within 1 hour.</target> | |||
1345 | <source>Account settings</source> | 1335 | <source>Account settings</source> |
1346 | <target state="new">Account settings</target> | 1336 | <target state="new">Account settings</target> |
1347 | 1337 | ||
1348 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 1338 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
1349 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> | 1339 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> |
1350 | <source>Channels settings</source> | 1340 | <source>Channels settings</source> |
1351 | <target state="new">Channels settings</target> | 1341 | <target state="new">Channels settings</target> |
1352 | 1342 | ||
1353 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 1343 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> |
1354 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> | 1344 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> |
1355 | <source>Interface:</source> | 1345 | <source>Interface:</source> |
1356 | <target state="new">Interface:</target> | 1346 | <target state="new">Interface:</target> |
1357 | 1347 | ||
1358 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 1348 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1359 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> | 1349 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> |
1360 | <source>Videos:</source> | 1350 | <source>Videos:</source> |
1361 | <target state="new">Videos:</target> | 1351 | <target state="new">Videos:</target> |
1362 | 1352 | ||
1363 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 1353 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> |
1364 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> | 1354 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> |
1365 | <source>Sensitive:</source> | 1355 | <source>Sensitive:</source> |
1366 | <target state="new">Sensitive:</target> | 1356 | <target state="new">Sensitive:</target> |
1367 | 1357 | ||
1368 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 1358 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">54</context></context-group></trans-unit> |
1369 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1359 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> |
1370 | <source>Interface: <x id="INTERPOLATION"/></source> | 1360 | <source>Interface: <x id="INTERPOLATION"/></source> |
1371 | <target state="new">Interface: | 1361 | <target state="new">Interface: |
1372 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> | 1362 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> |
1373 | </target> | 1363 | </target> |
1374 | 1364 | ||
1375 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">156</context></context-group></trans-unit> | 1365 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> |
1376 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1366 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1377 | <source>Help share videos</source> | 1367 | <source>Help share videos</source> |
1378 | <target state="new">Help share videos</target> | 1368 | <target state="new">Help share videos</target> |
1379 | 1369 | ||
1380 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> | 1370 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
1381 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> | 1371 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> |
1382 | <source>More account settings</source> | 1372 | <source>More account settings</source> |
1383 | <target state="new">More account settings</target> | 1373 | <target state="new">More account settings</target> |
1384 | 1374 | ||
1385 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> | 1375 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> |
1386 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> | 1376 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> |
1387 | <source>Keyboard shortcuts</source> | 1377 | <source>Keyboard shortcuts</source> |
1388 | <target state="new">Keyboard shortcuts</target> | 1378 | <target state="new">Keyboard shortcuts</target> |
1389 | 1379 | ||
1390 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 1380 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">72</context></context-group></trans-unit> |
1391 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> | 1381 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> |
1392 | <source>Help</source> | 1382 | <source>Help</source> |
1393 | <target state="new">Help</target> | 1383 | <target state="new">Help</target> |
1394 | 1384 | ||
1395 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1385 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1396 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> | 1386 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> |
1397 | <source>Get help using PeerTube</source> | 1387 | <source>Get help using PeerTube</source> |
1398 | <target state="new">Get help using PeerTube</target> | 1388 | <target state="new">Get help using PeerTube</target> |
1399 | 1389 | ||
1400 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">161</context></context-group></trans-unit> | 1390 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">167</context></context-group></trans-unit> |
1401 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> | 1391 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> |
1402 | <source>Shortcuts</source> | 1392 | <source>Shortcuts</source> |
1403 | <target state="new">Shortcuts</target> | 1393 | <target state="new">Shortcuts</target> |
1404 | 1394 | ||
1405 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1395 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1406 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> | 1396 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> |
1407 | <source>powered by PeerTube</source> | 1397 | <source>powered by PeerTube</source> |
1408 | <target state="new">powered by PeerTube</target> | 1398 | <target state="new">powered by PeerTube</target> |
1409 | 1399 | ||
1410 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | 1400 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">177</context></context-group></trans-unit> |
1411 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> | 1401 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> |
1412 | <source>powered by PeerTube - CopyLeft 2015-2020</source> | 1402 | <source>powered by PeerTube - CopyLeft 2015-2020</source> |
1413 | <target state="new">powered by PeerTube - CopyLeft 2015-2020</target> | 1403 | <target state="new">powered by PeerTube - CopyLeft 2015-2020</target> |
1414 | 1404 | ||
1415 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> | 1405 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">176</context></context-group></trans-unit> |
1416 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344" datatype="html"> | 1406 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344" datatype="html"> |
1417 | <source>Log out</source> | 1407 | <source>Log out</source> |
1418 | <target state="new">Log out</target> | 1408 | <target state="new">Log out</target> |
1419 | 1409 | ||
1420 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">70</context></context-group></trans-unit> | 1410 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit> |
1421 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> | 1411 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> |
1422 | <source>Create an account</source> | 1412 | <source>Create an account</source> |
1423 | <target>ساخت حساب</target> | 1413 | <target>ساخت حساب</target> |
1424 | 1414 | ||
1425 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">78</context></context-group></trans-unit> | 1415 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
1426 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> | 1416 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> |
1427 | <source>MY LIBRARY</source> | 1417 | <source>MY LIBRARY</source> |
1428 | <target state="new">MY LIBRARY</target> | 1418 | <target state="new">MY LIBRARY</target> |
1429 | 1419 | ||
1430 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 1420 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">88</context></context-group></trans-unit> |
1431 | <trans-unit id="6371572688505952303" datatype="html"> | 1421 | <trans-unit id="6371572688505952303" datatype="html"> |
1432 | <source>My library</source> | 1422 | <source>My library</source> |
1433 | <target state="new">My library</target> | 1423 | <target state="new">My library</target> |
@@ -1467,22 +1457,22 @@ The link will expire within 1 hour.</target> | |||
1467 | <source>Videos</source> | 1457 | <source>Videos</source> |
1468 | <target>فیلمها</target> | 1458 | <target>فیلمها</target> |
1469 | 1459 | ||
1470 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">86</context></context-group></trans-unit> | 1460 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">92</context></context-group></trans-unit> |
1471 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> | 1461 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> |
1472 | <source>Playlists</source> | 1462 | <source>Playlists</source> |
1473 | <target state="new">Playlists</target> | 1463 | <target state="new">Playlists</target> |
1474 | 1464 | ||
1475 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">91</context></context-group></trans-unit> | 1465 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">97</context></context-group></trans-unit> |
1476 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2"> | 1466 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2"> |
1477 | <source>Subscriptions</source> | 1467 | <source>Subscriptions</source> |
1478 | <target>اشتراک</target> | 1468 | <target>اشتراک</target> |
1479 | 1469 | ||
1480 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 1470 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">102</context></context-group></trans-unit> |
1481 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8" datatype="html"> | 1471 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8" datatype="html"> |
1482 | <source>History</source> | 1472 | <source>History</source> |
1483 | <target state="new">History</target> | 1473 | <target state="new">History</target> |
1484 | 1474 | ||
1485 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit> | 1475 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">107</context></context-group></trans-unit> |
1486 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> | 1476 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> |
1487 | <source>VIDEOS</source> | 1477 | <source>VIDEOS</source> |
1488 | <target state="new">VIDEOS</target> | 1478 | <target state="new">VIDEOS</target> |
@@ -1494,27 +1484,27 @@ The link will expire within 1 hour.</target> | |||
1494 | <target state="new">Discover</target> | 1484 | <target state="new">Discover</target> |
1495 | 1485 | ||
1496 | 1486 | ||
1497 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">111</context></context-group></trans-unit> | 1487 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">117</context></context-group></trans-unit> |
1498 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> | 1488 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> |
1499 | <source>Trending</source> | 1489 | <source>Trending</source> |
1500 | <target>مورد بحث</target> | 1490 | <target>مورد بحث</target> |
1501 | 1491 | ||
1502 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">116</context></context-group></trans-unit> | 1492 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">122</context></context-group></trans-unit> |
1503 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> | 1493 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> |
1504 | <source>Most liked</source> | 1494 | <source>Most liked</source> |
1505 | <target state="new">Most liked</target> | 1495 | <target state="new">Most liked</target> |
1506 | 1496 | ||
1507 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">121</context></context-group></trans-unit> | 1497 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">127</context></context-group></trans-unit> |
1508 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> | 1498 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> |
1509 | <source>Recently added</source> | 1499 | <source>Recently added</source> |
1510 | <target>به تازگی اضافه شده</target> | 1500 | <target>به تازگی اضافه شده</target> |
1511 | 1501 | ||
1512 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">126</context></context-group></trans-unit> | 1502 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">132</context></context-group></trans-unit> |
1513 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> | 1503 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> |
1514 | <source>Administration</source> | 1504 | <source>Administration</source> |
1515 | <target>مدیریت</target> | 1505 | <target>مدیریت</target> |
1516 | 1506 | ||
1517 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">140</context></context-group></trans-unit> | 1507 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">146</context></context-group></trans-unit> |
1518 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> | 1508 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> |
1519 | <source>About</source> | 1509 | <source>About</source> |
1520 | <target>درباره</target> | 1510 | <target>درباره</target> |
@@ -1525,7 +1515,7 @@ The link will expire within 1 hour.</target> | |||
1525 | <source>Contact</source> | 1515 | <source>Contact</source> |
1526 | <target state="new">Contact</target> | 1516 | <target state="new">Contact</target> |
1527 | 1517 | ||
1528 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">160</context></context-group></trans-unit> | 1518 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">166</context></context-group></trans-unit> |
1529 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771" datatype="html"> | 1519 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771" datatype="html"> |
1530 | <source>View your notifications</source> | 1520 | <source>View your notifications</source> |
1531 | <target state="new">View your notifications</target> | 1521 | <target state="new">View your notifications</target> |
@@ -1552,7 +1542,7 @@ The link will expire within 1 hour.</target> | |||
1552 | <source>See all your notifications</source> | 1542 | <source>See all your notifications</source> |
1553 | <target state="new">See all your notifications</target> | 1543 | <target state="new">See all your notifications</target> |
1554 | 1544 | ||
1555 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 1545 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">40</context></context-group></trans-unit> |
1556 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> | 1546 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> |
1557 | <source>Search videos, channels…</source> | 1547 | <source>Search videos, channels…</source> |
1558 | <target state="new">Search videos, channels…</target> | 1548 | <target state="new">Search videos, channels…</target> |
@@ -1886,22 +1876,22 @@ The link will expire within 1 hour.</target> | |||
1886 | <source>FAQ</source> | 1876 | <source>FAQ</source> |
1887 | <target state="new">FAQ</target> | 1877 | <target state="new">FAQ</target> |
1888 | 1878 | ||
1889 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">163</context></context-group></trans-unit> | 1879 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
1890 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> | 1880 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> |
1891 | <source>Frequently asked questions about PeerTube</source> | 1881 | <source>Frequently asked questions about PeerTube</source> |
1892 | <target state="new">Frequently asked questions about PeerTube</target> | 1882 | <target state="new">Frequently asked questions about PeerTube</target> |
1893 | 1883 | ||
1894 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1884 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1895 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> | 1885 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> |
1896 | <source>API</source> | 1886 | <source>API</source> |
1897 | <target state="new">API</target> | 1887 | <target state="new">API</target> |
1898 | 1888 | ||
1899 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1889 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1900 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> | 1890 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> |
1901 | <source>API documentation</source> | 1891 | <source>API documentation</source> |
1902 | <target state="new">API documentation</target> | 1892 | <target state="new">API documentation</target> |
1903 | 1893 | ||
1904 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 1894 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
1905 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5" datatype="html"> | 1895 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5" datatype="html"> |
1906 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> | 1896 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> |
1907 | <target state="new">Schedule publication ( | 1897 | <target state="new">Schedule publication ( |
@@ -2288,7 +2278,13 @@ The link will expire within 1 hour.</target> | |||
2288 | Less customization | 2278 | Less customization |
2289 | </target> | 2279 | </target> |
2290 | 2280 | ||
2291 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit> | 2281 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit><trans-unit id="2454050363478003966" datatype="html"> |
2282 | <source>Login</source><target state="new">Login</target> | ||
2283 | <context-group purpose="location"> | ||
2284 | <context context-type="sourcefile">../app/+login/login-routing.module.ts</context> | ||
2285 | <context context-type="linenumber">14</context> | ||
2286 | </context-group> | ||
2287 | </trans-unit> | ||
2292 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e" datatype="html"> | 2288 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e" datatype="html"> |
2293 | <source>Autoplay</source> | 2289 | <source>Autoplay</source> |
2294 | <target state="new">Autoplay</target> | 2290 | <target state="new">Autoplay</target> |
@@ -2559,7 +2555,7 @@ The link will expire within 1 hour.</target> | |||
2559 | <source>No comments.</source> | 2555 | <source>No comments.</source> |
2560 | <target state="new">No comments.</target> | 2556 | <target state="new">No comments.</target> |
2561 | 2557 | ||
2562 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 2558 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> |
2563 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> | 2559 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> |
2564 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> | 2560 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> |
2565 | <target state="new"> | 2561 | <target state="new"> |
@@ -2569,7 +2565,7 @@ The link will expire within 1 hour.</target> | |||
2569 | 2565 | ||
2570 | </target> | 2566 | </target> |
2571 | 2567 | ||
2572 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">79</context></context-group></trans-unit> | 2568 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
2573 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> | 2569 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> |
2574 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> | 2570 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> |
2575 | <target state="new"> | 2571 | <target state="new"> |
@@ -2578,38 +2574,98 @@ The link will expire within 1 hour.</target> | |||
2578 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> | 2574 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> |
2579 | </target> | 2575 | </target> |
2580 | 2576 | ||
2581 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 2577 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">87</context></context-group></trans-unit> |
2582 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> | 2578 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> |
2583 | <source>View <x id="INTERPOLATION"/> replies</source> | 2579 | <source>View <x id="INTERPOLATION"/> replies</source> |
2584 | <target state="new">View | 2580 | <target state="new">View |
2585 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies | 2581 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies |
2586 | </target> | 2582 | </target> |
2587 | 2583 | ||
2588 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">85</context></context-group></trans-unit> | 2584 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">90</context></context-group></trans-unit> |
2589 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828" datatype="html"> | 2585 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828" datatype="html"> |
2590 | <source>Comments are disabled.</source> | 2586 | <source>Comments are disabled.</source> |
2591 | <target state="new"> | 2587 | <target state="new"> |
2592 | Comments are disabled. | 2588 | Comments are disabled. |
2593 | </target> | 2589 | </target> |
2594 | 2590 | ||
2595 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 2591 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit> |
2596 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e" datatype="html"> | 2592 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e" datatype="html"> |
2597 | <source>Add comment...</source> | 2593 | <source>Add comment...</source> |
2598 | <target state="new">Add comment...</target> | 2594 | <target state="new">Add comment...</target> |
2599 | 2595 | ||
2600 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | 2596 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit><trans-unit id="4e5254dedf0c12ce7e7c2197384fceebe3b29a2b" datatype="html"> |
2601 | <trans-unit id="8956c0f4c6974289fc63f1ab6b54f5b32ed65eeb" datatype="html"> | 2597 | <source>Markdown compatible</source><target state="new">Markdown compatible</target> |
2602 | <source>Reply</source> | 2598 | <context-group purpose="location"> |
2603 | <target state="new"> | 2599 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> |
2604 | Reply | 2600 | <context context-type="linenumber">13</context> |
2605 | </target> | 2601 | </context-group> |
2606 | 2602 | </trans-unit><trans-unit id="4739ffad85f09defefdb6e51b45f43b2ef7c4388" datatype="html"> | |
2607 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 2603 | <source>Markdown compatible that supports:</source><target state="new">Markdown compatible that supports:</target> |
2604 | <context-group purpose="location"> | ||
2605 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2606 | <context context-type="linenumber">15</context> | ||
2607 | </context-group> | ||
2608 | </trans-unit><trans-unit id="9a53b17a021bb0677c156fd893461797fc497a10" datatype="html"> | ||
2609 | <source>Auto generated links</source><target state="new">Auto generated links</target> | ||
2610 | <context-group purpose="location"> | ||
2611 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2612 | <context context-type="linenumber">18</context> | ||
2613 | </context-group> | ||
2614 | </trans-unit><trans-unit id="664f99b8919d6dd2faa1c1f7c378aa86d1be5e8a" datatype="html"> | ||
2615 | <source>Break lines</source><target state="new">Break lines</target> | ||
2616 | <context-group purpose="location"> | ||
2617 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2618 | <context context-type="linenumber">19</context> | ||
2619 | </context-group> | ||
2620 | </trans-unit><trans-unit id="b15e7bec5c7833d2d9634946ccbed68967b1bee1" datatype="html"> | ||
2621 | <source>Lists</source><target state="new">Lists</target> | ||
2622 | <context-group purpose="location"> | ||
2623 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2624 | <context context-type="linenumber">20</context> | ||
2625 | </context-group> | ||
2626 | </trans-unit><trans-unit id="ab4426b60f13c00b61d6b714d390dc629f314980" datatype="html"> | ||
2627 | <source>Emphasis</source><target state="new">Emphasis</target> | ||
2628 | <context-group purpose="location"> | ||
2629 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2630 | <context context-type="linenumber">22</context> | ||
2631 | </context-group> | ||
2632 | </trans-unit><trans-unit id="4e13b179501d3d32721037e03b4c04acb9857c5f" datatype="html"> | ||
2633 | <source>bold</source><target state="new">bold</target> | ||
2634 | <context-group purpose="location"> | ||
2635 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2636 | <context context-type="linenumber">23</context> | ||
2637 | </context-group> | ||
2638 | </trans-unit><trans-unit id="3c12190421fbb2756e6bbead923df9ec5de8ede2" datatype="html"> | ||
2639 | <source>italic</source><target state="new">italic</target> | ||
2640 | <context-group purpose="location"> | ||
2641 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2642 | <context context-type="linenumber">23</context> | ||
2643 | </context-group> | ||
2644 | </trans-unit><trans-unit id="adb4bbdcb961b8aac8298d6cac554d9b25636b7a" datatype="html"> | ||
2645 | <source>Emoji shortcuts</source><target state="new">Emoji shortcuts</target> | ||
2646 | <context-group purpose="location"> | ||
2647 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2648 | <context context-type="linenumber">26</context> | ||
2649 | </context-group> | ||
2650 | </trans-unit><trans-unit id="b9809a21a8eb3c9db2a0282c5dd94bc221575c96" datatype="html"> | ||
2651 | <source>Emoji markup</source><target state="new">Emoji markup</target> | ||
2652 | <context-group purpose="location"> | ||
2653 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2654 | <context context-type="linenumber">30</context> | ||
2655 | </context-group> | ||
2656 | </trans-unit><trans-unit id="f37feb427aaa551edd1f22616be6464bc0d492de" datatype="html"> | ||
2657 | <source>See complete list</source><target state="new">See complete list</target> | ||
2658 | <context-group purpose="location"> | ||
2659 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2660 | <context context-type="linenumber">32</context> | ||
2661 | </context-group> | ||
2662 | </trans-unit> | ||
2663 | |||
2608 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135" datatype="html"> | 2664 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135" datatype="html"> |
2609 | <source>You are one step away from commenting</source> | 2665 | <source>You are one step away from commenting</source> |
2610 | <target state="new">You are one step away from commenting</target> | 2666 | <target state="new">You are one step away from commenting</target> |
2611 | 2667 | ||
2612 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 2668 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
2613 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> | 2669 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> |
2614 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> | 2670 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> |
2615 | <target state="new"> | 2671 | <target state="new"> |
@@ -2618,19 +2674,37 @@ The link will expire within 1 hour.</target> | |||
2618 | from within the software's interface. | 2674 | from within the software's interface. |
2619 | </target> | 2675 | </target> |
2620 | 2676 | ||
2621 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 2677 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
2622 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb" datatype="html"> | 2678 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb" datatype="html"> |
2623 | <source>If you have an account on Mastodon or Pleroma, you can open it directly in their interface:</source> | 2679 | <source>If you have an account on Mastodon or Pleroma, you can open it directly in their interface:</source> |
2624 | <target state="new"> | 2680 | <target state="new"> |
2625 | If you have an account on Mastodon or Pleroma, you can open it directly in their interface: | 2681 | If you have an account on Mastodon or Pleroma, you can open it directly in their interface: |
2626 | </target> | 2682 | </target> |
2627 | 2683 | ||
2628 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">41</context></context-group></trans-unit> | 2684 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">65</context></context-group></trans-unit> |
2629 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> | 2685 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> |
2630 | <source>Login to comment</source> | 2686 | <source>Login to comment</source> |
2631 | <target state="new">Login to comment</target> | 2687 | <target state="new">Login to comment</target> |
2632 | 2688 | ||
2633 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">52</context></context-group></trans-unit> | 2689 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit><trans-unit id="974170f455ff5a9034d5737e84b4194c0046fc6b" datatype="html"> |
2690 | <source>Markdown Emoji List</source><target state="new">Markdown Emoji List</target> | ||
2691 | <context-group purpose="location"> | ||
2692 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2693 | <context context-type="linenumber">84</context> | ||
2694 | </context-group> | ||
2695 | </trans-unit><trans-unit id="2662644497259948010" datatype="html"> | ||
2696 | <source>Comment</source><target state="new">Comment</target> | ||
2697 | <context-group purpose="location"> | ||
2698 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2699 | <context context-type="linenumber">58</context> | ||
2700 | </context-group> | ||
2701 | </trans-unit><trans-unit id="4502286564339177240" datatype="html"> | ||
2702 | <source>Reply</source><target state="new">Reply</target> | ||
2703 | <context-group purpose="location"> | ||
2704 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2705 | <context context-type="linenumber">60</context> | ||
2706 | </context-group> | ||
2707 | </trans-unit> | ||
2634 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285" datatype="html"> | 2708 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285" datatype="html"> |
2635 | <source>Highlighted comment</source> | 2709 | <source>Highlighted comment</source> |
2636 | <target state="new">Highlighted comment</target> | 2710 | <target state="new">Highlighted comment</target> |
@@ -2645,7 +2719,7 @@ The link will expire within 1 hour.</target> | |||
2645 | <source>This comment has been deleted</source> | 2719 | <source>This comment has been deleted</source> |
2646 | <target state="new">This comment has been deleted</target> | 2720 | <target state="new">This comment has been deleted</target> |
2647 | 2721 | ||
2648 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">62</context></context-group></trans-unit> | 2722 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">61</context></context-group></trans-unit> |
2649 | <trans-unit id="9031514421077169181" datatype="html"> | 2723 | <trans-unit id="9031514421077169181" datatype="html"> |
2650 | <source>Video redundancies</source> | 2724 | <source>Video redundancies</source> |
2651 | <target state="new">Video redundancies</target> | 2725 | <target state="new">Video redundancies</target> |
@@ -3500,7 +3574,25 @@ The link will expire within 1 hour.</target> | |||
3500 | <target state="new">No account found.</target> | 3574 | <target state="new">No account found.</target> |
3501 | 3575 | ||
3502 | 3576 | ||
3503 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit> | 3577 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit><trans-unit id="2338185419645468935" datatype="html"> |
3578 | <source>List installed plugins</source><target state="new">List installed plugins</target> | ||
3579 | <context-group purpose="location"> | ||
3580 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3581 | <context context-type="linenumber">28</context> | ||
3582 | </context-group> | ||
3583 | </trans-unit><trans-unit id="8897412584195581488" datatype="html"> | ||
3584 | <source>Search plugins</source><target state="new">Search plugins</target> | ||
3585 | <context-group purpose="location"> | ||
3586 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3587 | <context context-type="linenumber">37</context> | ||
3588 | </context-group> | ||
3589 | </trans-unit><trans-unit id="4994333937800672218" datatype="html"> | ||
3590 | <source>Show plugin</source><target state="new">Show plugin</target> | ||
3591 | <context-group purpose="location"> | ||
3592 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3593 | <context context-type="linenumber">46</context> | ||
3594 | </context-group> | ||
3595 | </trans-unit> | ||
3504 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> | 3596 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> |
3505 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> | 3597 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> |
3506 | <target state="new">Showing | 3598 | <target state="new">Showing |
@@ -4227,7 +4319,7 @@ The link will expire within 1 hour.</target> | |||
4227 | <source>Administrator</source> | 4319 | <source>Administrator</source> |
4228 | <target>مدیر</target> | 4320 | <target>مدیر</target> |
4229 | 4321 | ||
4230 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">385</context></context-group></trans-unit> | 4322 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">383</context></context-group></trans-unit> |
4231 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587" datatype="html"> | 4323 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587" datatype="html"> |
4232 | <source>Admin email</source> | 4324 | <source>Admin email</source> |
4233 | <target state="new">Admin email</target> | 4325 | <target state="new">Admin email</target> |
@@ -4489,27 +4581,27 @@ The link will expire within 1 hour.</target> | |||
4489 | <source>VIDEO SETTINGS</source> | 4581 | <source>VIDEO SETTINGS</source> |
4490 | <target state="new">VIDEO SETTINGS</target> | 4582 | <target state="new">VIDEO SETTINGS</target> |
4491 | 4583 | ||
4492 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit> | 4584 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
4493 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> | 4585 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> |
4494 | <source>NOTIFICATIONS</source> | 4586 | <source>NOTIFICATIONS</source> |
4495 | <target state="new">NOTIFICATIONS</target> | 4587 | <target state="new">NOTIFICATIONS</target> |
4496 | 4588 | ||
4497 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 4589 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">37</context></context-group></trans-unit> |
4498 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> | 4590 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> |
4499 | <source>INTERFACE</source> | 4591 | <source>INTERFACE</source> |
4500 | <target state="new">INTERFACE</target> | 4592 | <target state="new">INTERFACE</target> |
4501 | 4593 | ||
4502 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 4594 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit> |
4503 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> | 4595 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> |
4504 | <source>PASSWORD</source> | 4596 | <source>PASSWORD</source> |
4505 | <target state="new">PASSWORD</target> | 4597 | <target state="new">PASSWORD</target> |
4506 | 4598 | ||
4507 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">59</context></context-group></trans-unit> | 4599 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">57</context></context-group></trans-unit> |
4508 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> | 4600 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> |
4509 | <source>EMAIL</source> | 4601 | <source>EMAIL</source> |
4510 | <target state="new">EMAIL</target> | 4602 | <target state="new">EMAIL</target> |
4511 | 4603 | ||
4512 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">69</context></context-group></trans-unit> | 4604 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">67</context></context-group></trans-unit> |
4513 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> | 4605 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> |
4514 | <source>DANGER ZONE</source> | 4606 | <source>DANGER ZONE</source> |
4515 | <target state="new">DANGER ZONE</target> | 4607 | <target state="new">DANGER ZONE</target> |
@@ -4759,7 +4851,31 @@ The link will expire within 1 hour.</target> | |||
4759 | <source>No ownership change request found.</source> | 4851 | <source>No ownership change request found.</source> |
4760 | <target state="new">No ownership change request found.</target> | 4852 | <target state="new">No ownership change request found.</target> |
4761 | 4853 | ||
4762 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit> | 4854 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit><trans-unit id="4247400351982331798" datatype="html"> |
4855 | <source>Account settings</source><target state="new">Account settings</target> | ||
4856 | <context-group purpose="location"> | ||
4857 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4858 | <context context-type="linenumber">37</context> | ||
4859 | </context-group> | ||
4860 | </trans-unit><trans-unit id="154062590416726309" datatype="html"> | ||
4861 | <source>Account playlists</source><target state="new">Account playlists</target> | ||
4862 | <context-group purpose="location"> | ||
4863 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4864 | <context context-type="linenumber">55</context> | ||
4865 | </context-group> | ||
4866 | </trans-unit><trans-unit id="6550287183367517925" datatype="html"> | ||
4867 | <source>Create new playlist</source><target state="new">Create new playlist</target> | ||
4868 | <context-group purpose="location"> | ||
4869 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4870 | <context context-type="linenumber">64</context> | ||
4871 | </context-group> | ||
4872 | </trans-unit><trans-unit id="2864486939135008600" datatype="html"> | ||
4873 | <source>Playlist elements</source><target state="new">Playlist elements</target> | ||
4874 | <context-group purpose="location"> | ||
4875 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4876 | <context context-type="linenumber">73</context> | ||
4877 | </context-group> | ||
4878 | </trans-unit> | ||
4763 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> | 4879 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> |
4764 | <source>My imports</source> | 4880 | <source>My imports</source> |
4765 | <target state="new">My imports</target> | 4881 | <target state="new">My imports</target> |
@@ -5030,7 +5146,25 @@ The link will expire within 1 hour.</target> | |||
5030 | <source>An error occurred.</source> | 5146 | <source>An error occurred.</source> |
5031 | <target state="new">An error occurred.</target> | 5147 | <target state="new">An error occurred.</target> |
5032 | 5148 | ||
5033 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 5149 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit><trans-unit id="9128669621822125729" datatype="html"> |
5150 | <source>Video channel videos</source><target state="new">Video channel videos</target> | ||
5151 | <context-group purpose="location"> | ||
5152 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5153 | <context context-type="linenumber">25</context> | ||
5154 | </context-group> | ||
5155 | </trans-unit><trans-unit id="3193822049276963401" datatype="html"> | ||
5156 | <source>Video channel playlists</source><target state="new">Video channel playlists</target> | ||
5157 | <context-group purpose="location"> | ||
5158 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5159 | <context context-type="linenumber">38</context> | ||
5160 | </context-group> | ||
5161 | </trans-unit><trans-unit id="4723526509708949088" datatype="html"> | ||
5162 | <source>About video channel</source><target state="new">About video channel</target> | ||
5163 | <context-group purpose="location"> | ||
5164 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5165 | <context context-type="linenumber">47</context> | ||
5166 | </context-group> | ||
5167 | </trans-unit> | ||
5034 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97" datatype="html"> | 5168 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97" datatype="html"> |
5035 | <source>Request email for account verification</source> | 5169 | <source>Request email for account verification</source> |
5036 | <target state="new"> | 5170 | <target state="new"> |
@@ -5151,7 +5285,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5151 | <source>Stats</source> | 5285 | <source>Stats</source> |
5152 | <target>آمار</target> | 5286 | <target>آمار</target> |
5153 | 5287 | ||
5154 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 5288 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
5155 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc" datatype="html"> | 5289 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc" datatype="html"> |
5156 | <source>Joined <x id="INTERPOLATION"/></source> | 5290 | <source>Joined <x id="INTERPOLATION"/></source> |
5157 | <target state="new">Joined | 5291 | <target state="new">Joined |
@@ -5592,7 +5726,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5592 | <source>This instance does not have instances followings.</source> | 5726 | <source>This instance does not have instances followings.</source> |
5593 | <target state="new">This instance does not have instances followings.</target> | 5727 | <target state="new">This instance does not have instances followings.</target> |
5594 | 5728 | ||
5595 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit> | 5729 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit><trans-unit id="4195286790385468087" datatype="html"> |
5730 | <source>About this instance</source><target state="new">About this instance</target> | ||
5731 | <context-group purpose="location"> | ||
5732 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5733 | <context context-type="linenumber">26</context> | ||
5734 | </context-group> | ||
5735 | </trans-unit><trans-unit id="8773846522957677259" datatype="html"> | ||
5736 | <source>About PeerTube</source><target state="new">About PeerTube</target> | ||
5737 | <context-group purpose="location"> | ||
5738 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5739 | <context context-type="linenumber">38</context> | ||
5740 | </context-group> | ||
5741 | </trans-unit><trans-unit id="5782088737558028158" datatype="html"> | ||
5742 | <source>About follows</source><target state="new">About follows</target> | ||
5743 | <context-group purpose="location"> | ||
5744 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5745 | <context context-type="linenumber">47</context> | ||
5746 | </context-group> | ||
5747 | </trans-unit> | ||
5596 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> | 5748 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> |
5597 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> | 5749 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> |
5598 | <target state="new">Developed with ❤ by | 5750 | <target state="new">Developed with ❤ by |
@@ -5762,6 +5914,12 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5762 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 5914 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> |
5763 | <context context-type="linenumber">1</context> | 5915 | <context context-type="linenumber">1</context> |
5764 | </context-group> | 5916 | </context-group> |
5917 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
5918 | <source>Get help</source><target state="new">Get help</target> | ||
5919 | <context-group purpose="location"> | ||
5920 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | ||
5921 | <context context-type="linenumber">16</context> | ||
5922 | </context-group> | ||
5765 | </trans-unit> | 5923 | </trans-unit> |
5766 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1" datatype="html"> | 5924 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1" datatype="html"> |
5767 | <source>Create my account</source> | 5925 | <source>Create my account</source> |
@@ -5890,7 +6048,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5890 | 6048 | ||
5891 | </target> | 6049 | </target> |
5892 | 6050 | ||
5893 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 6051 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit><trans-unit id="3301086086650990787" datatype="html"> |
6052 | <source>Register</source><target state="new">Register</target> | ||
6053 | <context-group purpose="location"> | ||
6054 | <context context-type="sourcefile">../app/+signup/+register/register-routing.module.ts</context> | ||
6055 | <context context-type="linenumber">14</context> | ||
6056 | </context-group> | ||
6057 | </trans-unit> | ||
5894 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> | 6058 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> |
5895 | <source>Sorry, we couldn't find the page you were looking for.</source> | 6059 | <source>Sorry, we couldn't find the page you were looking for.</source> |
5896 | <target state="new"> | 6060 | <target state="new"> |
@@ -5913,7 +6077,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5913 | <target state="new">No description</target> | 6077 | <target state="new">No description</target> |
5914 | 6078 | ||
5915 | 6079 | ||
5916 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit> | 6080 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit><trans-unit id="819067926858619041" datatype="html"> |
6081 | <source>Account videos</source><target state="new">Account videos</target> | ||
6082 | <context-group purpose="location"> | ||
6083 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6084 | <context context-type="linenumber">29</context> | ||
6085 | </context-group> | ||
6086 | </trans-unit><trans-unit id="6823616469362610020" datatype="html"> | ||
6087 | <source>Account video channels</source><target state="new">Account video channels</target> | ||
6088 | <context-group purpose="location"> | ||
6089 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6090 | <context context-type="linenumber">42</context> | ||
6091 | </context-group> | ||
6092 | </trans-unit><trans-unit id="7678273613459026643" datatype="html"> | ||
6093 | <source>About account</source><target state="new">About account</target> | ||
6094 | <context-group purpose="location"> | ||
6095 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6096 | <context context-type="linenumber">51</context> | ||
6097 | </context-group> | ||
6098 | </trans-unit> | ||
5917 | <trans-unit id="3755500631176893489" datatype="html"> | 6099 | <trans-unit id="3755500631176893489" datatype="html"> |
5918 | <source>Published <x id="PH"/> videos</source> | 6100 | <source>Published <x id="PH"/> videos</source> |
5919 | <target state="new">Published | 6101 | <target state="new">Published |
@@ -6030,7 +6212,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6030 | <source>Configuration updated.</source> | 6212 | <source>Configuration updated.</source> |
6031 | <target state="new">Configuration updated.</target> | 6213 | <target state="new">Configuration updated.</target> |
6032 | 6214 | ||
6033 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit> | 6215 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit><trans-unit id="6284468333579755406" datatype="html"> |
6216 | <source>Edit custom configuration</source><target state="new">Edit custom configuration</target> | ||
6217 | <context-group purpose="location"> | ||
6218 | <context context-type="sourcefile">../app/+admin/config/config.routes.ts</context> | ||
6219 | <context context-type="linenumber">26</context> | ||
6220 | </context-group> | ||
6221 | </trans-unit> | ||
6034 | 6222 | ||
6035 | 6223 | ||
6036 | <trans-unit id="6549061957433635758" datatype="html"> | 6224 | <trans-unit id="6549061957433635758" datatype="html"> |
@@ -6509,7 +6697,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6509 | <x id="PH"/> updated. | 6697 | <x id="PH"/> updated. |
6510 | </target> | 6698 | </target> |
6511 | 6699 | ||
6512 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 6700 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit><trans-unit id="3229595422546554334" datatype="html"> |
6701 | <source>Jobs</source><target state="new">Jobs</target> | ||
6702 | <context-group purpose="location"> | ||
6703 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6704 | <context context-type="linenumber">26</context> | ||
6705 | </context-group> | ||
6706 | </trans-unit><trans-unit id="4804785061014590286" datatype="html"> | ||
6707 | <source>Logs</source><target state="new">Logs</target> | ||
6708 | <context-group purpose="location"> | ||
6709 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6710 | <context context-type="linenumber">37</context> | ||
6711 | </context-group> | ||
6712 | </trans-unit> | ||
6513 | <trans-unit id="3150704904301058778" datatype="html"> | 6713 | <trans-unit id="3150704904301058778" datatype="html"> |
6514 | <source>The plugin index is not available. Please retry later.</source> | 6714 | <source>The plugin index is not available. Please retry later.</source> |
6515 | <target state="new">The plugin index is not available. Please retry later.</target> | 6715 | <target state="new">The plugin index is not available. Please retry later.</target> |
@@ -6623,6 +6823,18 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6623 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> | 6823 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> |
6624 | <context context-type="linenumber">86</context> | 6824 | <context context-type="linenumber">86</context> |
6625 | </context-group> | 6825 | </context-group> |
6826 | </trans-unit><trans-unit id="2903648076838460070" datatype="html"> | ||
6827 | <source>Videos blocked</source><target state="new">Videos blocked</target> | ||
6828 | <context-group purpose="location"> | ||
6829 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6830 | <context context-type="linenumber">67</context> | ||
6831 | </context-group> | ||
6832 | </trans-unit><trans-unit id="7805059636749367886" datatype="html"> | ||
6833 | <source>Muted instances</source><target state="new">Muted instances</target> | ||
6834 | <context-group purpose="location"> | ||
6835 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6836 | <context context-type="linenumber">89</context> | ||
6837 | </context-group> | ||
6626 | </trans-unit> | 6838 | </trans-unit> |
6627 | <trans-unit id="5974506725502681113" datatype="html"> | 6839 | <trans-unit id="5974506725502681113" datatype="html"> |
6628 | <source>Password changed for user <x id="PH"/>.</source> | 6840 | <source>Password changed for user <x id="PH"/>.</source> |
@@ -6635,7 +6847,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6635 | <source>Update user password</source> | 6847 | <source>Update user password</source> |
6636 | <target state="new">Update user password</target> | 6848 | <target state="new">Update user password</target> |
6637 | 6849 | ||
6638 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit> | 6850 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit><trans-unit id="177544274549739411" datatype="html"> |
6851 | <source>Following list</source><target state="new">Following list</target> | ||
6852 | <context-group purpose="location"> | ||
6853 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6854 | <context context-type="linenumber">28</context> | ||
6855 | </context-group> | ||
6856 | </trans-unit><trans-unit id="8092429110007204784" datatype="html"> | ||
6857 | <source>Followers list</source><target state="new">Followers list</target> | ||
6858 | <context-group purpose="location"> | ||
6859 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6860 | <context context-type="linenumber">37</context> | ||
6861 | </context-group> | ||
6862 | </trans-unit> | ||
6639 | <trans-unit id="780323526182667308" datatype="html"> | 6863 | <trans-unit id="780323526182667308" datatype="html"> |
6640 | <source>User <x id="PH"/> updated.</source> | 6864 | <source>User <x id="PH"/> updated.</source> |
6641 | <target state="new">User | 6865 | <target state="new">User |
@@ -6654,7 +6878,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6654 | <x id="PH"/>. | 6878 | <x id="PH"/>. |
6655 | </target> | 6879 | </target> |
6656 | 6880 | ||
6657 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="8564701209009684429" datatype="html"> | 6881 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="7483807629538115183" datatype="html"> |
6882 | <source>Users list</source><target state="new">Users list</target> | ||
6883 | <context-group purpose="location"> | ||
6884 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6885 | <context context-type="linenumber">27</context> | ||
6886 | </context-group> | ||
6887 | </trans-unit><trans-unit id="1525334987774465166" datatype="html"> | ||
6888 | <source>Create a user</source><target state="new">Create a user</target> | ||
6889 | <context-group purpose="location"> | ||
6890 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6891 | <context context-type="linenumber">36</context> | ||
6892 | </context-group> | ||
6893 | </trans-unit><trans-unit id="5552039423287890133" datatype="html"> | ||
6894 | <source>Update a user</source><target state="new">Update a user</target> | ||
6895 | <context-group purpose="location"> | ||
6896 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6897 | <context context-type="linenumber">48</context> | ||
6898 | </context-group> | ||
6899 | </trans-unit><trans-unit id="8564701209009684429" datatype="html"> | ||
6658 | <source>Federation</source><target state="new">Federation</target> | 6900 | <source>Federation</source><target state="new">Federation</target> |
6659 | <context-group purpose="location"> | 6901 | <context-group purpose="location"> |
6660 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> | 6902 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> |
@@ -7008,7 +7250,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7008 | <source>Views for the day</source> | 7250 | <source>Views for the day</source> |
7009 | <target state="new">Views for the day</target> | 7251 | <target state="new">Views for the day</target> |
7010 | 7252 | ||
7011 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit> | 7253 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit><trans-unit id="4707367314920217630" datatype="html"> |
7254 | <source>Create new video channel</source><target state="new">Create new video channel</target> | ||
7255 | <context-group purpose="location"> | ||
7256 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7257 | <context context-type="linenumber">22</context> | ||
7258 | </context-group> | ||
7259 | </trans-unit><trans-unit id="6059091237492573541" datatype="html"> | ||
7260 | <source>Update video channel</source><target state="new">Update video channel</target> | ||
7261 | <context-group purpose="location"> | ||
7262 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7263 | <context context-type="linenumber">31</context> | ||
7264 | </context-group> | ||
7265 | </trans-unit><trans-unit id="6595008830732269870" datatype="html"> | ||
7266 | <source>Not found</source><target state="new">Not found</target> | ||
7267 | <context-group purpose="location"> | ||
7268 | <context context-type="sourcefile">../app/+page-not-found/page-not-found-routing.module.ts</context> | ||
7269 | <context context-type="linenumber">13</context> | ||
7270 | </context-group> | ||
7271 | </trans-unit> | ||
7012 | <trans-unit id="5032453707232754344" datatype="html"> | 7272 | <trans-unit id="5032453707232754344" datatype="html"> |
7013 | <source>Playlist <x id="PH"/> created.</source> | 7273 | <source>Playlist <x id="PH"/> created.</source> |
7014 | <target state="new">Playlist | 7274 | <target state="new">Playlist |
@@ -7026,7 +7286,31 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7026 | <source>Update playlist</source> | 7286 | <source>Update playlist</source> |
7027 | <target state="new">Update playlist</target> | 7287 | <target state="new">Update playlist</target> |
7028 | 7288 | ||
7029 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-video-playlists/my-account-video-playlist-elements.component.ts</context><context context-type="linenumber">48</context></context-group></trans-unit> | 7289 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">82</context></context-group></trans-unit><trans-unit id="3410331549417637431" datatype="html"> |
7290 | <source>Account video imports</source><target state="new">Account video imports</target> | ||
7291 | <context-group purpose="location"> | ||
7292 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7293 | <context context-type="linenumber">105</context> | ||
7294 | </context-group> | ||
7295 | </trans-unit><trans-unit id="4434998055872154420" datatype="html"> | ||
7296 | <source>Account subscriptions</source><target state="new">Account subscriptions</target> | ||
7297 | <context-group purpose="location"> | ||
7298 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7299 | <context context-type="linenumber">114</context> | ||
7300 | </context-group> | ||
7301 | </trans-unit><trans-unit id="6019411775996586321" datatype="html"> | ||
7302 | <source>Videos history</source><target state="new">Videos history</target> | ||
7303 | <context-group purpose="location"> | ||
7304 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7305 | <context context-type="linenumber">150</context> | ||
7306 | </context-group> | ||
7307 | </trans-unit><trans-unit id="5851560788527570644" datatype="html"> | ||
7308 | <source>Notifications</source><target state="new">Notifications</target> | ||
7309 | <context-group purpose="location"> | ||
7310 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7311 | <context context-type="linenumber">163</context> | ||
7312 | </context-group> | ||
7313 | </trans-unit> | ||
7030 | <trans-unit id="104404386496394770" datatype="html"> | 7314 | <trans-unit id="104404386496394770" datatype="html"> |
7031 | <source>Delete playlist</source> | 7315 | <source>Delete playlist</source> |
7032 | <target state="new">Delete playlist</target> | 7316 | <target state="new">Delete playlist</target> |
@@ -7180,7 +7464,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7180 | <x id="PH"/>. | 7464 | <x id="PH"/>. |
7181 | </target> | 7465 | </target> |
7182 | 7466 | ||
7183 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit> | 7467 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit><trans-unit id="8231550792139699065" datatype="html"> |
7468 | <source>Verify account email</source><target state="new">Verify account email</target> | ||
7469 | <context-group purpose="location"> | ||
7470 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7471 | <context context-type="linenumber">17</context> | ||
7472 | </context-group> | ||
7473 | </trans-unit><trans-unit id="4997281272800290390" datatype="html"> | ||
7474 | <source>Verify account ask send email</source><target state="new">Verify account ask send email</target> | ||
7475 | <context-group purpose="location"> | ||
7476 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7477 | <context context-type="linenumber">26</context> | ||
7478 | </context-group> | ||
7479 | </trans-unit> | ||
7184 | <trans-unit id="4180693983967989981" datatype="html"> | 7480 | <trans-unit id="4180693983967989981" datatype="html"> |
7185 | <source>Unable to find user id or verification string.</source> | 7481 | <source>Unable to find user id or verification string.</source> |
7186 | <target state="new">Unable to find user id or verification string.</target> | 7482 | <target state="new">Unable to find user id or verification string.</target> |
@@ -7305,27 +7601,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7305 | <source>any language</source> | 7601 | <source>any language</source> |
7306 | <target state="new">any language</target> | 7602 | <target state="new">any language</target> |
7307 | 7603 | ||
7308 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">202</context></context-group></trans-unit> | 7604 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">229</context></context-group></trans-unit> |
7309 | <trans-unit id="5633144232269377096" datatype="html"> | 7605 | <trans-unit id="5633144232269377096" datatype="html"> |
7310 | <source>hide</source> | 7606 | <source>hide</source> |
7311 | <target state="new">hide</target> | 7607 | <target state="new">hide</target> |
7312 | 7608 | ||
7313 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">118</context></context-group></trans-unit> | 7609 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> |
7314 | <trans-unit id="8603861867909474404" datatype="html"> | 7610 | <trans-unit id="8603861867909474404" datatype="html"> |
7315 | <source>blur</source> | 7611 | <source>blur</source> |
7316 | <target state="new">blur</target> | 7612 | <target state="new">blur</target> |
7317 | 7613 | ||
7318 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> | 7614 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> |
7319 | <trans-unit id="4534458451100881847" datatype="html"> | 7615 | <trans-unit id="4534458451100881847" datatype="html"> |
7320 | <source>display</source> | 7616 | <source>display</source> |
7321 | <target state="new">display</target> | 7617 | <target state="new">display</target> |
7322 | 7618 | ||
7323 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> | 7619 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">127</context></context-group></trans-unit> |
7324 | <trans-unit id="4467323362722952678" datatype="html"> | 7620 | <trans-unit id="4467323362722952678" datatype="html"> |
7325 | <source>Unknown</source> | 7621 | <source>Unknown</source> |
7326 | <target state="new">Unknown</target> | 7622 | <target state="new">Unknown</target> |
7327 | 7623 | ||
7328 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">190</context></context-group></trans-unit> | 7624 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">193</context></context-group></trans-unit> |
7329 | <trans-unit id="8781423666414310853" datatype="html"> | 7625 | <trans-unit id="8781423666414310853" datatype="html"> |
7330 | <source>Your password has been successfully reset!</source> | 7626 | <source>Your password has been successfully reset!</source> |
7331 | <target state="new">Your password has been successfully reset!</target> | 7627 | <target state="new">Your password has been successfully reset!</target> |
@@ -8443,27 +8739,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8443 | <source>Emphasis</source> | 8739 | <source>Emphasis</source> |
8444 | <target state="new">Emphasis</target> | 8740 | <target state="new">Emphasis</target> |
8445 | 8741 | ||
8446 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">77</context></context-group></trans-unit> | 8742 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> |
8447 | <trans-unit id="7565716024468232322"> | 8743 | <trans-unit id="7565716024468232322"> |
8448 | <source>Links</source> | 8744 | <source>Links</source> |
8449 | <target>لینکها</target> | 8745 | <target>لینکها</target> |
8450 | 8746 | ||
8451 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">78</context></context-group></trans-unit> | 8747 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> |
8452 | <trans-unit id="7838476952710404110" datatype="html"> | 8748 | <trans-unit id="7838476952710404110" datatype="html"> |
8453 | <source>New lines</source> | 8749 | <source>New lines</source> |
8454 | <target state="new">New lines</target> | 8750 | <target state="new">New lines</target> |
8455 | 8751 | ||
8456 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 8752 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">83</context></context-group></trans-unit> |
8457 | <trans-unit id="8756167649220050929"> | 8753 | <trans-unit id="8756167649220050929"> |
8458 | <source>Lists</source> | 8754 | <source>Lists</source> |
8459 | <target>لیستها</target> | 8755 | <target>لیستها</target> |
8460 | 8756 | ||
8461 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">80</context></context-group></trans-unit> | 8757 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">84</context></context-group></trans-unit> |
8462 | <trans-unit id="414887388288176527"> | 8758 | <trans-unit id="414887388288176527"> |
8463 | <source>Images</source> | 8759 | <source>Images</source> |
8464 | <target>عکسها</target> | 8760 | <target>عکسها</target> |
8465 | 8761 | ||
8466 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> | 8762 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">85</context></context-group></trans-unit> |
8467 | <trans-unit id="5708680277917691451" datatype="html"> | 8763 | <trans-unit id="5708680277917691451" datatype="html"> |
8468 | <source> | 8764 | <source> |
8469 | <x id="PH"/> users banned. | 8765 | <x id="PH"/> users banned. |
@@ -8859,7 +9155,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8859 | <source>Moderator</source> | 9155 | <source>Moderator</source> |
8860 | <target state="new">Moderator</target> | 9156 | <target state="new">Moderator</target> |
8861 | 9157 | ||
8862 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">386</context></context-group></trans-unit> | 9158 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">384</context></context-group></trans-unit> |
8863 | <trans-unit id="3723085768598852106" datatype="html"> | 9159 | <trans-unit id="3723085768598852106" datatype="html"> |
8864 | <source>Video removed from | 9160 | <source>Video removed from |
8865 | <x id="PH"/> | 9161 | <x id="PH"/> |
@@ -8932,7 +9228,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8932 | <source>Do you really want to delete this comment?</source> | 9228 | <source>Do you really want to delete this comment?</source> |
8933 | <target state="new">Do you really want to delete this comment?</target> | 9229 | <target state="new">Do you really want to delete this comment?</target> |
8934 | 9230 | ||
8935 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">434</context></context-group></trans-unit> | 9231 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">166</context></context-group></trans-unit> |
8936 | <trans-unit id="7837272126865175984" datatype="html"> | 9232 | <trans-unit id="7837272126865175984" datatype="html"> |
8937 | <source>Comment deleted.</source> | 9233 | <source>Comment deleted.</source> |
8938 | <target state="new">Comment deleted.</target> | 9234 | <target state="new">Comment deleted.</target> |
@@ -9044,9 +9340,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9044 | 9340 | ||
9045 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> | 9341 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> |
9046 | <source>Report</source><target state="new">Report</target> | 9342 | <source>Report</source><target state="new">Report</target> |
9343 | |||
9344 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="4814285799071780083" datatype="html"> | ||
9345 | <source>Remove</source><target state="new">Remove</target> | ||
9047 | <context-group purpose="location"> | 9346 | <context-group purpose="location"> |
9048 | <context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> | 9347 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> |
9049 | <context context-type="linenumber">286</context> | 9348 | <context context-type="linenumber">179</context> |
9349 | </context-group> | ||
9350 | </trans-unit><trans-unit id="6871668720687277843" datatype="html"> | ||
9351 | <source>Remove & re-draft</source><target state="new">Remove & re-draft</target> | ||
9352 | <context-group purpose="location"> | ||
9353 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> | ||
9354 | <context context-type="linenumber">187</context> | ||
9050 | </context-group> | 9355 | </context-group> |
9051 | </trans-unit> | 9356 | </trans-unit> |
9052 | <trans-unit id="4903651219400691248" datatype="html"> | 9357 | <trans-unit id="4903651219400691248" datatype="html"> |
@@ -9150,22 +9455,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9150 | <source>Only I can see this video</source> | 9455 | <source>Only I can see this video</source> |
9151 | <target state="new">Only I can see this video</target> | 9456 | <target state="new">Only I can see this video</target> |
9152 | 9457 | ||
9153 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">340</context></context-group></trans-unit> | 9458 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">341</context></context-group></trans-unit> |
9154 | <trans-unit id="6767380569816110388" datatype="html"> | 9459 | <trans-unit id="6767380569816110388" datatype="html"> |
9155 | <source>Only shareable via a private link</source> | 9460 | <source>Only shareable via a private link</source> |
9156 | <target state="new">Only shareable via a private link</target> | 9461 | <target state="new">Only shareable via a private link</target> |
9157 | 9462 | ||
9158 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">344</context></context-group></trans-unit> | 9463 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">345</context></context-group></trans-unit> |
9159 | <trans-unit id="6828965264297239528" datatype="html"> | 9464 | <trans-unit id="6828965264297239528" datatype="html"> |
9160 | <source>Anyone can see this video</source> | 9465 | <source>Anyone can see this video</source> |
9161 | <target state="new">Anyone can see this video</target> | 9466 | <target state="new">Anyone can see this video</target> |
9162 | 9467 | ||
9163 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">348</context></context-group></trans-unit> | 9468 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">349</context></context-group></trans-unit> |
9164 | <trans-unit id="1425933035739773115" datatype="html"> | 9469 | <trans-unit id="1425933035739773115" datatype="html"> |
9165 | <source>Only users of this instance can see this video</source> | 9470 | <source>Only users of this instance can see this video</source> |
9166 | <target state="new">Only users of this instance can see this video</target> | 9471 | <target state="new">Only users of this instance can see this video</target> |
9167 | 9472 | ||
9168 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">352</context></context-group></trans-unit> | 9473 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">353</context></context-group></trans-unit> |
9169 | <trans-unit id="5210096066382592800" datatype="html"> | 9474 | <trans-unit id="5210096066382592800" datatype="html"> |
9170 | <source>Video to import updated.</source> | 9475 | <source>Video to import updated.</source> |
9171 | <target state="new">Video to import updated.</target> | 9476 | <target state="new">Video to import updated.</target> |
@@ -9245,16 +9550,25 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9245 | <target state="new">Report comment</target> | 9550 | <target state="new">Report comment</target> |
9246 | 9551 | ||
9247 | 9552 | ||
9248 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 9553 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/report-modals/comment-report.component.ts</context><context context-type="linenumber">51</context></context-group></trans-unit> |
9249 | <trans-unit id="3691787517663044217" datatype="html"> | 9554 | <trans-unit id="3691787517663044217" datatype="html"> |
9250 | <source> The deletion will be sent to remote instances so they can reflect the change.</source> | 9555 | <source> The deletion will be sent to remote instances so they can reflect the change.</source> |
9251 | <target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> | 9556 | <target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> |
9252 | 9557 | ||
9253 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">163</context></context-group></trans-unit><trans-unit id="7321800851971795962" datatype="html"> | 9558 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">169</context></context-group></trans-unit><trans-unit id="7321800851971795962" datatype="html"> |
9254 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source><target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> | 9559 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source><target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> |
9560 | |||
9561 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="5964038603724691720" datatype="html"> | ||
9562 | <source>Delete and re-draft</source><target state="new">Delete and re-draft</target> | ||
9255 | <context-group purpose="location"> | 9563 | <context-group purpose="location"> |
9256 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | 9564 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> |
9257 | <context context-type="linenumber">165</context> | 9565 | <context context-type="linenumber">197</context> |
9566 | </context-group> | ||
9567 | </trans-unit><trans-unit id="7163633882758007711" datatype="html"> | ||
9568 | <source>Do you really want to delete and re-draft this comment?</source><target state="new">Do you really want to delete and re-draft this comment?</target> | ||
9569 | <context-group purpose="location"> | ||
9570 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | ||
9571 | <context context-type="linenumber">197</context> | ||
9258 | </context-group> | 9572 | </context-group> |
9259 | </trans-unit> | 9573 | </trans-unit> |
9260 | 9574 | ||
@@ -9419,6 +9733,36 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9419 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> | 9733 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> |
9420 | <context context-type="linenumber">36</context> | 9734 | <context context-type="linenumber">36</context> |
9421 | </context-group> | 9735 | </context-group> |
9736 | </trans-unit><trans-unit id="4668975178372693951" datatype="html"> | ||
9737 | <source>Discover videos</source><target state="new">Discover videos</target> | ||
9738 | <context-group purpose="location"> | ||
9739 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9740 | <context context-type="linenumber">23</context> | ||
9741 | </context-group> | ||
9742 | </trans-unit><trans-unit id="8067135025051844577" datatype="html"> | ||
9743 | <source>Trending videos</source><target state="new">Trending videos</target> | ||
9744 | <context-group purpose="location"> | ||
9745 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9746 | <context context-type="linenumber">32</context> | ||
9747 | </context-group> | ||
9748 | </trans-unit><trans-unit id="664221386829541948" datatype="html"> | ||
9749 | <source>Recently added videos</source><target state="new">Recently added videos</target> | ||
9750 | <context-group purpose="location"> | ||
9751 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9752 | <context context-type="linenumber">58</context> | ||
9753 | </context-group> | ||
9754 | </trans-unit><trans-unit id="8212906256415538361" datatype="html"> | ||
9755 | <source>Upload a video</source><target state="new">Upload a video</target> | ||
9756 | <context-group purpose="location"> | ||
9757 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9758 | <context context-type="linenumber">97</context> | ||
9759 | </context-group> | ||
9760 | </trans-unit><trans-unit id="7590784934397800835" datatype="html"> | ||
9761 | <source>Edit a video</source><target state="new">Edit a video</target> | ||
9762 | <context-group purpose="location"> | ||
9763 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9764 | <context context-type="linenumber">106</context> | ||
9765 | </context-group> | ||
9422 | </trans-unit> | 9766 | </trans-unit> |
9423 | </body> | 9767 | </body> |
9424 | </file> | 9768 | </file> |
diff --git a/client/src/locale/angular.fi-FI.xlf b/client/src/locale/angular.fi-FI.xlf index 70179c641..b07ec84b2 100644 --- a/client/src/locale/angular.fi-FI.xlf +++ b/client/src/locale/angular.fi-FI.xlf | |||
@@ -318,7 +318,7 @@ | |||
318 | <target>Asetukset</target> | 318 | <target>Asetukset</target> |
319 | 319 | ||
320 | 320 | ||
321 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 321 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">48</context></context-group></trans-unit> |
322 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d"> | 322 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d"> |
323 | <source>Start at</source> | 323 | <source>Start at</source> |
324 | <target>Aloita kohdasta</target> | 324 | <target>Aloita kohdasta</target> |
@@ -450,7 +450,7 @@ | |||
450 | Peruuta | 450 | Peruuta |
451 | </target> | 451 | </target> |
452 | 452 | ||
453 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> | 453 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit> |
454 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd"> | 454 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd"> |
455 | <source>Download</source> | 455 | <source>Download</source> |
456 | <target>Lataa</target> | 456 | <target>Lataa</target> |
@@ -569,7 +569,7 @@ | |||
569 | 569 | ||
570 | 570 | ||
571 | 571 | ||
572 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 572 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
573 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc"> | 573 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc"> |
574 | <source>Edit starts/stops at</source> | 574 | <source>Edit starts/stops at</source> |
575 | <target>Muokkaus alkaa/loppuu kohdassa</target> | 575 | <target>Muokkaus alkaa/loppuu kohdassa</target> |
@@ -609,7 +609,7 @@ | |||
609 | 609 | ||
610 | 610 | ||
611 | 611 | ||
612 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> | 612 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
613 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> | 613 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> |
614 | <source>Edit</source> | 614 | <source>Edit</source> |
615 | <target>Muokkaa</target> | 615 | <target>Muokkaa</target> |
@@ -634,17 +634,10 @@ | |||
634 | <target>Kokonainen esikatselu</target> | 634 | <target>Kokonainen esikatselu</target> |
635 | 635 | ||
636 | <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></trans-unit> | 636 | <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></trans-unit> |
637 | <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f"> | 637 | <trans-unit id="8644431249513874405" datatype="html"> |
638 | <source>Get help</source> | ||
639 | <target>Hae apua</target> | ||
640 | |||
641 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit><trans-unit id="8644431249513874405" datatype="html"> | ||
642 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> | 638 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> |
643 | <context-group purpose="location"> | 639 | |
644 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 640 | <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></trans-unit> |
645 | <context context-type="linenumber">71</context> | ||
646 | </context-group> | ||
647 | </trans-unit> | ||
648 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> | 641 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> |
649 | <source>Recommended</source> | 642 | <source>Recommended</source> |
650 | <target state="new">Recommended</target> | 643 | <target state="new">Recommended</target> |
@@ -684,7 +677,7 @@ | |||
684 | <source>PROFILE SETTINGS</source> | 677 | <source>PROFILE SETTINGS</source> |
685 | <target state="new">PROFILE SETTINGS</target> | 678 | <target state="new">PROFILE SETTINGS</target> |
686 | 679 | ||
687 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 680 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">12</context></context-group></trans-unit> |
688 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3"> | 681 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3"> |
689 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> | 682 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> |
690 | <target> | 683 | <target> |
@@ -839,11 +832,8 @@ | |||
839 | 832 | ||
840 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> | 833 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> |
841 | <source>User</source><target state="new">User</target> | 834 | <source>User</source><target state="new">User</target> |
842 | <context-group purpose="location"> | 835 | |
843 | <context context-type="sourcefile">../app/core/users/user.service.ts</context> | 836 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit> |
844 | <context context-type="linenumber">384</context> | ||
845 | </context-group> | ||
846 | </trans-unit> | ||
847 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0"> | 837 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0"> |
848 | <source>Ban</source> | 838 | <source>Ban</source> |
849 | <target>Sulje</target> | 839 | <target>Sulje</target> |
@@ -1300,89 +1290,89 @@ The link will expire within 1 hour.</target> | |||
1300 | <source>Account settings</source> | 1290 | <source>Account settings</source> |
1301 | <target state="new">Account settings</target> | 1291 | <target state="new">Account settings</target> |
1302 | 1292 | ||
1303 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 1293 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
1304 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> | 1294 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> |
1305 | <source>Channels settings</source> | 1295 | <source>Channels settings</source> |
1306 | <target state="new">Channels settings</target> | 1296 | <target state="new">Channels settings</target> |
1307 | 1297 | ||
1308 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 1298 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> |
1309 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> | 1299 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> |
1310 | <source>Interface:</source> | 1300 | <source>Interface:</source> |
1311 | <target state="new">Interface:</target> | 1301 | <target state="new">Interface:</target> |
1312 | 1302 | ||
1313 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 1303 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1314 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> | 1304 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> |
1315 | <source>Videos:</source> | 1305 | <source>Videos:</source> |
1316 | <target state="new">Videos:</target> | 1306 | <target state="new">Videos:</target> |
1317 | 1307 | ||
1318 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 1308 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> |
1319 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> | 1309 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> |
1320 | <source>Sensitive:</source> | 1310 | <source>Sensitive:</source> |
1321 | <target state="new">Sensitive:</target> | 1311 | <target state="new">Sensitive:</target> |
1322 | 1312 | ||
1323 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 1313 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">54</context></context-group></trans-unit> |
1324 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1314 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> |
1325 | <source>Interface: <x id="INTERPOLATION"/></source> | 1315 | <source>Interface: <x id="INTERPOLATION"/></source> |
1326 | <target state="new">Interface: | 1316 | <target state="new">Interface: |
1327 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> | 1317 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> |
1328 | </target> | 1318 | </target> |
1329 | 1319 | ||
1330 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">156</context></context-group></trans-unit> | 1320 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> |
1331 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1321 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1332 | <source>Help share videos</source> | 1322 | <source>Help share videos</source> |
1333 | <target state="new">Help share videos</target> | 1323 | <target state="new">Help share videos</target> |
1334 | 1324 | ||
1335 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> | 1325 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
1336 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> | 1326 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> |
1337 | <source>More account settings</source> | 1327 | <source>More account settings</source> |
1338 | <target state="new">More account settings</target> | 1328 | <target state="new">More account settings</target> |
1339 | 1329 | ||
1340 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> | 1330 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> |
1341 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> | 1331 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> |
1342 | <source>Keyboard shortcuts</source> | 1332 | <source>Keyboard shortcuts</source> |
1343 | <target state="new">Keyboard shortcuts</target> | 1333 | <target state="new">Keyboard shortcuts</target> |
1344 | 1334 | ||
1345 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 1335 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">72</context></context-group></trans-unit> |
1346 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> | 1336 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> |
1347 | <source>Help</source> | 1337 | <source>Help</source> |
1348 | <target state="new">Help</target> | 1338 | <target state="new">Help</target> |
1349 | 1339 | ||
1350 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1340 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1351 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> | 1341 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> |
1352 | <source>Get help using PeerTube</source> | 1342 | <source>Get help using PeerTube</source> |
1353 | <target state="new">Get help using PeerTube</target> | 1343 | <target state="new">Get help using PeerTube</target> |
1354 | 1344 | ||
1355 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">161</context></context-group></trans-unit> | 1345 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">167</context></context-group></trans-unit> |
1356 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> | 1346 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> |
1357 | <source>Shortcuts</source> | 1347 | <source>Shortcuts</source> |
1358 | <target state="new">Shortcuts</target> | 1348 | <target state="new">Shortcuts</target> |
1359 | 1349 | ||
1360 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1350 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1361 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> | 1351 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> |
1362 | <source>powered by PeerTube</source> | 1352 | <source>powered by PeerTube</source> |
1363 | <target state="new">powered by PeerTube</target> | 1353 | <target state="new">powered by PeerTube</target> |
1364 | 1354 | ||
1365 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | 1355 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">177</context></context-group></trans-unit> |
1366 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> | 1356 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> |
1367 | <source>powered by PeerTube - CopyLeft 2015-2020</source> | 1357 | <source>powered by PeerTube - CopyLeft 2015-2020</source> |
1368 | <target state="new">powered by PeerTube - CopyLeft 2015-2020</target> | 1358 | <target state="new">powered by PeerTube - CopyLeft 2015-2020</target> |
1369 | 1359 | ||
1370 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> | 1360 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">176</context></context-group></trans-unit> |
1371 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344"> | 1361 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344"> |
1372 | <source>Log out</source> | 1362 | <source>Log out</source> |
1373 | <target>Kirjaudu ulos</target> | 1363 | <target>Kirjaudu ulos</target> |
1374 | 1364 | ||
1375 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">70</context></context-group></trans-unit> | 1365 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit> |
1376 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> | 1366 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> |
1377 | <source>Create an account</source> | 1367 | <source>Create an account</source> |
1378 | <target>Luo tili</target> | 1368 | <target>Luo tili</target> |
1379 | 1369 | ||
1380 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">78</context></context-group></trans-unit> | 1370 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
1381 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> | 1371 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> |
1382 | <source>MY LIBRARY</source> | 1372 | <source>MY LIBRARY</source> |
1383 | <target state="new">MY LIBRARY</target> | 1373 | <target state="new">MY LIBRARY</target> |
1384 | 1374 | ||
1385 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 1375 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">88</context></context-group></trans-unit> |
1386 | <trans-unit id="6371572688505952303"> | 1376 | <trans-unit id="6371572688505952303"> |
1387 | <source>My library</source> | 1377 | <source>My library</source> |
1388 | <target>Minun kirjasto</target> | 1378 | <target>Minun kirjasto</target> |
@@ -1422,22 +1412,22 @@ The link will expire within 1 hour.</target> | |||
1422 | <source>Videos</source> | 1412 | <source>Videos</source> |
1423 | <target>Videot</target> | 1413 | <target>Videot</target> |
1424 | 1414 | ||
1425 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">86</context></context-group></trans-unit> | 1415 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">92</context></context-group></trans-unit> |
1426 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> | 1416 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> |
1427 | <source>Playlists</source> | 1417 | <source>Playlists</source> |
1428 | <target>Soittolistat</target> | 1418 | <target>Soittolistat</target> |
1429 | 1419 | ||
1430 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">91</context></context-group></trans-unit> | 1420 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">97</context></context-group></trans-unit> |
1431 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2"> | 1421 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2"> |
1432 | <source>Subscriptions</source> | 1422 | <source>Subscriptions</source> |
1433 | <target>Tilaukset</target> | 1423 | <target>Tilaukset</target> |
1434 | 1424 | ||
1435 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 1425 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">102</context></context-group></trans-unit> |
1436 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8"> | 1426 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8"> |
1437 | <source>History</source> | 1427 | <source>History</source> |
1438 | <target>Historia</target> | 1428 | <target>Historia</target> |
1439 | 1429 | ||
1440 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit> | 1430 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">107</context></context-group></trans-unit> |
1441 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> | 1431 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> |
1442 | <source>VIDEOS</source> | 1432 | <source>VIDEOS</source> |
1443 | <target state="new">VIDEOS</target> | 1433 | <target state="new">VIDEOS</target> |
@@ -1449,27 +1439,27 @@ The link will expire within 1 hour.</target> | |||
1449 | <target>Löydöt</target> | 1439 | <target>Löydöt</target> |
1450 | 1440 | ||
1451 | 1441 | ||
1452 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">111</context></context-group></trans-unit> | 1442 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">117</context></context-group></trans-unit> |
1453 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> | 1443 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> |
1454 | <source>Trending</source> | 1444 | <source>Trending</source> |
1455 | <target>Nousussa</target> | 1445 | <target>Nousussa</target> |
1456 | 1446 | ||
1457 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">116</context></context-group></trans-unit> | 1447 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">122</context></context-group></trans-unit> |
1458 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> | 1448 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> |
1459 | <source>Most liked</source> | 1449 | <source>Most liked</source> |
1460 | <target state="new">Most liked</target> | 1450 | <target state="new">Most liked</target> |
1461 | 1451 | ||
1462 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">121</context></context-group></trans-unit> | 1452 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">127</context></context-group></trans-unit> |
1463 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> | 1453 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> |
1464 | <source>Recently added</source> | 1454 | <source>Recently added</source> |
1465 | <target>Vasta lisätyt</target> | 1455 | <target>Vasta lisätyt</target> |
1466 | 1456 | ||
1467 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">126</context></context-group></trans-unit> | 1457 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">132</context></context-group></trans-unit> |
1468 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> | 1458 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> |
1469 | <source>Administration</source> | 1459 | <source>Administration</source> |
1470 | <target>Hallinta</target> | 1460 | <target>Hallinta</target> |
1471 | 1461 | ||
1472 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">140</context></context-group></trans-unit> | 1462 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">146</context></context-group></trans-unit> |
1473 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> | 1463 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> |
1474 | <source>About</source> | 1464 | <source>About</source> |
1475 | <target>Tietoja</target> | 1465 | <target>Tietoja</target> |
@@ -1480,7 +1470,7 @@ The link will expire within 1 hour.</target> | |||
1480 | <source>Contact</source> | 1470 | <source>Contact</source> |
1481 | <target state="new">Contact</target> | 1471 | <target state="new">Contact</target> |
1482 | 1472 | ||
1483 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">160</context></context-group></trans-unit> | 1473 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">166</context></context-group></trans-unit> |
1484 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771"> | 1474 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771"> |
1485 | <source>View your notifications</source> | 1475 | <source>View your notifications</source> |
1486 | <target>Näytä ilmoitukset</target> | 1476 | <target>Näytä ilmoitukset</target> |
@@ -1507,7 +1497,7 @@ The link will expire within 1 hour.</target> | |||
1507 | <source>See all your notifications</source> | 1497 | <source>See all your notifications</source> |
1508 | <target>Näytä kaikki ilmoitukset</target> | 1498 | <target>Näytä kaikki ilmoitukset</target> |
1509 | 1499 | ||
1510 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 1500 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">40</context></context-group></trans-unit> |
1511 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> | 1501 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> |
1512 | <source>Search videos, channels…</source> | 1502 | <source>Search videos, channels…</source> |
1513 | <target state="new">Search videos, channels…</target> | 1503 | <target state="new">Search videos, channels…</target> |
@@ -1845,22 +1835,22 @@ The link will expire within 1 hour.</target> | |||
1845 | <source>FAQ</source> | 1835 | <source>FAQ</source> |
1846 | <target state="new">FAQ</target> | 1836 | <target state="new">FAQ</target> |
1847 | 1837 | ||
1848 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">163</context></context-group></trans-unit> | 1838 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
1849 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> | 1839 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> |
1850 | <source>Frequently asked questions about PeerTube</source> | 1840 | <source>Frequently asked questions about PeerTube</source> |
1851 | <target state="new">Frequently asked questions about PeerTube</target> | 1841 | <target state="new">Frequently asked questions about PeerTube</target> |
1852 | 1842 | ||
1853 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1843 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1854 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> | 1844 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> |
1855 | <source>API</source> | 1845 | <source>API</source> |
1856 | <target state="new">API</target> | 1846 | <target state="new">API</target> |
1857 | 1847 | ||
1858 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1848 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1859 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> | 1849 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> |
1860 | <source>API documentation</source> | 1850 | <source>API documentation</source> |
1861 | <target state="new">API documentation</target> | 1851 | <target state="new">API documentation</target> |
1862 | 1852 | ||
1863 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 1853 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
1864 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5"> | 1854 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5"> |
1865 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> | 1855 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> |
1866 | <target>Ajoita julkaisu ( | 1856 | <target>Ajoita julkaisu ( |
@@ -2237,7 +2227,13 @@ The link will expire within 1 hour.</target> | |||
2237 | Less customization | 2227 | Less customization |
2238 | </target> | 2228 | </target> |
2239 | 2229 | ||
2240 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit> | 2230 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit><trans-unit id="2454050363478003966" datatype="html"> |
2231 | <source>Login</source><target state="new">Login</target> | ||
2232 | <context-group purpose="location"> | ||
2233 | <context context-type="sourcefile">../app/+login/login-routing.module.ts</context> | ||
2234 | <context context-type="linenumber">14</context> | ||
2235 | </context-group> | ||
2236 | </trans-unit> | ||
2241 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e"> | 2237 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e"> |
2242 | <source>Autoplay</source> | 2238 | <source>Autoplay</source> |
2243 | <target>Automaattinen toisto</target> | 2239 | <target>Automaattinen toisto</target> |
@@ -2504,7 +2500,7 @@ The link will expire within 1 hour.</target> | |||
2504 | <source>No comments.</source> | 2500 | <source>No comments.</source> |
2505 | <target>Ei kommentteja.</target> | 2501 | <target>Ei kommentteja.</target> |
2506 | 2502 | ||
2507 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 2503 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> |
2508 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> | 2504 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> |
2509 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> | 2505 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> |
2510 | <target state="new"> | 2506 | <target state="new"> |
@@ -2514,7 +2510,7 @@ The link will expire within 1 hour.</target> | |||
2514 | 2510 | ||
2515 | </target> | 2511 | </target> |
2516 | 2512 | ||
2517 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">79</context></context-group></trans-unit> | 2513 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
2518 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> | 2514 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> |
2519 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> | 2515 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> |
2520 | <target state="new"> | 2516 | <target state="new"> |
@@ -2523,40 +2519,98 @@ The link will expire within 1 hour.</target> | |||
2523 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> | 2519 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> |
2524 | </target> | 2520 | </target> |
2525 | 2521 | ||
2526 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 2522 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">87</context></context-group></trans-unit> |
2527 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> | 2523 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> |
2528 | <source>View <x id="INTERPOLATION"/> replies</source> | 2524 | <source>View <x id="INTERPOLATION"/> replies</source> |
2529 | <target state="new">View | 2525 | <target state="new">View |
2530 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies | 2526 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies |
2531 | </target> | 2527 | </target> |
2532 | 2528 | ||
2533 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">85</context></context-group></trans-unit> | 2529 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">90</context></context-group></trans-unit> |
2534 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828"> | 2530 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828"> |
2535 | <source>Comments are disabled.</source> | 2531 | <source>Comments are disabled.</source> |
2536 | <target> | 2532 | <target> |
2537 | Kommentit on poistettu päältä. | 2533 | Kommentit on poistettu päältä. |
2538 | </target> | 2534 | </target> |
2539 | 2535 | ||
2540 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 2536 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit> |
2541 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e"> | 2537 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e"> |
2542 | <source>Add comment...</source> | 2538 | <source>Add comment...</source> |
2543 | <target>Lisää kommentti...</target> | 2539 | <target>Lisää kommentti...</target> |
2544 | 2540 | ||
2545 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | 2541 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit><trans-unit id="4e5254dedf0c12ce7e7c2197384fceebe3b29a2b" datatype="html"> |
2546 | <trans-unit id="8956c0f4c6974289fc63f1ab6b54f5b32ed65eeb" datatype="html"> | 2542 | <source>Markdown compatible</source><target state="new">Markdown compatible</target> |
2547 | <source> | 2543 | <context-group purpose="location"> |
2548 | Reply | 2544 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> |
2549 | </source> | 2545 | <context context-type="linenumber">13</context> |
2550 | <target state="new"> | 2546 | </context-group> |
2551 | Reply | 2547 | </trans-unit><trans-unit id="4739ffad85f09defefdb6e51b45f43b2ef7c4388" datatype="html"> |
2552 | </target> | 2548 | <source>Markdown compatible that supports:</source><target state="new">Markdown compatible that supports:</target> |
2553 | 2549 | <context-group purpose="location"> | |
2554 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 2550 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> |
2551 | <context context-type="linenumber">15</context> | ||
2552 | </context-group> | ||
2553 | </trans-unit><trans-unit id="9a53b17a021bb0677c156fd893461797fc497a10" datatype="html"> | ||
2554 | <source>Auto generated links</source><target state="new">Auto generated links</target> | ||
2555 | <context-group purpose="location"> | ||
2556 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2557 | <context context-type="linenumber">18</context> | ||
2558 | </context-group> | ||
2559 | </trans-unit><trans-unit id="664f99b8919d6dd2faa1c1f7c378aa86d1be5e8a" datatype="html"> | ||
2560 | <source>Break lines</source><target state="new">Break lines</target> | ||
2561 | <context-group purpose="location"> | ||
2562 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2563 | <context context-type="linenumber">19</context> | ||
2564 | </context-group> | ||
2565 | </trans-unit><trans-unit id="b15e7bec5c7833d2d9634946ccbed68967b1bee1" datatype="html"> | ||
2566 | <source>Lists</source><target state="new">Lists</target> | ||
2567 | <context-group purpose="location"> | ||
2568 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2569 | <context context-type="linenumber">20</context> | ||
2570 | </context-group> | ||
2571 | </trans-unit><trans-unit id="ab4426b60f13c00b61d6b714d390dc629f314980" datatype="html"> | ||
2572 | <source>Emphasis</source><target state="new">Emphasis</target> | ||
2573 | <context-group purpose="location"> | ||
2574 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2575 | <context context-type="linenumber">22</context> | ||
2576 | </context-group> | ||
2577 | </trans-unit><trans-unit id="4e13b179501d3d32721037e03b4c04acb9857c5f" datatype="html"> | ||
2578 | <source>bold</source><target state="new">bold</target> | ||
2579 | <context-group purpose="location"> | ||
2580 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2581 | <context context-type="linenumber">23</context> | ||
2582 | </context-group> | ||
2583 | </trans-unit><trans-unit id="3c12190421fbb2756e6bbead923df9ec5de8ede2" datatype="html"> | ||
2584 | <source>italic</source><target state="new">italic</target> | ||
2585 | <context-group purpose="location"> | ||
2586 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2587 | <context context-type="linenumber">23</context> | ||
2588 | </context-group> | ||
2589 | </trans-unit><trans-unit id="adb4bbdcb961b8aac8298d6cac554d9b25636b7a" datatype="html"> | ||
2590 | <source>Emoji shortcuts</source><target state="new">Emoji shortcuts</target> | ||
2591 | <context-group purpose="location"> | ||
2592 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2593 | <context context-type="linenumber">26</context> | ||
2594 | </context-group> | ||
2595 | </trans-unit><trans-unit id="b9809a21a8eb3c9db2a0282c5dd94bc221575c96" datatype="html"> | ||
2596 | <source>Emoji markup</source><target state="new">Emoji markup</target> | ||
2597 | <context-group purpose="location"> | ||
2598 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2599 | <context context-type="linenumber">30</context> | ||
2600 | </context-group> | ||
2601 | </trans-unit><trans-unit id="f37feb427aaa551edd1f22616be6464bc0d492de" datatype="html"> | ||
2602 | <source>See complete list</source><target state="new">See complete list</target> | ||
2603 | <context-group purpose="location"> | ||
2604 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2605 | <context context-type="linenumber">32</context> | ||
2606 | </context-group> | ||
2607 | </trans-unit> | ||
2608 | |||
2555 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135"> | 2609 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135"> |
2556 | <source>You are one step away from commenting</source> | 2610 | <source>You are one step away from commenting</source> |
2557 | <target>Olet yhden askeleen kaukana kommentoinnista</target> | 2611 | <target>Olet yhden askeleen kaukana kommentoinnista</target> |
2558 | 2612 | ||
2559 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 2613 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
2560 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> | 2614 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> |
2561 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> | 2615 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> |
2562 | <target state="new"> | 2616 | <target state="new"> |
@@ -2565,17 +2619,35 @@ The link will expire within 1 hour.</target> | |||
2565 | from within the software's interface. | 2619 | from within the software's interface. |
2566 | </target> | 2620 | </target> |
2567 | 2621 | ||
2568 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 2622 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
2569 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb" datatype="html"> | 2623 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb" datatype="html"> |
2570 | <source>If you have an account on Mastodon or Pleroma, you can open it directly in their interface:</source> | 2624 | <source>If you have an account on Mastodon or Pleroma, you can open it directly in their interface:</source> |
2571 | <target state="new">If you have an account on Mastodon or Pleroma, you can open it directly in their interface:</target> | 2625 | <target state="new">If you have an account on Mastodon or Pleroma, you can open it directly in their interface:</target> |
2572 | 2626 | ||
2573 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">41</context></context-group></trans-unit> | 2627 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">65</context></context-group></trans-unit> |
2574 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> | 2628 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> |
2575 | <source>Login to comment</source> | 2629 | <source>Login to comment</source> |
2576 | <target state="new">Login to comment</target> | 2630 | <target state="new">Login to comment</target> |
2577 | 2631 | ||
2578 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">52</context></context-group></trans-unit> | 2632 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit><trans-unit id="974170f455ff5a9034d5737e84b4194c0046fc6b" datatype="html"> |
2633 | <source>Markdown Emoji List</source><target state="new">Markdown Emoji List</target> | ||
2634 | <context-group purpose="location"> | ||
2635 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2636 | <context context-type="linenumber">84</context> | ||
2637 | </context-group> | ||
2638 | </trans-unit><trans-unit id="2662644497259948010" datatype="html"> | ||
2639 | <source>Comment</source><target state="new">Comment</target> | ||
2640 | <context-group purpose="location"> | ||
2641 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2642 | <context context-type="linenumber">58</context> | ||
2643 | </context-group> | ||
2644 | </trans-unit><trans-unit id="4502286564339177240" datatype="html"> | ||
2645 | <source>Reply</source><target state="new">Reply</target> | ||
2646 | <context-group purpose="location"> | ||
2647 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2648 | <context context-type="linenumber">60</context> | ||
2649 | </context-group> | ||
2650 | </trans-unit> | ||
2579 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285"> | 2651 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285"> |
2580 | <source>Highlighted comment</source> | 2652 | <source>Highlighted comment</source> |
2581 | <target>Korostettu kommentti</target> | 2653 | <target>Korostettu kommentti</target> |
@@ -2590,7 +2662,7 @@ The link will expire within 1 hour.</target> | |||
2590 | <source>This comment has been deleted</source> | 2662 | <source>This comment has been deleted</source> |
2591 | <target state="new">This comment has been deleted</target> | 2663 | <target state="new">This comment has been deleted</target> |
2592 | 2664 | ||
2593 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">62</context></context-group></trans-unit> | 2665 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">61</context></context-group></trans-unit> |
2594 | <trans-unit id="9031514421077169181" datatype="html"> | 2666 | <trans-unit id="9031514421077169181" datatype="html"> |
2595 | <source>Video redundancies</source> | 2667 | <source>Video redundancies</source> |
2596 | <target state="new">Video redundancies</target> | 2668 | <target state="new">Video redundancies</target> |
@@ -3445,7 +3517,25 @@ The link will expire within 1 hour.</target> | |||
3445 | <target state="new">No account found.</target> | 3517 | <target state="new">No account found.</target> |
3446 | 3518 | ||
3447 | 3519 | ||
3448 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit> | 3520 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit><trans-unit id="2338185419645468935" datatype="html"> |
3521 | <source>List installed plugins</source><target state="new">List installed plugins</target> | ||
3522 | <context-group purpose="location"> | ||
3523 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3524 | <context context-type="linenumber">28</context> | ||
3525 | </context-group> | ||
3526 | </trans-unit><trans-unit id="8897412584195581488" datatype="html"> | ||
3527 | <source>Search plugins</source><target state="new">Search plugins</target> | ||
3528 | <context-group purpose="location"> | ||
3529 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3530 | <context context-type="linenumber">37</context> | ||
3531 | </context-group> | ||
3532 | </trans-unit><trans-unit id="4994333937800672218" datatype="html"> | ||
3533 | <source>Show plugin</source><target state="new">Show plugin</target> | ||
3534 | <context-group purpose="location"> | ||
3535 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3536 | <context context-type="linenumber">46</context> | ||
3537 | </context-group> | ||
3538 | </trans-unit> | ||
3449 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> | 3539 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> |
3450 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> | 3540 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> |
3451 | <target state="new">Showing | 3541 | <target state="new">Showing |
@@ -4169,7 +4259,7 @@ The link will expire within 1 hour.</target> | |||
4169 | <source>Administrator</source> | 4259 | <source>Administrator</source> |
4170 | <target>Ylläpitäjä</target> | 4260 | <target>Ylläpitäjä</target> |
4171 | 4261 | ||
4172 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">385</context></context-group></trans-unit> | 4262 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">383</context></context-group></trans-unit> |
4173 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587"> | 4263 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587"> |
4174 | <source>Admin email</source> | 4264 | <source>Admin email</source> |
4175 | <target>Ylläpidon sähköpostiosoite</target> | 4265 | <target>Ylläpidon sähköpostiosoite</target> |
@@ -4431,27 +4521,27 @@ The link will expire within 1 hour.</target> | |||
4431 | <source>VIDEO SETTINGS</source> | 4521 | <source>VIDEO SETTINGS</source> |
4432 | <target state="new">VIDEO SETTINGS</target> | 4522 | <target state="new">VIDEO SETTINGS</target> |
4433 | 4523 | ||
4434 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit> | 4524 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
4435 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> | 4525 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> |
4436 | <source>NOTIFICATIONS</source> | 4526 | <source>NOTIFICATIONS</source> |
4437 | <target state="new">NOTIFICATIONS</target> | 4527 | <target state="new">NOTIFICATIONS</target> |
4438 | 4528 | ||
4439 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 4529 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">37</context></context-group></trans-unit> |
4440 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> | 4530 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> |
4441 | <source>INTERFACE</source> | 4531 | <source>INTERFACE</source> |
4442 | <target state="new">INTERFACE</target> | 4532 | <target state="new">INTERFACE</target> |
4443 | 4533 | ||
4444 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 4534 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit> |
4445 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> | 4535 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> |
4446 | <source>PASSWORD</source> | 4536 | <source>PASSWORD</source> |
4447 | <target state="new">PASSWORD</target> | 4537 | <target state="new">PASSWORD</target> |
4448 | 4538 | ||
4449 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">59</context></context-group></trans-unit> | 4539 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">57</context></context-group></trans-unit> |
4450 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> | 4540 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> |
4451 | <source>EMAIL</source> | 4541 | <source>EMAIL</source> |
4452 | <target state="new">EMAIL</target> | 4542 | <target state="new">EMAIL</target> |
4453 | 4543 | ||
4454 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">69</context></context-group></trans-unit> | 4544 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">67</context></context-group></trans-unit> |
4455 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> | 4545 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> |
4456 | <source>DANGER ZONE</source> | 4546 | <source>DANGER ZONE</source> |
4457 | <target state="new">DANGER ZONE</target> | 4547 | <target state="new">DANGER ZONE</target> |
@@ -4699,7 +4789,31 @@ The link will expire within 1 hour.</target> | |||
4699 | <source>No ownership change request found.</source> | 4789 | <source>No ownership change request found.</source> |
4700 | <target state="new">No ownership change request found.</target> | 4790 | <target state="new">No ownership change request found.</target> |
4701 | 4791 | ||
4702 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit> | 4792 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit><trans-unit id="4247400351982331798" datatype="html"> |
4793 | <source>Account settings</source><target state="new">Account settings</target> | ||
4794 | <context-group purpose="location"> | ||
4795 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4796 | <context context-type="linenumber">37</context> | ||
4797 | </context-group> | ||
4798 | </trans-unit><trans-unit id="154062590416726309" datatype="html"> | ||
4799 | <source>Account playlists</source><target state="new">Account playlists</target> | ||
4800 | <context-group purpose="location"> | ||
4801 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4802 | <context context-type="linenumber">55</context> | ||
4803 | </context-group> | ||
4804 | </trans-unit><trans-unit id="6550287183367517925" datatype="html"> | ||
4805 | <source>Create new playlist</source><target state="new">Create new playlist</target> | ||
4806 | <context-group purpose="location"> | ||
4807 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4808 | <context context-type="linenumber">64</context> | ||
4809 | </context-group> | ||
4810 | </trans-unit><trans-unit id="2864486939135008600" datatype="html"> | ||
4811 | <source>Playlist elements</source><target state="new">Playlist elements</target> | ||
4812 | <context-group purpose="location"> | ||
4813 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4814 | <context context-type="linenumber">73</context> | ||
4815 | </context-group> | ||
4816 | </trans-unit> | ||
4703 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> | 4817 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> |
4704 | <source>My imports</source> | 4818 | <source>My imports</source> |
4705 | <target state="new">My imports</target> | 4819 | <target state="new">My imports</target> |
@@ -4968,7 +5082,25 @@ The link will expire within 1 hour.</target> | |||
4968 | <source>An error occurred.</source> | 5082 | <source>An error occurred.</source> |
4969 | <target>Virhe ilmaantui.</target> | 5083 | <target>Virhe ilmaantui.</target> |
4970 | 5084 | ||
4971 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 5085 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit><trans-unit id="9128669621822125729" datatype="html"> |
5086 | <source>Video channel videos</source><target state="new">Video channel videos</target> | ||
5087 | <context-group purpose="location"> | ||
5088 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5089 | <context context-type="linenumber">25</context> | ||
5090 | </context-group> | ||
5091 | </trans-unit><trans-unit id="3193822049276963401" datatype="html"> | ||
5092 | <source>Video channel playlists</source><target state="new">Video channel playlists</target> | ||
5093 | <context-group purpose="location"> | ||
5094 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5095 | <context context-type="linenumber">38</context> | ||
5096 | </context-group> | ||
5097 | </trans-unit><trans-unit id="4723526509708949088" datatype="html"> | ||
5098 | <source>About video channel</source><target state="new">About video channel</target> | ||
5099 | <context-group purpose="location"> | ||
5100 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5101 | <context context-type="linenumber">47</context> | ||
5102 | </context-group> | ||
5103 | </trans-unit> | ||
4972 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97" datatype="html"> | 5104 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97" datatype="html"> |
4973 | <source>Request email for account verification</source> | 5105 | <source>Request email for account verification</source> |
4974 | <target state="new">Request email for account verification</target> | 5106 | <target state="new">Request email for account verification</target> |
@@ -5087,7 +5219,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5087 | <source>Stats</source> | 5219 | <source>Stats</source> |
5088 | <target>Tilastot</target> | 5220 | <target>Tilastot</target> |
5089 | 5221 | ||
5090 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 5222 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
5091 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc"> | 5223 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc"> |
5092 | <source>Joined <x id="INTERPOLATION"/></source> | 5224 | <source>Joined <x id="INTERPOLATION"/></source> |
5093 | <target>Liittyi | 5225 | <target>Liittyi |
@@ -5540,7 +5672,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5540 | <source>This instance does not have instances followings.</source> | 5672 | <source>This instance does not have instances followings.</source> |
5541 | <target state="new">This instance does not have instances followings.</target> | 5673 | <target state="new">This instance does not have instances followings.</target> |
5542 | 5674 | ||
5543 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit> | 5675 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit><trans-unit id="4195286790385468087" datatype="html"> |
5676 | <source>About this instance</source><target state="new">About this instance</target> | ||
5677 | <context-group purpose="location"> | ||
5678 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5679 | <context context-type="linenumber">26</context> | ||
5680 | </context-group> | ||
5681 | </trans-unit><trans-unit id="8773846522957677259" datatype="html"> | ||
5682 | <source>About PeerTube</source><target state="new">About PeerTube</target> | ||
5683 | <context-group purpose="location"> | ||
5684 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5685 | <context context-type="linenumber">38</context> | ||
5686 | </context-group> | ||
5687 | </trans-unit><trans-unit id="5782088737558028158" datatype="html"> | ||
5688 | <source>About follows</source><target state="new">About follows</target> | ||
5689 | <context-group purpose="location"> | ||
5690 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5691 | <context context-type="linenumber">47</context> | ||
5692 | </context-group> | ||
5693 | </trans-unit> | ||
5544 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> | 5694 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> |
5545 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> | 5695 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> |
5546 | <target state="new">Developed with ❤ by | 5696 | <target state="new">Developed with ❤ by |
@@ -5710,6 +5860,12 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5710 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 5860 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> |
5711 | <context context-type="linenumber">1</context> | 5861 | <context context-type="linenumber">1</context> |
5712 | </context-group> | 5862 | </context-group> |
5863 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
5864 | <source>Get help</source><target state="new">Get help</target> | ||
5865 | <context-group purpose="location"> | ||
5866 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | ||
5867 | <context context-type="linenumber">16</context> | ||
5868 | </context-group> | ||
5713 | </trans-unit> | 5869 | </trans-unit> |
5714 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1"> | 5870 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1"> |
5715 | <source>Create my account</source> | 5871 | <source>Create my account</source> |
@@ -5818,7 +5974,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5818 | <source> I am at least 16 years old and agree to the <x id="START_LINK"/>Terms<x id="CLOSE_LINK"/><x id="START_TAG_NG_CONTAINER"/> and to the <x id="START_LINK_1"/>Code of Conduct<x id="CLOSE_LINK"/><x id="CLOSE_TAG_NG_CONTAINER"/> of this instance </source> | 5974 | <source> I am at least 16 years old and agree to the <x id="START_LINK"/>Terms<x id="CLOSE_LINK"/><x id="START_TAG_NG_CONTAINER"/> and to the <x id="START_LINK_1"/>Code of Conduct<x id="CLOSE_LINK"/><x id="CLOSE_TAG_NG_CONTAINER"/> of this instance </source> |
5819 | <target state="new"/> | 5975 | <target state="new"/> |
5820 | 5976 | ||
5821 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 5977 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit><trans-unit id="3301086086650990787" datatype="html"> |
5978 | <source>Register</source><target state="new">Register</target> | ||
5979 | <context-group purpose="location"> | ||
5980 | <context context-type="sourcefile">../app/+signup/+register/register-routing.module.ts</context> | ||
5981 | <context context-type="linenumber">14</context> | ||
5982 | </context-group> | ||
5983 | </trans-unit> | ||
5822 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> | 5984 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> |
5823 | <source>Sorry, we couldn't find the page you were looking for.</source> | 5985 | <source>Sorry, we couldn't find the page you were looking for.</source> |
5824 | <target state="new">Sorry, we couldn't find the page you were looking for.</target> | 5986 | <target state="new">Sorry, we couldn't find the page you were looking for.</target> |
@@ -5839,7 +6001,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5839 | <target>Ei kuvausta</target> | 6001 | <target>Ei kuvausta</target> |
5840 | 6002 | ||
5841 | 6003 | ||
5842 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit> | 6004 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit><trans-unit id="819067926858619041" datatype="html"> |
6005 | <source>Account videos</source><target state="new">Account videos</target> | ||
6006 | <context-group purpose="location"> | ||
6007 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6008 | <context context-type="linenumber">29</context> | ||
6009 | </context-group> | ||
6010 | </trans-unit><trans-unit id="6823616469362610020" datatype="html"> | ||
6011 | <source>Account video channels</source><target state="new">Account video channels</target> | ||
6012 | <context-group purpose="location"> | ||
6013 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6014 | <context context-type="linenumber">42</context> | ||
6015 | </context-group> | ||
6016 | </trans-unit><trans-unit id="7678273613459026643" datatype="html"> | ||
6017 | <source>About account</source><target state="new">About account</target> | ||
6018 | <context-group purpose="location"> | ||
6019 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6020 | <context context-type="linenumber">51</context> | ||
6021 | </context-group> | ||
6022 | </trans-unit> | ||
5843 | <trans-unit id="3755500631176893489"> | 6023 | <trans-unit id="3755500631176893489"> |
5844 | <source>Published <x id="PH"/> videos</source> | 6024 | <source>Published <x id="PH"/> videos</source> |
5845 | <target>Julkaistiin | 6025 | <target>Julkaistiin |
@@ -5956,7 +6136,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5956 | <source>Configuration updated.</source> | 6136 | <source>Configuration updated.</source> |
5957 | <target>Konfigurointi päivitetty.</target> | 6137 | <target>Konfigurointi päivitetty.</target> |
5958 | 6138 | ||
5959 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit> | 6139 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit><trans-unit id="6284468333579755406" datatype="html"> |
6140 | <source>Edit custom configuration</source><target state="new">Edit custom configuration</target> | ||
6141 | <context-group purpose="location"> | ||
6142 | <context context-type="sourcefile">../app/+admin/config/config.routes.ts</context> | ||
6143 | <context context-type="linenumber">26</context> | ||
6144 | </context-group> | ||
6145 | </trans-unit> | ||
5960 | 6146 | ||
5961 | 6147 | ||
5962 | <trans-unit id="6549061957433635758" datatype="html"> | 6148 | <trans-unit id="6549061957433635758" datatype="html"> |
@@ -6435,7 +6621,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6435 | <x id="PH"/> päivitettiin. | 6621 | <x id="PH"/> päivitettiin. |
6436 | </target> | 6622 | </target> |
6437 | 6623 | ||
6438 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 6624 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit><trans-unit id="3229595422546554334" datatype="html"> |
6625 | <source>Jobs</source><target state="new">Jobs</target> | ||
6626 | <context-group purpose="location"> | ||
6627 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6628 | <context context-type="linenumber">26</context> | ||
6629 | </context-group> | ||
6630 | </trans-unit><trans-unit id="4804785061014590286" datatype="html"> | ||
6631 | <source>Logs</source><target state="new">Logs</target> | ||
6632 | <context-group purpose="location"> | ||
6633 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6634 | <context context-type="linenumber">37</context> | ||
6635 | </context-group> | ||
6636 | </trans-unit> | ||
6439 | <trans-unit id="3150704904301058778"> | 6637 | <trans-unit id="3150704904301058778"> |
6440 | <source>The plugin index is not available. Please retry later.</source> | 6638 | <source>The plugin index is not available. Please retry later.</source> |
6441 | <target>Lisäosalistaus ei ole saatavilla. Yritä myöhemmin uudelleen.</target> | 6639 | <target>Lisäosalistaus ei ole saatavilla. Yritä myöhemmin uudelleen.</target> |
@@ -6549,6 +6747,18 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6549 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> | 6747 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> |
6550 | <context context-type="linenumber">86</context> | 6748 | <context context-type="linenumber">86</context> |
6551 | </context-group> | 6749 | </context-group> |
6750 | </trans-unit><trans-unit id="2903648076838460070" datatype="html"> | ||
6751 | <source>Videos blocked</source><target state="new">Videos blocked</target> | ||
6752 | <context-group purpose="location"> | ||
6753 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6754 | <context context-type="linenumber">67</context> | ||
6755 | </context-group> | ||
6756 | </trans-unit><trans-unit id="7805059636749367886" datatype="html"> | ||
6757 | <source>Muted instances</source><target state="new">Muted instances</target> | ||
6758 | <context-group purpose="location"> | ||
6759 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6760 | <context context-type="linenumber">89</context> | ||
6761 | </context-group> | ||
6552 | </trans-unit> | 6762 | </trans-unit> |
6553 | <trans-unit id="5974506725502681113"> | 6763 | <trans-unit id="5974506725502681113"> |
6554 | <source>Password changed for user <x id="PH"/>.</source> | 6764 | <source>Password changed for user <x id="PH"/>.</source> |
@@ -6561,7 +6771,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6561 | <source>Update user password</source> | 6771 | <source>Update user password</source> |
6562 | <target>Päivitä tilin salasana</target> | 6772 | <target>Päivitä tilin salasana</target> |
6563 | 6773 | ||
6564 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit> | 6774 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit><trans-unit id="177544274549739411" datatype="html"> |
6775 | <source>Following list</source><target state="new">Following list</target> | ||
6776 | <context-group purpose="location"> | ||
6777 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6778 | <context context-type="linenumber">28</context> | ||
6779 | </context-group> | ||
6780 | </trans-unit><trans-unit id="8092429110007204784" datatype="html"> | ||
6781 | <source>Followers list</source><target state="new">Followers list</target> | ||
6782 | <context-group purpose="location"> | ||
6783 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6784 | <context context-type="linenumber">37</context> | ||
6785 | </context-group> | ||
6786 | </trans-unit> | ||
6565 | <trans-unit id="780323526182667308" datatype="html"> | 6787 | <trans-unit id="780323526182667308" datatype="html"> |
6566 | <source>User <x id="PH"/> updated.</source> | 6788 | <source>User <x id="PH"/> updated.</source> |
6567 | <target state="new">User | 6789 | <target state="new">User |
@@ -6580,7 +6802,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6580 | <x id="PH"/>. | 6802 | <x id="PH"/>. |
6581 | </target> | 6803 | </target> |
6582 | 6804 | ||
6583 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="8564701209009684429" datatype="html"> | 6805 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="7483807629538115183" datatype="html"> |
6806 | <source>Users list</source><target state="new">Users list</target> | ||
6807 | <context-group purpose="location"> | ||
6808 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6809 | <context context-type="linenumber">27</context> | ||
6810 | </context-group> | ||
6811 | </trans-unit><trans-unit id="1525334987774465166" datatype="html"> | ||
6812 | <source>Create a user</source><target state="new">Create a user</target> | ||
6813 | <context-group purpose="location"> | ||
6814 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6815 | <context context-type="linenumber">36</context> | ||
6816 | </context-group> | ||
6817 | </trans-unit><trans-unit id="5552039423287890133" datatype="html"> | ||
6818 | <source>Update a user</source><target state="new">Update a user</target> | ||
6819 | <context-group purpose="location"> | ||
6820 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6821 | <context context-type="linenumber">48</context> | ||
6822 | </context-group> | ||
6823 | </trans-unit><trans-unit id="8564701209009684429" datatype="html"> | ||
6584 | <source>Federation</source><target state="new">Federation</target> | 6824 | <source>Federation</source><target state="new">Federation</target> |
6585 | <context-group purpose="location"> | 6825 | <context-group purpose="location"> |
6586 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> | 6826 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> |
@@ -6934,7 +7174,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6934 | <source>Views for the day</source> | 7174 | <source>Views for the day</source> |
6935 | <target state="new">Views for the day</target> | 7175 | <target state="new">Views for the day</target> |
6936 | 7176 | ||
6937 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit> | 7177 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit><trans-unit id="4707367314920217630" datatype="html"> |
7178 | <source>Create new video channel</source><target state="new">Create new video channel</target> | ||
7179 | <context-group purpose="location"> | ||
7180 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7181 | <context context-type="linenumber">22</context> | ||
7182 | </context-group> | ||
7183 | </trans-unit><trans-unit id="6059091237492573541" datatype="html"> | ||
7184 | <source>Update video channel</source><target state="new">Update video channel</target> | ||
7185 | <context-group purpose="location"> | ||
7186 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7187 | <context context-type="linenumber">31</context> | ||
7188 | </context-group> | ||
7189 | </trans-unit><trans-unit id="6595008830732269870" datatype="html"> | ||
7190 | <source>Not found</source><target state="new">Not found</target> | ||
7191 | <context-group purpose="location"> | ||
7192 | <context context-type="sourcefile">../app/+page-not-found/page-not-found-routing.module.ts</context> | ||
7193 | <context context-type="linenumber">13</context> | ||
7194 | </context-group> | ||
7195 | </trans-unit> | ||
6938 | <trans-unit id="5032453707232754344"> | 7196 | <trans-unit id="5032453707232754344"> |
6939 | <source>Playlist <x id="PH"/> created.</source> | 7197 | <source>Playlist <x id="PH"/> created.</source> |
6940 | <target>Luotiin soittolista | 7198 | <target>Luotiin soittolista |
@@ -6952,7 +7210,31 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6952 | <source>Update playlist</source> | 7210 | <source>Update playlist</source> |
6953 | <target state="new">Update playlist</target> | 7211 | <target state="new">Update playlist</target> |
6954 | 7212 | ||
6955 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-video-playlists/my-account-video-playlist-elements.component.ts</context><context context-type="linenumber">48</context></context-group></trans-unit> | 7213 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">82</context></context-group></trans-unit><trans-unit id="3410331549417637431" datatype="html"> |
7214 | <source>Account video imports</source><target state="new">Account video imports</target> | ||
7215 | <context-group purpose="location"> | ||
7216 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7217 | <context context-type="linenumber">105</context> | ||
7218 | </context-group> | ||
7219 | </trans-unit><trans-unit id="4434998055872154420" datatype="html"> | ||
7220 | <source>Account subscriptions</source><target state="new">Account subscriptions</target> | ||
7221 | <context-group purpose="location"> | ||
7222 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7223 | <context context-type="linenumber">114</context> | ||
7224 | </context-group> | ||
7225 | </trans-unit><trans-unit id="6019411775996586321" datatype="html"> | ||
7226 | <source>Videos history</source><target state="new">Videos history</target> | ||
7227 | <context-group purpose="location"> | ||
7228 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7229 | <context context-type="linenumber">150</context> | ||
7230 | </context-group> | ||
7231 | </trans-unit><trans-unit id="5851560788527570644" datatype="html"> | ||
7232 | <source>Notifications</source><target state="new">Notifications</target> | ||
7233 | <context-group purpose="location"> | ||
7234 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7235 | <context context-type="linenumber">163</context> | ||
7236 | </context-group> | ||
7237 | </trans-unit> | ||
6956 | <trans-unit id="104404386496394770" datatype="html"> | 7238 | <trans-unit id="104404386496394770" datatype="html"> |
6957 | <source>Delete playlist</source> | 7239 | <source>Delete playlist</source> |
6958 | <target state="new">Delete playlist</target> | 7240 | <target state="new">Delete playlist</target> |
@@ -7106,7 +7388,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7106 | <x id="PH"/>. | 7388 | <x id="PH"/>. |
7107 | </target> | 7389 | </target> |
7108 | 7390 | ||
7109 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit> | 7391 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit><trans-unit id="8231550792139699065" datatype="html"> |
7392 | <source>Verify account email</source><target state="new">Verify account email</target> | ||
7393 | <context-group purpose="location"> | ||
7394 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7395 | <context context-type="linenumber">17</context> | ||
7396 | </context-group> | ||
7397 | </trans-unit><trans-unit id="4997281272800290390" datatype="html"> | ||
7398 | <source>Verify account ask send email</source><target state="new">Verify account ask send email</target> | ||
7399 | <context-group purpose="location"> | ||
7400 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7401 | <context context-type="linenumber">26</context> | ||
7402 | </context-group> | ||
7403 | </trans-unit> | ||
7110 | <trans-unit id="4180693983967989981" datatype="html"> | 7404 | <trans-unit id="4180693983967989981" datatype="html"> |
7111 | <source>Unable to find user id or verification string.</source> | 7405 | <source>Unable to find user id or verification string.</source> |
7112 | <target state="new">Unable to find user id or verification string.</target> | 7406 | <target state="new">Unable to find user id or verification string.</target> |
@@ -7231,27 +7525,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7231 | <source>any language</source> | 7525 | <source>any language</source> |
7232 | <target state="new">any language</target> | 7526 | <target state="new">any language</target> |
7233 | 7527 | ||
7234 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">202</context></context-group></trans-unit> | 7528 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">229</context></context-group></trans-unit> |
7235 | <trans-unit id="5633144232269377096" datatype="html"> | 7529 | <trans-unit id="5633144232269377096" datatype="html"> |
7236 | <source>hide</source> | 7530 | <source>hide</source> |
7237 | <target state="new">hide</target> | 7531 | <target state="new">hide</target> |
7238 | 7532 | ||
7239 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">118</context></context-group></trans-unit> | 7533 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> |
7240 | <trans-unit id="8603861867909474404" datatype="html"> | 7534 | <trans-unit id="8603861867909474404" datatype="html"> |
7241 | <source>blur</source> | 7535 | <source>blur</source> |
7242 | <target state="new">blur</target> | 7536 | <target state="new">blur</target> |
7243 | 7537 | ||
7244 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> | 7538 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> |
7245 | <trans-unit id="4534458451100881847" datatype="html"> | 7539 | <trans-unit id="4534458451100881847" datatype="html"> |
7246 | <source>display</source> | 7540 | <source>display</source> |
7247 | <target state="new">display</target> | 7541 | <target state="new">display</target> |
7248 | 7542 | ||
7249 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> | 7543 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">127</context></context-group></trans-unit> |
7250 | <trans-unit id="4467323362722952678" datatype="html"> | 7544 | <trans-unit id="4467323362722952678" datatype="html"> |
7251 | <source>Unknown</source> | 7545 | <source>Unknown</source> |
7252 | <target state="new">Unknown</target> | 7546 | <target state="new">Unknown</target> |
7253 | 7547 | ||
7254 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">190</context></context-group></trans-unit> | 7548 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">193</context></context-group></trans-unit> |
7255 | <trans-unit id="8781423666414310853" datatype="html"> | 7549 | <trans-unit id="8781423666414310853" datatype="html"> |
7256 | <source>Your password has been successfully reset!</source> | 7550 | <source>Your password has been successfully reset!</source> |
7257 | <target state="new">Your password has been successfully reset!</target> | 7551 | <target state="new">Your password has been successfully reset!</target> |
@@ -8369,27 +8663,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8369 | <source>Emphasis</source> | 8663 | <source>Emphasis</source> |
8370 | <target>Painotus</target> | 8664 | <target>Painotus</target> |
8371 | 8665 | ||
8372 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">77</context></context-group></trans-unit> | 8666 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> |
8373 | <trans-unit id="7565716024468232322"> | 8667 | <trans-unit id="7565716024468232322"> |
8374 | <source>Links</source> | 8668 | <source>Links</source> |
8375 | <target>Linkit</target> | 8669 | <target>Linkit</target> |
8376 | 8670 | ||
8377 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">78</context></context-group></trans-unit> | 8671 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> |
8378 | <trans-unit id="7838476952710404110"> | 8672 | <trans-unit id="7838476952710404110"> |
8379 | <source>New lines</source> | 8673 | <source>New lines</source> |
8380 | <target>Uudet rivit</target> | 8674 | <target>Uudet rivit</target> |
8381 | 8675 | ||
8382 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 8676 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">83</context></context-group></trans-unit> |
8383 | <trans-unit id="8756167649220050929"> | 8677 | <trans-unit id="8756167649220050929"> |
8384 | <source>Lists</source> | 8678 | <source>Lists</source> |
8385 | <target>Listat</target> | 8679 | <target>Listat</target> |
8386 | 8680 | ||
8387 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">80</context></context-group></trans-unit> | 8681 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">84</context></context-group></trans-unit> |
8388 | <trans-unit id="414887388288176527"> | 8682 | <trans-unit id="414887388288176527"> |
8389 | <source>Images</source> | 8683 | <source>Images</source> |
8390 | <target>Kuvat</target> | 8684 | <target>Kuvat</target> |
8391 | 8685 | ||
8392 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> | 8686 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">85</context></context-group></trans-unit> |
8393 | <trans-unit id="5708680277917691451" datatype="html"> | 8687 | <trans-unit id="5708680277917691451" datatype="html"> |
8394 | <source> | 8688 | <source> |
8395 | <x id="PH"/> users banned. | 8689 | <x id="PH"/> users banned. |
@@ -8785,7 +9079,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8785 | <source>Moderator</source> | 9079 | <source>Moderator</source> |
8786 | <target>Valvoja</target> | 9080 | <target>Valvoja</target> |
8787 | 9081 | ||
8788 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">386</context></context-group></trans-unit> | 9082 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">384</context></context-group></trans-unit> |
8789 | <trans-unit id="3723085768598852106" datatype="html"> | 9083 | <trans-unit id="3723085768598852106" datatype="html"> |
8790 | <source>Video removed from | 9084 | <source>Video removed from |
8791 | <x id="PH"/> | 9085 | <x id="PH"/> |
@@ -8858,7 +9152,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8858 | <source>Do you really want to delete this comment?</source> | 9152 | <source>Do you really want to delete this comment?</source> |
8859 | <target state="new">Do you really want to delete this comment?</target> | 9153 | <target state="new">Do you really want to delete this comment?</target> |
8860 | 9154 | ||
8861 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">434</context></context-group></trans-unit> | 9155 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">166</context></context-group></trans-unit> |
8862 | <trans-unit id="7837272126865175984" datatype="html"> | 9156 | <trans-unit id="7837272126865175984" datatype="html"> |
8863 | <source>Comment deleted.</source> | 9157 | <source>Comment deleted.</source> |
8864 | <target state="new">Comment deleted.</target> | 9158 | <target state="new">Comment deleted.</target> |
@@ -8970,9 +9264,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8970 | 9264 | ||
8971 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> | 9265 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> |
8972 | <source>Report</source><target state="new">Report</target> | 9266 | <source>Report</source><target state="new">Report</target> |
9267 | |||
9268 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="4814285799071780083" datatype="html"> | ||
9269 | <source>Remove</source><target state="new">Remove</target> | ||
8973 | <context-group purpose="location"> | 9270 | <context-group purpose="location"> |
8974 | <context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> | 9271 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> |
8975 | <context context-type="linenumber">286</context> | 9272 | <context context-type="linenumber">179</context> |
9273 | </context-group> | ||
9274 | </trans-unit><trans-unit id="6871668720687277843" datatype="html"> | ||
9275 | <source>Remove & re-draft</source><target state="new">Remove & re-draft</target> | ||
9276 | <context-group purpose="location"> | ||
9277 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> | ||
9278 | <context context-type="linenumber">187</context> | ||
8976 | </context-group> | 9279 | </context-group> |
8977 | </trans-unit> | 9280 | </trans-unit> |
8978 | <trans-unit id="4903651219400691248" datatype="html"> | 9281 | <trans-unit id="4903651219400691248" datatype="html"> |
@@ -9076,22 +9379,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9076 | <source>Only I can see this video</source> | 9379 | <source>Only I can see this video</source> |
9077 | <target>Vain minä voin nähdä tämän videon</target> | 9380 | <target>Vain minä voin nähdä tämän videon</target> |
9078 | 9381 | ||
9079 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">340</context></context-group></trans-unit> | 9382 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">341</context></context-group></trans-unit> |
9080 | <trans-unit id="6767380569816110388" datatype="html"> | 9383 | <trans-unit id="6767380569816110388" datatype="html"> |
9081 | <source>Only shareable via a private link</source> | 9384 | <source>Only shareable via a private link</source> |
9082 | <target state="new">Only shareable via a private link</target> | 9385 | <target state="new">Only shareable via a private link</target> |
9083 | 9386 | ||
9084 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">344</context></context-group></trans-unit> | 9387 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">345</context></context-group></trans-unit> |
9085 | <trans-unit id="6828965264297239528"> | 9388 | <trans-unit id="6828965264297239528"> |
9086 | <source>Anyone can see this video</source> | 9389 | <source>Anyone can see this video</source> |
9087 | <target>Kaikki voivat nähdä tämän videon</target> | 9390 | <target>Kaikki voivat nähdä tämän videon</target> |
9088 | 9391 | ||
9089 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">348</context></context-group></trans-unit> | 9392 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">349</context></context-group></trans-unit> |
9090 | <trans-unit id="1425933035739773115" datatype="html"> | 9393 | <trans-unit id="1425933035739773115" datatype="html"> |
9091 | <source>Only users of this instance can see this video</source> | 9394 | <source>Only users of this instance can see this video</source> |
9092 | <target state="new">Only users of this instance can see this video</target> | 9395 | <target state="new">Only users of this instance can see this video</target> |
9093 | 9396 | ||
9094 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">352</context></context-group></trans-unit> | 9397 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">353</context></context-group></trans-unit> |
9095 | <trans-unit id="5210096066382592800"> | 9398 | <trans-unit id="5210096066382592800"> |
9096 | <source>Video to import updated.</source> | 9399 | <source>Video to import updated.</source> |
9097 | <target>Tuotava video päivitetty.</target> | 9400 | <target>Tuotava video päivitetty.</target> |
@@ -9171,16 +9474,25 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9171 | <target state="new">Report comment</target> | 9474 | <target state="new">Report comment</target> |
9172 | 9475 | ||
9173 | 9476 | ||
9174 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 9477 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/report-modals/comment-report.component.ts</context><context context-type="linenumber">51</context></context-group></trans-unit> |
9175 | <trans-unit id="3691787517663044217" datatype="html"> | 9478 | <trans-unit id="3691787517663044217" datatype="html"> |
9176 | <source> The deletion will be sent to remote instances so they can reflect the change.</source> | 9479 | <source> The deletion will be sent to remote instances so they can reflect the change.</source> |
9177 | <target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> | 9480 | <target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> |
9178 | 9481 | ||
9179 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">163</context></context-group></trans-unit><trans-unit id="7321800851971795962" datatype="html"> | 9482 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">169</context></context-group></trans-unit><trans-unit id="7321800851971795962" datatype="html"> |
9180 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source><target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> | 9483 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source><target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> |
9484 | |||
9485 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="5964038603724691720" datatype="html"> | ||
9486 | <source>Delete and re-draft</source><target state="new">Delete and re-draft</target> | ||
9181 | <context-group purpose="location"> | 9487 | <context-group purpose="location"> |
9182 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | 9488 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> |
9183 | <context context-type="linenumber">165</context> | 9489 | <context context-type="linenumber">197</context> |
9490 | </context-group> | ||
9491 | </trans-unit><trans-unit id="7163633882758007711" datatype="html"> | ||
9492 | <source>Do you really want to delete and re-draft this comment?</source><target state="new">Do you really want to delete and re-draft this comment?</target> | ||
9493 | <context-group purpose="location"> | ||
9494 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | ||
9495 | <context context-type="linenumber">197</context> | ||
9184 | </context-group> | 9496 | </context-group> |
9185 | </trans-unit> | 9497 | </trans-unit> |
9186 | 9498 | ||
@@ -9345,6 +9657,36 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9345 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> | 9657 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> |
9346 | <context context-type="linenumber">36</context> | 9658 | <context context-type="linenumber">36</context> |
9347 | </context-group> | 9659 | </context-group> |
9660 | </trans-unit><trans-unit id="4668975178372693951" datatype="html"> | ||
9661 | <source>Discover videos</source><target state="new">Discover videos</target> | ||
9662 | <context-group purpose="location"> | ||
9663 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9664 | <context context-type="linenumber">23</context> | ||
9665 | </context-group> | ||
9666 | </trans-unit><trans-unit id="8067135025051844577" datatype="html"> | ||
9667 | <source>Trending videos</source><target state="new">Trending videos</target> | ||
9668 | <context-group purpose="location"> | ||
9669 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9670 | <context context-type="linenumber">32</context> | ||
9671 | </context-group> | ||
9672 | </trans-unit><trans-unit id="664221386829541948" datatype="html"> | ||
9673 | <source>Recently added videos</source><target state="new">Recently added videos</target> | ||
9674 | <context-group purpose="location"> | ||
9675 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9676 | <context context-type="linenumber">58</context> | ||
9677 | </context-group> | ||
9678 | </trans-unit><trans-unit id="8212906256415538361" datatype="html"> | ||
9679 | <source>Upload a video</source><target state="new">Upload a video</target> | ||
9680 | <context-group purpose="location"> | ||
9681 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9682 | <context context-type="linenumber">97</context> | ||
9683 | </context-group> | ||
9684 | </trans-unit><trans-unit id="7590784934397800835" datatype="html"> | ||
9685 | <source>Edit a video</source><target state="new">Edit a video</target> | ||
9686 | <context-group purpose="location"> | ||
9687 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9688 | <context context-type="linenumber">106</context> | ||
9689 | </context-group> | ||
9348 | </trans-unit> | 9690 | </trans-unit> |
9349 | </body> | 9691 | </body> |
9350 | </file> | 9692 | </file> |
diff --git a/client/src/locale/angular.gd.xlf b/client/src/locale/angular.gd.xlf index bde087673..ca2f63f00 100644 --- a/client/src/locale/angular.gd.xlf +++ b/client/src/locale/angular.gd.xlf | |||
@@ -309,7 +309,7 @@ | |||
309 | <target state="translated">Roghainnean</target> | 309 | <target state="translated">Roghainnean</target> |
310 | 310 | ||
311 | 311 | ||
312 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 312 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">48</context></context-group></trans-unit> |
313 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d" datatype="html"> | 313 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d" datatype="html"> |
314 | <source>Start at</source> | 314 | <source>Start at</source> |
315 | <target state="translated">Tòisich aig</target> | 315 | <target state="translated">Tòisich aig</target> |
@@ -439,7 +439,7 @@ | |||
439 | <source>Cancel</source> | 439 | <source>Cancel</source> |
440 | <target state="translated">Sguir dheth</target> | 440 | <target state="translated">Sguir dheth</target> |
441 | 441 | ||
442 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> | 442 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit> |
443 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd" datatype="html"> | 443 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd" datatype="html"> |
444 | <source>Download</source> | 444 | <source>Download</source> |
445 | <target state="translated">Luchdaich a-nuas</target> | 445 | <target state="translated">Luchdaich a-nuas</target> |
@@ -557,7 +557,7 @@ | |||
557 | 557 | ||
558 | 558 | ||
559 | 559 | ||
560 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 560 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
561 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc" datatype="html"> | 561 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc" datatype="html"> |
562 | <source>Edit starts/stops at</source> | 562 | <source>Edit starts/stops at</source> |
563 | <target state="translated">Tha toiseach/deireadh an deasachaidh aig</target> | 563 | <target state="translated">Tha toiseach/deireadh an deasachaidh aig</target> |
@@ -597,7 +597,7 @@ | |||
597 | 597 | ||
598 | 598 | ||
599 | 599 | ||
600 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> | 600 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
601 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c" datatype="html"> | 601 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c" datatype="html"> |
602 | <source>Edit</source> | 602 | <source>Edit</source> |
603 | <target state="translated">Deasaich</target> | 603 | <target state="translated">Deasaich</target> |
@@ -622,17 +622,10 @@ | |||
622 | <target state="translated">Ro-shealladh slàn</target> | 622 | <target state="translated">Ro-shealladh slàn</target> |
623 | 623 | ||
624 | <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></trans-unit> | 624 | <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></trans-unit> |
625 | <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f" datatype="html"> | 625 | <trans-unit id="8644431249513874405" datatype="html"> |
626 | <source>Get help</source> | ||
627 | <target state="translated">Faigh cobhair</target> | ||
628 | |||
629 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit><trans-unit id="8644431249513874405" datatype="html"> | ||
630 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> | 626 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> |
631 | <context-group purpose="location"> | 627 | |
632 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 628 | <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></trans-unit> |
633 | <context context-type="linenumber">71</context> | ||
634 | </context-group> | ||
635 | </trans-unit> | ||
636 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> | 629 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> |
637 | <source>Recommended</source> | 630 | <source>Recommended</source> |
638 | <target state="new">Recommended</target> | 631 | <target state="new">Recommended</target> |
@@ -672,7 +665,7 @@ | |||
672 | <source>PROFILE SETTINGS</source> | 665 | <source>PROFILE SETTINGS</source> |
673 | <target state="new">PROFILE SETTINGS</target> | 666 | <target state="new">PROFILE SETTINGS</target> |
674 | 667 | ||
675 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 668 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">12</context></context-group></trans-unit> |
676 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3" datatype="html"> | 669 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3" datatype="html"> |
677 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> | 670 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> |
678 | <target state="translated"> | 671 | <target state="translated"> |
@@ -837,11 +830,8 @@ | |||
837 | 830 | ||
838 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> | 831 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> |
839 | <source>User</source><target state="new">User</target> | 832 | <source>User</source><target state="new">User</target> |
840 | <context-group purpose="location"> | 833 | |
841 | <context context-type="sourcefile">../app/core/users/user.service.ts</context> | 834 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit> |
842 | <context context-type="linenumber">384</context> | ||
843 | </context-group> | ||
844 | </trans-unit> | ||
845 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0" datatype="html"> | 835 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0" datatype="html"> |
846 | <source>Ban</source> | 836 | <source>Ban</source> |
847 | <target state="translated">Toirmisg</target> | 837 | <target state="translated">Toirmisg</target> |
@@ -1305,89 +1295,89 @@ The link will expire within 1 hour.</target> | |||
1305 | <source>Account settings</source> | 1295 | <source>Account settings</source> |
1306 | <target state="new">Account settings</target> | 1296 | <target state="new">Account settings</target> |
1307 | 1297 | ||
1308 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 1298 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
1309 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> | 1299 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> |
1310 | <source>Channels settings</source> | 1300 | <source>Channels settings</source> |
1311 | <target state="new">Channels settings</target> | 1301 | <target state="new">Channels settings</target> |
1312 | 1302 | ||
1313 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 1303 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> |
1314 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> | 1304 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> |
1315 | <source>Interface:</source> | 1305 | <source>Interface:</source> |
1316 | <target state="new">Interface:</target> | 1306 | <target state="new">Interface:</target> |
1317 | 1307 | ||
1318 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 1308 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1319 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> | 1309 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> |
1320 | <source>Videos:</source> | 1310 | <source>Videos:</source> |
1321 | <target state="new">Videos:</target> | 1311 | <target state="new">Videos:</target> |
1322 | 1312 | ||
1323 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 1313 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> |
1324 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> | 1314 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> |
1325 | <source>Sensitive:</source> | 1315 | <source>Sensitive:</source> |
1326 | <target state="new">Sensitive:</target> | 1316 | <target state="new">Sensitive:</target> |
1327 | 1317 | ||
1328 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 1318 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">54</context></context-group></trans-unit> |
1329 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1319 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> |
1330 | <source>Interface: <x id="INTERPOLATION"/></source> | 1320 | <source>Interface: <x id="INTERPOLATION"/></source> |
1331 | <target state="new">Interface: | 1321 | <target state="new">Interface: |
1332 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> | 1322 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> |
1333 | </target> | 1323 | </target> |
1334 | 1324 | ||
1335 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">156</context></context-group></trans-unit> | 1325 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> |
1336 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1326 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1337 | <source>Help share videos</source> | 1327 | <source>Help share videos</source> |
1338 | <target state="new">Help share videos</target> | 1328 | <target state="new">Help share videos</target> |
1339 | 1329 | ||
1340 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> | 1330 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
1341 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> | 1331 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> |
1342 | <source>More account settings</source> | 1332 | <source>More account settings</source> |
1343 | <target state="new">More account settings</target> | 1333 | <target state="new">More account settings</target> |
1344 | 1334 | ||
1345 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> | 1335 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> |
1346 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> | 1336 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> |
1347 | <source>Keyboard shortcuts</source> | 1337 | <source>Keyboard shortcuts</source> |
1348 | <target state="new">Keyboard shortcuts</target> | 1338 | <target state="new">Keyboard shortcuts</target> |
1349 | 1339 | ||
1350 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 1340 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">72</context></context-group></trans-unit> |
1351 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> | 1341 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> |
1352 | <source>Help</source> | 1342 | <source>Help</source> |
1353 | <target state="new">Help</target> | 1343 | <target state="new">Help</target> |
1354 | 1344 | ||
1355 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1345 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1356 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> | 1346 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> |
1357 | <source>Get help using PeerTube</source> | 1347 | <source>Get help using PeerTube</source> |
1358 | <target state="new">Get help using PeerTube</target> | 1348 | <target state="new">Get help using PeerTube</target> |
1359 | 1349 | ||
1360 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">161</context></context-group></trans-unit> | 1350 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">167</context></context-group></trans-unit> |
1361 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> | 1351 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> |
1362 | <source>Shortcuts</source> | 1352 | <source>Shortcuts</source> |
1363 | <target state="new">Shortcuts</target> | 1353 | <target state="new">Shortcuts</target> |
1364 | 1354 | ||
1365 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1355 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1366 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> | 1356 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> |
1367 | <source>powered by PeerTube</source> | 1357 | <source>powered by PeerTube</source> |
1368 | <target state="new">powered by PeerTube</target> | 1358 | <target state="new">powered by PeerTube</target> |
1369 | 1359 | ||
1370 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | 1360 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">177</context></context-group></trans-unit> |
1371 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> | 1361 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> |
1372 | <source>powered by PeerTube - CopyLeft 2015-2020</source> | 1362 | <source>powered by PeerTube - CopyLeft 2015-2020</source> |
1373 | <target state="new">powered by PeerTube - CopyLeft 2015-2020</target> | 1363 | <target state="new">powered by PeerTube - CopyLeft 2015-2020</target> |
1374 | 1364 | ||
1375 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> | 1365 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">176</context></context-group></trans-unit> |
1376 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344" datatype="html"> | 1366 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344" datatype="html"> |
1377 | <source>Log out</source> | 1367 | <source>Log out</source> |
1378 | <target state="translated">Clàraich a-mach</target> | 1368 | <target state="translated">Clàraich a-mach</target> |
1379 | 1369 | ||
1380 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">70</context></context-group></trans-unit> | 1370 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit> |
1381 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87" datatype="html"> | 1371 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87" datatype="html"> |
1382 | <source>Create an account</source> | 1372 | <source>Create an account</source> |
1383 | <target state="translated">Cruthaich cunntas</target> | 1373 | <target state="translated">Cruthaich cunntas</target> |
1384 | 1374 | ||
1385 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">78</context></context-group></trans-unit> | 1375 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
1386 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> | 1376 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> |
1387 | <source>MY LIBRARY</source> | 1377 | <source>MY LIBRARY</source> |
1388 | <target state="new">MY LIBRARY</target> | 1378 | <target state="new">MY LIBRARY</target> |
1389 | 1379 | ||
1390 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 1380 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">88</context></context-group></trans-unit> |
1391 | <trans-unit id="6371572688505952303" datatype="html"> | 1381 | <trans-unit id="6371572688505952303" datatype="html"> |
1392 | <source>My library</source> | 1382 | <source>My library</source> |
1393 | <target state="translated">An leabhar-lann agam</target> | 1383 | <target state="translated">An leabhar-lann agam</target> |
@@ -1427,22 +1417,22 @@ The link will expire within 1 hour.</target> | |||
1427 | <source>Videos</source> | 1417 | <source>Videos</source> |
1428 | <target state="translated">Videothan</target> | 1418 | <target state="translated">Videothan</target> |
1429 | 1419 | ||
1430 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">86</context></context-group></trans-unit> | 1420 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">92</context></context-group></trans-unit> |
1431 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> | 1421 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> |
1432 | <source>Playlists</source> | 1422 | <source>Playlists</source> |
1433 | <target state="translated">Liostaichean-cluich</target> | 1423 | <target state="translated">Liostaichean-cluich</target> |
1434 | 1424 | ||
1435 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">91</context></context-group></trans-unit> | 1425 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">97</context></context-group></trans-unit> |
1436 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2" datatype="html"> | 1426 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2" datatype="html"> |
1437 | <source>Subscriptions</source> | 1427 | <source>Subscriptions</source> |
1438 | <target state="translated">Fo-sgrìobhaidhean</target> | 1428 | <target state="translated">Fo-sgrìobhaidhean</target> |
1439 | 1429 | ||
1440 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 1430 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">102</context></context-group></trans-unit> |
1441 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8" datatype="html"> | 1431 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8" datatype="html"> |
1442 | <source>History</source> | 1432 | <source>History</source> |
1443 | <target state="translated">Eachdraidh</target> | 1433 | <target state="translated">Eachdraidh</target> |
1444 | 1434 | ||
1445 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit> | 1435 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">107</context></context-group></trans-unit> |
1446 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> | 1436 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> |
1447 | <source>VIDEOS</source> | 1437 | <source>VIDEOS</source> |
1448 | <target state="new">VIDEOS</target> | 1438 | <target state="new">VIDEOS</target> |
@@ -1454,27 +1444,27 @@ The link will expire within 1 hour.</target> | |||
1454 | <target state="translated">Fidir</target> | 1444 | <target state="translated">Fidir</target> |
1455 | 1445 | ||
1456 | 1446 | ||
1457 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">111</context></context-group></trans-unit> | 1447 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">117</context></context-group></trans-unit> |
1458 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807" datatype="html"> | 1448 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807" datatype="html"> |
1459 | <source>Trending</source> | 1449 | <source>Trending</source> |
1460 | <target state="translated">A’ treandadh</target> | 1450 | <target state="translated">A’ treandadh</target> |
1461 | 1451 | ||
1462 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">116</context></context-group></trans-unit> | 1452 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">122</context></context-group></trans-unit> |
1463 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> | 1453 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> |
1464 | <source>Most liked</source> | 1454 | <source>Most liked</source> |
1465 | <target state="translated">Fèill mhòr air</target> | 1455 | <target state="translated">Fèill mhòr air</target> |
1466 | 1456 | ||
1467 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">121</context></context-group></trans-unit> | 1457 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">127</context></context-group></trans-unit> |
1468 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1" datatype="html"> | 1458 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1" datatype="html"> |
1469 | <source>Recently added</source> | 1459 | <source>Recently added</source> |
1470 | <target state="translated">Air an cur ris o chionn ghoirid</target> | 1460 | <target state="translated">Air an cur ris o chionn ghoirid</target> |
1471 | 1461 | ||
1472 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">126</context></context-group></trans-unit> | 1462 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">132</context></context-group></trans-unit> |
1473 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919" datatype="html"> | 1463 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919" datatype="html"> |
1474 | <source>Administration</source> | 1464 | <source>Administration</source> |
1475 | <target state="translated">Rianachd</target> | 1465 | <target state="translated">Rianachd</target> |
1476 | 1466 | ||
1477 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">140</context></context-group></trans-unit> | 1467 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">146</context></context-group></trans-unit> |
1478 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a" datatype="html"> | 1468 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a" datatype="html"> |
1479 | <source>About</source> | 1469 | <source>About</source> |
1480 | <target state="translated">Mu dhèidhinn</target> | 1470 | <target state="translated">Mu dhèidhinn</target> |
@@ -1485,7 +1475,7 @@ The link will expire within 1 hour.</target> | |||
1485 | <source>Contact</source> | 1475 | <source>Contact</source> |
1486 | <target state="new">Contact</target> | 1476 | <target state="new">Contact</target> |
1487 | 1477 | ||
1488 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">160</context></context-group></trans-unit> | 1478 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">166</context></context-group></trans-unit> |
1489 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771" datatype="html"> | 1479 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771" datatype="html"> |
1490 | <source>View your notifications</source> | 1480 | <source>View your notifications</source> |
1491 | <target state="translated">Seall na brathan agad</target> | 1481 | <target state="translated">Seall na brathan agad</target> |
@@ -1512,7 +1502,7 @@ The link will expire within 1 hour.</target> | |||
1512 | <source>See all your notifications</source> | 1502 | <source>See all your notifications</source> |
1513 | <target state="translated">Seall a h-uile brath agad</target> | 1503 | <target state="translated">Seall a h-uile brath agad</target> |
1514 | 1504 | ||
1515 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 1505 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">40</context></context-group></trans-unit> |
1516 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> | 1506 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> |
1517 | <source>Search videos, channels…</source> | 1507 | <source>Search videos, channels…</source> |
1518 | <target state="new">Search videos, channels…</target> | 1508 | <target state="new">Search videos, channels…</target> |
@@ -1842,22 +1832,22 @@ The link will expire within 1 hour.</target> | |||
1842 | <source>FAQ</source> | 1832 | <source>FAQ</source> |
1843 | <target state="new">FAQ</target> | 1833 | <target state="new">FAQ</target> |
1844 | 1834 | ||
1845 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">163</context></context-group></trans-unit> | 1835 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
1846 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> | 1836 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> |
1847 | <source>Frequently asked questions about PeerTube</source> | 1837 | <source>Frequently asked questions about PeerTube</source> |
1848 | <target state="new">Frequently asked questions about PeerTube</target> | 1838 | <target state="new">Frequently asked questions about PeerTube</target> |
1849 | 1839 | ||
1850 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1840 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1851 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> | 1841 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> |
1852 | <source>API</source> | 1842 | <source>API</source> |
1853 | <target state="new">API</target> | 1843 | <target state="new">API</target> |
1854 | 1844 | ||
1855 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1845 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1856 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> | 1846 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> |
1857 | <source>API documentation</source> | 1847 | <source>API documentation</source> |
1858 | <target state="new">API documentation</target> | 1848 | <target state="new">API documentation</target> |
1859 | 1849 | ||
1860 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 1850 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
1861 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5" datatype="html"> | 1851 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5" datatype="html"> |
1862 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> | 1852 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> |
1863 | <target state="translated">Cuir foillseachadh air an sgeideal ( | 1853 | <target state="translated">Cuir foillseachadh air an sgeideal ( |
@@ -2221,7 +2211,13 @@ The link will expire within 1 hour.</target> | |||
2221 | <source>Less customization</source> | 2211 | <source>Less customization</source> |
2222 | <target state="translated">Nas lugha de ghnàthachadh</target> | 2212 | <target state="translated">Nas lugha de ghnàthachadh</target> |
2223 | 2213 | ||
2224 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit> | 2214 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit><trans-unit id="2454050363478003966" datatype="html"> |
2215 | <source>Login</source><target state="new">Login</target> | ||
2216 | <context-group purpose="location"> | ||
2217 | <context context-type="sourcefile">../app/+login/login-routing.module.ts</context> | ||
2218 | <context context-type="linenumber">14</context> | ||
2219 | </context-group> | ||
2220 | </trans-unit> | ||
2225 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e" datatype="html"> | 2221 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e" datatype="html"> |
2226 | <source>Autoplay</source> | 2222 | <source>Autoplay</source> |
2227 | <target state="translated">Fèin-chluich</target> | 2223 | <target state="translated">Fèin-chluich</target> |
@@ -2486,7 +2482,7 @@ The link will expire within 1 hour.</target> | |||
2486 | <source>No comments.</source> | 2482 | <source>No comments.</source> |
2487 | <target state="translated">Chan eil beachd ann.</target> | 2483 | <target state="translated">Chan eil beachd ann.</target> |
2488 | 2484 | ||
2489 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 2485 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> |
2490 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> | 2486 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> |
2491 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> | 2487 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> |
2492 | <target state="new"> | 2488 | <target state="new"> |
@@ -2496,7 +2492,7 @@ The link will expire within 1 hour.</target> | |||
2496 | 2492 | ||
2497 | </target> | 2493 | </target> |
2498 | 2494 | ||
2499 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">79</context></context-group></trans-unit> | 2495 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
2500 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> | 2496 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> |
2501 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> | 2497 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> |
2502 | <target state="new"> | 2498 | <target state="new"> |
@@ -2505,38 +2501,96 @@ The link will expire within 1 hour.</target> | |||
2505 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> | 2501 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> |
2506 | </target> | 2502 | </target> |
2507 | 2503 | ||
2508 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 2504 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">87</context></context-group></trans-unit> |
2509 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> | 2505 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> |
2510 | <source>View <x id="INTERPOLATION"/> replies</source> | 2506 | <source>View <x id="INTERPOLATION"/> replies</source> |
2511 | <target state="new">View | 2507 | <target state="new">View |
2512 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies | 2508 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies |
2513 | </target> | 2509 | </target> |
2514 | 2510 | ||
2515 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">85</context></context-group></trans-unit> | 2511 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">90</context></context-group></trans-unit> |
2516 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828" datatype="html"> | 2512 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828" datatype="html"> |
2517 | <source>Comments are disabled.</source> | 2513 | <source>Comments are disabled.</source> |
2518 | <target state="translated">Tha beachdan à comas.</target> | 2514 | <target state="translated">Tha beachdan à comas.</target> |
2519 | 2515 | ||
2520 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 2516 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit> |
2521 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e" datatype="html"> | 2517 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e" datatype="html"> |
2522 | <source>Add comment...</source> | 2518 | <source>Add comment...</source> |
2523 | <target state="translated">Cuir beachd ris…</target> | 2519 | <target state="translated">Cuir beachd ris…</target> |
2524 | 2520 | ||
2525 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | 2521 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit><trans-unit id="4e5254dedf0c12ce7e7c2197384fceebe3b29a2b" datatype="html"> |
2526 | <trans-unit id="8956c0f4c6974289fc63f1ab6b54f5b32ed65eeb" datatype="html"> | 2522 | <source>Markdown compatible</source><target state="new">Markdown compatible</target> |
2527 | <source> | 2523 | <context-group purpose="location"> |
2528 | Reply | 2524 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> |
2529 | </source> | 2525 | <context context-type="linenumber">13</context> |
2530 | <target state="new"> | 2526 | </context-group> |
2531 | Reply | 2527 | </trans-unit><trans-unit id="4739ffad85f09defefdb6e51b45f43b2ef7c4388" datatype="html"> |
2532 | </target> | 2528 | <source>Markdown compatible that supports:</source><target state="new">Markdown compatible that supports:</target> |
2533 | 2529 | <context-group purpose="location"> | |
2534 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 2530 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> |
2531 | <context context-type="linenumber">15</context> | ||
2532 | </context-group> | ||
2533 | </trans-unit><trans-unit id="9a53b17a021bb0677c156fd893461797fc497a10" datatype="html"> | ||
2534 | <source>Auto generated links</source><target state="new">Auto generated links</target> | ||
2535 | <context-group purpose="location"> | ||
2536 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2537 | <context context-type="linenumber">18</context> | ||
2538 | </context-group> | ||
2539 | </trans-unit><trans-unit id="664f99b8919d6dd2faa1c1f7c378aa86d1be5e8a" datatype="html"> | ||
2540 | <source>Break lines</source><target state="new">Break lines</target> | ||
2541 | <context-group purpose="location"> | ||
2542 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2543 | <context context-type="linenumber">19</context> | ||
2544 | </context-group> | ||
2545 | </trans-unit><trans-unit id="b15e7bec5c7833d2d9634946ccbed68967b1bee1" datatype="html"> | ||
2546 | <source>Lists</source><target state="new">Lists</target> | ||
2547 | <context-group purpose="location"> | ||
2548 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2549 | <context context-type="linenumber">20</context> | ||
2550 | </context-group> | ||
2551 | </trans-unit><trans-unit id="ab4426b60f13c00b61d6b714d390dc629f314980" datatype="html"> | ||
2552 | <source>Emphasis</source><target state="new">Emphasis</target> | ||
2553 | <context-group purpose="location"> | ||
2554 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2555 | <context context-type="linenumber">22</context> | ||
2556 | </context-group> | ||
2557 | </trans-unit><trans-unit id="4e13b179501d3d32721037e03b4c04acb9857c5f" datatype="html"> | ||
2558 | <source>bold</source><target state="new">bold</target> | ||
2559 | <context-group purpose="location"> | ||
2560 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2561 | <context context-type="linenumber">23</context> | ||
2562 | </context-group> | ||
2563 | </trans-unit><trans-unit id="3c12190421fbb2756e6bbead923df9ec5de8ede2" datatype="html"> | ||
2564 | <source>italic</source><target state="new">italic</target> | ||
2565 | <context-group purpose="location"> | ||
2566 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2567 | <context context-type="linenumber">23</context> | ||
2568 | </context-group> | ||
2569 | </trans-unit><trans-unit id="adb4bbdcb961b8aac8298d6cac554d9b25636b7a" datatype="html"> | ||
2570 | <source>Emoji shortcuts</source><target state="new">Emoji shortcuts</target> | ||
2571 | <context-group purpose="location"> | ||
2572 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2573 | <context context-type="linenumber">26</context> | ||
2574 | </context-group> | ||
2575 | </trans-unit><trans-unit id="b9809a21a8eb3c9db2a0282c5dd94bc221575c96" datatype="html"> | ||
2576 | <source>Emoji markup</source><target state="new">Emoji markup</target> | ||
2577 | <context-group purpose="location"> | ||
2578 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2579 | <context context-type="linenumber">30</context> | ||
2580 | </context-group> | ||
2581 | </trans-unit><trans-unit id="f37feb427aaa551edd1f22616be6464bc0d492de" datatype="html"> | ||
2582 | <source>See complete list</source><target state="new">See complete list</target> | ||
2583 | <context-group purpose="location"> | ||
2584 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2585 | <context context-type="linenumber">32</context> | ||
2586 | </context-group> | ||
2587 | </trans-unit> | ||
2588 | |||
2535 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135" datatype="html"> | 2589 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135" datatype="html"> |
2536 | <source>You are one step away from commenting</source> | 2590 | <source>You are one step away from commenting</source> |
2537 | <target state="translated">Chan eil ach aon cheum a dhìth ort mus cuir thu do bheachd ris</target> | 2591 | <target state="translated">Chan eil ach aon cheum a dhìth ort mus cuir thu do bheachd ris</target> |
2538 | 2592 | ||
2539 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 2593 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
2540 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> | 2594 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> |
2541 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> | 2595 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> |
2542 | <target state="new"> | 2596 | <target state="new"> |
@@ -2545,17 +2599,35 @@ The link will expire within 1 hour.</target> | |||
2545 | from within the software's interface. | 2599 | from within the software's interface. |
2546 | </target> | 2600 | </target> |
2547 | 2601 | ||
2548 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 2602 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
2549 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb" datatype="html"> | 2603 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb" datatype="html"> |
2550 | <source>If you have an account on Mastodon or Pleroma, you can open it directly in their interface:</source> | 2604 | <source>If you have an account on Mastodon or Pleroma, you can open it directly in their interface:</source> |
2551 | <target state="translated">Ma tha cunntas agad air Mastodon no Pleroma, ’s urrainn dhut fhosgladh san eadar-aghaidh aca fhèin:</target> | 2605 | <target state="translated">Ma tha cunntas agad air Mastodon no Pleroma, ’s urrainn dhut fhosgladh san eadar-aghaidh aca fhèin:</target> |
2552 | 2606 | ||
2553 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">41</context></context-group></trans-unit> | 2607 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">65</context></context-group></trans-unit> |
2554 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> | 2608 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> |
2555 | <source>Login to comment</source> | 2609 | <source>Login to comment</source> |
2556 | <target state="new">Login to comment</target> | 2610 | <target state="new">Login to comment</target> |
2557 | 2611 | ||
2558 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">52</context></context-group></trans-unit> | 2612 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit><trans-unit id="974170f455ff5a9034d5737e84b4194c0046fc6b" datatype="html"> |
2613 | <source>Markdown Emoji List</source><target state="new">Markdown Emoji List</target> | ||
2614 | <context-group purpose="location"> | ||
2615 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2616 | <context context-type="linenumber">84</context> | ||
2617 | </context-group> | ||
2618 | </trans-unit><trans-unit id="2662644497259948010" datatype="html"> | ||
2619 | <source>Comment</source><target state="new">Comment</target> | ||
2620 | <context-group purpose="location"> | ||
2621 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2622 | <context context-type="linenumber">58</context> | ||
2623 | </context-group> | ||
2624 | </trans-unit><trans-unit id="4502286564339177240" datatype="html"> | ||
2625 | <source>Reply</source><target state="new">Reply</target> | ||
2626 | <context-group purpose="location"> | ||
2627 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2628 | <context context-type="linenumber">60</context> | ||
2629 | </context-group> | ||
2630 | </trans-unit> | ||
2559 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285" datatype="html"> | 2631 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285" datatype="html"> |
2560 | <source>Highlighted comment</source> | 2632 | <source>Highlighted comment</source> |
2561 | <target state="translated">Beachd soillsichte</target> | 2633 | <target state="translated">Beachd soillsichte</target> |
@@ -2570,7 +2642,7 @@ The link will expire within 1 hour.</target> | |||
2570 | <source>This comment has been deleted</source> | 2642 | <source>This comment has been deleted</source> |
2571 | <target state="new">This comment has been deleted</target> | 2643 | <target state="new">This comment has been deleted</target> |
2572 | 2644 | ||
2573 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">62</context></context-group></trans-unit> | 2645 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">61</context></context-group></trans-unit> |
2574 | <trans-unit id="9031514421077169181" datatype="html"> | 2646 | <trans-unit id="9031514421077169181" datatype="html"> |
2575 | <source>Video redundancies</source> | 2647 | <source>Video redundancies</source> |
2576 | <target state="new">Video redundancies</target> | 2648 | <target state="new">Video redundancies</target> |
@@ -3423,7 +3495,25 @@ The link will expire within 1 hour.</target> | |||
3423 | <target state="new">No account found.</target> | 3495 | <target state="new">No account found.</target> |
3424 | 3496 | ||
3425 | 3497 | ||
3426 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit> | 3498 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit><trans-unit id="2338185419645468935" datatype="html"> |
3499 | <source>List installed plugins</source><target state="new">List installed plugins</target> | ||
3500 | <context-group purpose="location"> | ||
3501 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3502 | <context context-type="linenumber">28</context> | ||
3503 | </context-group> | ||
3504 | </trans-unit><trans-unit id="8897412584195581488" datatype="html"> | ||
3505 | <source>Search plugins</source><target state="new">Search plugins</target> | ||
3506 | <context-group purpose="location"> | ||
3507 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3508 | <context context-type="linenumber">37</context> | ||
3509 | </context-group> | ||
3510 | </trans-unit><trans-unit id="4994333937800672218" datatype="html"> | ||
3511 | <source>Show plugin</source><target state="new">Show plugin</target> | ||
3512 | <context-group purpose="location"> | ||
3513 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3514 | <context context-type="linenumber">46</context> | ||
3515 | </context-group> | ||
3516 | </trans-unit> | ||
3427 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> | 3517 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> |
3428 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> | 3518 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> |
3429 | <target state="new">Showing | 3519 | <target state="new">Showing |
@@ -4143,7 +4233,7 @@ The link will expire within 1 hour.</target> | |||
4143 | <source>Administrator</source> | 4233 | <source>Administrator</source> |
4144 | <target state="translated">Rianaire</target> | 4234 | <target state="translated">Rianaire</target> |
4145 | 4235 | ||
4146 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">385</context></context-group></trans-unit> | 4236 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">383</context></context-group></trans-unit> |
4147 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587" datatype="html"> | 4237 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587" datatype="html"> |
4148 | <source>Admin email</source> | 4238 | <source>Admin email</source> |
4149 | <target state="translated">Post-d an rianaire</target> | 4239 | <target state="translated">Post-d an rianaire</target> |
@@ -4405,27 +4495,27 @@ The link will expire within 1 hour.</target> | |||
4405 | <source>VIDEO SETTINGS</source> | 4495 | <source>VIDEO SETTINGS</source> |
4406 | <target state="new">VIDEO SETTINGS</target> | 4496 | <target state="new">VIDEO SETTINGS</target> |
4407 | 4497 | ||
4408 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit> | 4498 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
4409 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> | 4499 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> |
4410 | <source>NOTIFICATIONS</source> | 4500 | <source>NOTIFICATIONS</source> |
4411 | <target state="new">NOTIFICATIONS</target> | 4501 | <target state="new">NOTIFICATIONS</target> |
4412 | 4502 | ||
4413 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 4503 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">37</context></context-group></trans-unit> |
4414 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> | 4504 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> |
4415 | <source>INTERFACE</source> | 4505 | <source>INTERFACE</source> |
4416 | <target state="new">INTERFACE</target> | 4506 | <target state="new">INTERFACE</target> |
4417 | 4507 | ||
4418 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 4508 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit> |
4419 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> | 4509 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> |
4420 | <source>PASSWORD</source> | 4510 | <source>PASSWORD</source> |
4421 | <target state="new">PASSWORD</target> | 4511 | <target state="new">PASSWORD</target> |
4422 | 4512 | ||
4423 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">59</context></context-group></trans-unit> | 4513 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">57</context></context-group></trans-unit> |
4424 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> | 4514 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> |
4425 | <source>EMAIL</source> | 4515 | <source>EMAIL</source> |
4426 | <target state="new">EMAIL</target> | 4516 | <target state="new">EMAIL</target> |
4427 | 4517 | ||
4428 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">69</context></context-group></trans-unit> | 4518 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">67</context></context-group></trans-unit> |
4429 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> | 4519 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> |
4430 | <source>DANGER ZONE</source> | 4520 | <source>DANGER ZONE</source> |
4431 | <target state="new">DANGER ZONE</target> | 4521 | <target state="new">DANGER ZONE</target> |
@@ -4671,7 +4761,31 @@ The link will expire within 1 hour.</target> | |||
4671 | <source>No ownership change request found.</source> | 4761 | <source>No ownership change request found.</source> |
4672 | <target state="new">No ownership change request found.</target> | 4762 | <target state="new">No ownership change request found.</target> |
4673 | 4763 | ||
4674 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit> | 4764 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit><trans-unit id="4247400351982331798" datatype="html"> |
4765 | <source>Account settings</source><target state="new">Account settings</target> | ||
4766 | <context-group purpose="location"> | ||
4767 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4768 | <context context-type="linenumber">37</context> | ||
4769 | </context-group> | ||
4770 | </trans-unit><trans-unit id="154062590416726309" datatype="html"> | ||
4771 | <source>Account playlists</source><target state="new">Account playlists</target> | ||
4772 | <context-group purpose="location"> | ||
4773 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4774 | <context context-type="linenumber">55</context> | ||
4775 | </context-group> | ||
4776 | </trans-unit><trans-unit id="6550287183367517925" datatype="html"> | ||
4777 | <source>Create new playlist</source><target state="new">Create new playlist</target> | ||
4778 | <context-group purpose="location"> | ||
4779 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4780 | <context context-type="linenumber">64</context> | ||
4781 | </context-group> | ||
4782 | </trans-unit><trans-unit id="2864486939135008600" datatype="html"> | ||
4783 | <source>Playlist elements</source><target state="new">Playlist elements</target> | ||
4784 | <context-group purpose="location"> | ||
4785 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4786 | <context context-type="linenumber">73</context> | ||
4787 | </context-group> | ||
4788 | </trans-unit> | ||
4675 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> | 4789 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> |
4676 | <source>My imports</source> | 4790 | <source>My imports</source> |
4677 | <target state="new">My imports</target> | 4791 | <target state="new">My imports</target> |
@@ -4932,7 +5046,25 @@ The link will expire within 1 hour.</target> | |||
4932 | <source>An error occurred.</source> | 5046 | <source>An error occurred.</source> |
4933 | <target state="translated">Thachair mearachd.</target> | 5047 | <target state="translated">Thachair mearachd.</target> |
4934 | 5048 | ||
4935 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 5049 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit><trans-unit id="9128669621822125729" datatype="html"> |
5050 | <source>Video channel videos</source><target state="new">Video channel videos</target> | ||
5051 | <context-group purpose="location"> | ||
5052 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5053 | <context context-type="linenumber">25</context> | ||
5054 | </context-group> | ||
5055 | </trans-unit><trans-unit id="3193822049276963401" datatype="html"> | ||
5056 | <source>Video channel playlists</source><target state="new">Video channel playlists</target> | ||
5057 | <context-group purpose="location"> | ||
5058 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5059 | <context context-type="linenumber">38</context> | ||
5060 | </context-group> | ||
5061 | </trans-unit><trans-unit id="4723526509708949088" datatype="html"> | ||
5062 | <source>About video channel</source><target state="new">About video channel</target> | ||
5063 | <context-group purpose="location"> | ||
5064 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5065 | <context context-type="linenumber">47</context> | ||
5066 | </context-group> | ||
5067 | </trans-unit> | ||
4936 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97" datatype="html"> | 5068 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97" datatype="html"> |
4937 | <source>Request email for account verification</source> | 5069 | <source>Request email for account verification</source> |
4938 | <target state="translated">Iarr post-d airson dearbhadh a’ chunntais</target> | 5070 | <target state="translated">Iarr post-d airson dearbhadh a’ chunntais</target> |
@@ -5051,7 +5183,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5051 | <source>Stats</source> | 5183 | <source>Stats</source> |
5052 | <target state="translated">Stadastaireachd</target> | 5184 | <target state="translated">Stadastaireachd</target> |
5053 | 5185 | ||
5054 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 5186 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
5055 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc" datatype="html"> | 5187 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc" datatype="html"> |
5056 | <source>Joined <x id="INTERPOLATION"/></source> | 5188 | <source>Joined <x id="INTERPOLATION"/></source> |
5057 | <target state="translated">Air ballrachd fhaighinn | 5189 | <target state="translated">Air ballrachd fhaighinn |
@@ -5490,7 +5622,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5490 | <source>This instance does not have instances followings.</source> | 5622 | <source>This instance does not have instances followings.</source> |
5491 | <target state="new">This instance does not have instances followings.</target> | 5623 | <target state="new">This instance does not have instances followings.</target> |
5492 | 5624 | ||
5493 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit> | 5625 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit><trans-unit id="4195286790385468087" datatype="html"> |
5626 | <source>About this instance</source><target state="new">About this instance</target> | ||
5627 | <context-group purpose="location"> | ||
5628 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5629 | <context context-type="linenumber">26</context> | ||
5630 | </context-group> | ||
5631 | </trans-unit><trans-unit id="8773846522957677259" datatype="html"> | ||
5632 | <source>About PeerTube</source><target state="new">About PeerTube</target> | ||
5633 | <context-group purpose="location"> | ||
5634 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5635 | <context context-type="linenumber">38</context> | ||
5636 | </context-group> | ||
5637 | </trans-unit><trans-unit id="5782088737558028158" datatype="html"> | ||
5638 | <source>About follows</source><target state="new">About follows</target> | ||
5639 | <context-group purpose="location"> | ||
5640 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5641 | <context context-type="linenumber">47</context> | ||
5642 | </context-group> | ||
5643 | </trans-unit> | ||
5494 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> | 5644 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> |
5495 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> | 5645 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> |
5496 | <target state="new">Developed with ❤ by | 5646 | <target state="new">Developed with ❤ by |
@@ -5660,6 +5810,12 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5660 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 5810 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> |
5661 | <context context-type="linenumber">1</context> | 5811 | <context context-type="linenumber">1</context> |
5662 | </context-group> | 5812 | </context-group> |
5813 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
5814 | <source>Get help</source><target state="new">Get help</target> | ||
5815 | <context-group purpose="location"> | ||
5816 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | ||
5817 | <context context-type="linenumber">16</context> | ||
5818 | </context-group> | ||
5663 | </trans-unit> | 5819 | </trans-unit> |
5664 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1" datatype="html"> | 5820 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1" datatype="html"> |
5665 | <source>Create my account</source> | 5821 | <source>Create my account</source> |
@@ -5788,7 +5944,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5788 | 5944 | ||
5789 | </target> | 5945 | </target> |
5790 | 5946 | ||
5791 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 5947 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit><trans-unit id="3301086086650990787" datatype="html"> |
5948 | <source>Register</source><target state="new">Register</target> | ||
5949 | <context-group purpose="location"> | ||
5950 | <context context-type="sourcefile">../app/+signup/+register/register-routing.module.ts</context> | ||
5951 | <context context-type="linenumber">14</context> | ||
5952 | </context-group> | ||
5953 | </trans-unit> | ||
5792 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> | 5954 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> |
5793 | <source>Sorry, we couldn't find the page you were looking for.</source> | 5955 | <source>Sorry, we couldn't find the page you were looking for.</source> |
5794 | <target state="new"> | 5956 | <target state="new"> |
@@ -5811,7 +5973,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5811 | <target state="new">No description</target> | 5973 | <target state="new">No description</target> |
5812 | 5974 | ||
5813 | 5975 | ||
5814 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit> | 5976 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit><trans-unit id="819067926858619041" datatype="html"> |
5977 | <source>Account videos</source><target state="new">Account videos</target> | ||
5978 | <context-group purpose="location"> | ||
5979 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
5980 | <context context-type="linenumber">29</context> | ||
5981 | </context-group> | ||
5982 | </trans-unit><trans-unit id="6823616469362610020" datatype="html"> | ||
5983 | <source>Account video channels</source><target state="new">Account video channels</target> | ||
5984 | <context-group purpose="location"> | ||
5985 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
5986 | <context context-type="linenumber">42</context> | ||
5987 | </context-group> | ||
5988 | </trans-unit><trans-unit id="7678273613459026643" datatype="html"> | ||
5989 | <source>About account</source><target state="new">About account</target> | ||
5990 | <context-group purpose="location"> | ||
5991 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
5992 | <context context-type="linenumber">51</context> | ||
5993 | </context-group> | ||
5994 | </trans-unit> | ||
5815 | <trans-unit id="3755500631176893489" datatype="html"> | 5995 | <trans-unit id="3755500631176893489" datatype="html"> |
5816 | <source>Published <x id="PH"/> videos</source> | 5996 | <source>Published <x id="PH"/> videos</source> |
5817 | <target state="new">Published | 5997 | <target state="new">Published |
@@ -5928,7 +6108,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5928 | <source>Configuration updated.</source> | 6108 | <source>Configuration updated.</source> |
5929 | <target state="new">Configuration updated.</target> | 6109 | <target state="new">Configuration updated.</target> |
5930 | 6110 | ||
5931 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit> | 6111 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit><trans-unit id="6284468333579755406" datatype="html"> |
6112 | <source>Edit custom configuration</source><target state="new">Edit custom configuration</target> | ||
6113 | <context-group purpose="location"> | ||
6114 | <context context-type="sourcefile">../app/+admin/config/config.routes.ts</context> | ||
6115 | <context context-type="linenumber">26</context> | ||
6116 | </context-group> | ||
6117 | </trans-unit> | ||
5932 | 6118 | ||
5933 | 6119 | ||
5934 | <trans-unit id="6549061957433635758" datatype="html"> | 6120 | <trans-unit id="6549061957433635758" datatype="html"> |
@@ -6407,7 +6593,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6407 | <x id="PH"/> updated. | 6593 | <x id="PH"/> updated. |
6408 | </target> | 6594 | </target> |
6409 | 6595 | ||
6410 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 6596 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit><trans-unit id="3229595422546554334" datatype="html"> |
6597 | <source>Jobs</source><target state="new">Jobs</target> | ||
6598 | <context-group purpose="location"> | ||
6599 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6600 | <context context-type="linenumber">26</context> | ||
6601 | </context-group> | ||
6602 | </trans-unit><trans-unit id="4804785061014590286" datatype="html"> | ||
6603 | <source>Logs</source><target state="new">Logs</target> | ||
6604 | <context-group purpose="location"> | ||
6605 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6606 | <context context-type="linenumber">37</context> | ||
6607 | </context-group> | ||
6608 | </trans-unit> | ||
6411 | <trans-unit id="3150704904301058778" datatype="html"> | 6609 | <trans-unit id="3150704904301058778" datatype="html"> |
6412 | <source>The plugin index is not available. Please retry later.</source> | 6610 | <source>The plugin index is not available. Please retry later.</source> |
6413 | <target state="new">The plugin index is not available. Please retry later.</target> | 6611 | <target state="new">The plugin index is not available. Please retry later.</target> |
@@ -6521,6 +6719,18 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6521 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> | 6719 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> |
6522 | <context context-type="linenumber">86</context> | 6720 | <context context-type="linenumber">86</context> |
6523 | </context-group> | 6721 | </context-group> |
6722 | </trans-unit><trans-unit id="2903648076838460070" datatype="html"> | ||
6723 | <source>Videos blocked</source><target state="new">Videos blocked</target> | ||
6724 | <context-group purpose="location"> | ||
6725 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6726 | <context context-type="linenumber">67</context> | ||
6727 | </context-group> | ||
6728 | </trans-unit><trans-unit id="7805059636749367886" datatype="html"> | ||
6729 | <source>Muted instances</source><target state="new">Muted instances</target> | ||
6730 | <context-group purpose="location"> | ||
6731 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6732 | <context context-type="linenumber">89</context> | ||
6733 | </context-group> | ||
6524 | </trans-unit> | 6734 | </trans-unit> |
6525 | <trans-unit id="5974506725502681113" datatype="html"> | 6735 | <trans-unit id="5974506725502681113" datatype="html"> |
6526 | <source>Password changed for user <x id="PH"/>.</source> | 6736 | <source>Password changed for user <x id="PH"/>.</source> |
@@ -6533,7 +6743,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6533 | <source>Update user password</source> | 6743 | <source>Update user password</source> |
6534 | <target state="new">Update user password</target> | 6744 | <target state="new">Update user password</target> |
6535 | 6745 | ||
6536 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit> | 6746 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit><trans-unit id="177544274549739411" datatype="html"> |
6747 | <source>Following list</source><target state="new">Following list</target> | ||
6748 | <context-group purpose="location"> | ||
6749 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6750 | <context context-type="linenumber">28</context> | ||
6751 | </context-group> | ||
6752 | </trans-unit><trans-unit id="8092429110007204784" datatype="html"> | ||
6753 | <source>Followers list</source><target state="new">Followers list</target> | ||
6754 | <context-group purpose="location"> | ||
6755 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6756 | <context context-type="linenumber">37</context> | ||
6757 | </context-group> | ||
6758 | </trans-unit> | ||
6537 | <trans-unit id="780323526182667308" datatype="html"> | 6759 | <trans-unit id="780323526182667308" datatype="html"> |
6538 | <source>User <x id="PH"/> updated.</source> | 6760 | <source>User <x id="PH"/> updated.</source> |
6539 | <target state="new">User | 6761 | <target state="new">User |
@@ -6552,7 +6774,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6552 | <x id="PH"/>. | 6774 | <x id="PH"/>. |
6553 | </target> | 6775 | </target> |
6554 | 6776 | ||
6555 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="8564701209009684429" datatype="html"> | 6777 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="7483807629538115183" datatype="html"> |
6778 | <source>Users list</source><target state="new">Users list</target> | ||
6779 | <context-group purpose="location"> | ||
6780 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6781 | <context context-type="linenumber">27</context> | ||
6782 | </context-group> | ||
6783 | </trans-unit><trans-unit id="1525334987774465166" datatype="html"> | ||
6784 | <source>Create a user</source><target state="new">Create a user</target> | ||
6785 | <context-group purpose="location"> | ||
6786 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6787 | <context context-type="linenumber">36</context> | ||
6788 | </context-group> | ||
6789 | </trans-unit><trans-unit id="5552039423287890133" datatype="html"> | ||
6790 | <source>Update a user</source><target state="new">Update a user</target> | ||
6791 | <context-group purpose="location"> | ||
6792 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6793 | <context context-type="linenumber">48</context> | ||
6794 | </context-group> | ||
6795 | </trans-unit><trans-unit id="8564701209009684429" datatype="html"> | ||
6556 | <source>Federation</source><target state="new">Federation</target> | 6796 | <source>Federation</source><target state="new">Federation</target> |
6557 | <context-group purpose="location"> | 6797 | <context-group purpose="location"> |
6558 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> | 6798 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> |
@@ -6906,7 +7146,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6906 | <source>Views for the day</source> | 7146 | <source>Views for the day</source> |
6907 | <target state="new">Views for the day</target> | 7147 | <target state="new">Views for the day</target> |
6908 | 7148 | ||
6909 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit> | 7149 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit><trans-unit id="4707367314920217630" datatype="html"> |
7150 | <source>Create new video channel</source><target state="new">Create new video channel</target> | ||
7151 | <context-group purpose="location"> | ||
7152 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7153 | <context context-type="linenumber">22</context> | ||
7154 | </context-group> | ||
7155 | </trans-unit><trans-unit id="6059091237492573541" datatype="html"> | ||
7156 | <source>Update video channel</source><target state="new">Update video channel</target> | ||
7157 | <context-group purpose="location"> | ||
7158 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7159 | <context context-type="linenumber">31</context> | ||
7160 | </context-group> | ||
7161 | </trans-unit><trans-unit id="6595008830732269870" datatype="html"> | ||
7162 | <source>Not found</source><target state="new">Not found</target> | ||
7163 | <context-group purpose="location"> | ||
7164 | <context context-type="sourcefile">../app/+page-not-found/page-not-found-routing.module.ts</context> | ||
7165 | <context context-type="linenumber">13</context> | ||
7166 | </context-group> | ||
7167 | </trans-unit> | ||
6910 | <trans-unit id="5032453707232754344" datatype="html"> | 7168 | <trans-unit id="5032453707232754344" datatype="html"> |
6911 | <source>Playlist <x id="PH"/> created.</source> | 7169 | <source>Playlist <x id="PH"/> created.</source> |
6912 | <target state="new">Playlist | 7170 | <target state="new">Playlist |
@@ -6924,7 +7182,31 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6924 | <source>Update playlist</source> | 7182 | <source>Update playlist</source> |
6925 | <target state="new">Update playlist</target> | 7183 | <target state="new">Update playlist</target> |
6926 | 7184 | ||
6927 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-video-playlists/my-account-video-playlist-elements.component.ts</context><context context-type="linenumber">48</context></context-group></trans-unit> | 7185 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">82</context></context-group></trans-unit><trans-unit id="3410331549417637431" datatype="html"> |
7186 | <source>Account video imports</source><target state="new">Account video imports</target> | ||
7187 | <context-group purpose="location"> | ||
7188 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7189 | <context context-type="linenumber">105</context> | ||
7190 | </context-group> | ||
7191 | </trans-unit><trans-unit id="4434998055872154420" datatype="html"> | ||
7192 | <source>Account subscriptions</source><target state="new">Account subscriptions</target> | ||
7193 | <context-group purpose="location"> | ||
7194 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7195 | <context context-type="linenumber">114</context> | ||
7196 | </context-group> | ||
7197 | </trans-unit><trans-unit id="6019411775996586321" datatype="html"> | ||
7198 | <source>Videos history</source><target state="new">Videos history</target> | ||
7199 | <context-group purpose="location"> | ||
7200 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7201 | <context context-type="linenumber">150</context> | ||
7202 | </context-group> | ||
7203 | </trans-unit><trans-unit id="5851560788527570644" datatype="html"> | ||
7204 | <source>Notifications</source><target state="new">Notifications</target> | ||
7205 | <context-group purpose="location"> | ||
7206 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7207 | <context context-type="linenumber">163</context> | ||
7208 | </context-group> | ||
7209 | </trans-unit> | ||
6928 | <trans-unit id="104404386496394770" datatype="html"> | 7210 | <trans-unit id="104404386496394770" datatype="html"> |
6929 | <source>Delete playlist</source> | 7211 | <source>Delete playlist</source> |
6930 | <target state="new">Delete playlist</target> | 7212 | <target state="new">Delete playlist</target> |
@@ -7078,7 +7360,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7078 | <x id="PH"/>. | 7360 | <x id="PH"/>. |
7079 | </target> | 7361 | </target> |
7080 | 7362 | ||
7081 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit> | 7363 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit><trans-unit id="8231550792139699065" datatype="html"> |
7364 | <source>Verify account email</source><target state="new">Verify account email</target> | ||
7365 | <context-group purpose="location"> | ||
7366 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7367 | <context context-type="linenumber">17</context> | ||
7368 | </context-group> | ||
7369 | </trans-unit><trans-unit id="4997281272800290390" datatype="html"> | ||
7370 | <source>Verify account ask send email</source><target state="new">Verify account ask send email</target> | ||
7371 | <context-group purpose="location"> | ||
7372 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7373 | <context context-type="linenumber">26</context> | ||
7374 | </context-group> | ||
7375 | </trans-unit> | ||
7082 | <trans-unit id="4180693983967989981" datatype="html"> | 7376 | <trans-unit id="4180693983967989981" datatype="html"> |
7083 | <source>Unable to find user id or verification string.</source> | 7377 | <source>Unable to find user id or verification string.</source> |
7084 | <target state="new">Unable to find user id or verification string.</target> | 7378 | <target state="new">Unable to find user id or verification string.</target> |
@@ -7203,27 +7497,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7203 | <source>any language</source> | 7497 | <source>any language</source> |
7204 | <target state="new">any language</target> | 7498 | <target state="new">any language</target> |
7205 | 7499 | ||
7206 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">202</context></context-group></trans-unit> | 7500 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">229</context></context-group></trans-unit> |
7207 | <trans-unit id="5633144232269377096" datatype="html"> | 7501 | <trans-unit id="5633144232269377096" datatype="html"> |
7208 | <source>hide</source> | 7502 | <source>hide</source> |
7209 | <target state="new">hide</target> | 7503 | <target state="new">hide</target> |
7210 | 7504 | ||
7211 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">118</context></context-group></trans-unit> | 7505 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> |
7212 | <trans-unit id="8603861867909474404" datatype="html"> | 7506 | <trans-unit id="8603861867909474404" datatype="html"> |
7213 | <source>blur</source> | 7507 | <source>blur</source> |
7214 | <target state="new">blur</target> | 7508 | <target state="new">blur</target> |
7215 | 7509 | ||
7216 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> | 7510 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> |
7217 | <trans-unit id="4534458451100881847" datatype="html"> | 7511 | <trans-unit id="4534458451100881847" datatype="html"> |
7218 | <source>display</source> | 7512 | <source>display</source> |
7219 | <target state="new">display</target> | 7513 | <target state="new">display</target> |
7220 | 7514 | ||
7221 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> | 7515 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">127</context></context-group></trans-unit> |
7222 | <trans-unit id="4467323362722952678" datatype="html"> | 7516 | <trans-unit id="4467323362722952678" datatype="html"> |
7223 | <source>Unknown</source> | 7517 | <source>Unknown</source> |
7224 | <target state="new">Unknown</target> | 7518 | <target state="new">Unknown</target> |
7225 | 7519 | ||
7226 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">190</context></context-group></trans-unit> | 7520 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">193</context></context-group></trans-unit> |
7227 | <trans-unit id="8781423666414310853" datatype="html"> | 7521 | <trans-unit id="8781423666414310853" datatype="html"> |
7228 | <source>Your password has been successfully reset!</source> | 7522 | <source>Your password has been successfully reset!</source> |
7229 | <target state="new">Your password has been successfully reset!</target> | 7523 | <target state="new">Your password has been successfully reset!</target> |
@@ -8341,27 +8635,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8341 | <source>Emphasis</source> | 8635 | <source>Emphasis</source> |
8342 | <target state="new">Emphasis</target> | 8636 | <target state="new">Emphasis</target> |
8343 | 8637 | ||
8344 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">77</context></context-group></trans-unit> | 8638 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> |
8345 | <trans-unit id="7565716024468232322" datatype="html"> | 8639 | <trans-unit id="7565716024468232322" datatype="html"> |
8346 | <source>Links</source> | 8640 | <source>Links</source> |
8347 | <target state="new">Links</target> | 8641 | <target state="new">Links</target> |
8348 | 8642 | ||
8349 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">78</context></context-group></trans-unit> | 8643 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> |
8350 | <trans-unit id="7838476952710404110" datatype="html"> | 8644 | <trans-unit id="7838476952710404110" datatype="html"> |
8351 | <source>New lines</source> | 8645 | <source>New lines</source> |
8352 | <target state="new">New lines</target> | 8646 | <target state="new">New lines</target> |
8353 | 8647 | ||
8354 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 8648 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">83</context></context-group></trans-unit> |
8355 | <trans-unit id="8756167649220050929" datatype="html"> | 8649 | <trans-unit id="8756167649220050929" datatype="html"> |
8356 | <source>Lists</source> | 8650 | <source>Lists</source> |
8357 | <target state="new">Lists</target> | 8651 | <target state="new">Lists</target> |
8358 | 8652 | ||
8359 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">80</context></context-group></trans-unit> | 8653 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">84</context></context-group></trans-unit> |
8360 | <trans-unit id="414887388288176527" datatype="html"> | 8654 | <trans-unit id="414887388288176527" datatype="html"> |
8361 | <source>Images</source> | 8655 | <source>Images</source> |
8362 | <target state="new">Images</target> | 8656 | <target state="new">Images</target> |
8363 | 8657 | ||
8364 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> | 8658 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">85</context></context-group></trans-unit> |
8365 | <trans-unit id="5708680277917691451" datatype="html"> | 8659 | <trans-unit id="5708680277917691451" datatype="html"> |
8366 | <source> | 8660 | <source> |
8367 | <x id="PH"/> users banned. | 8661 | <x id="PH"/> users banned. |
@@ -8757,7 +9051,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8757 | <source>Moderator</source> | 9051 | <source>Moderator</source> |
8758 | <target state="new">Moderator</target> | 9052 | <target state="new">Moderator</target> |
8759 | 9053 | ||
8760 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">386</context></context-group></trans-unit> | 9054 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">384</context></context-group></trans-unit> |
8761 | <trans-unit id="3723085768598852106" datatype="html"> | 9055 | <trans-unit id="3723085768598852106" datatype="html"> |
8762 | <source>Video removed from | 9056 | <source>Video removed from |
8763 | <x id="PH"/> | 9057 | <x id="PH"/> |
@@ -8830,7 +9124,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8830 | <source>Do you really want to delete this comment?</source> | 9124 | <source>Do you really want to delete this comment?</source> |
8831 | <target state="new">Do you really want to delete this comment?</target> | 9125 | <target state="new">Do you really want to delete this comment?</target> |
8832 | 9126 | ||
8833 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">434</context></context-group></trans-unit> | 9127 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">166</context></context-group></trans-unit> |
8834 | <trans-unit id="7837272126865175984" datatype="html"> | 9128 | <trans-unit id="7837272126865175984" datatype="html"> |
8835 | <source>Comment deleted.</source> | 9129 | <source>Comment deleted.</source> |
8836 | <target state="new">Comment deleted.</target> | 9130 | <target state="new">Comment deleted.</target> |
@@ -8942,9 +9236,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8942 | 9236 | ||
8943 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> | 9237 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> |
8944 | <source>Report</source><target state="new">Report</target> | 9238 | <source>Report</source><target state="new">Report</target> |
9239 | |||
9240 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="4814285799071780083" datatype="html"> | ||
9241 | <source>Remove</source><target state="new">Remove</target> | ||
8945 | <context-group purpose="location"> | 9242 | <context-group purpose="location"> |
8946 | <context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> | 9243 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> |
8947 | <context context-type="linenumber">286</context> | 9244 | <context context-type="linenumber">179</context> |
9245 | </context-group> | ||
9246 | </trans-unit><trans-unit id="6871668720687277843" datatype="html"> | ||
9247 | <source>Remove & re-draft</source><target state="new">Remove & re-draft</target> | ||
9248 | <context-group purpose="location"> | ||
9249 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> | ||
9250 | <context context-type="linenumber">187</context> | ||
8948 | </context-group> | 9251 | </context-group> |
8949 | </trans-unit> | 9252 | </trans-unit> |
8950 | <trans-unit id="4903651219400691248" datatype="html"> | 9253 | <trans-unit id="4903651219400691248" datatype="html"> |
@@ -9048,22 +9351,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9048 | <source>Only I can see this video</source> | 9351 | <source>Only I can see this video</source> |
9049 | <target state="new">Only I can see this video</target> | 9352 | <target state="new">Only I can see this video</target> |
9050 | 9353 | ||
9051 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">340</context></context-group></trans-unit> | 9354 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">341</context></context-group></trans-unit> |
9052 | <trans-unit id="6767380569816110388" datatype="html"> | 9355 | <trans-unit id="6767380569816110388" datatype="html"> |
9053 | <source>Only shareable via a private link</source> | 9356 | <source>Only shareable via a private link</source> |
9054 | <target state="new">Only shareable via a private link</target> | 9357 | <target state="new">Only shareable via a private link</target> |
9055 | 9358 | ||
9056 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">344</context></context-group></trans-unit> | 9359 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">345</context></context-group></trans-unit> |
9057 | <trans-unit id="6828965264297239528" datatype="html"> | 9360 | <trans-unit id="6828965264297239528" datatype="html"> |
9058 | <source>Anyone can see this video</source> | 9361 | <source>Anyone can see this video</source> |
9059 | <target state="new">Anyone can see this video</target> | 9362 | <target state="new">Anyone can see this video</target> |
9060 | 9363 | ||
9061 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">348</context></context-group></trans-unit> | 9364 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">349</context></context-group></trans-unit> |
9062 | <trans-unit id="1425933035739773115" datatype="html"> | 9365 | <trans-unit id="1425933035739773115" datatype="html"> |
9063 | <source>Only users of this instance can see this video</source> | 9366 | <source>Only users of this instance can see this video</source> |
9064 | <target state="new">Only users of this instance can see this video</target> | 9367 | <target state="new">Only users of this instance can see this video</target> |
9065 | 9368 | ||
9066 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">352</context></context-group></trans-unit> | 9369 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">353</context></context-group></trans-unit> |
9067 | <trans-unit id="5210096066382592800" datatype="html"> | 9370 | <trans-unit id="5210096066382592800" datatype="html"> |
9068 | <source>Video to import updated.</source> | 9371 | <source>Video to import updated.</source> |
9069 | <target state="new">Video to import updated.</target> | 9372 | <target state="new">Video to import updated.</target> |
@@ -9143,16 +9446,25 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9143 | <target state="new">Report comment</target> | 9446 | <target state="new">Report comment</target> |
9144 | 9447 | ||
9145 | 9448 | ||
9146 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 9449 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/report-modals/comment-report.component.ts</context><context context-type="linenumber">51</context></context-group></trans-unit> |
9147 | <trans-unit id="3691787517663044217" datatype="html"> | 9450 | <trans-unit id="3691787517663044217" datatype="html"> |
9148 | <source> The deletion will be sent to remote instances so they can reflect the change.</source> | 9451 | <source> The deletion will be sent to remote instances so they can reflect the change.</source> |
9149 | <target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> | 9452 | <target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> |
9150 | 9453 | ||
9151 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">163</context></context-group></trans-unit><trans-unit id="7321800851971795962" datatype="html"> | 9454 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">169</context></context-group></trans-unit><trans-unit id="7321800851971795962" datatype="html"> |
9152 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source><target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> | 9455 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source><target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> |
9456 | |||
9457 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="5964038603724691720" datatype="html"> | ||
9458 | <source>Delete and re-draft</source><target state="new">Delete and re-draft</target> | ||
9153 | <context-group purpose="location"> | 9459 | <context-group purpose="location"> |
9154 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | 9460 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> |
9155 | <context context-type="linenumber">165</context> | 9461 | <context context-type="linenumber">197</context> |
9462 | </context-group> | ||
9463 | </trans-unit><trans-unit id="7163633882758007711" datatype="html"> | ||
9464 | <source>Do you really want to delete and re-draft this comment?</source><target state="new">Do you really want to delete and re-draft this comment?</target> | ||
9465 | <context-group purpose="location"> | ||
9466 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | ||
9467 | <context context-type="linenumber">197</context> | ||
9156 | </context-group> | 9468 | </context-group> |
9157 | </trans-unit> | 9469 | </trans-unit> |
9158 | 9470 | ||
@@ -9317,6 +9629,36 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9317 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> | 9629 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> |
9318 | <context context-type="linenumber">36</context> | 9630 | <context context-type="linenumber">36</context> |
9319 | </context-group> | 9631 | </context-group> |
9632 | </trans-unit><trans-unit id="4668975178372693951" datatype="html"> | ||
9633 | <source>Discover videos</source><target state="new">Discover videos</target> | ||
9634 | <context-group purpose="location"> | ||
9635 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9636 | <context context-type="linenumber">23</context> | ||
9637 | </context-group> | ||
9638 | </trans-unit><trans-unit id="8067135025051844577" datatype="html"> | ||
9639 | <source>Trending videos</source><target state="new">Trending videos</target> | ||
9640 | <context-group purpose="location"> | ||
9641 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9642 | <context context-type="linenumber">32</context> | ||
9643 | </context-group> | ||
9644 | </trans-unit><trans-unit id="664221386829541948" datatype="html"> | ||
9645 | <source>Recently added videos</source><target state="new">Recently added videos</target> | ||
9646 | <context-group purpose="location"> | ||
9647 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9648 | <context context-type="linenumber">58</context> | ||
9649 | </context-group> | ||
9650 | </trans-unit><trans-unit id="8212906256415538361" datatype="html"> | ||
9651 | <source>Upload a video</source><target state="new">Upload a video</target> | ||
9652 | <context-group purpose="location"> | ||
9653 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9654 | <context context-type="linenumber">97</context> | ||
9655 | </context-group> | ||
9656 | </trans-unit><trans-unit id="7590784934397800835" datatype="html"> | ||
9657 | <source>Edit a video</source><target state="new">Edit a video</target> | ||
9658 | <context-group purpose="location"> | ||
9659 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9660 | <context context-type="linenumber">106</context> | ||
9661 | </context-group> | ||
9320 | </trans-unit> | 9662 | </trans-unit> |
9321 | </body> | 9663 | </body> |
9322 | </file> | 9664 | </file> |
diff --git a/client/src/locale/angular.gl-ES.xlf b/client/src/locale/angular.gl-ES.xlf index 2e721ad01..aac637b49 100644 --- a/client/src/locale/angular.gl-ES.xlf +++ b/client/src/locale/angular.gl-ES.xlf | |||
@@ -295,7 +295,7 @@ | |||
295 | <target>Opcións</target> | 295 | <target>Opcións</target> |
296 | 296 | ||
297 | 297 | ||
298 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 298 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">48</context></context-group></trans-unit> |
299 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d"> | 299 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d"> |
300 | <source>Start at</source> | 300 | <source>Start at</source> |
301 | <target>Iniciar en</target> | 301 | <target>Iniciar en</target> |
@@ -427,7 +427,7 @@ | |||
427 | Cancelar | 427 | Cancelar |
428 | </target> | 428 | </target> |
429 | 429 | ||
430 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> | 430 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit> |
431 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd"> | 431 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd"> |
432 | <source>Download</source> | 432 | <source>Download</source> |
433 | <target>Descargar</target> | 433 | <target>Descargar</target> |
@@ -546,7 +546,7 @@ | |||
546 | 546 | ||
547 | 547 | ||
548 | 548 | ||
549 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 549 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
550 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc"> | 550 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc"> |
551 | <source>Edit starts/stops at</source> | 551 | <source>Edit starts/stops at</source> |
552 | <target>A edición inicia/para en</target> | 552 | <target>A edición inicia/para en</target> |
@@ -586,7 +586,7 @@ | |||
586 | 586 | ||
587 | 587 | ||
588 | 588 | ||
589 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> | 589 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
590 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> | 590 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> |
591 | <source>Edit</source> | 591 | <source>Edit</source> |
592 | <target>Editar</target> | 592 | <target>Editar</target> |
@@ -611,17 +611,10 @@ | |||
611 | <target>Vista previa completa</target> | 611 | <target>Vista previa completa</target> |
612 | 612 | ||
613 | <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></trans-unit> | 613 | <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></trans-unit> |
614 | <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f"> | 614 | <trans-unit id="8644431249513874405" datatype="html"> |
615 | <source>Get help</source> | ||
616 | <target>Obter axuda</target> | ||
617 | |||
618 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit><trans-unit id="8644431249513874405" datatype="html"> | ||
619 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> | 615 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> |
620 | <context-group purpose="location"> | 616 | |
621 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 617 | <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></trans-unit> |
622 | <context context-type="linenumber">71</context> | ||
623 | </context-group> | ||
624 | </trans-unit> | ||
625 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> | 618 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> |
626 | <source>Recommended</source> | 619 | <source>Recommended</source> |
627 | <target state="translated">Recomendado</target> | 620 | <target state="translated">Recomendado</target> |
@@ -661,7 +654,7 @@ | |||
661 | <source>PROFILE SETTINGS</source> | 654 | <source>PROFILE SETTINGS</source> |
662 | <target state="new">PROFILE SETTINGS</target> | 655 | <target state="new">PROFILE SETTINGS</target> |
663 | 656 | ||
664 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 657 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">12</context></context-group></trans-unit> |
665 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3"> | 658 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3"> |
666 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> | 659 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> |
667 | <target> | 660 | <target> |
@@ -827,11 +820,8 @@ | |||
827 | 820 | ||
828 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> | 821 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> |
829 | <source>User</source><target state="new">User</target> | 822 | <source>User</source><target state="new">User</target> |
830 | <context-group purpose="location"> | 823 | |
831 | <context context-type="sourcefile">../app/core/users/user.service.ts</context> | 824 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit> |
832 | <context context-type="linenumber">384</context> | ||
833 | </context-group> | ||
834 | </trans-unit> | ||
835 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0"> | 825 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0"> |
836 | <source>Ban</source> | 826 | <source>Ban</source> |
837 | <target>Vetar</target> | 827 | <target>Vetar</target> |
@@ -1291,89 +1281,89 @@ The link will expire within 1 hour.</target> | |||
1291 | <source>Account settings</source> | 1281 | <source>Account settings</source> |
1292 | <target state="new">Account settings</target> | 1282 | <target state="new">Account settings</target> |
1293 | 1283 | ||
1294 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 1284 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
1295 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> | 1285 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> |
1296 | <source>Channels settings</source> | 1286 | <source>Channels settings</source> |
1297 | <target state="new">Channels settings</target> | 1287 | <target state="new">Channels settings</target> |
1298 | 1288 | ||
1299 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 1289 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> |
1300 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> | 1290 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> |
1301 | <source>Interface:</source> | 1291 | <source>Interface:</source> |
1302 | <target state="new">Interface:</target> | 1292 | <target state="new">Interface:</target> |
1303 | 1293 | ||
1304 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 1294 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1305 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> | 1295 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> |
1306 | <source>Videos:</source> | 1296 | <source>Videos:</source> |
1307 | <target state="new">Videos:</target> | 1297 | <target state="new">Videos:</target> |
1308 | 1298 | ||
1309 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 1299 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> |
1310 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> | 1300 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> |
1311 | <source>Sensitive:</source> | 1301 | <source>Sensitive:</source> |
1312 | <target state="new">Sensitive:</target> | 1302 | <target state="new">Sensitive:</target> |
1313 | 1303 | ||
1314 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 1304 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">54</context></context-group></trans-unit> |
1315 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1305 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> |
1316 | <source>Interface: <x id="INTERPOLATION"/></source> | 1306 | <source>Interface: <x id="INTERPOLATION"/></source> |
1317 | <target state="new">Interface: | 1307 | <target state="new">Interface: |
1318 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> | 1308 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> |
1319 | </target> | 1309 | </target> |
1320 | 1310 | ||
1321 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">156</context></context-group></trans-unit> | 1311 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> |
1322 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1312 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1323 | <source>Help share videos</source> | 1313 | <source>Help share videos</source> |
1324 | <target state="new">Help share videos</target> | 1314 | <target state="new">Help share videos</target> |
1325 | 1315 | ||
1326 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> | 1316 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
1327 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> | 1317 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> |
1328 | <source>More account settings</source> | 1318 | <source>More account settings</source> |
1329 | <target state="new">More account settings</target> | 1319 | <target state="new">More account settings</target> |
1330 | 1320 | ||
1331 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> | 1321 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> |
1332 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> | 1322 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> |
1333 | <source>Keyboard shortcuts</source> | 1323 | <source>Keyboard shortcuts</source> |
1334 | <target state="new">Keyboard shortcuts</target> | 1324 | <target state="new">Keyboard shortcuts</target> |
1335 | 1325 | ||
1336 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 1326 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">72</context></context-group></trans-unit> |
1337 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> | 1327 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> |
1338 | <source>Help</source> | 1328 | <source>Help</source> |
1339 | <target state="new">Help</target> | 1329 | <target state="new">Help</target> |
1340 | 1330 | ||
1341 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1331 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1342 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> | 1332 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> |
1343 | <source>Get help using PeerTube</source> | 1333 | <source>Get help using PeerTube</source> |
1344 | <target state="new">Get help using PeerTube</target> | 1334 | <target state="new">Get help using PeerTube</target> |
1345 | 1335 | ||
1346 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">161</context></context-group></trans-unit> | 1336 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">167</context></context-group></trans-unit> |
1347 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> | 1337 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> |
1348 | <source>Shortcuts</source> | 1338 | <source>Shortcuts</source> |
1349 | <target state="new">Shortcuts</target> | 1339 | <target state="new">Shortcuts</target> |
1350 | 1340 | ||
1351 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1341 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1352 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> | 1342 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> |
1353 | <source>powered by PeerTube</source> | 1343 | <source>powered by PeerTube</source> |
1354 | <target state="new">powered by PeerTube</target> | 1344 | <target state="new">powered by PeerTube</target> |
1355 | 1345 | ||
1356 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | 1346 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">177</context></context-group></trans-unit> |
1357 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> | 1347 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> |
1358 | <source>powered by PeerTube - CopyLeft 2015-2020</source> | 1348 | <source>powered by PeerTube - CopyLeft 2015-2020</source> |
1359 | <target state="new">powered by PeerTube - CopyLeft 2015-2020</target> | 1349 | <target state="new">powered by PeerTube - CopyLeft 2015-2020</target> |
1360 | 1350 | ||
1361 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> | 1351 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">176</context></context-group></trans-unit> |
1362 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344"> | 1352 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344"> |
1363 | <source>Log out</source> | 1353 | <source>Log out</source> |
1364 | <target>Desconectar</target> | 1354 | <target>Desconectar</target> |
1365 | 1355 | ||
1366 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">70</context></context-group></trans-unit> | 1356 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit> |
1367 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> | 1357 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> |
1368 | <source>Create an account</source> | 1358 | <source>Create an account</source> |
1369 | <target>Crear unha conta</target> | 1359 | <target>Crear unha conta</target> |
1370 | 1360 | ||
1371 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">78</context></context-group></trans-unit> | 1361 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
1372 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> | 1362 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> |
1373 | <source>MY LIBRARY</source> | 1363 | <source>MY LIBRARY</source> |
1374 | <target state="new">MY LIBRARY</target> | 1364 | <target state="new">MY LIBRARY</target> |
1375 | 1365 | ||
1376 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 1366 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">88</context></context-group></trans-unit> |
1377 | <trans-unit id="6371572688505952303"> | 1367 | <trans-unit id="6371572688505952303"> |
1378 | <source>My library</source> | 1368 | <source>My library</source> |
1379 | <target>Biblioteca</target> | 1369 | <target>Biblioteca</target> |
@@ -1413,22 +1403,22 @@ The link will expire within 1 hour.</target> | |||
1413 | <source>Videos</source> | 1403 | <source>Videos</source> |
1414 | <target>Vídeos</target> | 1404 | <target>Vídeos</target> |
1415 | 1405 | ||
1416 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">86</context></context-group></trans-unit> | 1406 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">92</context></context-group></trans-unit> |
1417 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> | 1407 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> |
1418 | <source>Playlists</source> | 1408 | <source>Playlists</source> |
1419 | <target>Listas</target> | 1409 | <target>Listas</target> |
1420 | 1410 | ||
1421 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">91</context></context-group></trans-unit> | 1411 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">97</context></context-group></trans-unit> |
1422 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2"> | 1412 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2"> |
1423 | <source>Subscriptions</source> | 1413 | <source>Subscriptions</source> |
1424 | <target>Subscricións</target> | 1414 | <target>Subscricións</target> |
1425 | 1415 | ||
1426 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 1416 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">102</context></context-group></trans-unit> |
1427 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8"> | 1417 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8"> |
1428 | <source>History</source> | 1418 | <source>History</source> |
1429 | <target>Historial</target> | 1419 | <target>Historial</target> |
1430 | 1420 | ||
1431 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit> | 1421 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">107</context></context-group></trans-unit> |
1432 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> | 1422 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> |
1433 | <source>VIDEOS</source> | 1423 | <source>VIDEOS</source> |
1434 | <target state="new">VIDEOS</target> | 1424 | <target state="new">VIDEOS</target> |
@@ -1440,27 +1430,27 @@ The link will expire within 1 hour.</target> | |||
1440 | <target>Descubrir</target> | 1430 | <target>Descubrir</target> |
1441 | 1431 | ||
1442 | 1432 | ||
1443 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">111</context></context-group></trans-unit> | 1433 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">117</context></context-group></trans-unit> |
1444 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> | 1434 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> |
1445 | <source>Trending</source> | 1435 | <source>Trending</source> |
1446 | <target>En voga</target> | 1436 | <target>En voga</target> |
1447 | 1437 | ||
1448 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">116</context></context-group></trans-unit> | 1438 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">122</context></context-group></trans-unit> |
1449 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> | 1439 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> |
1450 | <source>Most liked</source> | 1440 | <source>Most liked</source> |
1451 | <target state="new">Most liked</target> | 1441 | <target state="new">Most liked</target> |
1452 | 1442 | ||
1453 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">121</context></context-group></trans-unit> | 1443 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">127</context></context-group></trans-unit> |
1454 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> | 1444 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> |
1455 | <source>Recently added</source> | 1445 | <source>Recently added</source> |
1456 | <target>Últimos engadidos</target> | 1446 | <target>Últimos engadidos</target> |
1457 | 1447 | ||
1458 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">126</context></context-group></trans-unit> | 1448 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">132</context></context-group></trans-unit> |
1459 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> | 1449 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> |
1460 | <source>Administration</source> | 1450 | <source>Administration</source> |
1461 | <target>Administración</target> | 1451 | <target>Administración</target> |
1462 | 1452 | ||
1463 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">140</context></context-group></trans-unit> | 1453 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">146</context></context-group></trans-unit> |
1464 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> | 1454 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> |
1465 | <source>About</source> | 1455 | <source>About</source> |
1466 | <target>Acerca de</target> | 1456 | <target>Acerca de</target> |
@@ -1471,7 +1461,7 @@ The link will expire within 1 hour.</target> | |||
1471 | <source>Contact</source> | 1461 | <source>Contact</source> |
1472 | <target state="new">Contact</target> | 1462 | <target state="new">Contact</target> |
1473 | 1463 | ||
1474 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">160</context></context-group></trans-unit> | 1464 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">166</context></context-group></trans-unit> |
1475 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771"> | 1465 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771"> |
1476 | <source>View your notifications</source> | 1466 | <source>View your notifications</source> |
1477 | <target>Ver as notificacións</target> | 1467 | <target>Ver as notificacións</target> |
@@ -1498,7 +1488,7 @@ The link will expire within 1 hour.</target> | |||
1498 | <source>See all your notifications</source> | 1488 | <source>See all your notifications</source> |
1499 | <target>Ver todas as notificacións</target> | 1489 | <target>Ver todas as notificacións</target> |
1500 | 1490 | ||
1501 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 1491 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">40</context></context-group></trans-unit> |
1502 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> | 1492 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> |
1503 | <source>Search videos, channels…</source> | 1493 | <source>Search videos, channels…</source> |
1504 | <target state="new">Search videos, channels…</target> | 1494 | <target state="new">Search videos, channels…</target> |
@@ -1832,22 +1822,22 @@ The link will expire within 1 hour.</target> | |||
1832 | <source>FAQ</source> | 1822 | <source>FAQ</source> |
1833 | <target state="new">FAQ</target> | 1823 | <target state="new">FAQ</target> |
1834 | 1824 | ||
1835 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">163</context></context-group></trans-unit> | 1825 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
1836 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> | 1826 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> |
1837 | <source>Frequently asked questions about PeerTube</source> | 1827 | <source>Frequently asked questions about PeerTube</source> |
1838 | <target state="new">Frequently asked questions about PeerTube</target> | 1828 | <target state="new">Frequently asked questions about PeerTube</target> |
1839 | 1829 | ||
1840 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1830 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1841 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> | 1831 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> |
1842 | <source>API</source> | 1832 | <source>API</source> |
1843 | <target state="new">API</target> | 1833 | <target state="new">API</target> |
1844 | 1834 | ||
1845 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1835 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1846 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> | 1836 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> |
1847 | <source>API documentation</source> | 1837 | <source>API documentation</source> |
1848 | <target state="new">API documentation</target> | 1838 | <target state="new">API documentation</target> |
1849 | 1839 | ||
1850 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 1840 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
1851 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5"> | 1841 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5"> |
1852 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> | 1842 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> |
1853 | <target>Programar publicación ( | 1843 | <target>Programar publicación ( |
@@ -2234,7 +2224,13 @@ The link will expire within 1 hour.</target> | |||
2234 | Less customization | 2224 | Less customization |
2235 | </target> | 2225 | </target> |
2236 | 2226 | ||
2237 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit> | 2227 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit><trans-unit id="2454050363478003966" datatype="html"> |
2228 | <source>Login</source><target state="new">Login</target> | ||
2229 | <context-group purpose="location"> | ||
2230 | <context context-type="sourcefile">../app/+login/login-routing.module.ts</context> | ||
2231 | <context context-type="linenumber">14</context> | ||
2232 | </context-group> | ||
2233 | </trans-unit> | ||
2238 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e" datatype="html"> | 2234 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e" datatype="html"> |
2239 | <source>Autoplay</source> | 2235 | <source>Autoplay</source> |
2240 | <target state="new">Autoplay</target> | 2236 | <target state="new">Autoplay</target> |
@@ -2499,7 +2495,7 @@ The link will expire within 1 hour.</target> | |||
2499 | <source>No comments.</source> | 2495 | <source>No comments.</source> |
2500 | <target state="new">No comments.</target> | 2496 | <target state="new">No comments.</target> |
2501 | 2497 | ||
2502 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 2498 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> |
2503 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> | 2499 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> |
2504 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> | 2500 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> |
2505 | <target state="new"> | 2501 | <target state="new"> |
@@ -2509,7 +2505,7 @@ The link will expire within 1 hour.</target> | |||
2509 | 2505 | ||
2510 | </target> | 2506 | </target> |
2511 | 2507 | ||
2512 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">79</context></context-group></trans-unit> | 2508 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
2513 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> | 2509 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> |
2514 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> | 2510 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> |
2515 | <target state="new"> | 2511 | <target state="new"> |
@@ -2518,50 +2514,116 @@ The link will expire within 1 hour.</target> | |||
2518 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> | 2514 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> |
2519 | </target> | 2515 | </target> |
2520 | 2516 | ||
2521 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 2517 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">87</context></context-group></trans-unit> |
2522 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> | 2518 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> |
2523 | <source>View <x id="INTERPOLATION"/> replies</source> | 2519 | <source>View <x id="INTERPOLATION"/> replies</source> |
2524 | <target state="new">View | 2520 | <target state="new">View |
2525 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies | 2521 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies |
2526 | </target> | 2522 | </target> |
2527 | 2523 | ||
2528 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">85</context></context-group></trans-unit> | 2524 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">90</context></context-group></trans-unit> |
2529 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828" datatype="html"> | 2525 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828" datatype="html"> |
2530 | <source>Comments are disabled.</source> | 2526 | <source>Comments are disabled.</source> |
2531 | <target state="new"> | 2527 | <target state="new"> |
2532 | Comments are disabled. | 2528 | Comments are disabled. |
2533 | </target> | 2529 | </target> |
2534 | 2530 | ||
2535 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit><trans-unit id="3691787517663044217" datatype="html"> | 2531 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit><trans-unit id="3691787517663044217" datatype="html"> |
2536 | <source> The deletion will be sent to remote instances so they can reflect the change.</source><target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> | 2532 | <source> The deletion will be sent to remote instances so they can reflect the change.</source><target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> |
2533 | |||
2534 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">169</context></context-group></trans-unit><trans-unit id="7321800851971795962" datatype="html"> | ||
2535 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source><target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> | ||
2536 | |||
2537 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="5964038603724691720" datatype="html"> | ||
2538 | <source>Delete and re-draft</source><target state="new">Delete and re-draft</target> | ||
2537 | <context-group purpose="location"> | 2539 | <context-group purpose="location"> |
2538 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | 2540 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> |
2539 | <context context-type="linenumber">163</context> | 2541 | <context context-type="linenumber">197</context> |
2540 | </context-group> | 2542 | </context-group> |
2541 | </trans-unit><trans-unit id="7321800851971795962" datatype="html"> | 2543 | </trans-unit><trans-unit id="7163633882758007711" datatype="html"> |
2542 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source><target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> | 2544 | <source>Do you really want to delete and re-draft this comment?</source><target state="new">Do you really want to delete and re-draft this comment?</target> |
2543 | <context-group purpose="location"> | 2545 | <context-group purpose="location"> |
2544 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | 2546 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> |
2545 | <context context-type="linenumber">165</context> | 2547 | <context context-type="linenumber">197</context> |
2546 | </context-group> | 2548 | </context-group> |
2547 | </trans-unit> | 2549 | </trans-unit> |
2548 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e" datatype="html"> | 2550 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e" datatype="html"> |
2549 | <source>Add comment...</source> | 2551 | <source>Add comment...</source> |
2550 | <target state="new">Add comment...</target> | 2552 | <target state="new">Add comment...</target> |
2551 | 2553 | ||
2552 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | 2554 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit><trans-unit id="4e5254dedf0c12ce7e7c2197384fceebe3b29a2b" datatype="html"> |
2553 | <trans-unit id="8956c0f4c6974289fc63f1ab6b54f5b32ed65eeb" datatype="html"> | 2555 | <source>Markdown compatible</source><target state="new">Markdown compatible</target> |
2554 | <source>Reply</source> | 2556 | <context-group purpose="location"> |
2555 | <target state="new"> | 2557 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> |
2556 | Reply | 2558 | <context context-type="linenumber">13</context> |
2557 | </target> | 2559 | </context-group> |
2558 | 2560 | </trans-unit><trans-unit id="4739ffad85f09defefdb6e51b45f43b2ef7c4388" datatype="html"> | |
2559 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 2561 | <source>Markdown compatible that supports:</source><target state="new">Markdown compatible that supports:</target> |
2562 | <context-group purpose="location"> | ||
2563 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2564 | <context context-type="linenumber">15</context> | ||
2565 | </context-group> | ||
2566 | </trans-unit><trans-unit id="9a53b17a021bb0677c156fd893461797fc497a10" datatype="html"> | ||
2567 | <source>Auto generated links</source><target state="new">Auto generated links</target> | ||
2568 | <context-group purpose="location"> | ||
2569 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2570 | <context context-type="linenumber">18</context> | ||
2571 | </context-group> | ||
2572 | </trans-unit><trans-unit id="664f99b8919d6dd2faa1c1f7c378aa86d1be5e8a" datatype="html"> | ||
2573 | <source>Break lines</source><target state="new">Break lines</target> | ||
2574 | <context-group purpose="location"> | ||
2575 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2576 | <context context-type="linenumber">19</context> | ||
2577 | </context-group> | ||
2578 | </trans-unit><trans-unit id="b15e7bec5c7833d2d9634946ccbed68967b1bee1" datatype="html"> | ||
2579 | <source>Lists</source><target state="new">Lists</target> | ||
2580 | <context-group purpose="location"> | ||
2581 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2582 | <context context-type="linenumber">20</context> | ||
2583 | </context-group> | ||
2584 | </trans-unit><trans-unit id="ab4426b60f13c00b61d6b714d390dc629f314980" datatype="html"> | ||
2585 | <source>Emphasis</source><target state="new">Emphasis</target> | ||
2586 | <context-group purpose="location"> | ||
2587 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2588 | <context context-type="linenumber">22</context> | ||
2589 | </context-group> | ||
2590 | </trans-unit><trans-unit id="4e13b179501d3d32721037e03b4c04acb9857c5f" datatype="html"> | ||
2591 | <source>bold</source><target state="new">bold</target> | ||
2592 | <context-group purpose="location"> | ||
2593 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2594 | <context context-type="linenumber">23</context> | ||
2595 | </context-group> | ||
2596 | </trans-unit><trans-unit id="3c12190421fbb2756e6bbead923df9ec5de8ede2" datatype="html"> | ||
2597 | <source>italic</source><target state="new">italic</target> | ||
2598 | <context-group purpose="location"> | ||
2599 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2600 | <context context-type="linenumber">23</context> | ||
2601 | </context-group> | ||
2602 | </trans-unit><trans-unit id="adb4bbdcb961b8aac8298d6cac554d9b25636b7a" datatype="html"> | ||
2603 | <source>Emoji shortcuts</source><target state="new">Emoji shortcuts</target> | ||
2604 | <context-group purpose="location"> | ||
2605 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2606 | <context context-type="linenumber">26</context> | ||
2607 | </context-group> | ||
2608 | </trans-unit><trans-unit id="b9809a21a8eb3c9db2a0282c5dd94bc221575c96" datatype="html"> | ||
2609 | <source>Emoji markup</source><target state="new">Emoji markup</target> | ||
2610 | <context-group purpose="location"> | ||
2611 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2612 | <context context-type="linenumber">30</context> | ||
2613 | </context-group> | ||
2614 | </trans-unit><trans-unit id="f37feb427aaa551edd1f22616be6464bc0d492de" datatype="html"> | ||
2615 | <source>See complete list</source><target state="new">See complete list</target> | ||
2616 | <context-group purpose="location"> | ||
2617 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2618 | <context context-type="linenumber">32</context> | ||
2619 | </context-group> | ||
2620 | </trans-unit> | ||
2621 | |||
2560 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135" datatype="html"> | 2622 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135" datatype="html"> |
2561 | <source>You are one step away from commenting</source> | 2623 | <source>You are one step away from commenting</source> |
2562 | <target state="new">You are one step away from commenting</target> | 2624 | <target state="new">You are one step away from commenting</target> |
2563 | 2625 | ||
2564 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 2626 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
2565 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> | 2627 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> |
2566 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> | 2628 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> |
2567 | <target state="new"> | 2629 | <target state="new"> |
@@ -2570,19 +2632,37 @@ The link will expire within 1 hour.</target> | |||
2570 | from within the software's interface. | 2632 | from within the software's interface. |
2571 | </target> | 2633 | </target> |
2572 | 2634 | ||
2573 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 2635 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
2574 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb" datatype="html"> | 2636 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb" datatype="html"> |
2575 | <source>If you have an account on Mastodon or Pleroma, you can open it directly in their interface:</source> | 2637 | <source>If you have an account on Mastodon or Pleroma, you can open it directly in their interface:</source> |
2576 | <target state="new"> | 2638 | <target state="new"> |
2577 | If you have an account on Mastodon or Pleroma, you can open it directly in their interface: | 2639 | If you have an account on Mastodon or Pleroma, you can open it directly in their interface: |
2578 | </target> | 2640 | </target> |
2579 | 2641 | ||
2580 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">41</context></context-group></trans-unit> | 2642 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">65</context></context-group></trans-unit> |
2581 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> | 2643 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> |
2582 | <source>Login to comment</source> | 2644 | <source>Login to comment</source> |
2583 | <target state="new">Login to comment</target> | 2645 | <target state="new">Login to comment</target> |
2584 | 2646 | ||
2585 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">52</context></context-group></trans-unit> | 2647 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit><trans-unit id="974170f455ff5a9034d5737e84b4194c0046fc6b" datatype="html"> |
2648 | <source>Markdown Emoji List</source><target state="new">Markdown Emoji List</target> | ||
2649 | <context-group purpose="location"> | ||
2650 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2651 | <context context-type="linenumber">84</context> | ||
2652 | </context-group> | ||
2653 | </trans-unit><trans-unit id="2662644497259948010" datatype="html"> | ||
2654 | <source>Comment</source><target state="new">Comment</target> | ||
2655 | <context-group purpose="location"> | ||
2656 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2657 | <context context-type="linenumber">58</context> | ||
2658 | </context-group> | ||
2659 | </trans-unit><trans-unit id="4502286564339177240" datatype="html"> | ||
2660 | <source>Reply</source><target state="new">Reply</target> | ||
2661 | <context-group purpose="location"> | ||
2662 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2663 | <context context-type="linenumber">60</context> | ||
2664 | </context-group> | ||
2665 | </trans-unit> | ||
2586 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285" datatype="html"> | 2666 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285" datatype="html"> |
2587 | <source>Highlighted comment</source> | 2667 | <source>Highlighted comment</source> |
2588 | <target state="new">Highlighted comment</target> | 2668 | <target state="new">Highlighted comment</target> |
@@ -2597,7 +2677,7 @@ The link will expire within 1 hour.</target> | |||
2597 | <source>This comment has been deleted</source> | 2677 | <source>This comment has been deleted</source> |
2598 | <target state="new">This comment has been deleted</target> | 2678 | <target state="new">This comment has been deleted</target> |
2599 | 2679 | ||
2600 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">62</context></context-group></trans-unit> | 2680 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">61</context></context-group></trans-unit> |
2601 | <trans-unit id="9031514421077169181" datatype="html"> | 2681 | <trans-unit id="9031514421077169181" datatype="html"> |
2602 | <source>Video redundancies</source> | 2682 | <source>Video redundancies</source> |
2603 | <target state="new">Video redundancies</target> | 2683 | <target state="new">Video redundancies</target> |
@@ -3446,7 +3526,25 @@ The link will expire within 1 hour.</target> | |||
3446 | <target state="new">No account found.</target> | 3526 | <target state="new">No account found.</target> |
3447 | 3527 | ||
3448 | 3528 | ||
3449 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit> | 3529 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit><trans-unit id="2338185419645468935" datatype="html"> |
3530 | <source>List installed plugins</source><target state="new">List installed plugins</target> | ||
3531 | <context-group purpose="location"> | ||
3532 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3533 | <context context-type="linenumber">28</context> | ||
3534 | </context-group> | ||
3535 | </trans-unit><trans-unit id="8897412584195581488" datatype="html"> | ||
3536 | <source>Search plugins</source><target state="new">Search plugins</target> | ||
3537 | <context-group purpose="location"> | ||
3538 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3539 | <context context-type="linenumber">37</context> | ||
3540 | </context-group> | ||
3541 | </trans-unit><trans-unit id="4994333937800672218" datatype="html"> | ||
3542 | <source>Show plugin</source><target state="new">Show plugin</target> | ||
3543 | <context-group purpose="location"> | ||
3544 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3545 | <context context-type="linenumber">46</context> | ||
3546 | </context-group> | ||
3547 | </trans-unit> | ||
3450 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> | 3548 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> |
3451 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> | 3549 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> |
3452 | <target state="new">Showing | 3550 | <target state="new">Showing |
@@ -4173,7 +4271,7 @@ The link will expire within 1 hour.</target> | |||
4173 | <source>Administrator</source> | 4271 | <source>Administrator</source> |
4174 | <target>Administración</target> | 4272 | <target>Administración</target> |
4175 | 4273 | ||
4176 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">385</context></context-group></trans-unit> | 4274 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">383</context></context-group></trans-unit> |
4177 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587"> | 4275 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587"> |
4178 | <source>Admin email</source> | 4276 | <source>Admin email</source> |
4179 | <target>Correo-e da Admin</target> | 4277 | <target>Correo-e da Admin</target> |
@@ -4429,27 +4527,27 @@ The link will expire within 1 hour.</target> | |||
4429 | <source>VIDEO SETTINGS</source> | 4527 | <source>VIDEO SETTINGS</source> |
4430 | <target state="new">VIDEO SETTINGS</target> | 4528 | <target state="new">VIDEO SETTINGS</target> |
4431 | 4529 | ||
4432 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit> | 4530 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
4433 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> | 4531 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> |
4434 | <source>NOTIFICATIONS</source> | 4532 | <source>NOTIFICATIONS</source> |
4435 | <target state="new">NOTIFICATIONS</target> | 4533 | <target state="new">NOTIFICATIONS</target> |
4436 | 4534 | ||
4437 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 4535 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">37</context></context-group></trans-unit> |
4438 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> | 4536 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> |
4439 | <source>INTERFACE</source> | 4537 | <source>INTERFACE</source> |
4440 | <target state="new">INTERFACE</target> | 4538 | <target state="new">INTERFACE</target> |
4441 | 4539 | ||
4442 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 4540 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit> |
4443 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> | 4541 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> |
4444 | <source>PASSWORD</source> | 4542 | <source>PASSWORD</source> |
4445 | <target state="new">PASSWORD</target> | 4543 | <target state="new">PASSWORD</target> |
4446 | 4544 | ||
4447 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">59</context></context-group></trans-unit> | 4545 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">57</context></context-group></trans-unit> |
4448 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> | 4546 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> |
4449 | <source>EMAIL</source> | 4547 | <source>EMAIL</source> |
4450 | <target state="new">EMAIL</target> | 4548 | <target state="new">EMAIL</target> |
4451 | 4549 | ||
4452 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">69</context></context-group></trans-unit> | 4550 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">67</context></context-group></trans-unit> |
4453 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> | 4551 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> |
4454 | <source>DANGER ZONE</source> | 4552 | <source>DANGER ZONE</source> |
4455 | <target state="new">DANGER ZONE</target> | 4553 | <target state="new">DANGER ZONE</target> |
@@ -4699,7 +4797,31 @@ The link will expire within 1 hour.</target> | |||
4699 | <source>No ownership change request found.</source> | 4797 | <source>No ownership change request found.</source> |
4700 | <target state="new">No ownership change request found.</target> | 4798 | <target state="new">No ownership change request found.</target> |
4701 | 4799 | ||
4702 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit> | 4800 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit><trans-unit id="4247400351982331798" datatype="html"> |
4801 | <source>Account settings</source><target state="new">Account settings</target> | ||
4802 | <context-group purpose="location"> | ||
4803 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4804 | <context context-type="linenumber">37</context> | ||
4805 | </context-group> | ||
4806 | </trans-unit><trans-unit id="154062590416726309" datatype="html"> | ||
4807 | <source>Account playlists</source><target state="new">Account playlists</target> | ||
4808 | <context-group purpose="location"> | ||
4809 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4810 | <context context-type="linenumber">55</context> | ||
4811 | </context-group> | ||
4812 | </trans-unit><trans-unit id="6550287183367517925" datatype="html"> | ||
4813 | <source>Create new playlist</source><target state="new">Create new playlist</target> | ||
4814 | <context-group purpose="location"> | ||
4815 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4816 | <context context-type="linenumber">64</context> | ||
4817 | </context-group> | ||
4818 | </trans-unit><trans-unit id="2864486939135008600" datatype="html"> | ||
4819 | <source>Playlist elements</source><target state="new">Playlist elements</target> | ||
4820 | <context-group purpose="location"> | ||
4821 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4822 | <context context-type="linenumber">73</context> | ||
4823 | </context-group> | ||
4824 | </trans-unit> | ||
4703 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> | 4825 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> |
4704 | <source>My imports</source> | 4826 | <source>My imports</source> |
4705 | <target state="new">My imports</target> | 4827 | <target state="new">My imports</target> |
@@ -4970,7 +5092,25 @@ The link will expire within 1 hour.</target> | |||
4970 | <source>An error occurred.</source> | 5092 | <source>An error occurred.</source> |
4971 | <target state="new">An error occurred.</target> | 5093 | <target state="new">An error occurred.</target> |
4972 | 5094 | ||
4973 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 5095 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit><trans-unit id="9128669621822125729" datatype="html"> |
5096 | <source>Video channel videos</source><target state="new">Video channel videos</target> | ||
5097 | <context-group purpose="location"> | ||
5098 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5099 | <context context-type="linenumber">25</context> | ||
5100 | </context-group> | ||
5101 | </trans-unit><trans-unit id="3193822049276963401" datatype="html"> | ||
5102 | <source>Video channel playlists</source><target state="new">Video channel playlists</target> | ||
5103 | <context-group purpose="location"> | ||
5104 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5105 | <context context-type="linenumber">38</context> | ||
5106 | </context-group> | ||
5107 | </trans-unit><trans-unit id="4723526509708949088" datatype="html"> | ||
5108 | <source>About video channel</source><target state="new">About video channel</target> | ||
5109 | <context-group purpose="location"> | ||
5110 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5111 | <context context-type="linenumber">47</context> | ||
5112 | </context-group> | ||
5113 | </trans-unit> | ||
4974 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97" datatype="html"> | 5114 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97" datatype="html"> |
4975 | <source>Request email for account verification</source> | 5115 | <source>Request email for account verification</source> |
4976 | <target state="new"> | 5116 | <target state="new"> |
@@ -5089,7 +5229,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5089 | <source>Stats</source> | 5229 | <source>Stats</source> |
5090 | <target>Estatísticas</target> | 5230 | <target>Estatísticas</target> |
5091 | 5231 | ||
5092 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 5232 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
5093 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc"> | 5233 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc"> |
5094 | <source>Joined <x id="INTERPOLATION"/></source> | 5234 | <source>Joined <x id="INTERPOLATION"/></source> |
5095 | <target>Uneuse | 5235 | <target>Uneuse |
@@ -5528,7 +5668,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5528 | <source>This instance does not have instances followings.</source> | 5668 | <source>This instance does not have instances followings.</source> |
5529 | <target state="new">This instance does not have instances followings.</target> | 5669 | <target state="new">This instance does not have instances followings.</target> |
5530 | 5670 | ||
5531 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit> | 5671 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit><trans-unit id="4195286790385468087" datatype="html"> |
5672 | <source>About this instance</source><target state="new">About this instance</target> | ||
5673 | <context-group purpose="location"> | ||
5674 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5675 | <context context-type="linenumber">26</context> | ||
5676 | </context-group> | ||
5677 | </trans-unit><trans-unit id="8773846522957677259" datatype="html"> | ||
5678 | <source>About PeerTube</source><target state="new">About PeerTube</target> | ||
5679 | <context-group purpose="location"> | ||
5680 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5681 | <context context-type="linenumber">38</context> | ||
5682 | </context-group> | ||
5683 | </trans-unit><trans-unit id="5782088737558028158" datatype="html"> | ||
5684 | <source>About follows</source><target state="new">About follows</target> | ||
5685 | <context-group purpose="location"> | ||
5686 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5687 | <context context-type="linenumber">47</context> | ||
5688 | </context-group> | ||
5689 | </trans-unit> | ||
5532 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> | 5690 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> |
5533 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> | 5691 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> |
5534 | <target state="new">Developed with ❤ by | 5692 | <target state="new">Developed with ❤ by |
@@ -5698,6 +5856,12 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5698 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 5856 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> |
5699 | <context context-type="linenumber">1</context> | 5857 | <context context-type="linenumber">1</context> |
5700 | </context-group> | 5858 | </context-group> |
5859 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
5860 | <source>Get help</source><target state="new">Get help</target> | ||
5861 | <context-group purpose="location"> | ||
5862 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | ||
5863 | <context context-type="linenumber">16</context> | ||
5864 | </context-group> | ||
5701 | </trans-unit> | 5865 | </trans-unit> |
5702 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1" datatype="html"> | 5866 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1" datatype="html"> |
5703 | <source>Create my account</source> | 5867 | <source>Create my account</source> |
@@ -5822,7 +5986,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5822 | 5986 | ||
5823 | </target> | 5987 | </target> |
5824 | 5988 | ||
5825 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 5989 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit><trans-unit id="3301086086650990787" datatype="html"> |
5990 | <source>Register</source><target state="new">Register</target> | ||
5991 | <context-group purpose="location"> | ||
5992 | <context context-type="sourcefile">../app/+signup/+register/register-routing.module.ts</context> | ||
5993 | <context context-type="linenumber">14</context> | ||
5994 | </context-group> | ||
5995 | </trans-unit> | ||
5826 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> | 5996 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> |
5827 | <source>Sorry, we couldn't find the page you were looking for.</source> | 5997 | <source>Sorry, we couldn't find the page you were looking for.</source> |
5828 | <target state="new"> | 5998 | <target state="new"> |
@@ -5845,7 +6015,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5845 | <target state="new">No description</target> | 6015 | <target state="new">No description</target> |
5846 | 6016 | ||
5847 | 6017 | ||
5848 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit> | 6018 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit><trans-unit id="819067926858619041" datatype="html"> |
6019 | <source>Account videos</source><target state="new">Account videos</target> | ||
6020 | <context-group purpose="location"> | ||
6021 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6022 | <context context-type="linenumber">29</context> | ||
6023 | </context-group> | ||
6024 | </trans-unit><trans-unit id="6823616469362610020" datatype="html"> | ||
6025 | <source>Account video channels</source><target state="new">Account video channels</target> | ||
6026 | <context-group purpose="location"> | ||
6027 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6028 | <context context-type="linenumber">42</context> | ||
6029 | </context-group> | ||
6030 | </trans-unit><trans-unit id="7678273613459026643" datatype="html"> | ||
6031 | <source>About account</source><target state="new">About account</target> | ||
6032 | <context-group purpose="location"> | ||
6033 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6034 | <context context-type="linenumber">51</context> | ||
6035 | </context-group> | ||
6036 | </trans-unit> | ||
5849 | <trans-unit id="3755500631176893489" datatype="html"> | 6037 | <trans-unit id="3755500631176893489" datatype="html"> |
5850 | <source>Published <x id="PH"/> videos</source> | 6038 | <source>Published <x id="PH"/> videos</source> |
5851 | <target state="new">Published | 6039 | <target state="new">Published |
@@ -5962,7 +6150,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5962 | <source>Configuration updated.</source> | 6150 | <source>Configuration updated.</source> |
5963 | <target state="new">Configuration updated.</target> | 6151 | <target state="new">Configuration updated.</target> |
5964 | 6152 | ||
5965 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit> | 6153 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit><trans-unit id="6284468333579755406" datatype="html"> |
6154 | <source>Edit custom configuration</source><target state="new">Edit custom configuration</target> | ||
6155 | <context-group purpose="location"> | ||
6156 | <context context-type="sourcefile">../app/+admin/config/config.routes.ts</context> | ||
6157 | <context context-type="linenumber">26</context> | ||
6158 | </context-group> | ||
6159 | </trans-unit> | ||
5966 | 6160 | ||
5967 | 6161 | ||
5968 | <trans-unit id="6549061957433635758" datatype="html"> | 6162 | <trans-unit id="6549061957433635758" datatype="html"> |
@@ -6441,7 +6635,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6441 | <x id="PH"/> updated. | 6635 | <x id="PH"/> updated. |
6442 | </target> | 6636 | </target> |
6443 | 6637 | ||
6444 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 6638 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit><trans-unit id="3229595422546554334" datatype="html"> |
6639 | <source>Jobs</source><target state="new">Jobs</target> | ||
6640 | <context-group purpose="location"> | ||
6641 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6642 | <context context-type="linenumber">26</context> | ||
6643 | </context-group> | ||
6644 | </trans-unit><trans-unit id="4804785061014590286" datatype="html"> | ||
6645 | <source>Logs</source><target state="new">Logs</target> | ||
6646 | <context-group purpose="location"> | ||
6647 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6648 | <context context-type="linenumber">37</context> | ||
6649 | </context-group> | ||
6650 | </trans-unit> | ||
6445 | <trans-unit id="3150704904301058778" datatype="html"> | 6651 | <trans-unit id="3150704904301058778" datatype="html"> |
6446 | <source>The plugin index is not available. Please retry later.</source> | 6652 | <source>The plugin index is not available. Please retry later.</source> |
6447 | <target state="new">The plugin index is not available. Please retry later.</target> | 6653 | <target state="new">The plugin index is not available. Please retry later.</target> |
@@ -6555,6 +6761,18 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6555 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> | 6761 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> |
6556 | <context context-type="linenumber">86</context> | 6762 | <context context-type="linenumber">86</context> |
6557 | </context-group> | 6763 | </context-group> |
6764 | </trans-unit><trans-unit id="2903648076838460070" datatype="html"> | ||
6765 | <source>Videos blocked</source><target state="new">Videos blocked</target> | ||
6766 | <context-group purpose="location"> | ||
6767 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6768 | <context context-type="linenumber">67</context> | ||
6769 | </context-group> | ||
6770 | </trans-unit><trans-unit id="7805059636749367886" datatype="html"> | ||
6771 | <source>Muted instances</source><target state="new">Muted instances</target> | ||
6772 | <context-group purpose="location"> | ||
6773 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6774 | <context context-type="linenumber">89</context> | ||
6775 | </context-group> | ||
6558 | </trans-unit> | 6776 | </trans-unit> |
6559 | <trans-unit id="5974506725502681113" datatype="html"> | 6777 | <trans-unit id="5974506725502681113" datatype="html"> |
6560 | <source>Password changed for user <x id="PH"/>.</source> | 6778 | <source>Password changed for user <x id="PH"/>.</source> |
@@ -6567,7 +6785,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6567 | <source>Update user password</source> | 6785 | <source>Update user password</source> |
6568 | <target state="new">Update user password</target> | 6786 | <target state="new">Update user password</target> |
6569 | 6787 | ||
6570 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit> | 6788 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit><trans-unit id="177544274549739411" datatype="html"> |
6789 | <source>Following list</source><target state="new">Following list</target> | ||
6790 | <context-group purpose="location"> | ||
6791 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6792 | <context context-type="linenumber">28</context> | ||
6793 | </context-group> | ||
6794 | </trans-unit><trans-unit id="8092429110007204784" datatype="html"> | ||
6795 | <source>Followers list</source><target state="new">Followers list</target> | ||
6796 | <context-group purpose="location"> | ||
6797 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6798 | <context context-type="linenumber">37</context> | ||
6799 | </context-group> | ||
6800 | </trans-unit> | ||
6571 | <trans-unit id="780323526182667308" datatype="html"> | 6801 | <trans-unit id="780323526182667308" datatype="html"> |
6572 | <source>User <x id="PH"/> updated.</source> | 6802 | <source>User <x id="PH"/> updated.</source> |
6573 | <target state="new">User | 6803 | <target state="new">User |
@@ -6586,7 +6816,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6586 | <x id="PH"/>. | 6816 | <x id="PH"/>. |
6587 | </target> | 6817 | </target> |
6588 | 6818 | ||
6589 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="8564701209009684429" datatype="html"> | 6819 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="7483807629538115183" datatype="html"> |
6820 | <source>Users list</source><target state="new">Users list</target> | ||
6821 | <context-group purpose="location"> | ||
6822 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6823 | <context context-type="linenumber">27</context> | ||
6824 | </context-group> | ||
6825 | </trans-unit><trans-unit id="1525334987774465166" datatype="html"> | ||
6826 | <source>Create a user</source><target state="new">Create a user</target> | ||
6827 | <context-group purpose="location"> | ||
6828 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6829 | <context context-type="linenumber">36</context> | ||
6830 | </context-group> | ||
6831 | </trans-unit><trans-unit id="5552039423287890133" datatype="html"> | ||
6832 | <source>Update a user</source><target state="new">Update a user</target> | ||
6833 | <context-group purpose="location"> | ||
6834 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6835 | <context context-type="linenumber">48</context> | ||
6836 | </context-group> | ||
6837 | </trans-unit><trans-unit id="8564701209009684429" datatype="html"> | ||
6590 | <source>Federation</source><target state="new">Federation</target> | 6838 | <source>Federation</source><target state="new">Federation</target> |
6591 | <context-group purpose="location"> | 6839 | <context-group purpose="location"> |
6592 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> | 6840 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> |
@@ -6940,7 +7188,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6940 | <source>Views for the day</source> | 7188 | <source>Views for the day</source> |
6941 | <target state="new">Views for the day</target> | 7189 | <target state="new">Views for the day</target> |
6942 | 7190 | ||
6943 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit> | 7191 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit><trans-unit id="4707367314920217630" datatype="html"> |
7192 | <source>Create new video channel</source><target state="new">Create new video channel</target> | ||
7193 | <context-group purpose="location"> | ||
7194 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7195 | <context context-type="linenumber">22</context> | ||
7196 | </context-group> | ||
7197 | </trans-unit><trans-unit id="6059091237492573541" datatype="html"> | ||
7198 | <source>Update video channel</source><target state="new">Update video channel</target> | ||
7199 | <context-group purpose="location"> | ||
7200 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7201 | <context context-type="linenumber">31</context> | ||
7202 | </context-group> | ||
7203 | </trans-unit><trans-unit id="6595008830732269870" datatype="html"> | ||
7204 | <source>Not found</source><target state="new">Not found</target> | ||
7205 | <context-group purpose="location"> | ||
7206 | <context context-type="sourcefile">../app/+page-not-found/page-not-found-routing.module.ts</context> | ||
7207 | <context context-type="linenumber">13</context> | ||
7208 | </context-group> | ||
7209 | </trans-unit> | ||
6944 | <trans-unit id="5032453707232754344" datatype="html"> | 7210 | <trans-unit id="5032453707232754344" datatype="html"> |
6945 | <source>Playlist <x id="PH"/> created.</source> | 7211 | <source>Playlist <x id="PH"/> created.</source> |
6946 | <target state="new">Playlist | 7212 | <target state="new">Playlist |
@@ -6958,7 +7224,31 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6958 | <source>Update playlist</source> | 7224 | <source>Update playlist</source> |
6959 | <target state="new">Update playlist</target> | 7225 | <target state="new">Update playlist</target> |
6960 | 7226 | ||
6961 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-video-playlists/my-account-video-playlist-elements.component.ts</context><context context-type="linenumber">48</context></context-group></trans-unit> | 7227 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">82</context></context-group></trans-unit><trans-unit id="3410331549417637431" datatype="html"> |
7228 | <source>Account video imports</source><target state="new">Account video imports</target> | ||
7229 | <context-group purpose="location"> | ||
7230 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7231 | <context context-type="linenumber">105</context> | ||
7232 | </context-group> | ||
7233 | </trans-unit><trans-unit id="4434998055872154420" datatype="html"> | ||
7234 | <source>Account subscriptions</source><target state="new">Account subscriptions</target> | ||
7235 | <context-group purpose="location"> | ||
7236 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7237 | <context context-type="linenumber">114</context> | ||
7238 | </context-group> | ||
7239 | </trans-unit><trans-unit id="6019411775996586321" datatype="html"> | ||
7240 | <source>Videos history</source><target state="new">Videos history</target> | ||
7241 | <context-group purpose="location"> | ||
7242 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7243 | <context context-type="linenumber">150</context> | ||
7244 | </context-group> | ||
7245 | </trans-unit><trans-unit id="5851560788527570644" datatype="html"> | ||
7246 | <source>Notifications</source><target state="new">Notifications</target> | ||
7247 | <context-group purpose="location"> | ||
7248 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7249 | <context context-type="linenumber">163</context> | ||
7250 | </context-group> | ||
7251 | </trans-unit> | ||
6962 | <trans-unit id="104404386496394770" datatype="html"> | 7252 | <trans-unit id="104404386496394770" datatype="html"> |
6963 | <source>Delete playlist</source> | 7253 | <source>Delete playlist</source> |
6964 | <target state="new">Delete playlist</target> | 7254 | <target state="new">Delete playlist</target> |
@@ -7112,7 +7402,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7112 | <x id="PH"/>. | 7402 | <x id="PH"/>. |
7113 | </target> | 7403 | </target> |
7114 | 7404 | ||
7115 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit> | 7405 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit><trans-unit id="8231550792139699065" datatype="html"> |
7406 | <source>Verify account email</source><target state="new">Verify account email</target> | ||
7407 | <context-group purpose="location"> | ||
7408 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7409 | <context context-type="linenumber">17</context> | ||
7410 | </context-group> | ||
7411 | </trans-unit><trans-unit id="4997281272800290390" datatype="html"> | ||
7412 | <source>Verify account ask send email</source><target state="new">Verify account ask send email</target> | ||
7413 | <context-group purpose="location"> | ||
7414 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7415 | <context context-type="linenumber">26</context> | ||
7416 | </context-group> | ||
7417 | </trans-unit> | ||
7116 | <trans-unit id="4180693983967989981" datatype="html"> | 7418 | <trans-unit id="4180693983967989981" datatype="html"> |
7117 | <source>Unable to find user id or verification string.</source> | 7419 | <source>Unable to find user id or verification string.</source> |
7118 | <target state="new">Unable to find user id or verification string.</target> | 7420 | <target state="new">Unable to find user id or verification string.</target> |
@@ -7237,27 +7539,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7237 | <source>any language</source> | 7539 | <source>any language</source> |
7238 | <target state="new">any language</target> | 7540 | <target state="new">any language</target> |
7239 | 7541 | ||
7240 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">202</context></context-group></trans-unit> | 7542 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">229</context></context-group></trans-unit> |
7241 | <trans-unit id="5633144232269377096" datatype="html"> | 7543 | <trans-unit id="5633144232269377096" datatype="html"> |
7242 | <source>hide</source> | 7544 | <source>hide</source> |
7243 | <target state="new">hide</target> | 7545 | <target state="new">hide</target> |
7244 | 7546 | ||
7245 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">118</context></context-group></trans-unit> | 7547 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> |
7246 | <trans-unit id="8603861867909474404" datatype="html"> | 7548 | <trans-unit id="8603861867909474404" datatype="html"> |
7247 | <source>blur</source> | 7549 | <source>blur</source> |
7248 | <target state="new">blur</target> | 7550 | <target state="new">blur</target> |
7249 | 7551 | ||
7250 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> | 7552 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> |
7251 | <trans-unit id="4534458451100881847" datatype="html"> | 7553 | <trans-unit id="4534458451100881847" datatype="html"> |
7252 | <source>display</source> | 7554 | <source>display</source> |
7253 | <target state="new">display</target> | 7555 | <target state="new">display</target> |
7254 | 7556 | ||
7255 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> | 7557 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">127</context></context-group></trans-unit> |
7256 | <trans-unit id="4467323362722952678" datatype="html"> | 7558 | <trans-unit id="4467323362722952678" datatype="html"> |
7257 | <source>Unknown</source> | 7559 | <source>Unknown</source> |
7258 | <target state="new">Unknown</target> | 7560 | <target state="new">Unknown</target> |
7259 | 7561 | ||
7260 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">190</context></context-group></trans-unit> | 7562 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">193</context></context-group></trans-unit> |
7261 | <trans-unit id="8781423666414310853" datatype="html"> | 7563 | <trans-unit id="8781423666414310853" datatype="html"> |
7262 | <source>Your password has been successfully reset!</source> | 7564 | <source>Your password has been successfully reset!</source> |
7263 | <target state="new">Your password has been successfully reset!</target> | 7565 | <target state="new">Your password has been successfully reset!</target> |
@@ -8375,27 +8677,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8375 | <source>Emphasis</source> | 8677 | <source>Emphasis</source> |
8376 | <target state="new">Emphasis</target> | 8678 | <target state="new">Emphasis</target> |
8377 | 8679 | ||
8378 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">77</context></context-group></trans-unit> | 8680 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> |
8379 | <trans-unit id="7565716024468232322" datatype="html"> | 8681 | <trans-unit id="7565716024468232322" datatype="html"> |
8380 | <source>Links</source> | 8682 | <source>Links</source> |
8381 | <target state="new">Links</target> | 8683 | <target state="new">Links</target> |
8382 | 8684 | ||
8383 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">78</context></context-group></trans-unit> | 8685 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> |
8384 | <trans-unit id="7838476952710404110" datatype="html"> | 8686 | <trans-unit id="7838476952710404110" datatype="html"> |
8385 | <source>New lines</source> | 8687 | <source>New lines</source> |
8386 | <target state="new">New lines</target> | 8688 | <target state="new">New lines</target> |
8387 | 8689 | ||
8388 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 8690 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">83</context></context-group></trans-unit> |
8389 | <trans-unit id="8756167649220050929" datatype="html"> | 8691 | <trans-unit id="8756167649220050929" datatype="html"> |
8390 | <source>Lists</source> | 8692 | <source>Lists</source> |
8391 | <target state="new">Lists</target> | 8693 | <target state="new">Lists</target> |
8392 | 8694 | ||
8393 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">80</context></context-group></trans-unit> | 8695 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">84</context></context-group></trans-unit> |
8394 | <trans-unit id="414887388288176527" datatype="html"> | 8696 | <trans-unit id="414887388288176527" datatype="html"> |
8395 | <source>Images</source> | 8697 | <source>Images</source> |
8396 | <target state="new">Images</target> | 8698 | <target state="new">Images</target> |
8397 | 8699 | ||
8398 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> | 8700 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">85</context></context-group></trans-unit> |
8399 | <trans-unit id="5708680277917691451" datatype="html"> | 8701 | <trans-unit id="5708680277917691451" datatype="html"> |
8400 | <source> | 8702 | <source> |
8401 | <x id="PH"/> users banned. | 8703 | <x id="PH"/> users banned. |
@@ -8791,7 +9093,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8791 | <source>Moderator</source> | 9093 | <source>Moderator</source> |
8792 | <target state="new">Moderator</target> | 9094 | <target state="new">Moderator</target> |
8793 | 9095 | ||
8794 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">386</context></context-group></trans-unit> | 9096 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">384</context></context-group></trans-unit> |
8795 | <trans-unit id="3723085768598852106" datatype="html"> | 9097 | <trans-unit id="3723085768598852106" datatype="html"> |
8796 | <source>Video removed from | 9098 | <source>Video removed from |
8797 | <x id="PH"/> | 9099 | <x id="PH"/> |
@@ -8864,7 +9166,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8864 | <source>Do you really want to delete this comment?</source> | 9166 | <source>Do you really want to delete this comment?</source> |
8865 | <target state="new">Do you really want to delete this comment?</target> | 9167 | <target state="new">Do you really want to delete this comment?</target> |
8866 | 9168 | ||
8867 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">434</context></context-group></trans-unit> | 9169 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">166</context></context-group></trans-unit> |
8868 | <trans-unit id="7837272126865175984" datatype="html"> | 9170 | <trans-unit id="7837272126865175984" datatype="html"> |
8869 | <source>Comment deleted.</source> | 9171 | <source>Comment deleted.</source> |
8870 | <target state="new">Comment deleted.</target> | 9172 | <target state="new">Comment deleted.</target> |
@@ -8976,9 +9278,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8976 | 9278 | ||
8977 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> | 9279 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> |
8978 | <source>Report</source><target state="new">Report</target> | 9280 | <source>Report</source><target state="new">Report</target> |
9281 | |||
9282 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="4814285799071780083" datatype="html"> | ||
9283 | <source>Remove</source><target state="new">Remove</target> | ||
8979 | <context-group purpose="location"> | 9284 | <context-group purpose="location"> |
8980 | <context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> | 9285 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> |
8981 | <context context-type="linenumber">286</context> | 9286 | <context context-type="linenumber">179</context> |
9287 | </context-group> | ||
9288 | </trans-unit><trans-unit id="6871668720687277843" datatype="html"> | ||
9289 | <source>Remove & re-draft</source><target state="new">Remove & re-draft</target> | ||
9290 | <context-group purpose="location"> | ||
9291 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> | ||
9292 | <context context-type="linenumber">187</context> | ||
8982 | </context-group> | 9293 | </context-group> |
8983 | </trans-unit> | 9294 | </trans-unit> |
8984 | <trans-unit id="4903651219400691248" datatype="html"> | 9295 | <trans-unit id="4903651219400691248" datatype="html"> |
@@ -9082,22 +9393,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9082 | <source>Only I can see this video</source> | 9393 | <source>Only I can see this video</source> |
9083 | <target state="new">Only I can see this video</target> | 9394 | <target state="new">Only I can see this video</target> |
9084 | 9395 | ||
9085 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">340</context></context-group></trans-unit> | 9396 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">341</context></context-group></trans-unit> |
9086 | <trans-unit id="6767380569816110388" datatype="html"> | 9397 | <trans-unit id="6767380569816110388" datatype="html"> |
9087 | <source>Only shareable via a private link</source> | 9398 | <source>Only shareable via a private link</source> |
9088 | <target state="new">Only shareable via a private link</target> | 9399 | <target state="new">Only shareable via a private link</target> |
9089 | 9400 | ||
9090 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">344</context></context-group></trans-unit> | 9401 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">345</context></context-group></trans-unit> |
9091 | <trans-unit id="6828965264297239528" datatype="html"> | 9402 | <trans-unit id="6828965264297239528" datatype="html"> |
9092 | <source>Anyone can see this video</source> | 9403 | <source>Anyone can see this video</source> |
9093 | <target state="new">Anyone can see this video</target> | 9404 | <target state="new">Anyone can see this video</target> |
9094 | 9405 | ||
9095 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">348</context></context-group></trans-unit> | 9406 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">349</context></context-group></trans-unit> |
9096 | <trans-unit id="1425933035739773115" datatype="html"> | 9407 | <trans-unit id="1425933035739773115" datatype="html"> |
9097 | <source>Only users of this instance can see this video</source> | 9408 | <source>Only users of this instance can see this video</source> |
9098 | <target state="new">Only users of this instance can see this video</target> | 9409 | <target state="new">Only users of this instance can see this video</target> |
9099 | 9410 | ||
9100 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">352</context></context-group></trans-unit> | 9411 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">353</context></context-group></trans-unit> |
9101 | <trans-unit id="5210096066382592800" datatype="html"> | 9412 | <trans-unit id="5210096066382592800" datatype="html"> |
9102 | <source>Video to import updated.</source> | 9413 | <source>Video to import updated.</source> |
9103 | <target state="new">Video to import updated.</target> | 9414 | <target state="new">Video to import updated.</target> |
@@ -9177,7 +9488,7 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9177 | <target state="new">Report comment</target> | 9488 | <target state="new">Report comment</target> |
9178 | 9489 | ||
9179 | 9490 | ||
9180 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 9491 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/report-modals/comment-report.component.ts</context><context context-type="linenumber">51</context></context-group></trans-unit> |
9181 | 9492 | ||
9182 | 9493 | ||
9183 | <trans-unit id="6775540171466219199" datatype="html"> | 9494 | <trans-unit id="6775540171466219199" datatype="html"> |
@@ -9341,6 +9652,36 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9341 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> | 9652 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> |
9342 | <context context-type="linenumber">36</context> | 9653 | <context context-type="linenumber">36</context> |
9343 | </context-group> | 9654 | </context-group> |
9655 | </trans-unit><trans-unit id="4668975178372693951" datatype="html"> | ||
9656 | <source>Discover videos</source><target state="new">Discover videos</target> | ||
9657 | <context-group purpose="location"> | ||
9658 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9659 | <context context-type="linenumber">23</context> | ||
9660 | </context-group> | ||
9661 | </trans-unit><trans-unit id="8067135025051844577" datatype="html"> | ||
9662 | <source>Trending videos</source><target state="new">Trending videos</target> | ||
9663 | <context-group purpose="location"> | ||
9664 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9665 | <context context-type="linenumber">32</context> | ||
9666 | </context-group> | ||
9667 | </trans-unit><trans-unit id="664221386829541948" datatype="html"> | ||
9668 | <source>Recently added videos</source><target state="new">Recently added videos</target> | ||
9669 | <context-group purpose="location"> | ||
9670 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9671 | <context context-type="linenumber">58</context> | ||
9672 | </context-group> | ||
9673 | </trans-unit><trans-unit id="8212906256415538361" datatype="html"> | ||
9674 | <source>Upload a video</source><target state="new">Upload a video</target> | ||
9675 | <context-group purpose="location"> | ||
9676 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9677 | <context context-type="linenumber">97</context> | ||
9678 | </context-group> | ||
9679 | </trans-unit><trans-unit id="7590784934397800835" datatype="html"> | ||
9680 | <source>Edit a video</source><target state="new">Edit a video</target> | ||
9681 | <context-group purpose="location"> | ||
9682 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9683 | <context context-type="linenumber">106</context> | ||
9684 | </context-group> | ||
9344 | </trans-unit> | 9685 | </trans-unit> |
9345 | </body> | 9686 | </body> |
9346 | </file> | 9687 | </file> |
diff --git a/client/src/locale/angular.it-IT.xlf b/client/src/locale/angular.it-IT.xlf index a02b31eea..ffc5f1cb2 100644 --- a/client/src/locale/angular.it-IT.xlf +++ b/client/src/locale/angular.it-IT.xlf | |||
@@ -310,7 +310,7 @@ | |||
310 | <target>Opzioni</target> | 310 | <target>Opzioni</target> |
311 | 311 | ||
312 | 312 | ||
313 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 313 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">48</context></context-group></trans-unit> |
314 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d"> | 314 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d"> |
315 | <source>Start at</source> | 315 | <source>Start at</source> |
316 | <target>Parti da</target> | 316 | <target>Parti da</target> |
@@ -442,7 +442,7 @@ | |||
442 | Annulla | 442 | Annulla |
443 | </target> | 443 | </target> |
444 | 444 | ||
445 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> | 445 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit> |
446 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd"> | 446 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd"> |
447 | <source>Download</source> | 447 | <source>Download</source> |
448 | <target>Scarica</target> | 448 | <target>Scarica</target> |
@@ -561,7 +561,7 @@ | |||
561 | 561 | ||
562 | 562 | ||
563 | 563 | ||
564 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 564 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
565 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc"> | 565 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc"> |
566 | <source>Edit starts/stops at</source> | 566 | <source>Edit starts/stops at</source> |
567 | <target>Modifica inizio/fine a</target> | 567 | <target>Modifica inizio/fine a</target> |
@@ -601,7 +601,7 @@ | |||
601 | 601 | ||
602 | 602 | ||
603 | 603 | ||
604 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> | 604 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
605 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> | 605 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> |
606 | <source>Edit</source> | 606 | <source>Edit</source> |
607 | <target>Modifica</target> | 607 | <target>Modifica</target> |
@@ -626,17 +626,10 @@ | |||
626 | <target>Anteprima completa</target> | 626 | <target>Anteprima completa</target> |
627 | 627 | ||
628 | <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></trans-unit> | 628 | <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></trans-unit> |
629 | <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f"> | 629 | <trans-unit id="8644431249513874405" datatype="html"> |
630 | <source>Get help</source> | ||
631 | <target>Chiedi aiuto</target> | ||
632 | |||
633 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit><trans-unit id="8644431249513874405" datatype="html"> | ||
634 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> | 630 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> |
635 | <context-group purpose="location"> | 631 | |
636 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 632 | <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></trans-unit> |
637 | <context context-type="linenumber">71</context> | ||
638 | </context-group> | ||
639 | </trans-unit> | ||
640 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> | 633 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> |
641 | <source>Recommended</source> | 634 | <source>Recommended</source> |
642 | <target state="translated">Raccomandato</target> | 635 | <target state="translated">Raccomandato</target> |
@@ -676,7 +669,7 @@ | |||
676 | <source>PROFILE SETTINGS</source> | 669 | <source>PROFILE SETTINGS</source> |
677 | <target state="new">PROFILE SETTINGS</target> | 670 | <target state="new">PROFILE SETTINGS</target> |
678 | 671 | ||
679 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 672 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">12</context></context-group></trans-unit> |
680 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3"> | 673 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3"> |
681 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> | 674 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> |
682 | <target> | 675 | <target> |
@@ -847,11 +840,8 @@ | |||
847 | 840 | ||
848 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> | 841 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> |
849 | <source>User</source><target state="new">User</target> | 842 | <source>User</source><target state="new">User</target> |
850 | <context-group purpose="location"> | 843 | |
851 | <context context-type="sourcefile">../app/core/users/user.service.ts</context> | 844 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit> |
852 | <context context-type="linenumber">384</context> | ||
853 | </context-group> | ||
854 | </trans-unit> | ||
855 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0"> | 845 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0"> |
856 | <source>Ban</source> | 846 | <source>Ban</source> |
857 | <target>Espelli (ban)</target> | 847 | <target>Espelli (ban)</target> |
@@ -1327,89 +1317,89 @@ The link will expire within 1 hour.</target> | |||
1327 | <source>Account settings</source> | 1317 | <source>Account settings</source> |
1328 | <target state="translated">Impostazioni dell'account</target> | 1318 | <target state="translated">Impostazioni dell'account</target> |
1329 | 1319 | ||
1330 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 1320 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
1331 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> | 1321 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> |
1332 | <source>Channels settings</source> | 1322 | <source>Channels settings</source> |
1333 | <target state="translated">Impostazioni del canale</target> | 1323 | <target state="translated">Impostazioni del canale</target> |
1334 | 1324 | ||
1335 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 1325 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> |
1336 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> | 1326 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> |
1337 | <source>Interface:</source> | 1327 | <source>Interface:</source> |
1338 | <target state="new">Interface:</target> | 1328 | <target state="new">Interface:</target> |
1339 | 1329 | ||
1340 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 1330 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1341 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> | 1331 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> |
1342 | <source>Videos:</source> | 1332 | <source>Videos:</source> |
1343 | <target state="new">Videos:</target> | 1333 | <target state="new">Videos:</target> |
1344 | 1334 | ||
1345 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 1335 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> |
1346 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> | 1336 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> |
1347 | <source>Sensitive:</source> | 1337 | <source>Sensitive:</source> |
1348 | <target state="new">Sensitive:</target> | 1338 | <target state="new">Sensitive:</target> |
1349 | 1339 | ||
1350 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 1340 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">54</context></context-group></trans-unit> |
1351 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1341 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> |
1352 | <source>Interface: <x id="INTERPOLATION"/></source> | 1342 | <source>Interface: <x id="INTERPOLATION"/></source> |
1353 | <target state="translated">Interfaccia: | 1343 | <target state="translated">Interfaccia: |
1354 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> | 1344 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> |
1355 | </target> | 1345 | </target> |
1356 | 1346 | ||
1357 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">156</context></context-group></trans-unit> | 1347 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> |
1358 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1348 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1359 | <source>Help share videos</source> | 1349 | <source>Help share videos</source> |
1360 | <target state="translated">Aiuta a condividere i video</target> | 1350 | <target state="translated">Aiuta a condividere i video</target> |
1361 | 1351 | ||
1362 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> | 1352 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
1363 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> | 1353 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> |
1364 | <source>More account settings</source> | 1354 | <source>More account settings</source> |
1365 | <target state="translated">Altre impostazioni dell'account</target> | 1355 | <target state="translated">Altre impostazioni dell'account</target> |
1366 | 1356 | ||
1367 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> | 1357 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> |
1368 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> | 1358 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> |
1369 | <source>Keyboard shortcuts</source> | 1359 | <source>Keyboard shortcuts</source> |
1370 | <target state="translated">Scorciatoie da tastiera</target> | 1360 | <target state="translated">Scorciatoie da tastiera</target> |
1371 | 1361 | ||
1372 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 1362 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">72</context></context-group></trans-unit> |
1373 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> | 1363 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> |
1374 | <source>Help</source> | 1364 | <source>Help</source> |
1375 | <target state="translated">Aiuto</target> | 1365 | <target state="translated">Aiuto</target> |
1376 | 1366 | ||
1377 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1367 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1378 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> | 1368 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> |
1379 | <source>Get help using PeerTube</source> | 1369 | <source>Get help using PeerTube</source> |
1380 | <target state="translated">Ottieni aiuto nell'utilizzo di PeerTube</target> | 1370 | <target state="translated">Ottieni aiuto nell'utilizzo di PeerTube</target> |
1381 | 1371 | ||
1382 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">161</context></context-group></trans-unit> | 1372 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">167</context></context-group></trans-unit> |
1383 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> | 1373 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> |
1384 | <source>Shortcuts</source> | 1374 | <source>Shortcuts</source> |
1385 | <target state="new">Shortcuts</target> | 1375 | <target state="new">Shortcuts</target> |
1386 | 1376 | ||
1387 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1377 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1388 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> | 1378 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> |
1389 | <source>powered by PeerTube</source> | 1379 | <source>powered by PeerTube</source> |
1390 | <target state="new">powered by PeerTube</target> | 1380 | <target state="new">powered by PeerTube</target> |
1391 | 1381 | ||
1392 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | 1382 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">177</context></context-group></trans-unit> |
1393 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> | 1383 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> |
1394 | <source>powered by PeerTube - CopyLeft 2015-2020</source> | 1384 | <source>powered by PeerTube - CopyLeft 2015-2020</source> |
1395 | <target state="new">powered by PeerTube - CopyLeft 2015-2020</target> | 1385 | <target state="new">powered by PeerTube - CopyLeft 2015-2020</target> |
1396 | 1386 | ||
1397 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> | 1387 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">176</context></context-group></trans-unit> |
1398 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344"> | 1388 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344"> |
1399 | <source>Log out</source> | 1389 | <source>Log out</source> |
1400 | <target>Disconnetti</target> | 1390 | <target>Disconnetti</target> |
1401 | 1391 | ||
1402 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">70</context></context-group></trans-unit> | 1392 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit> |
1403 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> | 1393 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> |
1404 | <source>Create an account</source> | 1394 | <source>Create an account</source> |
1405 | <target>Crea un account</target> | 1395 | <target>Crea un account</target> |
1406 | 1396 | ||
1407 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">78</context></context-group></trans-unit> | 1397 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
1408 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> | 1398 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> |
1409 | <source>MY LIBRARY</source> | 1399 | <source>MY LIBRARY</source> |
1410 | <target state="translated">LA MIA BIBLIOTECA</target> | 1400 | <target state="translated">LA MIA BIBLIOTECA</target> |
1411 | 1401 | ||
1412 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 1402 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">88</context></context-group></trans-unit> |
1413 | <trans-unit id="6371572688505952303"> | 1403 | <trans-unit id="6371572688505952303"> |
1414 | <source>My library</source> | 1404 | <source>My library</source> |
1415 | <target>La mia biblioteca</target> | 1405 | <target>La mia biblioteca</target> |
@@ -1449,22 +1439,22 @@ The link will expire within 1 hour.</target> | |||
1449 | <source>Videos</source> | 1439 | <source>Videos</source> |
1450 | <target>Video</target> | 1440 | <target>Video</target> |
1451 | 1441 | ||
1452 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">86</context></context-group></trans-unit> | 1442 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">92</context></context-group></trans-unit> |
1453 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> | 1443 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> |
1454 | <source>Playlists</source> | 1444 | <source>Playlists</source> |
1455 | <target>Playlist</target> | 1445 | <target>Playlist</target> |
1456 | 1446 | ||
1457 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">91</context></context-group></trans-unit> | 1447 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">97</context></context-group></trans-unit> |
1458 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2"> | 1448 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2"> |
1459 | <source>Subscriptions</source> | 1449 | <source>Subscriptions</source> |
1460 | <target>Iscrizioni</target> | 1450 | <target>Iscrizioni</target> |
1461 | 1451 | ||
1462 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 1452 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">102</context></context-group></trans-unit> |
1463 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8"> | 1453 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8"> |
1464 | <source>History</source> | 1454 | <source>History</source> |
1465 | <target>Cronologia</target> | 1455 | <target>Cronologia</target> |
1466 | 1456 | ||
1467 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit> | 1457 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">107</context></context-group></trans-unit> |
1468 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> | 1458 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> |
1469 | <source>VIDEOS</source> | 1459 | <source>VIDEOS</source> |
1470 | <target state="translated">VIDEO</target> | 1460 | <target state="translated">VIDEO</target> |
@@ -1476,27 +1466,27 @@ The link will expire within 1 hour.</target> | |||
1476 | <target state="translated">Scopri</target> | 1466 | <target state="translated">Scopri</target> |
1477 | 1467 | ||
1478 | 1468 | ||
1479 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">111</context></context-group></trans-unit> | 1469 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">117</context></context-group></trans-unit> |
1480 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> | 1470 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> |
1481 | <source>Trending</source> | 1471 | <source>Trending</source> |
1482 | <target>Popolari</target> | 1472 | <target>Popolari</target> |
1483 | 1473 | ||
1484 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">116</context></context-group></trans-unit> | 1474 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">122</context></context-group></trans-unit> |
1485 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> | 1475 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> |
1486 | <source>Most liked</source> | 1476 | <source>Most liked</source> |
1487 | <target state="new">Most liked</target> | 1477 | <target state="new">Most liked</target> |
1488 | 1478 | ||
1489 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">121</context></context-group></trans-unit> | 1479 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">127</context></context-group></trans-unit> |
1490 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> | 1480 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> |
1491 | <source>Recently added</source> | 1481 | <source>Recently added</source> |
1492 | <target>Aggiunti di recente</target> | 1482 | <target>Aggiunti di recente</target> |
1493 | 1483 | ||
1494 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">126</context></context-group></trans-unit> | 1484 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">132</context></context-group></trans-unit> |
1495 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> | 1485 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> |
1496 | <source>Administration</source> | 1486 | <source>Administration</source> |
1497 | <target>Amministrazione</target> | 1487 | <target>Amministrazione</target> |
1498 | 1488 | ||
1499 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">140</context></context-group></trans-unit> | 1489 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">146</context></context-group></trans-unit> |
1500 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> | 1490 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> |
1501 | <source>About</source> | 1491 | <source>About</source> |
1502 | <target>Informazioni</target> | 1492 | <target>Informazioni</target> |
@@ -1507,7 +1497,7 @@ The link will expire within 1 hour.</target> | |||
1507 | <source>Contact</source> | 1497 | <source>Contact</source> |
1508 | <target state="translated">Contatti</target> | 1498 | <target state="translated">Contatti</target> |
1509 | 1499 | ||
1510 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">160</context></context-group></trans-unit> | 1500 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">166</context></context-group></trans-unit> |
1511 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771"> | 1501 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771"> |
1512 | <source>View your notifications</source> | 1502 | <source>View your notifications</source> |
1513 | <target>Vedi le notifiche</target> | 1503 | <target>Vedi le notifiche</target> |
@@ -1534,7 +1524,7 @@ The link will expire within 1 hour.</target> | |||
1534 | <source>See all your notifications</source> | 1524 | <source>See all your notifications</source> |
1535 | <target>Vedi tutte le notifiche</target> | 1525 | <target>Vedi tutte le notifiche</target> |
1536 | 1526 | ||
1537 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 1527 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">40</context></context-group></trans-unit> |
1538 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> | 1528 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> |
1539 | <source>Search videos, channels…</source> | 1529 | <source>Search videos, channels…</source> |
1540 | <target state="translated">Ricerca video, canali…</target> | 1530 | <target state="translated">Ricerca video, canali…</target> |
@@ -1868,22 +1858,22 @@ The link will expire within 1 hour.</target> | |||
1868 | <source>FAQ</source> | 1858 | <source>FAQ</source> |
1869 | <target state="new">FAQ</target> | 1859 | <target state="new">FAQ</target> |
1870 | 1860 | ||
1871 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">163</context></context-group></trans-unit> | 1861 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
1872 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> | 1862 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> |
1873 | <source>Frequently asked questions about PeerTube</source> | 1863 | <source>Frequently asked questions about PeerTube</source> |
1874 | <target state="new">Frequently asked questions about PeerTube</target> | 1864 | <target state="new">Frequently asked questions about PeerTube</target> |
1875 | 1865 | ||
1876 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1866 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1877 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> | 1867 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> |
1878 | <source>API</source> | 1868 | <source>API</source> |
1879 | <target state="new">API</target> | 1869 | <target state="new">API</target> |
1880 | 1870 | ||
1881 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1871 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1882 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> | 1872 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> |
1883 | <source>API documentation</source> | 1873 | <source>API documentation</source> |
1884 | <target state="new">API documentation</target> | 1874 | <target state="new">API documentation</target> |
1885 | 1875 | ||
1886 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 1876 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
1887 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5"> | 1877 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5"> |
1888 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> | 1878 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> |
1889 | <target>Programma la pubblicazione ( | 1879 | <target>Programma la pubblicazione ( |
@@ -2270,7 +2260,13 @@ The link will expire within 1 hour.</target> | |||
2270 | Less customization | 2260 | Less customization |
2271 | </target> | 2261 | </target> |
2272 | 2262 | ||
2273 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit> | 2263 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit><trans-unit id="2454050363478003966" datatype="html"> |
2264 | <source>Login</source><target state="new">Login</target> | ||
2265 | <context-group purpose="location"> | ||
2266 | <context context-type="sourcefile">../app/+login/login-routing.module.ts</context> | ||
2267 | <context context-type="linenumber">14</context> | ||
2268 | </context-group> | ||
2269 | </trans-unit> | ||
2274 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e" datatype="html"> | 2270 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e" datatype="html"> |
2275 | <source>Autoplay</source> | 2271 | <source>Autoplay</source> |
2276 | <target state="new">Autoplay</target> | 2272 | <target state="new">Autoplay</target> |
@@ -2535,7 +2531,7 @@ The link will expire within 1 hour.</target> | |||
2535 | <source>No comments.</source> | 2531 | <source>No comments.</source> |
2536 | <target>Nessun commento.</target> | 2532 | <target>Nessun commento.</target> |
2537 | 2533 | ||
2538 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 2534 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> |
2539 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> | 2535 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> |
2540 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> | 2536 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> |
2541 | <target state="new"> | 2537 | <target state="new"> |
@@ -2545,7 +2541,7 @@ The link will expire within 1 hour.</target> | |||
2545 | 2541 | ||
2546 | </target> | 2542 | </target> |
2547 | 2543 | ||
2548 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">79</context></context-group></trans-unit> | 2544 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
2549 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> | 2545 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> |
2550 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> | 2546 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> |
2551 | <target state="new"> | 2547 | <target state="new"> |
@@ -2554,50 +2550,116 @@ The link will expire within 1 hour.</target> | |||
2554 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> | 2550 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> |
2555 | </target> | 2551 | </target> |
2556 | 2552 | ||
2557 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 2553 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">87</context></context-group></trans-unit> |
2558 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> | 2554 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> |
2559 | <source>View <x id="INTERPOLATION"/> replies</source> | 2555 | <source>View <x id="INTERPOLATION"/> replies</source> |
2560 | <target state="new">View | 2556 | <target state="new">View |
2561 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies | 2557 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies |
2562 | </target> | 2558 | </target> |
2563 | 2559 | ||
2564 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">85</context></context-group></trans-unit> | 2560 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">90</context></context-group></trans-unit> |
2565 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828"> | 2561 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828"> |
2566 | <source>Comments are disabled.</source> | 2562 | <source>Comments are disabled.</source> |
2567 | <target> | 2563 | <target> |
2568 | I commenti sono disabilitati. | 2564 | I commenti sono disabilitati. |
2569 | </target> | 2565 | </target> |
2570 | 2566 | ||
2571 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit><trans-unit id="3691787517663044217" datatype="html"> | 2567 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit><trans-unit id="3691787517663044217" datatype="html"> |
2572 | <source> The deletion will be sent to remote instances so they can reflect the change.</source><target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> | 2568 | <source> The deletion will be sent to remote instances so they can reflect the change.</source><target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> |
2569 | |||
2570 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">169</context></context-group></trans-unit><trans-unit id="7321800851971795962" datatype="html"> | ||
2571 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source><target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> | ||
2572 | |||
2573 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="5964038603724691720" datatype="html"> | ||
2574 | <source>Delete and re-draft</source><target state="new">Delete and re-draft</target> | ||
2573 | <context-group purpose="location"> | 2575 | <context-group purpose="location"> |
2574 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | 2576 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> |
2575 | <context context-type="linenumber">163</context> | 2577 | <context context-type="linenumber">197</context> |
2576 | </context-group> | 2578 | </context-group> |
2577 | </trans-unit><trans-unit id="7321800851971795962" datatype="html"> | 2579 | </trans-unit><trans-unit id="7163633882758007711" datatype="html"> |
2578 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source><target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> | 2580 | <source>Do you really want to delete and re-draft this comment?</source><target state="new">Do you really want to delete and re-draft this comment?</target> |
2579 | <context-group purpose="location"> | 2581 | <context-group purpose="location"> |
2580 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | 2582 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> |
2581 | <context context-type="linenumber">165</context> | 2583 | <context context-type="linenumber">197</context> |
2582 | </context-group> | 2584 | </context-group> |
2583 | </trans-unit> | 2585 | </trans-unit> |
2584 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e"> | 2586 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e"> |
2585 | <source>Add comment...</source> | 2587 | <source>Add comment...</source> |
2586 | <target>Aggiungi commento...</target> | 2588 | <target>Aggiungi commento...</target> |
2587 | 2589 | ||
2588 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | 2590 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit><trans-unit id="4e5254dedf0c12ce7e7c2197384fceebe3b29a2b" datatype="html"> |
2589 | <trans-unit id="8956c0f4c6974289fc63f1ab6b54f5b32ed65eeb" datatype="html"> | 2591 | <source>Markdown compatible</source><target state="new">Markdown compatible</target> |
2590 | <source>Reply</source> | 2592 | <context-group purpose="location"> |
2591 | <target state="new"> | 2593 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> |
2592 | Reply | 2594 | <context context-type="linenumber">13</context> |
2593 | </target> | 2595 | </context-group> |
2594 | 2596 | </trans-unit><trans-unit id="4739ffad85f09defefdb6e51b45f43b2ef7c4388" datatype="html"> | |
2595 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 2597 | <source>Markdown compatible that supports:</source><target state="new">Markdown compatible that supports:</target> |
2598 | <context-group purpose="location"> | ||
2599 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2600 | <context context-type="linenumber">15</context> | ||
2601 | </context-group> | ||
2602 | </trans-unit><trans-unit id="9a53b17a021bb0677c156fd893461797fc497a10" datatype="html"> | ||
2603 | <source>Auto generated links</source><target state="new">Auto generated links</target> | ||
2604 | <context-group purpose="location"> | ||
2605 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2606 | <context context-type="linenumber">18</context> | ||
2607 | </context-group> | ||
2608 | </trans-unit><trans-unit id="664f99b8919d6dd2faa1c1f7c378aa86d1be5e8a" datatype="html"> | ||
2609 | <source>Break lines</source><target state="new">Break lines</target> | ||
2610 | <context-group purpose="location"> | ||
2611 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2612 | <context context-type="linenumber">19</context> | ||
2613 | </context-group> | ||
2614 | </trans-unit><trans-unit id="b15e7bec5c7833d2d9634946ccbed68967b1bee1" datatype="html"> | ||
2615 | <source>Lists</source><target state="new">Lists</target> | ||
2616 | <context-group purpose="location"> | ||
2617 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2618 | <context context-type="linenumber">20</context> | ||
2619 | </context-group> | ||
2620 | </trans-unit><trans-unit id="ab4426b60f13c00b61d6b714d390dc629f314980" datatype="html"> | ||
2621 | <source>Emphasis</source><target state="new">Emphasis</target> | ||
2622 | <context-group purpose="location"> | ||
2623 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2624 | <context context-type="linenumber">22</context> | ||
2625 | </context-group> | ||
2626 | </trans-unit><trans-unit id="4e13b179501d3d32721037e03b4c04acb9857c5f" datatype="html"> | ||
2627 | <source>bold</source><target state="new">bold</target> | ||
2628 | <context-group purpose="location"> | ||
2629 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2630 | <context context-type="linenumber">23</context> | ||
2631 | </context-group> | ||
2632 | </trans-unit><trans-unit id="3c12190421fbb2756e6bbead923df9ec5de8ede2" datatype="html"> | ||
2633 | <source>italic</source><target state="new">italic</target> | ||
2634 | <context-group purpose="location"> | ||
2635 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2636 | <context context-type="linenumber">23</context> | ||
2637 | </context-group> | ||
2638 | </trans-unit><trans-unit id="adb4bbdcb961b8aac8298d6cac554d9b25636b7a" datatype="html"> | ||
2639 | <source>Emoji shortcuts</source><target state="new">Emoji shortcuts</target> | ||
2640 | <context-group purpose="location"> | ||
2641 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2642 | <context context-type="linenumber">26</context> | ||
2643 | </context-group> | ||
2644 | </trans-unit><trans-unit id="b9809a21a8eb3c9db2a0282c5dd94bc221575c96" datatype="html"> | ||
2645 | <source>Emoji markup</source><target state="new">Emoji markup</target> | ||
2646 | <context-group purpose="location"> | ||
2647 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2648 | <context context-type="linenumber">30</context> | ||
2649 | </context-group> | ||
2650 | </trans-unit><trans-unit id="f37feb427aaa551edd1f22616be6464bc0d492de" datatype="html"> | ||
2651 | <source>See complete list</source><target state="new">See complete list</target> | ||
2652 | <context-group purpose="location"> | ||
2653 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2654 | <context context-type="linenumber">32</context> | ||
2655 | </context-group> | ||
2656 | </trans-unit> | ||
2657 | |||
2596 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135"> | 2658 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135"> |
2597 | <source>You are one step away from commenting</source> | 2659 | <source>You are one step away from commenting</source> |
2598 | <target>Stai per commentare</target> | 2660 | <target>Stai per commentare</target> |
2599 | 2661 | ||
2600 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 2662 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
2601 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> | 2663 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> |
2602 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> | 2664 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> |
2603 | <target state="new"> | 2665 | <target state="new"> |
@@ -2606,19 +2668,37 @@ The link will expire within 1 hour.</target> | |||
2606 | from within the software's interface. | 2668 | from within the software's interface. |
2607 | </target> | 2669 | </target> |
2608 | 2670 | ||
2609 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 2671 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
2610 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb"> | 2672 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb"> |
2611 | <source>If you have an account on Mastodon or Pleroma, you can open it directly in their interface:</source> | 2673 | <source>If you have an account on Mastodon or Pleroma, you can open it directly in their interface:</source> |
2612 | <target> | 2674 | <target> |
2613 | Da un account Mastodon o Pleroma, si può aprire direttamente dalla loro interfaccia: | 2675 | Da un account Mastodon o Pleroma, si può aprire direttamente dalla loro interfaccia: |
2614 | </target> | 2676 | </target> |
2615 | 2677 | ||
2616 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">41</context></context-group></trans-unit> | 2678 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">65</context></context-group></trans-unit> |
2617 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> | 2679 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> |
2618 | <source>Login to comment</source> | 2680 | <source>Login to comment</source> |
2619 | <target state="new">Login to comment</target> | 2681 | <target state="new">Login to comment</target> |
2620 | 2682 | ||
2621 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">52</context></context-group></trans-unit> | 2683 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit><trans-unit id="974170f455ff5a9034d5737e84b4194c0046fc6b" datatype="html"> |
2684 | <source>Markdown Emoji List</source><target state="new">Markdown Emoji List</target> | ||
2685 | <context-group purpose="location"> | ||
2686 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2687 | <context context-type="linenumber">84</context> | ||
2688 | </context-group> | ||
2689 | </trans-unit><trans-unit id="2662644497259948010" datatype="html"> | ||
2690 | <source>Comment</source><target state="new">Comment</target> | ||
2691 | <context-group purpose="location"> | ||
2692 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2693 | <context context-type="linenumber">58</context> | ||
2694 | </context-group> | ||
2695 | </trans-unit><trans-unit id="4502286564339177240" datatype="html"> | ||
2696 | <source>Reply</source><target state="new">Reply</target> | ||
2697 | <context-group purpose="location"> | ||
2698 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2699 | <context context-type="linenumber">60</context> | ||
2700 | </context-group> | ||
2701 | </trans-unit> | ||
2622 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285"> | 2702 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285"> |
2623 | <source>Highlighted comment</source> | 2703 | <source>Highlighted comment</source> |
2624 | <target>Commento in evidenza</target> | 2704 | <target>Commento in evidenza</target> |
@@ -2633,7 +2713,7 @@ The link will expire within 1 hour.</target> | |||
2633 | <source>This comment has been deleted</source> | 2713 | <source>This comment has been deleted</source> |
2634 | <target state="new">This comment has been deleted</target> | 2714 | <target state="new">This comment has been deleted</target> |
2635 | 2715 | ||
2636 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">62</context></context-group></trans-unit> | 2716 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">61</context></context-group></trans-unit> |
2637 | <trans-unit id="9031514421077169181" datatype="html"> | 2717 | <trans-unit id="9031514421077169181" datatype="html"> |
2638 | <source>Video redundancies</source> | 2718 | <source>Video redundancies</source> |
2639 | <target state="new">Video redundancies</target> | 2719 | <target state="new">Video redundancies</target> |
@@ -3482,7 +3562,25 @@ The link will expire within 1 hour.</target> | |||
3482 | <target state="new">No account found.</target> | 3562 | <target state="new">No account found.</target> |
3483 | 3563 | ||
3484 | 3564 | ||
3485 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit> | 3565 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit><trans-unit id="2338185419645468935" datatype="html"> |
3566 | <source>List installed plugins</source><target state="new">List installed plugins</target> | ||
3567 | <context-group purpose="location"> | ||
3568 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3569 | <context context-type="linenumber">28</context> | ||
3570 | </context-group> | ||
3571 | </trans-unit><trans-unit id="8897412584195581488" datatype="html"> | ||
3572 | <source>Search plugins</source><target state="new">Search plugins</target> | ||
3573 | <context-group purpose="location"> | ||
3574 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3575 | <context context-type="linenumber">37</context> | ||
3576 | </context-group> | ||
3577 | </trans-unit><trans-unit id="4994333937800672218" datatype="html"> | ||
3578 | <source>Show plugin</source><target state="new">Show plugin</target> | ||
3579 | <context-group purpose="location"> | ||
3580 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3581 | <context context-type="linenumber">46</context> | ||
3582 | </context-group> | ||
3583 | </trans-unit> | ||
3486 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> | 3584 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> |
3487 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> | 3585 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> |
3488 | <target state="new">Showing | 3586 | <target state="new">Showing |
@@ -4209,7 +4307,7 @@ The link will expire within 1 hour.</target> | |||
4209 | <source>Administrator</source> | 4307 | <source>Administrator</source> |
4210 | <target>Amministratore</target> | 4308 | <target>Amministratore</target> |
4211 | 4309 | ||
4212 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">385</context></context-group></trans-unit> | 4310 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">383</context></context-group></trans-unit> |
4213 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587"> | 4311 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587"> |
4214 | <source>Admin email</source> | 4312 | <source>Admin email</source> |
4215 | <target>Email Amministratore</target> | 4313 | <target>Email Amministratore</target> |
@@ -4465,27 +4563,27 @@ The link will expire within 1 hour.</target> | |||
4465 | <source>VIDEO SETTINGS</source> | 4563 | <source>VIDEO SETTINGS</source> |
4466 | <target state="new">VIDEO SETTINGS</target> | 4564 | <target state="new">VIDEO SETTINGS</target> |
4467 | 4565 | ||
4468 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit> | 4566 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
4469 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> | 4567 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> |
4470 | <source>NOTIFICATIONS</source> | 4568 | <source>NOTIFICATIONS</source> |
4471 | <target state="new">NOTIFICATIONS</target> | 4569 | <target state="new">NOTIFICATIONS</target> |
4472 | 4570 | ||
4473 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 4571 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">37</context></context-group></trans-unit> |
4474 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> | 4572 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> |
4475 | <source>INTERFACE</source> | 4573 | <source>INTERFACE</source> |
4476 | <target state="new">INTERFACE</target> | 4574 | <target state="new">INTERFACE</target> |
4477 | 4575 | ||
4478 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 4576 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit> |
4479 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> | 4577 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> |
4480 | <source>PASSWORD</source> | 4578 | <source>PASSWORD</source> |
4481 | <target state="new">PASSWORD</target> | 4579 | <target state="new">PASSWORD</target> |
4482 | 4580 | ||
4483 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">59</context></context-group></trans-unit> | 4581 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">57</context></context-group></trans-unit> |
4484 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> | 4582 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> |
4485 | <source>EMAIL</source> | 4583 | <source>EMAIL</source> |
4486 | <target state="new">EMAIL</target> | 4584 | <target state="new">EMAIL</target> |
4487 | 4585 | ||
4488 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">69</context></context-group></trans-unit> | 4586 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">67</context></context-group></trans-unit> |
4489 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> | 4587 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> |
4490 | <source>DANGER ZONE</source> | 4588 | <source>DANGER ZONE</source> |
4491 | <target state="new">DANGER ZONE</target> | 4589 | <target state="new">DANGER ZONE</target> |
@@ -4735,7 +4833,31 @@ The link will expire within 1 hour.</target> | |||
4735 | <source>No ownership change request found.</source> | 4833 | <source>No ownership change request found.</source> |
4736 | <target state="new">No ownership change request found.</target> | 4834 | <target state="new">No ownership change request found.</target> |
4737 | 4835 | ||
4738 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit> | 4836 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit><trans-unit id="4247400351982331798" datatype="html"> |
4837 | <source>Account settings</source><target state="new">Account settings</target> | ||
4838 | <context-group purpose="location"> | ||
4839 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4840 | <context context-type="linenumber">37</context> | ||
4841 | </context-group> | ||
4842 | </trans-unit><trans-unit id="154062590416726309" datatype="html"> | ||
4843 | <source>Account playlists</source><target state="new">Account playlists</target> | ||
4844 | <context-group purpose="location"> | ||
4845 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4846 | <context context-type="linenumber">55</context> | ||
4847 | </context-group> | ||
4848 | </trans-unit><trans-unit id="6550287183367517925" datatype="html"> | ||
4849 | <source>Create new playlist</source><target state="new">Create new playlist</target> | ||
4850 | <context-group purpose="location"> | ||
4851 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4852 | <context context-type="linenumber">64</context> | ||
4853 | </context-group> | ||
4854 | </trans-unit><trans-unit id="2864486939135008600" datatype="html"> | ||
4855 | <source>Playlist elements</source><target state="new">Playlist elements</target> | ||
4856 | <context-group purpose="location"> | ||
4857 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4858 | <context context-type="linenumber">73</context> | ||
4859 | </context-group> | ||
4860 | </trans-unit> | ||
4739 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> | 4861 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> |
4740 | <source>My imports</source> | 4862 | <source>My imports</source> |
4741 | <target state="new">My imports</target> | 4863 | <target state="new">My imports</target> |
@@ -5006,7 +5128,25 @@ The link will expire within 1 hour.</target> | |||
5006 | <source>An error occurred.</source> | 5128 | <source>An error occurred.</source> |
5007 | <target state="new">An error occurred.</target> | 5129 | <target state="new">An error occurred.</target> |
5008 | 5130 | ||
5009 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 5131 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit><trans-unit id="9128669621822125729" datatype="html"> |
5132 | <source>Video channel videos</source><target state="new">Video channel videos</target> | ||
5133 | <context-group purpose="location"> | ||
5134 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5135 | <context context-type="linenumber">25</context> | ||
5136 | </context-group> | ||
5137 | </trans-unit><trans-unit id="3193822049276963401" datatype="html"> | ||
5138 | <source>Video channel playlists</source><target state="new">Video channel playlists</target> | ||
5139 | <context-group purpose="location"> | ||
5140 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5141 | <context context-type="linenumber">38</context> | ||
5142 | </context-group> | ||
5143 | </trans-unit><trans-unit id="4723526509708949088" datatype="html"> | ||
5144 | <source>About video channel</source><target state="new">About video channel</target> | ||
5145 | <context-group purpose="location"> | ||
5146 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5147 | <context context-type="linenumber">47</context> | ||
5148 | </context-group> | ||
5149 | </trans-unit> | ||
5010 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97"> | 5150 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97"> |
5011 | <source>Request email for account verification</source> | 5151 | <source>Request email for account verification</source> |
5012 | <target> | 5152 | <target> |
@@ -5125,7 +5265,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5125 | <source>Stats</source> | 5265 | <source>Stats</source> |
5126 | <target>Statistiche</target> | 5266 | <target>Statistiche</target> |
5127 | 5267 | ||
5128 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 5268 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
5129 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc"> | 5269 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc"> |
5130 | <source>Joined <x id="INTERPOLATION"/></source> | 5270 | <source>Joined <x id="INTERPOLATION"/></source> |
5131 | <target>Creato il | 5271 | <target>Creato il |
@@ -5564,7 +5704,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5564 | <source>This instance does not have instances followings.</source> | 5704 | <source>This instance does not have instances followings.</source> |
5565 | <target state="new">This instance does not have instances followings.</target> | 5705 | <target state="new">This instance does not have instances followings.</target> |
5566 | 5706 | ||
5567 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit> | 5707 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit><trans-unit id="4195286790385468087" datatype="html"> |
5708 | <source>About this instance</source><target state="new">About this instance</target> | ||
5709 | <context-group purpose="location"> | ||
5710 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5711 | <context context-type="linenumber">26</context> | ||
5712 | </context-group> | ||
5713 | </trans-unit><trans-unit id="8773846522957677259" datatype="html"> | ||
5714 | <source>About PeerTube</source><target state="new">About PeerTube</target> | ||
5715 | <context-group purpose="location"> | ||
5716 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5717 | <context context-type="linenumber">38</context> | ||
5718 | </context-group> | ||
5719 | </trans-unit><trans-unit id="5782088737558028158" datatype="html"> | ||
5720 | <source>About follows</source><target state="new">About follows</target> | ||
5721 | <context-group purpose="location"> | ||
5722 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5723 | <context context-type="linenumber">47</context> | ||
5724 | </context-group> | ||
5725 | </trans-unit> | ||
5568 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> | 5726 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> |
5569 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> | 5727 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> |
5570 | <target state="new">Developed with ❤ by | 5728 | <target state="new">Developed with ❤ by |
@@ -5734,6 +5892,12 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5734 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 5892 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> |
5735 | <context context-type="linenumber">1</context> | 5893 | <context context-type="linenumber">1</context> |
5736 | </context-group> | 5894 | </context-group> |
5895 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
5896 | <source>Get help</source><target state="new">Get help</target> | ||
5897 | <context-group purpose="location"> | ||
5898 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | ||
5899 | <context context-type="linenumber">16</context> | ||
5900 | </context-group> | ||
5737 | </trans-unit> | 5901 | </trans-unit> |
5738 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1" datatype="html"> | 5902 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1" datatype="html"> |
5739 | <source>Create my account</source> | 5903 | <source>Create my account</source> |
@@ -5858,7 +6022,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5858 | 6022 | ||
5859 | </target> | 6023 | </target> |
5860 | 6024 | ||
5861 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 6025 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit><trans-unit id="3301086086650990787" datatype="html"> |
6026 | <source>Register</source><target state="new">Register</target> | ||
6027 | <context-group purpose="location"> | ||
6028 | <context context-type="sourcefile">../app/+signup/+register/register-routing.module.ts</context> | ||
6029 | <context context-type="linenumber">14</context> | ||
6030 | </context-group> | ||
6031 | </trans-unit> | ||
5862 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> | 6032 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> |
5863 | <source>Sorry, we couldn't find the page you were looking for.</source> | 6033 | <source>Sorry, we couldn't find the page you were looking for.</source> |
5864 | <target state="new"> | 6034 | <target state="new"> |
@@ -5881,7 +6051,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5881 | <target>Nessuna descrizione</target> | 6051 | <target>Nessuna descrizione</target> |
5882 | 6052 | ||
5883 | 6053 | ||
5884 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit> | 6054 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit><trans-unit id="819067926858619041" datatype="html"> |
6055 | <source>Account videos</source><target state="new">Account videos</target> | ||
6056 | <context-group purpose="location"> | ||
6057 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6058 | <context context-type="linenumber">29</context> | ||
6059 | </context-group> | ||
6060 | </trans-unit><trans-unit id="6823616469362610020" datatype="html"> | ||
6061 | <source>Account video channels</source><target state="new">Account video channels</target> | ||
6062 | <context-group purpose="location"> | ||
6063 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6064 | <context context-type="linenumber">42</context> | ||
6065 | </context-group> | ||
6066 | </trans-unit><trans-unit id="7678273613459026643" datatype="html"> | ||
6067 | <source>About account</source><target state="new">About account</target> | ||
6068 | <context-group purpose="location"> | ||
6069 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6070 | <context context-type="linenumber">51</context> | ||
6071 | </context-group> | ||
6072 | </trans-unit> | ||
5885 | <trans-unit id="3755500631176893489" datatype="html"> | 6073 | <trans-unit id="3755500631176893489" datatype="html"> |
5886 | <source>Published <x id="PH"/> videos</source> | 6074 | <source>Published <x id="PH"/> videos</source> |
5887 | <target state="new">Published | 6075 | <target state="new">Published |
@@ -5998,7 +6186,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5998 | <source>Configuration updated.</source> | 6186 | <source>Configuration updated.</source> |
5999 | <target>Configurazione aggiornata.</target> | 6187 | <target>Configurazione aggiornata.</target> |
6000 | 6188 | ||
6001 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit> | 6189 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit><trans-unit id="6284468333579755406" datatype="html"> |
6190 | <source>Edit custom configuration</source><target state="new">Edit custom configuration</target> | ||
6191 | <context-group purpose="location"> | ||
6192 | <context context-type="sourcefile">../app/+admin/config/config.routes.ts</context> | ||
6193 | <context context-type="linenumber">26</context> | ||
6194 | </context-group> | ||
6195 | </trans-unit> | ||
6002 | 6196 | ||
6003 | 6197 | ||
6004 | <trans-unit id="6549061957433635758" datatype="html"> | 6198 | <trans-unit id="6549061957433635758" datatype="html"> |
@@ -6477,7 +6671,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6477 | <x id="PH"/> updated. | 6671 | <x id="PH"/> updated. |
6478 | </target> | 6672 | </target> |
6479 | 6673 | ||
6480 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 6674 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit><trans-unit id="3229595422546554334" datatype="html"> |
6675 | <source>Jobs</source><target state="new">Jobs</target> | ||
6676 | <context-group purpose="location"> | ||
6677 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6678 | <context context-type="linenumber">26</context> | ||
6679 | </context-group> | ||
6680 | </trans-unit><trans-unit id="4804785061014590286" datatype="html"> | ||
6681 | <source>Logs</source><target state="new">Logs</target> | ||
6682 | <context-group purpose="location"> | ||
6683 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6684 | <context context-type="linenumber">37</context> | ||
6685 | </context-group> | ||
6686 | </trans-unit> | ||
6481 | <trans-unit id="3150704904301058778" datatype="html"> | 6687 | <trans-unit id="3150704904301058778" datatype="html"> |
6482 | <source>The plugin index is not available. Please retry later.</source> | 6688 | <source>The plugin index is not available. Please retry later.</source> |
6483 | <target state="new">The plugin index is not available. Please retry later.</target> | 6689 | <target state="new">The plugin index is not available. Please retry later.</target> |
@@ -6591,6 +6797,18 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6591 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> | 6797 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> |
6592 | <context context-type="linenumber">86</context> | 6798 | <context context-type="linenumber">86</context> |
6593 | </context-group> | 6799 | </context-group> |
6800 | </trans-unit><trans-unit id="2903648076838460070" datatype="html"> | ||
6801 | <source>Videos blocked</source><target state="new">Videos blocked</target> | ||
6802 | <context-group purpose="location"> | ||
6803 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6804 | <context context-type="linenumber">67</context> | ||
6805 | </context-group> | ||
6806 | </trans-unit><trans-unit id="7805059636749367886" datatype="html"> | ||
6807 | <source>Muted instances</source><target state="new">Muted instances</target> | ||
6808 | <context-group purpose="location"> | ||
6809 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6810 | <context context-type="linenumber">89</context> | ||
6811 | </context-group> | ||
6594 | </trans-unit> | 6812 | </trans-unit> |
6595 | <trans-unit id="5974506725502681113"> | 6813 | <trans-unit id="5974506725502681113"> |
6596 | <source>Password changed for user <x id="PH"/>.</source> | 6814 | <source>Password changed for user <x id="PH"/>.</source> |
@@ -6603,7 +6821,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6603 | <source>Update user password</source> | 6821 | <source>Update user password</source> |
6604 | <target>Aggiorna password dell' utente</target> | 6822 | <target>Aggiorna password dell' utente</target> |
6605 | 6823 | ||
6606 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit> | 6824 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit><trans-unit id="177544274549739411" datatype="html"> |
6825 | <source>Following list</source><target state="new">Following list</target> | ||
6826 | <context-group purpose="location"> | ||
6827 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6828 | <context context-type="linenumber">28</context> | ||
6829 | </context-group> | ||
6830 | </trans-unit><trans-unit id="8092429110007204784" datatype="html"> | ||
6831 | <source>Followers list</source><target state="new">Followers list</target> | ||
6832 | <context-group purpose="location"> | ||
6833 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6834 | <context context-type="linenumber">37</context> | ||
6835 | </context-group> | ||
6836 | </trans-unit> | ||
6607 | <trans-unit id="780323526182667308" datatype="html"> | 6837 | <trans-unit id="780323526182667308" datatype="html"> |
6608 | <source>User <x id="PH"/> updated.</source> | 6838 | <source>User <x id="PH"/> updated.</source> |
6609 | <target state="new">User | 6839 | <target state="new">User |
@@ -6622,7 +6852,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6622 | <x id="PH"/>. | 6852 | <x id="PH"/>. |
6623 | </target> | 6853 | </target> |
6624 | 6854 | ||
6625 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="8564701209009684429" datatype="html"> | 6855 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="7483807629538115183" datatype="html"> |
6856 | <source>Users list</source><target state="new">Users list</target> | ||
6857 | <context-group purpose="location"> | ||
6858 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6859 | <context context-type="linenumber">27</context> | ||
6860 | </context-group> | ||
6861 | </trans-unit><trans-unit id="1525334987774465166" datatype="html"> | ||
6862 | <source>Create a user</source><target state="new">Create a user</target> | ||
6863 | <context-group purpose="location"> | ||
6864 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6865 | <context context-type="linenumber">36</context> | ||
6866 | </context-group> | ||
6867 | </trans-unit><trans-unit id="5552039423287890133" datatype="html"> | ||
6868 | <source>Update a user</source><target state="new">Update a user</target> | ||
6869 | <context-group purpose="location"> | ||
6870 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6871 | <context context-type="linenumber">48</context> | ||
6872 | </context-group> | ||
6873 | </trans-unit><trans-unit id="8564701209009684429" datatype="html"> | ||
6626 | <source>Federation</source><target state="new">Federation</target> | 6874 | <source>Federation</source><target state="new">Federation</target> |
6627 | <context-group purpose="location"> | 6875 | <context-group purpose="location"> |
6628 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> | 6876 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> |
@@ -6976,7 +7224,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6976 | <source>Views for the day</source> | 7224 | <source>Views for the day</source> |
6977 | <target state="new">Views for the day</target> | 7225 | <target state="new">Views for the day</target> |
6978 | 7226 | ||
6979 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit> | 7227 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit><trans-unit id="4707367314920217630" datatype="html"> |
7228 | <source>Create new video channel</source><target state="new">Create new video channel</target> | ||
7229 | <context-group purpose="location"> | ||
7230 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7231 | <context context-type="linenumber">22</context> | ||
7232 | </context-group> | ||
7233 | </trans-unit><trans-unit id="6059091237492573541" datatype="html"> | ||
7234 | <source>Update video channel</source><target state="new">Update video channel</target> | ||
7235 | <context-group purpose="location"> | ||
7236 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7237 | <context context-type="linenumber">31</context> | ||
7238 | </context-group> | ||
7239 | </trans-unit><trans-unit id="6595008830732269870" datatype="html"> | ||
7240 | <source>Not found</source><target state="new">Not found</target> | ||
7241 | <context-group purpose="location"> | ||
7242 | <context context-type="sourcefile">../app/+page-not-found/page-not-found-routing.module.ts</context> | ||
7243 | <context context-type="linenumber">13</context> | ||
7244 | </context-group> | ||
7245 | </trans-unit> | ||
6980 | <trans-unit id="5032453707232754344"> | 7246 | <trans-unit id="5032453707232754344"> |
6981 | <source>Playlist <x id="PH"/> created.</source> | 7247 | <source>Playlist <x id="PH"/> created.</source> |
6982 | <target>Playlist | 7248 | <target>Playlist |
@@ -6994,7 +7260,31 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6994 | <source>Update playlist</source> | 7260 | <source>Update playlist</source> |
6995 | <target state="new">Update playlist</target> | 7261 | <target state="new">Update playlist</target> |
6996 | 7262 | ||
6997 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-video-playlists/my-account-video-playlist-elements.component.ts</context><context context-type="linenumber">48</context></context-group></trans-unit> | 7263 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">82</context></context-group></trans-unit><trans-unit id="3410331549417637431" datatype="html"> |
7264 | <source>Account video imports</source><target state="new">Account video imports</target> | ||
7265 | <context-group purpose="location"> | ||
7266 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7267 | <context context-type="linenumber">105</context> | ||
7268 | </context-group> | ||
7269 | </trans-unit><trans-unit id="4434998055872154420" datatype="html"> | ||
7270 | <source>Account subscriptions</source><target state="new">Account subscriptions</target> | ||
7271 | <context-group purpose="location"> | ||
7272 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7273 | <context context-type="linenumber">114</context> | ||
7274 | </context-group> | ||
7275 | </trans-unit><trans-unit id="6019411775996586321" datatype="html"> | ||
7276 | <source>Videos history</source><target state="new">Videos history</target> | ||
7277 | <context-group purpose="location"> | ||
7278 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7279 | <context context-type="linenumber">150</context> | ||
7280 | </context-group> | ||
7281 | </trans-unit><trans-unit id="5851560788527570644" datatype="html"> | ||
7282 | <source>Notifications</source><target state="new">Notifications</target> | ||
7283 | <context-group purpose="location"> | ||
7284 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7285 | <context context-type="linenumber">163</context> | ||
7286 | </context-group> | ||
7287 | </trans-unit> | ||
6998 | <trans-unit id="104404386496394770" datatype="html"> | 7288 | <trans-unit id="104404386496394770" datatype="html"> |
6999 | <source>Delete playlist</source> | 7289 | <source>Delete playlist</source> |
7000 | <target state="new">Delete playlist</target> | 7290 | <target state="new">Delete playlist</target> |
@@ -7148,7 +7438,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7148 | <x id="PH"/>. | 7438 | <x id="PH"/>. |
7149 | </target> | 7439 | </target> |
7150 | 7440 | ||
7151 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit> | 7441 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit><trans-unit id="8231550792139699065" datatype="html"> |
7442 | <source>Verify account email</source><target state="new">Verify account email</target> | ||
7443 | <context-group purpose="location"> | ||
7444 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7445 | <context context-type="linenumber">17</context> | ||
7446 | </context-group> | ||
7447 | </trans-unit><trans-unit id="4997281272800290390" datatype="html"> | ||
7448 | <source>Verify account ask send email</source><target state="new">Verify account ask send email</target> | ||
7449 | <context-group purpose="location"> | ||
7450 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7451 | <context context-type="linenumber">26</context> | ||
7452 | </context-group> | ||
7453 | </trans-unit> | ||
7152 | <trans-unit id="4180693983967989981"> | 7454 | <trans-unit id="4180693983967989981"> |
7153 | <source>Unable to find user id or verification string.</source> | 7455 | <source>Unable to find user id or verification string.</source> |
7154 | <target>Impossibile trovare utente o testo di verifica.</target> | 7456 | <target>Impossibile trovare utente o testo di verifica.</target> |
@@ -7273,27 +7575,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7273 | <source>any language</source> | 7575 | <source>any language</source> |
7274 | <target state="new">any language</target> | 7576 | <target state="new">any language</target> |
7275 | 7577 | ||
7276 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">202</context></context-group></trans-unit> | 7578 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">229</context></context-group></trans-unit> |
7277 | <trans-unit id="5633144232269377096" datatype="html"> | 7579 | <trans-unit id="5633144232269377096" datatype="html"> |
7278 | <source>hide</source> | 7580 | <source>hide</source> |
7279 | <target state="new">hide</target> | 7581 | <target state="new">hide</target> |
7280 | 7582 | ||
7281 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">118</context></context-group></trans-unit> | 7583 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> |
7282 | <trans-unit id="8603861867909474404" datatype="html"> | 7584 | <trans-unit id="8603861867909474404" datatype="html"> |
7283 | <source>blur</source> | 7585 | <source>blur</source> |
7284 | <target state="new">blur</target> | 7586 | <target state="new">blur</target> |
7285 | 7587 | ||
7286 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> | 7588 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> |
7287 | <trans-unit id="4534458451100881847" datatype="html"> | 7589 | <trans-unit id="4534458451100881847" datatype="html"> |
7288 | <source>display</source> | 7590 | <source>display</source> |
7289 | <target state="new">display</target> | 7591 | <target state="new">display</target> |
7290 | 7592 | ||
7291 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> | 7593 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">127</context></context-group></trans-unit> |
7292 | <trans-unit id="4467323362722952678" datatype="html"> | 7594 | <trans-unit id="4467323362722952678" datatype="html"> |
7293 | <source>Unknown</source> | 7595 | <source>Unknown</source> |
7294 | <target state="new">Unknown</target> | 7596 | <target state="new">Unknown</target> |
7295 | 7597 | ||
7296 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">190</context></context-group></trans-unit> | 7598 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">193</context></context-group></trans-unit> |
7297 | <trans-unit id="8781423666414310853"> | 7599 | <trans-unit id="8781423666414310853"> |
7298 | <source>Your password has been successfully reset!</source> | 7600 | <source>Your password has been successfully reset!</source> |
7299 | <target>La tua password è stata reimpostata con successo!</target> | 7601 | <target>La tua password è stata reimpostata con successo!</target> |
@@ -8411,27 +8713,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8411 | <source>Emphasis</source> | 8713 | <source>Emphasis</source> |
8412 | <target>Enfasi</target> | 8714 | <target>Enfasi</target> |
8413 | 8715 | ||
8414 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">77</context></context-group></trans-unit> | 8716 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> |
8415 | <trans-unit id="7565716024468232322"> | 8717 | <trans-unit id="7565716024468232322"> |
8416 | <source>Links</source> | 8718 | <source>Links</source> |
8417 | <target>Link</target> | 8719 | <target>Link</target> |
8418 | 8720 | ||
8419 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">78</context></context-group></trans-unit> | 8721 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> |
8420 | <trans-unit id="7838476952710404110"> | 8722 | <trans-unit id="7838476952710404110"> |
8421 | <source>New lines</source> | 8723 | <source>New lines</source> |
8422 | <target>A capo</target> | 8724 | <target>A capo</target> |
8423 | 8725 | ||
8424 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 8726 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">83</context></context-group></trans-unit> |
8425 | <trans-unit id="8756167649220050929"> | 8727 | <trans-unit id="8756167649220050929"> |
8426 | <source>Lists</source> | 8728 | <source>Lists</source> |
8427 | <target>Elenchi</target> | 8729 | <target>Elenchi</target> |
8428 | 8730 | ||
8429 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">80</context></context-group></trans-unit> | 8731 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">84</context></context-group></trans-unit> |
8430 | <trans-unit id="414887388288176527"> | 8732 | <trans-unit id="414887388288176527"> |
8431 | <source>Images</source> | 8733 | <source>Images</source> |
8432 | <target>Immagini</target> | 8734 | <target>Immagini</target> |
8433 | 8735 | ||
8434 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> | 8736 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">85</context></context-group></trans-unit> |
8435 | <trans-unit id="5708680277917691451"> | 8737 | <trans-unit id="5708680277917691451"> |
8436 | <source> | 8738 | <source> |
8437 | <x id="PH"/> users banned. | 8739 | <x id="PH"/> users banned. |
@@ -8827,7 +9129,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8827 | <source>Moderator</source> | 9129 | <source>Moderator</source> |
8828 | <target>Moderatore</target> | 9130 | <target>Moderatore</target> |
8829 | 9131 | ||
8830 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">386</context></context-group></trans-unit> | 9132 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">384</context></context-group></trans-unit> |
8831 | <trans-unit id="3723085768598852106" datatype="html"> | 9133 | <trans-unit id="3723085768598852106" datatype="html"> |
8832 | <source>Video removed from | 9134 | <source>Video removed from |
8833 | <x id="PH"/> | 9135 | <x id="PH"/> |
@@ -8900,7 +9202,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8900 | <source>Do you really want to delete this comment?</source> | 9202 | <source>Do you really want to delete this comment?</source> |
8901 | <target state="new">Do you really want to delete this comment?</target> | 9203 | <target state="new">Do you really want to delete this comment?</target> |
8902 | 9204 | ||
8903 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">434</context></context-group></trans-unit> | 9205 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">166</context></context-group></trans-unit> |
8904 | <trans-unit id="7837272126865175984" datatype="html"> | 9206 | <trans-unit id="7837272126865175984" datatype="html"> |
8905 | <source>Comment deleted.</source> | 9207 | <source>Comment deleted.</source> |
8906 | <target state="new">Comment deleted.</target> | 9208 | <target state="new">Comment deleted.</target> |
@@ -9012,9 +9314,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9012 | 9314 | ||
9013 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> | 9315 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> |
9014 | <source>Report</source><target state="new">Report</target> | 9316 | <source>Report</source><target state="new">Report</target> |
9317 | |||
9318 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="4814285799071780083" datatype="html"> | ||
9319 | <source>Remove</source><target state="new">Remove</target> | ||
9015 | <context-group purpose="location"> | 9320 | <context-group purpose="location"> |
9016 | <context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> | 9321 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> |
9017 | <context context-type="linenumber">286</context> | 9322 | <context context-type="linenumber">179</context> |
9323 | </context-group> | ||
9324 | </trans-unit><trans-unit id="6871668720687277843" datatype="html"> | ||
9325 | <source>Remove & re-draft</source><target state="new">Remove & re-draft</target> | ||
9326 | <context-group purpose="location"> | ||
9327 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> | ||
9328 | <context context-type="linenumber">187</context> | ||
9018 | </context-group> | 9329 | </context-group> |
9019 | </trans-unit> | 9330 | </trans-unit> |
9020 | <trans-unit id="4903651219400691248" datatype="html"> | 9331 | <trans-unit id="4903651219400691248" datatype="html"> |
@@ -9118,22 +9429,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9118 | <source>Only I can see this video</source> | 9429 | <source>Only I can see this video</source> |
9119 | <target>Solo io posso vedere questo video</target> | 9430 | <target>Solo io posso vedere questo video</target> |
9120 | 9431 | ||
9121 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">340</context></context-group></trans-unit> | 9432 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">341</context></context-group></trans-unit> |
9122 | <trans-unit id="6767380569816110388" datatype="html"> | 9433 | <trans-unit id="6767380569816110388" datatype="html"> |
9123 | <source>Only shareable via a private link</source> | 9434 | <source>Only shareable via a private link</source> |
9124 | <target state="new">Only shareable via a private link</target> | 9435 | <target state="new">Only shareable via a private link</target> |
9125 | 9436 | ||
9126 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">344</context></context-group></trans-unit> | 9437 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">345</context></context-group></trans-unit> |
9127 | <trans-unit id="6828965264297239528"> | 9438 | <trans-unit id="6828965264297239528"> |
9128 | <source>Anyone can see this video</source> | 9439 | <source>Anyone can see this video</source> |
9129 | <target>Tutti possono vedere questo video</target> | 9440 | <target>Tutti possono vedere questo video</target> |
9130 | 9441 | ||
9131 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">348</context></context-group></trans-unit> | 9442 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">349</context></context-group></trans-unit> |
9132 | <trans-unit id="1425933035739773115" datatype="html"> | 9443 | <trans-unit id="1425933035739773115" datatype="html"> |
9133 | <source>Only users of this instance can see this video</source> | 9444 | <source>Only users of this instance can see this video</source> |
9134 | <target state="new">Only users of this instance can see this video</target> | 9445 | <target state="new">Only users of this instance can see this video</target> |
9135 | 9446 | ||
9136 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">352</context></context-group></trans-unit> | 9447 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">353</context></context-group></trans-unit> |
9137 | <trans-unit id="5210096066382592800"> | 9448 | <trans-unit id="5210096066382592800"> |
9138 | <source>Video to import updated.</source> | 9449 | <source>Video to import updated.</source> |
9139 | <target>Video da importare aggiornato.</target> | 9450 | <target>Video da importare aggiornato.</target> |
@@ -9213,7 +9524,7 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9213 | <target state="new">Report comment</target> | 9524 | <target state="new">Report comment</target> |
9214 | 9525 | ||
9215 | 9526 | ||
9216 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 9527 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/report-modals/comment-report.component.ts</context><context context-type="linenumber">51</context></context-group></trans-unit> |
9217 | 9528 | ||
9218 | 9529 | ||
9219 | <trans-unit id="6775540171466219199" datatype="html"> | 9530 | <trans-unit id="6775540171466219199" datatype="html"> |
@@ -9377,6 +9688,36 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9377 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> | 9688 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> |
9378 | <context context-type="linenumber">36</context> | 9689 | <context context-type="linenumber">36</context> |
9379 | </context-group> | 9690 | </context-group> |
9691 | </trans-unit><trans-unit id="4668975178372693951" datatype="html"> | ||
9692 | <source>Discover videos</source><target state="new">Discover videos</target> | ||
9693 | <context-group purpose="location"> | ||
9694 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9695 | <context context-type="linenumber">23</context> | ||
9696 | </context-group> | ||
9697 | </trans-unit><trans-unit id="8067135025051844577" datatype="html"> | ||
9698 | <source>Trending videos</source><target state="new">Trending videos</target> | ||
9699 | <context-group purpose="location"> | ||
9700 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9701 | <context context-type="linenumber">32</context> | ||
9702 | </context-group> | ||
9703 | </trans-unit><trans-unit id="664221386829541948" datatype="html"> | ||
9704 | <source>Recently added videos</source><target state="new">Recently added videos</target> | ||
9705 | <context-group purpose="location"> | ||
9706 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9707 | <context context-type="linenumber">58</context> | ||
9708 | </context-group> | ||
9709 | </trans-unit><trans-unit id="8212906256415538361" datatype="html"> | ||
9710 | <source>Upload a video</source><target state="new">Upload a video</target> | ||
9711 | <context-group purpose="location"> | ||
9712 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9713 | <context context-type="linenumber">97</context> | ||
9714 | </context-group> | ||
9715 | </trans-unit><trans-unit id="7590784934397800835" datatype="html"> | ||
9716 | <source>Edit a video</source><target state="new">Edit a video</target> | ||
9717 | <context-group purpose="location"> | ||
9718 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9719 | <context context-type="linenumber">106</context> | ||
9720 | </context-group> | ||
9380 | </trans-unit> | 9721 | </trans-unit> |
9381 | </body> | 9722 | </body> |
9382 | </file> | 9723 | </file> |
diff --git a/client/src/locale/angular.ja-JP.xlf b/client/src/locale/angular.ja-JP.xlf index 689e8cd6b..4c5e39439 100644 --- a/client/src/locale/angular.ja-JP.xlf +++ b/client/src/locale/angular.ja-JP.xlf | |||
@@ -310,7 +310,7 @@ | |||
310 | <target>オプション</target> | 310 | <target>オプション</target> |
311 | 311 | ||
312 | 312 | ||
313 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 313 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">48</context></context-group></trans-unit> |
314 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d"> | 314 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d"> |
315 | <source>Start at</source> | 315 | <source>Start at</source> |
316 | <target>再生位置 (~から再生)</target> | 316 | <target>再生位置 (~から再生)</target> |
@@ -442,7 +442,7 @@ | |||
442 | キャンセル | 442 | キャンセル |
443 | </target> | 443 | </target> |
444 | 444 | ||
445 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> | 445 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit> |
446 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd"> | 446 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd"> |
447 | <source>Download</source> | 447 | <source>Download</source> |
448 | <target>ダウンロード</target> | 448 | <target>ダウンロード</target> |
@@ -561,7 +561,7 @@ | |||
561 | 561 | ||
562 | 562 | ||
563 | 563 | ||
564 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 564 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
565 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc"> | 565 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc"> |
566 | <source>Edit starts/stops at</source> | 566 | <source>Edit starts/stops at</source> |
567 | <target>Edit starts/stops at</target> | 567 | <target>Edit starts/stops at</target> |
@@ -601,7 +601,7 @@ | |||
601 | 601 | ||
602 | 602 | ||
603 | 603 | ||
604 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> | 604 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
605 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> | 605 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> |
606 | <source>Edit</source> | 606 | <source>Edit</source> |
607 | <target>編集</target> | 607 | <target>編集</target> |
@@ -626,17 +626,10 @@ | |||
626 | <target>完全なプレビュー</target> | 626 | <target>完全なプレビュー</target> |
627 | 627 | ||
628 | <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></trans-unit> | 628 | <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></trans-unit> |
629 | <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f"> | 629 | <trans-unit id="8644431249513874405" datatype="html"> |
630 | <source>Get help</source> | ||
631 | <target>ヘルプを取得</target> | ||
632 | |||
633 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit><trans-unit id="8644431249513874405" datatype="html"> | ||
634 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> | 630 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> |
635 | <context-group purpose="location"> | 631 | |
636 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 632 | <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></trans-unit> |
637 | <context context-type="linenumber">71</context> | ||
638 | </context-group> | ||
639 | </trans-unit> | ||
640 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> | 633 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> |
641 | <source>Recommended</source> | 634 | <source>Recommended</source> |
642 | <target state="new">Recommended</target> | 635 | <target state="new">Recommended</target> |
@@ -676,7 +669,7 @@ | |||
676 | <source>PROFILE SETTINGS</source> | 669 | <source>PROFILE SETTINGS</source> |
677 | <target state="new">PROFILE SETTINGS</target> | 670 | <target state="new">PROFILE SETTINGS</target> |
678 | 671 | ||
679 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 672 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">12</context></context-group></trans-unit> |
680 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3"> | 673 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3"> |
681 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> | 674 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> |
682 | <target> | 675 | <target> |
@@ -848,11 +841,8 @@ | |||
848 | 841 | ||
849 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> | 842 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> |
850 | <source>User</source><target state="new">User</target> | 843 | <source>User</source><target state="new">User</target> |
851 | <context-group purpose="location"> | 844 | |
852 | <context context-type="sourcefile">../app/core/users/user.service.ts</context> | 845 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit> |
853 | <context context-type="linenumber">384</context> | ||
854 | </context-group> | ||
855 | </trans-unit> | ||
856 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0"> | 846 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0"> |
857 | <source>Ban</source> | 847 | <source>Ban</source> |
858 | <target>BAN</target> | 848 | <target>BAN</target> |
@@ -1346,89 +1336,89 @@ The link will expire within 1 hour.</target> | |||
1346 | <source>Account settings</source> | 1336 | <source>Account settings</source> |
1347 | <target state="translated">アカウント設定</target> | 1337 | <target state="translated">アカウント設定</target> |
1348 | 1338 | ||
1349 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 1339 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
1350 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> | 1340 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> |
1351 | <source>Channels settings</source> | 1341 | <source>Channels settings</source> |
1352 | <target state="translated">チャンネル設定</target> | 1342 | <target state="translated">チャンネル設定</target> |
1353 | 1343 | ||
1354 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 1344 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> |
1355 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> | 1345 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> |
1356 | <source>Interface:</source> | 1346 | <source>Interface:</source> |
1357 | <target state="new">Interface:</target> | 1347 | <target state="new">Interface:</target> |
1358 | 1348 | ||
1359 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 1349 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1360 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> | 1350 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> |
1361 | <source>Videos:</source> | 1351 | <source>Videos:</source> |
1362 | <target state="new">Videos:</target> | 1352 | <target state="new">Videos:</target> |
1363 | 1353 | ||
1364 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 1354 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> |
1365 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> | 1355 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> |
1366 | <source>Sensitive:</source> | 1356 | <source>Sensitive:</source> |
1367 | <target state="new">Sensitive:</target> | 1357 | <target state="new">Sensitive:</target> |
1368 | 1358 | ||
1369 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 1359 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">54</context></context-group></trans-unit> |
1370 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1360 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> |
1371 | <source>Interface: <x id="INTERPOLATION"/></source> | 1361 | <source>Interface: <x id="INTERPOLATION"/></source> |
1372 | <target state="new">Interface: | 1362 | <target state="new">Interface: |
1373 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> | 1363 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> |
1374 | </target> | 1364 | </target> |
1375 | 1365 | ||
1376 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">156</context></context-group></trans-unit> | 1366 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> |
1377 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1367 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1378 | <source>Help share videos</source> | 1368 | <source>Help share videos</source> |
1379 | <target state="new">Help share videos</target> | 1369 | <target state="new">Help share videos</target> |
1380 | 1370 | ||
1381 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> | 1371 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
1382 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> | 1372 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> |
1383 | <source>More account settings</source> | 1373 | <source>More account settings</source> |
1384 | <target state="new">More account settings</target> | 1374 | <target state="new">More account settings</target> |
1385 | 1375 | ||
1386 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> | 1376 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> |
1387 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> | 1377 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> |
1388 | <source>Keyboard shortcuts</source> | 1378 | <source>Keyboard shortcuts</source> |
1389 | <target state="new">Keyboard shortcuts</target> | 1379 | <target state="new">Keyboard shortcuts</target> |
1390 | 1380 | ||
1391 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 1381 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">72</context></context-group></trans-unit> |
1392 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> | 1382 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> |
1393 | <source>Help</source> | 1383 | <source>Help</source> |
1394 | <target state="new">Help</target> | 1384 | <target state="new">Help</target> |
1395 | 1385 | ||
1396 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1386 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1397 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> | 1387 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> |
1398 | <source>Get help using PeerTube</source> | 1388 | <source>Get help using PeerTube</source> |
1399 | <target state="new">Get help using PeerTube</target> | 1389 | <target state="new">Get help using PeerTube</target> |
1400 | 1390 | ||
1401 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">161</context></context-group></trans-unit> | 1391 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">167</context></context-group></trans-unit> |
1402 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> | 1392 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> |
1403 | <source>Shortcuts</source> | 1393 | <source>Shortcuts</source> |
1404 | <target state="new">Shortcuts</target> | 1394 | <target state="new">Shortcuts</target> |
1405 | 1395 | ||
1406 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1396 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1407 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> | 1397 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> |
1408 | <source>powered by PeerTube</source> | 1398 | <source>powered by PeerTube</source> |
1409 | <target state="new">powered by PeerTube</target> | 1399 | <target state="new">powered by PeerTube</target> |
1410 | 1400 | ||
1411 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | 1401 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">177</context></context-group></trans-unit> |
1412 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> | 1402 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> |
1413 | <source>powered by PeerTube - CopyLeft 2015-2020</source> | 1403 | <source>powered by PeerTube - CopyLeft 2015-2020</source> |
1414 | <target state="new">powered by PeerTube - CopyLeft 2015-2020</target> | 1404 | <target state="new">powered by PeerTube - CopyLeft 2015-2020</target> |
1415 | 1405 | ||
1416 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> | 1406 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">176</context></context-group></trans-unit> |
1417 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344"> | 1407 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344"> |
1418 | <source>Log out</source> | 1408 | <source>Log out</source> |
1419 | <target>ログアウト</target> | 1409 | <target>ログアウト</target> |
1420 | 1410 | ||
1421 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">70</context></context-group></trans-unit> | 1411 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit> |
1422 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> | 1412 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> |
1423 | <source>Create an account</source> | 1413 | <source>Create an account</source> |
1424 | <target>アカウントを作成する</target> | 1414 | <target>アカウントを作成する</target> |
1425 | 1415 | ||
1426 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">78</context></context-group></trans-unit> | 1416 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
1427 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> | 1417 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> |
1428 | <source>MY LIBRARY</source> | 1418 | <source>MY LIBRARY</source> |
1429 | <target state="new">MY LIBRARY</target> | 1419 | <target state="new">MY LIBRARY</target> |
1430 | 1420 | ||
1431 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 1421 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">88</context></context-group></trans-unit> |
1432 | <trans-unit id="6371572688505952303"> | 1422 | <trans-unit id="6371572688505952303"> |
1433 | <source>My library</source> | 1423 | <source>My library</source> |
1434 | <target>ライブラリ</target> | 1424 | <target>ライブラリ</target> |
@@ -1468,22 +1458,22 @@ The link will expire within 1 hour.</target> | |||
1468 | <source>Videos</source> | 1458 | <source>Videos</source> |
1469 | <target>動画</target> | 1459 | <target>動画</target> |
1470 | 1460 | ||
1471 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">86</context></context-group></trans-unit> | 1461 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">92</context></context-group></trans-unit> |
1472 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> | 1462 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> |
1473 | <source>Playlists</source> | 1463 | <source>Playlists</source> |
1474 | <target>プレイリスト</target> | 1464 | <target>プレイリスト</target> |
1475 | 1465 | ||
1476 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">91</context></context-group></trans-unit> | 1466 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">97</context></context-group></trans-unit> |
1477 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2"> | 1467 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2"> |
1478 | <source>Subscriptions</source> | 1468 | <source>Subscriptions</source> |
1479 | <target>登録チャンネル</target> | 1469 | <target>登録チャンネル</target> |
1480 | 1470 | ||
1481 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 1471 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">102</context></context-group></trans-unit> |
1482 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8"> | 1472 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8"> |
1483 | <source>History</source> | 1473 | <source>History</source> |
1484 | <target>履歴</target> | 1474 | <target>履歴</target> |
1485 | 1475 | ||
1486 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit> | 1476 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">107</context></context-group></trans-unit> |
1487 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> | 1477 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> |
1488 | <source>VIDEOS</source> | 1478 | <source>VIDEOS</source> |
1489 | <target state="new">VIDEOS</target> | 1479 | <target state="new">VIDEOS</target> |
@@ -1495,27 +1485,27 @@ The link will expire within 1 hour.</target> | |||
1495 | <target state="translated">ディスカバー</target> | 1485 | <target state="translated">ディスカバー</target> |
1496 | 1486 | ||
1497 | 1487 | ||
1498 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">111</context></context-group></trans-unit> | 1488 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">117</context></context-group></trans-unit> |
1499 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> | 1489 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> |
1500 | <source>Trending</source> | 1490 | <source>Trending</source> |
1501 | <target>急上昇</target> | 1491 | <target>急上昇</target> |
1502 | 1492 | ||
1503 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">116</context></context-group></trans-unit> | 1493 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">122</context></context-group></trans-unit> |
1504 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> | 1494 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> |
1505 | <source>Most liked</source> | 1495 | <source>Most liked</source> |
1506 | <target state="translated">最も好まれている動画</target> | 1496 | <target state="translated">最も好まれている動画</target> |
1507 | 1497 | ||
1508 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">121</context></context-group></trans-unit> | 1498 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">127</context></context-group></trans-unit> |
1509 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> | 1499 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> |
1510 | <source>Recently added</source> | 1500 | <source>Recently added</source> |
1511 | <target>最近追加された動画</target> | 1501 | <target>最近追加された動画</target> |
1512 | 1502 | ||
1513 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">126</context></context-group></trans-unit> | 1503 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">132</context></context-group></trans-unit> |
1514 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> | 1504 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> |
1515 | <source>Administration</source> | 1505 | <source>Administration</source> |
1516 | <target>管理</target> | 1506 | <target>管理</target> |
1517 | 1507 | ||
1518 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">140</context></context-group></trans-unit> | 1508 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">146</context></context-group></trans-unit> |
1519 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> | 1509 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> |
1520 | <source>About</source> | 1510 | <source>About</source> |
1521 | <target>このインスタンスについて</target> | 1511 | <target>このインスタンスについて</target> |
@@ -1526,7 +1516,7 @@ The link will expire within 1 hour.</target> | |||
1526 | <source>Contact</source> | 1516 | <source>Contact</source> |
1527 | <target state="new">Contact</target> | 1517 | <target state="new">Contact</target> |
1528 | 1518 | ||
1529 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">160</context></context-group></trans-unit> | 1519 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">166</context></context-group></trans-unit> |
1530 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771"> | 1520 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771"> |
1531 | <source>View your notifications</source> | 1521 | <source>View your notifications</source> |
1532 | <target>通知を表示</target> | 1522 | <target>通知を表示</target> |
@@ -1553,7 +1543,7 @@ The link will expire within 1 hour.</target> | |||
1553 | <source>See all your notifications</source> | 1543 | <source>See all your notifications</source> |
1554 | <target>通知をすべて見る</target> | 1544 | <target>通知をすべて見る</target> |
1555 | 1545 | ||
1556 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 1546 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">40</context></context-group></trans-unit> |
1557 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> | 1547 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> |
1558 | <source>Search videos, channels…</source> | 1548 | <source>Search videos, channels…</source> |
1559 | <target state="new">Search videos, channels…</target> | 1549 | <target state="new">Search videos, channels…</target> |
@@ -1887,22 +1877,22 @@ The link will expire within 1 hour.</target> | |||
1887 | <source>FAQ</source> | 1877 | <source>FAQ</source> |
1888 | <target state="new">FAQ</target> | 1878 | <target state="new">FAQ</target> |
1889 | 1879 | ||
1890 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">163</context></context-group></trans-unit> | 1880 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
1891 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> | 1881 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> |
1892 | <source>Frequently asked questions about PeerTube</source> | 1882 | <source>Frequently asked questions about PeerTube</source> |
1893 | <target state="new">Frequently asked questions about PeerTube</target> | 1883 | <target state="new">Frequently asked questions about PeerTube</target> |
1894 | 1884 | ||
1895 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1885 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1896 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> | 1886 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> |
1897 | <source>API</source> | 1887 | <source>API</source> |
1898 | <target state="new">API</target> | 1888 | <target state="new">API</target> |
1899 | 1889 | ||
1900 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1890 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1901 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> | 1891 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> |
1902 | <source>API documentation</source> | 1892 | <source>API documentation</source> |
1903 | <target state="new">API documentation</target> | 1893 | <target state="new">API documentation</target> |
1904 | 1894 | ||
1905 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 1895 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
1906 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5"> | 1896 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5"> |
1907 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> | 1897 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> |
1908 | <target>スケジュール公開 ( | 1898 | <target>スケジュール公開 ( |
@@ -2289,7 +2279,13 @@ The link will expire within 1 hour.</target> | |||
2289 | Less customization | 2279 | Less customization |
2290 | </target> | 2280 | </target> |
2291 | 2281 | ||
2292 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit> | 2282 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit><trans-unit id="2454050363478003966" datatype="html"> |
2283 | <source>Login</source><target state="new">Login</target> | ||
2284 | <context-group purpose="location"> | ||
2285 | <context context-type="sourcefile">../app/+login/login-routing.module.ts</context> | ||
2286 | <context context-type="linenumber">14</context> | ||
2287 | </context-group> | ||
2288 | </trans-unit> | ||
2293 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e" datatype="html"> | 2289 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e" datatype="html"> |
2294 | <source>Autoplay</source> | 2290 | <source>Autoplay</source> |
2295 | <target state="new">Autoplay</target> | 2291 | <target state="new">Autoplay</target> |
@@ -2560,7 +2556,7 @@ The link will expire within 1 hour.</target> | |||
2560 | <source>No comments.</source> | 2556 | <source>No comments.</source> |
2561 | <target>コメントがありません。</target> | 2557 | <target>コメントがありません。</target> |
2562 | 2558 | ||
2563 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 2559 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> |
2564 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> | 2560 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> |
2565 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> | 2561 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> |
2566 | <target state="new"> | 2562 | <target state="new"> |
@@ -2570,7 +2566,7 @@ The link will expire within 1 hour.</target> | |||
2570 | 2566 | ||
2571 | </target> | 2567 | </target> |
2572 | 2568 | ||
2573 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">79</context></context-group></trans-unit> | 2569 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
2574 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> | 2570 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> |
2575 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> | 2571 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> |
2576 | <target state="new"> | 2572 | <target state="new"> |
@@ -2579,34 +2575,96 @@ The link will expire within 1 hour.</target> | |||
2579 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> | 2575 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> |
2580 | </target> | 2576 | </target> |
2581 | 2577 | ||
2582 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 2578 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">87</context></context-group></trans-unit> |
2583 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> | 2579 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> |
2584 | <source>View <x id="INTERPOLATION"/> replies</source> | 2580 | <source>View <x id="INTERPOLATION"/> replies</source> |
2585 | <target state="new">View | 2581 | <target state="new">View |
2586 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies | 2582 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies |
2587 | </target> | 2583 | </target> |
2588 | 2584 | ||
2589 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">85</context></context-group></trans-unit> | 2585 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">90</context></context-group></trans-unit> |
2590 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828"> | 2586 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828"> |
2591 | <source>Comments are disabled.</source> | 2587 | <source>Comments are disabled.</source> |
2592 | <target>コメントはオフになっています。</target> | 2588 | <target>コメントはオフになっています。</target> |
2593 | 2589 | ||
2594 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 2590 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit> |
2595 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e"> | 2591 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e"> |
2596 | <source>Add comment...</source> | 2592 | <source>Add comment...</source> |
2597 | <target>コメントを入力...</target> | 2593 | <target>コメントを入力...</target> |
2598 | 2594 | ||
2599 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | 2595 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit><trans-unit id="4e5254dedf0c12ce7e7c2197384fceebe3b29a2b" datatype="html"> |
2600 | <trans-unit id="8956c0f4c6974289fc63f1ab6b54f5b32ed65eeb" datatype="html"> | 2596 | <source>Markdown compatible</source><target state="new">Markdown compatible</target> |
2601 | <source>Reply</source> | 2597 | <context-group purpose="location"> |
2602 | <target state="translated">返信</target> | 2598 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> |
2603 | 2599 | <context context-type="linenumber">13</context> | |
2604 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 2600 | </context-group> |
2601 | </trans-unit><trans-unit id="4739ffad85f09defefdb6e51b45f43b2ef7c4388" datatype="html"> | ||
2602 | <source>Markdown compatible that supports:</source><target state="new">Markdown compatible that supports:</target> | ||
2603 | <context-group purpose="location"> | ||
2604 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2605 | <context context-type="linenumber">15</context> | ||
2606 | </context-group> | ||
2607 | </trans-unit><trans-unit id="9a53b17a021bb0677c156fd893461797fc497a10" datatype="html"> | ||
2608 | <source>Auto generated links</source><target state="new">Auto generated links</target> | ||
2609 | <context-group purpose="location"> | ||
2610 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2611 | <context context-type="linenumber">18</context> | ||
2612 | </context-group> | ||
2613 | </trans-unit><trans-unit id="664f99b8919d6dd2faa1c1f7c378aa86d1be5e8a" datatype="html"> | ||
2614 | <source>Break lines</source><target state="new">Break lines</target> | ||
2615 | <context-group purpose="location"> | ||
2616 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2617 | <context context-type="linenumber">19</context> | ||
2618 | </context-group> | ||
2619 | </trans-unit><trans-unit id="b15e7bec5c7833d2d9634946ccbed68967b1bee1" datatype="html"> | ||
2620 | <source>Lists</source><target state="new">Lists</target> | ||
2621 | <context-group purpose="location"> | ||
2622 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2623 | <context context-type="linenumber">20</context> | ||
2624 | </context-group> | ||
2625 | </trans-unit><trans-unit id="ab4426b60f13c00b61d6b714d390dc629f314980" datatype="html"> | ||
2626 | <source>Emphasis</source><target state="new">Emphasis</target> | ||
2627 | <context-group purpose="location"> | ||
2628 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2629 | <context context-type="linenumber">22</context> | ||
2630 | </context-group> | ||
2631 | </trans-unit><trans-unit id="4e13b179501d3d32721037e03b4c04acb9857c5f" datatype="html"> | ||
2632 | <source>bold</source><target state="new">bold</target> | ||
2633 | <context-group purpose="location"> | ||
2634 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2635 | <context context-type="linenumber">23</context> | ||
2636 | </context-group> | ||
2637 | </trans-unit><trans-unit id="3c12190421fbb2756e6bbead923df9ec5de8ede2" datatype="html"> | ||
2638 | <source>italic</source><target state="new">italic</target> | ||
2639 | <context-group purpose="location"> | ||
2640 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2641 | <context context-type="linenumber">23</context> | ||
2642 | </context-group> | ||
2643 | </trans-unit><trans-unit id="adb4bbdcb961b8aac8298d6cac554d9b25636b7a" datatype="html"> | ||
2644 | <source>Emoji shortcuts</source><target state="new">Emoji shortcuts</target> | ||
2645 | <context-group purpose="location"> | ||
2646 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2647 | <context context-type="linenumber">26</context> | ||
2648 | </context-group> | ||
2649 | </trans-unit><trans-unit id="b9809a21a8eb3c9db2a0282c5dd94bc221575c96" datatype="html"> | ||
2650 | <source>Emoji markup</source><target state="new">Emoji markup</target> | ||
2651 | <context-group purpose="location"> | ||
2652 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2653 | <context context-type="linenumber">30</context> | ||
2654 | </context-group> | ||
2655 | </trans-unit><trans-unit id="f37feb427aaa551edd1f22616be6464bc0d492de" datatype="html"> | ||
2656 | <source>See complete list</source><target state="new">See complete list</target> | ||
2657 | <context-group purpose="location"> | ||
2658 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2659 | <context context-type="linenumber">32</context> | ||
2660 | </context-group> | ||
2661 | </trans-unit> | ||
2662 | |||
2605 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135"> | 2663 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135"> |
2606 | <source>You are one step away from commenting</source> | 2664 | <source>You are one step away from commenting</source> |
2607 | <target state="translated">あなたはコメントから一歩離れています</target> | 2665 | <target state="translated">あなたはコメントから一歩離れています</target> |
2608 | 2666 | ||
2609 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 2667 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
2610 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> | 2668 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> |
2611 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> | 2669 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> |
2612 | <target state="new"> | 2670 | <target state="new"> |
@@ -2615,17 +2673,35 @@ The link will expire within 1 hour.</target> | |||
2615 | from within the software's interface. | 2673 | from within the software's interface. |
2616 | </target> | 2674 | </target> |
2617 | 2675 | ||
2618 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 2676 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
2619 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb"> | 2677 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb"> |
2620 | <source>If you have an account on Mastodon or Pleroma, you can open it directly in their interface:</source> | 2678 | <source>If you have an account on Mastodon or Pleroma, you can open it directly in their interface:</source> |
2621 | <target state="translated">MastodonまたはPleromaのアカウントをお持ちの場合は、それらのインターフェースで直接開くことができます:</target> | 2679 | <target state="translated">MastodonまたはPleromaのアカウントをお持ちの場合は、それらのインターフェースで直接開くことができます:</target> |
2622 | 2680 | ||
2623 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">41</context></context-group></trans-unit> | 2681 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">65</context></context-group></trans-unit> |
2624 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> | 2682 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> |
2625 | <source>Login to comment</source> | 2683 | <source>Login to comment</source> |
2626 | <target state="new">Login to comment</target> | 2684 | <target state="new">Login to comment</target> |
2627 | 2685 | ||
2628 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">52</context></context-group></trans-unit> | 2686 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit><trans-unit id="974170f455ff5a9034d5737e84b4194c0046fc6b" datatype="html"> |
2687 | <source>Markdown Emoji List</source><target state="new">Markdown Emoji List</target> | ||
2688 | <context-group purpose="location"> | ||
2689 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2690 | <context context-type="linenumber">84</context> | ||
2691 | </context-group> | ||
2692 | </trans-unit><trans-unit id="2662644497259948010" datatype="html"> | ||
2693 | <source>Comment</source><target state="new">Comment</target> | ||
2694 | <context-group purpose="location"> | ||
2695 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2696 | <context context-type="linenumber">58</context> | ||
2697 | </context-group> | ||
2698 | </trans-unit><trans-unit id="4502286564339177240" datatype="html"> | ||
2699 | <source>Reply</source><target state="new">Reply</target> | ||
2700 | <context-group purpose="location"> | ||
2701 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2702 | <context context-type="linenumber">60</context> | ||
2703 | </context-group> | ||
2704 | </trans-unit> | ||
2629 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285"> | 2705 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285"> |
2630 | <source>Highlighted comment</source> | 2706 | <source>Highlighted comment</source> |
2631 | <target>注目のコメント</target> | 2707 | <target>注目のコメント</target> |
@@ -2640,7 +2716,7 @@ The link will expire within 1 hour.</target> | |||
2640 | <source>This comment has been deleted</source> | 2716 | <source>This comment has been deleted</source> |
2641 | <target state="translated">このコメントが削除されました</target> | 2717 | <target state="translated">このコメントが削除されました</target> |
2642 | 2718 | ||
2643 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">62</context></context-group></trans-unit> | 2719 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">61</context></context-group></trans-unit> |
2644 | <trans-unit id="9031514421077169181" datatype="html"> | 2720 | <trans-unit id="9031514421077169181" datatype="html"> |
2645 | <source>Video redundancies</source> | 2721 | <source>Video redundancies</source> |
2646 | <target state="new">Video redundancies</target> | 2722 | <target state="new">Video redundancies</target> |
@@ -3493,7 +3569,25 @@ The link will expire within 1 hour.</target> | |||
3493 | <target state="new">No account found.</target> | 3569 | <target state="new">No account found.</target> |
3494 | 3570 | ||
3495 | 3571 | ||
3496 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit> | 3572 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit><trans-unit id="2338185419645468935" datatype="html"> |
3573 | <source>List installed plugins</source><target state="new">List installed plugins</target> | ||
3574 | <context-group purpose="location"> | ||
3575 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3576 | <context context-type="linenumber">28</context> | ||
3577 | </context-group> | ||
3578 | </trans-unit><trans-unit id="8897412584195581488" datatype="html"> | ||
3579 | <source>Search plugins</source><target state="new">Search plugins</target> | ||
3580 | <context-group purpose="location"> | ||
3581 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3582 | <context context-type="linenumber">37</context> | ||
3583 | </context-group> | ||
3584 | </trans-unit><trans-unit id="4994333937800672218" datatype="html"> | ||
3585 | <source>Show plugin</source><target state="new">Show plugin</target> | ||
3586 | <context-group purpose="location"> | ||
3587 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3588 | <context context-type="linenumber">46</context> | ||
3589 | </context-group> | ||
3590 | </trans-unit> | ||
3497 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> | 3591 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> |
3498 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> | 3592 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> |
3499 | <target state="new">Showing | 3593 | <target state="new">Showing |
@@ -4220,7 +4314,7 @@ The link will expire within 1 hour.</target> | |||
4220 | <source>Administrator</source> | 4314 | <source>Administrator</source> |
4221 | <target>管理者</target> | 4315 | <target>管理者</target> |
4222 | 4316 | ||
4223 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">385</context></context-group></trans-unit> | 4317 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">383</context></context-group></trans-unit> |
4224 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587"> | 4318 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587"> |
4225 | <source>Admin email</source> | 4319 | <source>Admin email</source> |
4226 | <target>管理者のメールアドレス</target> | 4320 | <target>管理者のメールアドレス</target> |
@@ -4482,27 +4576,27 @@ The link will expire within 1 hour.</target> | |||
4482 | <source>VIDEO SETTINGS</source> | 4576 | <source>VIDEO SETTINGS</source> |
4483 | <target state="new">VIDEO SETTINGS</target> | 4577 | <target state="new">VIDEO SETTINGS</target> |
4484 | 4578 | ||
4485 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit> | 4579 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
4486 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> | 4580 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> |
4487 | <source>NOTIFICATIONS</source> | 4581 | <source>NOTIFICATIONS</source> |
4488 | <target state="new">NOTIFICATIONS</target> | 4582 | <target state="new">NOTIFICATIONS</target> |
4489 | 4583 | ||
4490 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 4584 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">37</context></context-group></trans-unit> |
4491 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> | 4585 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> |
4492 | <source>INTERFACE</source> | 4586 | <source>INTERFACE</source> |
4493 | <target state="new">INTERFACE</target> | 4587 | <target state="new">INTERFACE</target> |
4494 | 4588 | ||
4495 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 4589 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit> |
4496 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> | 4590 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> |
4497 | <source>PASSWORD</source> | 4591 | <source>PASSWORD</source> |
4498 | <target state="new">PASSWORD</target> | 4592 | <target state="new">PASSWORD</target> |
4499 | 4593 | ||
4500 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">59</context></context-group></trans-unit> | 4594 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">57</context></context-group></trans-unit> |
4501 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> | 4595 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> |
4502 | <source>EMAIL</source> | 4596 | <source>EMAIL</source> |
4503 | <target state="new">EMAIL</target> | 4597 | <target state="new">EMAIL</target> |
4504 | 4598 | ||
4505 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">69</context></context-group></trans-unit> | 4599 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">67</context></context-group></trans-unit> |
4506 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> | 4600 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> |
4507 | <source>DANGER ZONE</source> | 4601 | <source>DANGER ZONE</source> |
4508 | <target state="new">DANGER ZONE</target> | 4602 | <target state="new">DANGER ZONE</target> |
@@ -4752,7 +4846,31 @@ The link will expire within 1 hour.</target> | |||
4752 | <source>No ownership change request found.</source> | 4846 | <source>No ownership change request found.</source> |
4753 | <target state="new">No ownership change request found.</target> | 4847 | <target state="new">No ownership change request found.</target> |
4754 | 4848 | ||
4755 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit> | 4849 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit><trans-unit id="4247400351982331798" datatype="html"> |
4850 | <source>Account settings</source><target state="new">Account settings</target> | ||
4851 | <context-group purpose="location"> | ||
4852 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4853 | <context context-type="linenumber">37</context> | ||
4854 | </context-group> | ||
4855 | </trans-unit><trans-unit id="154062590416726309" datatype="html"> | ||
4856 | <source>Account playlists</source><target state="new">Account playlists</target> | ||
4857 | <context-group purpose="location"> | ||
4858 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4859 | <context context-type="linenumber">55</context> | ||
4860 | </context-group> | ||
4861 | </trans-unit><trans-unit id="6550287183367517925" datatype="html"> | ||
4862 | <source>Create new playlist</source><target state="new">Create new playlist</target> | ||
4863 | <context-group purpose="location"> | ||
4864 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4865 | <context context-type="linenumber">64</context> | ||
4866 | </context-group> | ||
4867 | </trans-unit><trans-unit id="2864486939135008600" datatype="html"> | ||
4868 | <source>Playlist elements</source><target state="new">Playlist elements</target> | ||
4869 | <context-group purpose="location"> | ||
4870 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4871 | <context context-type="linenumber">73</context> | ||
4872 | </context-group> | ||
4873 | </trans-unit> | ||
4756 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> | 4874 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> |
4757 | <source>My imports</source> | 4875 | <source>My imports</source> |
4758 | <target state="new">My imports</target> | 4876 | <target state="new">My imports</target> |
@@ -5023,7 +5141,25 @@ The link will expire within 1 hour.</target> | |||
5023 | <source>An error occurred.</source> | 5141 | <source>An error occurred.</source> |
5024 | <target state="new">An error occurred.</target> | 5142 | <target state="new">An error occurred.</target> |
5025 | 5143 | ||
5026 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 5144 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit><trans-unit id="9128669621822125729" datatype="html"> |
5145 | <source>Video channel videos</source><target state="new">Video channel videos</target> | ||
5146 | <context-group purpose="location"> | ||
5147 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5148 | <context context-type="linenumber">25</context> | ||
5149 | </context-group> | ||
5150 | </trans-unit><trans-unit id="3193822049276963401" datatype="html"> | ||
5151 | <source>Video channel playlists</source><target state="new">Video channel playlists</target> | ||
5152 | <context-group purpose="location"> | ||
5153 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5154 | <context context-type="linenumber">38</context> | ||
5155 | </context-group> | ||
5156 | </trans-unit><trans-unit id="4723526509708949088" datatype="html"> | ||
5157 | <source>About video channel</source><target state="new">About video channel</target> | ||
5158 | <context-group purpose="location"> | ||
5159 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5160 | <context context-type="linenumber">47</context> | ||
5161 | </context-group> | ||
5162 | </trans-unit> | ||
5027 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97"> | 5163 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97"> |
5028 | <source>Request email for account verification</source> | 5164 | <source>Request email for account verification</source> |
5029 | <target> | 5165 | <target> |
@@ -5144,7 +5280,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5144 | <source>Stats</source> | 5280 | <source>Stats</source> |
5145 | <target>統計</target> | 5281 | <target>統計</target> |
5146 | 5282 | ||
5147 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 5283 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
5148 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc"> | 5284 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc"> |
5149 | <source>Joined <x id="INTERPOLATION"/></source> | 5285 | <source>Joined <x id="INTERPOLATION"/></source> |
5150 | <target>参加 | 5286 | <target>参加 |
@@ -5583,7 +5719,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5583 | <source>This instance does not have instances followings.</source> | 5719 | <source>This instance does not have instances followings.</source> |
5584 | <target state="new">This instance does not have instances followings.</target> | 5720 | <target state="new">This instance does not have instances followings.</target> |
5585 | 5721 | ||
5586 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit> | 5722 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit><trans-unit id="4195286790385468087" datatype="html"> |
5723 | <source>About this instance</source><target state="new">About this instance</target> | ||
5724 | <context-group purpose="location"> | ||
5725 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5726 | <context context-type="linenumber">26</context> | ||
5727 | </context-group> | ||
5728 | </trans-unit><trans-unit id="8773846522957677259" datatype="html"> | ||
5729 | <source>About PeerTube</source><target state="new">About PeerTube</target> | ||
5730 | <context-group purpose="location"> | ||
5731 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5732 | <context context-type="linenumber">38</context> | ||
5733 | </context-group> | ||
5734 | </trans-unit><trans-unit id="5782088737558028158" datatype="html"> | ||
5735 | <source>About follows</source><target state="new">About follows</target> | ||
5736 | <context-group purpose="location"> | ||
5737 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5738 | <context context-type="linenumber">47</context> | ||
5739 | </context-group> | ||
5740 | </trans-unit> | ||
5587 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> | 5741 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> |
5588 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> | 5742 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> |
5589 | <target state="new">Developed with ❤ by | 5743 | <target state="new">Developed with ❤ by |
@@ -5753,6 +5907,12 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5753 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 5907 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> |
5754 | <context context-type="linenumber">1</context> | 5908 | <context context-type="linenumber">1</context> |
5755 | </context-group> | 5909 | </context-group> |
5910 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
5911 | <source>Get help</source><target state="new">Get help</target> | ||
5912 | <context-group purpose="location"> | ||
5913 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | ||
5914 | <context context-type="linenumber">16</context> | ||
5915 | </context-group> | ||
5756 | </trans-unit> | 5916 | </trans-unit> |
5757 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1" datatype="html"> | 5917 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1" datatype="html"> |
5758 | <source>Create my account</source> | 5918 | <source>Create my account</source> |
@@ -5877,7 +6037,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5877 | 6037 | ||
5878 | </target> | 6038 | </target> |
5879 | 6039 | ||
5880 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 6040 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit><trans-unit id="3301086086650990787" datatype="html"> |
6041 | <source>Register</source><target state="new">Register</target> | ||
6042 | <context-group purpose="location"> | ||
6043 | <context context-type="sourcefile">../app/+signup/+register/register-routing.module.ts</context> | ||
6044 | <context context-type="linenumber">14</context> | ||
6045 | </context-group> | ||
6046 | </trans-unit> | ||
5881 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> | 6047 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> |
5882 | <source>Sorry, we couldn't find the page you were looking for.</source> | 6048 | <source>Sorry, we couldn't find the page you were looking for.</source> |
5883 | <target state="new"> | 6049 | <target state="new"> |
@@ -5900,7 +6066,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5900 | <target>説明はありません</target> | 6066 | <target>説明はありません</target> |
5901 | 6067 | ||
5902 | 6068 | ||
5903 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit> | 6069 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit><trans-unit id="819067926858619041" datatype="html"> |
6070 | <source>Account videos</source><target state="new">Account videos</target> | ||
6071 | <context-group purpose="location"> | ||
6072 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6073 | <context context-type="linenumber">29</context> | ||
6074 | </context-group> | ||
6075 | </trans-unit><trans-unit id="6823616469362610020" datatype="html"> | ||
6076 | <source>Account video channels</source><target state="new">Account video channels</target> | ||
6077 | <context-group purpose="location"> | ||
6078 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6079 | <context context-type="linenumber">42</context> | ||
6080 | </context-group> | ||
6081 | </trans-unit><trans-unit id="7678273613459026643" datatype="html"> | ||
6082 | <source>About account</source><target state="new">About account</target> | ||
6083 | <context-group purpose="location"> | ||
6084 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6085 | <context context-type="linenumber">51</context> | ||
6086 | </context-group> | ||
6087 | </trans-unit> | ||
5904 | <trans-unit id="3755500631176893489" datatype="html"> | 6088 | <trans-unit id="3755500631176893489" datatype="html"> |
5905 | <source>Published <x id="PH"/> videos</source> | 6089 | <source>Published <x id="PH"/> videos</source> |
5906 | <target state="new">Published | 6090 | <target state="new">Published |
@@ -6017,7 +6201,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6017 | <source>Configuration updated.</source> | 6201 | <source>Configuration updated.</source> |
6018 | <target>設定が更新されました。</target> | 6202 | <target>設定が更新されました。</target> |
6019 | 6203 | ||
6020 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit> | 6204 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit><trans-unit id="6284468333579755406" datatype="html"> |
6205 | <source>Edit custom configuration</source><target state="new">Edit custom configuration</target> | ||
6206 | <context-group purpose="location"> | ||
6207 | <context context-type="sourcefile">../app/+admin/config/config.routes.ts</context> | ||
6208 | <context context-type="linenumber">26</context> | ||
6209 | </context-group> | ||
6210 | </trans-unit> | ||
6021 | 6211 | ||
6022 | 6212 | ||
6023 | <trans-unit id="6549061957433635758" datatype="html"> | 6213 | <trans-unit id="6549061957433635758" datatype="html"> |
@@ -6496,7 +6686,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6496 | <x id="PH"/>をアップデートしました。 | 6686 | <x id="PH"/>をアップデートしました。 |
6497 | </target> | 6687 | </target> |
6498 | 6688 | ||
6499 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 6689 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit><trans-unit id="3229595422546554334" datatype="html"> |
6690 | <source>Jobs</source><target state="new">Jobs</target> | ||
6691 | <context-group purpose="location"> | ||
6692 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6693 | <context context-type="linenumber">26</context> | ||
6694 | </context-group> | ||
6695 | </trans-unit><trans-unit id="4804785061014590286" datatype="html"> | ||
6696 | <source>Logs</source><target state="new">Logs</target> | ||
6697 | <context-group purpose="location"> | ||
6698 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6699 | <context context-type="linenumber">37</context> | ||
6700 | </context-group> | ||
6701 | </trans-unit> | ||
6500 | <trans-unit id="3150704904301058778" datatype="html"> | 6702 | <trans-unit id="3150704904301058778" datatype="html"> |
6501 | <source>The plugin index is not available. Please retry later.</source> | 6703 | <source>The plugin index is not available. Please retry later.</source> |
6502 | <target state="new">The plugin index is not available. Please retry later.</target> | 6704 | <target state="new">The plugin index is not available. Please retry later.</target> |
@@ -6610,6 +6812,18 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6610 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> | 6812 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> |
6611 | <context context-type="linenumber">86</context> | 6813 | <context context-type="linenumber">86</context> |
6612 | </context-group> | 6814 | </context-group> |
6815 | </trans-unit><trans-unit id="2903648076838460070" datatype="html"> | ||
6816 | <source>Videos blocked</source><target state="new">Videos blocked</target> | ||
6817 | <context-group purpose="location"> | ||
6818 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6819 | <context context-type="linenumber">67</context> | ||
6820 | </context-group> | ||
6821 | </trans-unit><trans-unit id="7805059636749367886" datatype="html"> | ||
6822 | <source>Muted instances</source><target state="new">Muted instances</target> | ||
6823 | <context-group purpose="location"> | ||
6824 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6825 | <context context-type="linenumber">89</context> | ||
6826 | </context-group> | ||
6613 | </trans-unit> | 6827 | </trans-unit> |
6614 | <trans-unit id="5974506725502681113"> | 6828 | <trans-unit id="5974506725502681113"> |
6615 | <source>Password changed for user <x id="PH"/>.</source> | 6829 | <source>Password changed for user <x id="PH"/>.</source> |
@@ -6622,7 +6836,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6622 | <source>Update user password</source> | 6836 | <source>Update user password</source> |
6623 | <target>ユーザーパスワードを更新する</target> | 6837 | <target>ユーザーパスワードを更新する</target> |
6624 | 6838 | ||
6625 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit> | 6839 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit><trans-unit id="177544274549739411" datatype="html"> |
6840 | <source>Following list</source><target state="new">Following list</target> | ||
6841 | <context-group purpose="location"> | ||
6842 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6843 | <context context-type="linenumber">28</context> | ||
6844 | </context-group> | ||
6845 | </trans-unit><trans-unit id="8092429110007204784" datatype="html"> | ||
6846 | <source>Followers list</source><target state="new">Followers list</target> | ||
6847 | <context-group purpose="location"> | ||
6848 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6849 | <context context-type="linenumber">37</context> | ||
6850 | </context-group> | ||
6851 | </trans-unit> | ||
6626 | <trans-unit id="780323526182667308" datatype="html"> | 6852 | <trans-unit id="780323526182667308" datatype="html"> |
6627 | <source>User <x id="PH"/> updated.</source> | 6853 | <source>User <x id="PH"/> updated.</source> |
6628 | <target state="new">User | 6854 | <target state="new">User |
@@ -6641,7 +6867,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6641 | <x id="PH"/> に送信されました。 | 6867 | <x id="PH"/> に送信されました。 |
6642 | </target> | 6868 | </target> |
6643 | 6869 | ||
6644 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="8564701209009684429" datatype="html"> | 6870 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="7483807629538115183" datatype="html"> |
6871 | <source>Users list</source><target state="new">Users list</target> | ||
6872 | <context-group purpose="location"> | ||
6873 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6874 | <context context-type="linenumber">27</context> | ||
6875 | </context-group> | ||
6876 | </trans-unit><trans-unit id="1525334987774465166" datatype="html"> | ||
6877 | <source>Create a user</source><target state="new">Create a user</target> | ||
6878 | <context-group purpose="location"> | ||
6879 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6880 | <context context-type="linenumber">36</context> | ||
6881 | </context-group> | ||
6882 | </trans-unit><trans-unit id="5552039423287890133" datatype="html"> | ||
6883 | <source>Update a user</source><target state="new">Update a user</target> | ||
6884 | <context-group purpose="location"> | ||
6885 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6886 | <context context-type="linenumber">48</context> | ||
6887 | </context-group> | ||
6888 | </trans-unit><trans-unit id="8564701209009684429" datatype="html"> | ||
6645 | <source>Federation</source><target state="new">Federation</target> | 6889 | <source>Federation</source><target state="new">Federation</target> |
6646 | <context-group purpose="location"> | 6890 | <context-group purpose="location"> |
6647 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> | 6891 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> |
@@ -6995,7 +7239,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6995 | <source>Views for the day</source> | 7239 | <source>Views for the day</source> |
6996 | <target state="new">Views for the day</target> | 7240 | <target state="new">Views for the day</target> |
6997 | 7241 | ||
6998 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit> | 7242 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit><trans-unit id="4707367314920217630" datatype="html"> |
7243 | <source>Create new video channel</source><target state="new">Create new video channel</target> | ||
7244 | <context-group purpose="location"> | ||
7245 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7246 | <context context-type="linenumber">22</context> | ||
7247 | </context-group> | ||
7248 | </trans-unit><trans-unit id="6059091237492573541" datatype="html"> | ||
7249 | <source>Update video channel</source><target state="new">Update video channel</target> | ||
7250 | <context-group purpose="location"> | ||
7251 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7252 | <context context-type="linenumber">31</context> | ||
7253 | </context-group> | ||
7254 | </trans-unit><trans-unit id="6595008830732269870" datatype="html"> | ||
7255 | <source>Not found</source><target state="new">Not found</target> | ||
7256 | <context-group purpose="location"> | ||
7257 | <context context-type="sourcefile">../app/+page-not-found/page-not-found-routing.module.ts</context> | ||
7258 | <context context-type="linenumber">13</context> | ||
7259 | </context-group> | ||
7260 | </trans-unit> | ||
6999 | <trans-unit id="5032453707232754344"> | 7261 | <trans-unit id="5032453707232754344"> |
7000 | <source>Playlist <x id="PH"/> created.</source> | 7262 | <source>Playlist <x id="PH"/> created.</source> |
7001 | <target>プレイリスト | 7263 | <target>プレイリスト |
@@ -7013,7 +7275,31 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7013 | <source>Update playlist</source> | 7275 | <source>Update playlist</source> |
7014 | <target state="new">Update playlist</target> | 7276 | <target state="new">Update playlist</target> |
7015 | 7277 | ||
7016 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-video-playlists/my-account-video-playlist-elements.component.ts</context><context context-type="linenumber">48</context></context-group></trans-unit> | 7278 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">82</context></context-group></trans-unit><trans-unit id="3410331549417637431" datatype="html"> |
7279 | <source>Account video imports</source><target state="new">Account video imports</target> | ||
7280 | <context-group purpose="location"> | ||
7281 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7282 | <context context-type="linenumber">105</context> | ||
7283 | </context-group> | ||
7284 | </trans-unit><trans-unit id="4434998055872154420" datatype="html"> | ||
7285 | <source>Account subscriptions</source><target state="new">Account subscriptions</target> | ||
7286 | <context-group purpose="location"> | ||
7287 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7288 | <context context-type="linenumber">114</context> | ||
7289 | </context-group> | ||
7290 | </trans-unit><trans-unit id="6019411775996586321" datatype="html"> | ||
7291 | <source>Videos history</source><target state="new">Videos history</target> | ||
7292 | <context-group purpose="location"> | ||
7293 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7294 | <context context-type="linenumber">150</context> | ||
7295 | </context-group> | ||
7296 | </trans-unit><trans-unit id="5851560788527570644" datatype="html"> | ||
7297 | <source>Notifications</source><target state="new">Notifications</target> | ||
7298 | <context-group purpose="location"> | ||
7299 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7300 | <context context-type="linenumber">163</context> | ||
7301 | </context-group> | ||
7302 | </trans-unit> | ||
7017 | <trans-unit id="104404386496394770" datatype="html"> | 7303 | <trans-unit id="104404386496394770" datatype="html"> |
7018 | <source>Delete playlist</source> | 7304 | <source>Delete playlist</source> |
7019 | <target state="new">Delete playlist</target> | 7305 | <target state="new">Delete playlist</target> |
@@ -7167,7 +7453,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7167 | <x id="PH"/> に送信されます。 | 7453 | <x id="PH"/> に送信されます。 |
7168 | </target> | 7454 | </target> |
7169 | 7455 | ||
7170 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit> | 7456 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit><trans-unit id="8231550792139699065" datatype="html"> |
7457 | <source>Verify account email</source><target state="new">Verify account email</target> | ||
7458 | <context-group purpose="location"> | ||
7459 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7460 | <context context-type="linenumber">17</context> | ||
7461 | </context-group> | ||
7462 | </trans-unit><trans-unit id="4997281272800290390" datatype="html"> | ||
7463 | <source>Verify account ask send email</source><target state="new">Verify account ask send email</target> | ||
7464 | <context-group purpose="location"> | ||
7465 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7466 | <context context-type="linenumber">26</context> | ||
7467 | </context-group> | ||
7468 | </trans-unit> | ||
7171 | <trans-unit id="4180693983967989981"> | 7469 | <trans-unit id="4180693983967989981"> |
7172 | <source>Unable to find user id or verification string.</source> | 7470 | <source>Unable to find user id or verification string.</source> |
7173 | <target>ユーザーIDまたは確認文字列が見つかりません。</target> | 7471 | <target>ユーザーIDまたは確認文字列が見つかりません。</target> |
@@ -7292,27 +7590,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7292 | <source>any language</source> | 7590 | <source>any language</source> |
7293 | <target state="new">any language</target> | 7591 | <target state="new">any language</target> |
7294 | 7592 | ||
7295 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">202</context></context-group></trans-unit> | 7593 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">229</context></context-group></trans-unit> |
7296 | <trans-unit id="5633144232269377096" datatype="html"> | 7594 | <trans-unit id="5633144232269377096" datatype="html"> |
7297 | <source>hide</source> | 7595 | <source>hide</source> |
7298 | <target state="new">hide</target> | 7596 | <target state="new">hide</target> |
7299 | 7597 | ||
7300 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">118</context></context-group></trans-unit> | 7598 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> |
7301 | <trans-unit id="8603861867909474404" datatype="html"> | 7599 | <trans-unit id="8603861867909474404" datatype="html"> |
7302 | <source>blur</source> | 7600 | <source>blur</source> |
7303 | <target state="new">blur</target> | 7601 | <target state="new">blur</target> |
7304 | 7602 | ||
7305 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> | 7603 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> |
7306 | <trans-unit id="4534458451100881847" datatype="html"> | 7604 | <trans-unit id="4534458451100881847" datatype="html"> |
7307 | <source>display</source> | 7605 | <source>display</source> |
7308 | <target state="new">display</target> | 7606 | <target state="new">display</target> |
7309 | 7607 | ||
7310 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> | 7608 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">127</context></context-group></trans-unit> |
7311 | <trans-unit id="4467323362722952678" datatype="html"> | 7609 | <trans-unit id="4467323362722952678" datatype="html"> |
7312 | <source>Unknown</source> | 7610 | <source>Unknown</source> |
7313 | <target state="new">Unknown</target> | 7611 | <target state="new">Unknown</target> |
7314 | 7612 | ||
7315 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">190</context></context-group></trans-unit> | 7613 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">193</context></context-group></trans-unit> |
7316 | <trans-unit id="8781423666414310853"> | 7614 | <trans-unit id="8781423666414310853"> |
7317 | <source>Your password has been successfully reset!</source> | 7615 | <source>Your password has been successfully reset!</source> |
7318 | <target>パスワードは正常にリセットされました!</target> | 7616 | <target>パスワードは正常にリセットされました!</target> |
@@ -8430,27 +8728,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8430 | <source>Emphasis</source> | 8728 | <source>Emphasis</source> |
8431 | <target>強調</target> | 8729 | <target>強調</target> |
8432 | 8730 | ||
8433 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">77</context></context-group></trans-unit> | 8731 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> |
8434 | <trans-unit id="7565716024468232322"> | 8732 | <trans-unit id="7565716024468232322"> |
8435 | <source>Links</source> | 8733 | <source>Links</source> |
8436 | <target>リンク</target> | 8734 | <target>リンク</target> |
8437 | 8735 | ||
8438 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">78</context></context-group></trans-unit> | 8736 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> |
8439 | <trans-unit id="7838476952710404110"> | 8737 | <trans-unit id="7838476952710404110"> |
8440 | <source>New lines</source> | 8738 | <source>New lines</source> |
8441 | <target>新しい行</target> | 8739 | <target>新しい行</target> |
8442 | 8740 | ||
8443 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 8741 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">83</context></context-group></trans-unit> |
8444 | <trans-unit id="8756167649220050929"> | 8742 | <trans-unit id="8756167649220050929"> |
8445 | <source>Lists</source> | 8743 | <source>Lists</source> |
8446 | <target>リスト</target> | 8744 | <target>リスト</target> |
8447 | 8745 | ||
8448 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">80</context></context-group></trans-unit> | 8746 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">84</context></context-group></trans-unit> |
8449 | <trans-unit id="414887388288176527"> | 8747 | <trans-unit id="414887388288176527"> |
8450 | <source>Images</source> | 8748 | <source>Images</source> |
8451 | <target>画像</target> | 8749 | <target>画像</target> |
8452 | 8750 | ||
8453 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> | 8751 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">85</context></context-group></trans-unit> |
8454 | <trans-unit id="5708680277917691451"> | 8752 | <trans-unit id="5708680277917691451"> |
8455 | <source> | 8753 | <source> |
8456 | <x id="PH"/> users banned. | 8754 | <x id="PH"/> users banned. |
@@ -8846,7 +9144,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8846 | <source>Moderator</source> | 9144 | <source>Moderator</source> |
8847 | <target>モデレーター</target> | 9145 | <target>モデレーター</target> |
8848 | 9146 | ||
8849 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">386</context></context-group></trans-unit> | 9147 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">384</context></context-group></trans-unit> |
8850 | <trans-unit id="3723085768598852106"> | 9148 | <trans-unit id="3723085768598852106"> |
8851 | <source>Video removed from | 9149 | <source>Video removed from |
8852 | <x id="PH"/> | 9150 | <x id="PH"/> |
@@ -8919,7 +9217,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8919 | <source>Do you really want to delete this comment?</source> | 9217 | <source>Do you really want to delete this comment?</source> |
8920 | <target state="new">Do you really want to delete this comment?</target> | 9218 | <target state="new">Do you really want to delete this comment?</target> |
8921 | 9219 | ||
8922 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">434</context></context-group></trans-unit> | 9220 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">166</context></context-group></trans-unit> |
8923 | <trans-unit id="7837272126865175984" datatype="html"> | 9221 | <trans-unit id="7837272126865175984" datatype="html"> |
8924 | <source>Comment deleted.</source> | 9222 | <source>Comment deleted.</source> |
8925 | <target state="new">Comment deleted.</target> | 9223 | <target state="new">Comment deleted.</target> |
@@ -9031,9 +9329,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9031 | 9329 | ||
9032 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> | 9330 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> |
9033 | <source>Report</source><target state="new">Report</target> | 9331 | <source>Report</source><target state="new">Report</target> |
9332 | |||
9333 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="4814285799071780083" datatype="html"> | ||
9334 | <source>Remove</source><target state="new">Remove</target> | ||
9034 | <context-group purpose="location"> | 9335 | <context-group purpose="location"> |
9035 | <context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> | 9336 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> |
9036 | <context context-type="linenumber">286</context> | 9337 | <context context-type="linenumber">179</context> |
9338 | </context-group> | ||
9339 | </trans-unit><trans-unit id="6871668720687277843" datatype="html"> | ||
9340 | <source>Remove & re-draft</source><target state="new">Remove & re-draft</target> | ||
9341 | <context-group purpose="location"> | ||
9342 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> | ||
9343 | <context context-type="linenumber">187</context> | ||
9037 | </context-group> | 9344 | </context-group> |
9038 | </trans-unit> | 9345 | </trans-unit> |
9039 | <trans-unit id="4903651219400691248" datatype="html"> | 9346 | <trans-unit id="4903651219400691248" datatype="html"> |
@@ -9137,22 +9444,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9137 | <source>Only I can see this video</source> | 9444 | <source>Only I can see this video</source> |
9138 | <target>自分だけがこの動画を視聴することができます</target> | 9445 | <target>自分だけがこの動画を視聴することができます</target> |
9139 | 9446 | ||
9140 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">340</context></context-group></trans-unit> | 9447 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">341</context></context-group></trans-unit> |
9141 | <trans-unit id="6767380569816110388" datatype="html"> | 9448 | <trans-unit id="6767380569816110388" datatype="html"> |
9142 | <source>Only shareable via a private link</source> | 9449 | <source>Only shareable via a private link</source> |
9143 | <target state="new">Only shareable via a private link</target> | 9450 | <target state="new">Only shareable via a private link</target> |
9144 | 9451 | ||
9145 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">344</context></context-group></trans-unit> | 9452 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">345</context></context-group></trans-unit> |
9146 | <trans-unit id="6828965264297239528"> | 9453 | <trans-unit id="6828965264297239528"> |
9147 | <source>Anyone can see this video</source> | 9454 | <source>Anyone can see this video</source> |
9148 | <target>誰でもこの動画を視聴することができます</target> | 9455 | <target>誰でもこの動画を視聴することができます</target> |
9149 | 9456 | ||
9150 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">348</context></context-group></trans-unit> | 9457 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">349</context></context-group></trans-unit> |
9151 | <trans-unit id="1425933035739773115" datatype="html"> | 9458 | <trans-unit id="1425933035739773115" datatype="html"> |
9152 | <source>Only users of this instance can see this video</source> | 9459 | <source>Only users of this instance can see this video</source> |
9153 | <target state="new">Only users of this instance can see this video</target> | 9460 | <target state="new">Only users of this instance can see this video</target> |
9154 | 9461 | ||
9155 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">352</context></context-group></trans-unit> | 9462 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">353</context></context-group></trans-unit> |
9156 | <trans-unit id="5210096066382592800"> | 9463 | <trans-unit id="5210096066382592800"> |
9157 | <source>Video to import updated.</source> | 9464 | <source>Video to import updated.</source> |
9158 | <target>動画のインポートが完了しました。</target> | 9465 | <target>動画のインポートが完了しました。</target> |
@@ -9232,16 +9539,25 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9232 | <target state="new">Report comment</target> | 9539 | <target state="new">Report comment</target> |
9233 | 9540 | ||
9234 | 9541 | ||
9235 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 9542 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/report-modals/comment-report.component.ts</context><context context-type="linenumber">51</context></context-group></trans-unit> |
9236 | <trans-unit id="3691787517663044217" datatype="html"> | 9543 | <trans-unit id="3691787517663044217" datatype="html"> |
9237 | <source> The deletion will be sent to remote instances so they can reflect the change.</source> | 9544 | <source> The deletion will be sent to remote instances so they can reflect the change.</source> |
9238 | <target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> | 9545 | <target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> |
9239 | 9546 | ||
9240 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">163</context></context-group></trans-unit><trans-unit id="7321800851971795962" datatype="html"> | 9547 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">169</context></context-group></trans-unit><trans-unit id="7321800851971795962" datatype="html"> |
9241 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source><target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> | 9548 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source><target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> |
9549 | |||
9550 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="5964038603724691720" datatype="html"> | ||
9551 | <source>Delete and re-draft</source><target state="new">Delete and re-draft</target> | ||
9242 | <context-group purpose="location"> | 9552 | <context-group purpose="location"> |
9243 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | 9553 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> |
9244 | <context context-type="linenumber">165</context> | 9554 | <context context-type="linenumber">197</context> |
9555 | </context-group> | ||
9556 | </trans-unit><trans-unit id="7163633882758007711" datatype="html"> | ||
9557 | <source>Do you really want to delete and re-draft this comment?</source><target state="new">Do you really want to delete and re-draft this comment?</target> | ||
9558 | <context-group purpose="location"> | ||
9559 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | ||
9560 | <context context-type="linenumber">197</context> | ||
9245 | </context-group> | 9561 | </context-group> |
9246 | </trans-unit> | 9562 | </trans-unit> |
9247 | 9563 | ||
@@ -9406,6 +9722,36 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9406 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> | 9722 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> |
9407 | <context context-type="linenumber">36</context> | 9723 | <context context-type="linenumber">36</context> |
9408 | </context-group> | 9724 | </context-group> |
9725 | </trans-unit><trans-unit id="4668975178372693951" datatype="html"> | ||
9726 | <source>Discover videos</source><target state="new">Discover videos</target> | ||
9727 | <context-group purpose="location"> | ||
9728 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9729 | <context context-type="linenumber">23</context> | ||
9730 | </context-group> | ||
9731 | </trans-unit><trans-unit id="8067135025051844577" datatype="html"> | ||
9732 | <source>Trending videos</source><target state="new">Trending videos</target> | ||
9733 | <context-group purpose="location"> | ||
9734 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9735 | <context context-type="linenumber">32</context> | ||
9736 | </context-group> | ||
9737 | </trans-unit><trans-unit id="664221386829541948" datatype="html"> | ||
9738 | <source>Recently added videos</source><target state="new">Recently added videos</target> | ||
9739 | <context-group purpose="location"> | ||
9740 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9741 | <context context-type="linenumber">58</context> | ||
9742 | </context-group> | ||
9743 | </trans-unit><trans-unit id="8212906256415538361" datatype="html"> | ||
9744 | <source>Upload a video</source><target state="new">Upload a video</target> | ||
9745 | <context-group purpose="location"> | ||
9746 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9747 | <context context-type="linenumber">97</context> | ||
9748 | </context-group> | ||
9749 | </trans-unit><trans-unit id="7590784934397800835" datatype="html"> | ||
9750 | <source>Edit a video</source><target state="new">Edit a video</target> | ||
9751 | <context-group purpose="location"> | ||
9752 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9753 | <context context-type="linenumber">106</context> | ||
9754 | </context-group> | ||
9409 | </trans-unit> | 9755 | </trans-unit> |
9410 | </body> | 9756 | </body> |
9411 | </file> | 9757 | </file> |
diff --git a/client/src/locale/angular.jbo.xlf b/client/src/locale/angular.jbo.xlf index ccb73c9e1..66989f477 100644 --- a/client/src/locale/angular.jbo.xlf +++ b/client/src/locale/angular.jbo.xlf | |||
@@ -318,7 +318,7 @@ | |||
318 | <target>te tcimi'e</target> | 318 | <target>te tcimi'e</target> |
319 | 319 | ||
320 | 320 | ||
321 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 321 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">48</context></context-group></trans-unit> |
322 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d" datatype="html"> | 322 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d" datatype="html"> |
323 | <source>Start at</source> | 323 | <source>Start at</source> |
324 | <target state="new">Start at</target> | 324 | <target state="new">Start at</target> |
@@ -452,7 +452,7 @@ | |||
452 | nu sisti | 452 | nu sisti |
453 | </target> | 453 | </target> |
454 | 454 | ||
455 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> | 455 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit> |
456 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd"> | 456 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd"> |
457 | <source>Download</source> | 457 | <source>Download</source> |
458 | <target>nu kibycpa</target> | 458 | <target>nu kibycpa</target> |
@@ -575,7 +575,7 @@ | |||
575 | 575 | ||
576 | 576 | ||
577 | 577 | ||
578 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 578 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
579 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc" datatype="html"> | 579 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc" datatype="html"> |
580 | <source>Edit starts/stops at</source> | 580 | <source>Edit starts/stops at</source> |
581 | <target state="new">Edit starts/stops at</target> | 581 | <target state="new">Edit starts/stops at</target> |
@@ -615,7 +615,7 @@ | |||
615 | 615 | ||
616 | 616 | ||
617 | 617 | ||
618 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> | 618 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
619 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> | 619 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> |
620 | <source>Edit</source> | 620 | <source>Edit</source> |
621 | <target>nu bixygau</target> | 621 | <target>nu bixygau</target> |
@@ -640,17 +640,10 @@ | |||
640 | <target state="new">Complete preview</target> | 640 | <target state="new">Complete preview</target> |
641 | 641 | ||
642 | <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></trans-unit> | 642 | <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></trans-unit> |
643 | <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f"> | 643 | <trans-unit id="8644431249513874405" datatype="html"> |
644 | <source>Get help</source> | ||
645 | <target>nu sidju do</target> | ||
646 | |||
647 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit><trans-unit id="8644431249513874405" datatype="html"> | ||
648 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> | 644 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> |
649 | <context-group purpose="location"> | 645 | |
650 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 646 | <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></trans-unit> |
651 | <context context-type="linenumber">71</context> | ||
652 | </context-group> | ||
653 | </trans-unit> | ||
654 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> | 647 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> |
655 | <source>Recommended</source> | 648 | <source>Recommended</source> |
656 | <target state="new">Recommended</target> | 649 | <target state="new">Recommended</target> |
@@ -690,7 +683,7 @@ | |||
690 | <source>PROFILE SETTINGS</source> | 683 | <source>PROFILE SETTINGS</source> |
691 | <target state="new">PROFILE SETTINGS</target> | 684 | <target state="new">PROFILE SETTINGS</target> |
692 | 685 | ||
693 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 686 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">12</context></context-group></trans-unit> |
694 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3" datatype="html"> | 687 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3" datatype="html"> |
695 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> | 688 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> |
696 | <target state="new"> | 689 | <target state="new"> |
@@ -862,11 +855,8 @@ | |||
862 | 855 | ||
863 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> | 856 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> |
864 | <source>User</source><target state="new">User</target> | 857 | <source>User</source><target state="new">User</target> |
865 | <context-group purpose="location"> | 858 | |
866 | <context context-type="sourcefile">../app/core/users/user.service.ts</context> | 859 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit> |
867 | <context context-type="linenumber">384</context> | ||
868 | </context-group> | ||
869 | </trans-unit> | ||
870 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0" datatype="html"> | 860 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0" datatype="html"> |
871 | <source>Ban</source> | 861 | <source>Ban</source> |
872 | <target state="new">Ban</target> | 862 | <target state="new">Ban</target> |
@@ -1371,89 +1361,89 @@ galfi le mi japyvla</target> | |||
1371 | <source>Account settings</source> | 1361 | <source>Account settings</source> |
1372 | <target state="new">Account settings</target> | 1362 | <target state="new">Account settings</target> |
1373 | 1363 | ||
1374 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 1364 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
1375 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> | 1365 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> |
1376 | <source>Channels settings</source> | 1366 | <source>Channels settings</source> |
1377 | <target state="new">Channels settings</target> | 1367 | <target state="new">Channels settings</target> |
1378 | 1368 | ||
1379 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 1369 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> |
1380 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> | 1370 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> |
1381 | <source>Interface:</source> | 1371 | <source>Interface:</source> |
1382 | <target state="new">Interface:</target> | 1372 | <target state="new">Interface:</target> |
1383 | 1373 | ||
1384 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 1374 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1385 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> | 1375 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> |
1386 | <source>Videos:</source> | 1376 | <source>Videos:</source> |
1387 | <target state="new">Videos:</target> | 1377 | <target state="new">Videos:</target> |
1388 | 1378 | ||
1389 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 1379 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> |
1390 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> | 1380 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> |
1391 | <source>Sensitive:</source> | 1381 | <source>Sensitive:</source> |
1392 | <target state="new">Sensitive:</target> | 1382 | <target state="new">Sensitive:</target> |
1393 | 1383 | ||
1394 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 1384 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">54</context></context-group></trans-unit> |
1395 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1385 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> |
1396 | <source>Interface: <x id="INTERPOLATION"/></source> | 1386 | <source>Interface: <x id="INTERPOLATION"/></source> |
1397 | <target state="new">Interface: | 1387 | <target state="new">Interface: |
1398 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> | 1388 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> |
1399 | </target> | 1389 | </target> |
1400 | 1390 | ||
1401 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">156</context></context-group></trans-unit> | 1391 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> |
1402 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1392 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1403 | <source>Help share videos</source> | 1393 | <source>Help share videos</source> |
1404 | <target state="new">Help share videos</target> | 1394 | <target state="new">Help share videos</target> |
1405 | 1395 | ||
1406 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> | 1396 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
1407 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> | 1397 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> |
1408 | <source>More account settings</source> | 1398 | <source>More account settings</source> |
1409 | <target state="new">More account settings</target> | 1399 | <target state="new">More account settings</target> |
1410 | 1400 | ||
1411 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> | 1401 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> |
1412 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> | 1402 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> |
1413 | <source>Keyboard shortcuts</source> | 1403 | <source>Keyboard shortcuts</source> |
1414 | <target state="new">Keyboard shortcuts</target> | 1404 | <target state="new">Keyboard shortcuts</target> |
1415 | 1405 | ||
1416 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 1406 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">72</context></context-group></trans-unit> |
1417 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> | 1407 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> |
1418 | <source>Help</source> | 1408 | <source>Help</source> |
1419 | <target state="new">Help</target> | 1409 | <target state="new">Help</target> |
1420 | 1410 | ||
1421 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1411 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1422 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> | 1412 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> |
1423 | <source>Get help using PeerTube</source> | 1413 | <source>Get help using PeerTube</source> |
1424 | <target state="new">Get help using PeerTube</target> | 1414 | <target state="new">Get help using PeerTube</target> |
1425 | 1415 | ||
1426 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">161</context></context-group></trans-unit> | 1416 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">167</context></context-group></trans-unit> |
1427 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> | 1417 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> |
1428 | <source>Shortcuts</source> | 1418 | <source>Shortcuts</source> |
1429 | <target state="new">Shortcuts</target> | 1419 | <target state="new">Shortcuts</target> |
1430 | 1420 | ||
1431 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1421 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1432 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> | 1422 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> |
1433 | <source>powered by PeerTube</source> | 1423 | <source>powered by PeerTube</source> |
1434 | <target state="new">powered by PeerTube</target> | 1424 | <target state="new">powered by PeerTube</target> |
1435 | 1425 | ||
1436 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | 1426 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">177</context></context-group></trans-unit> |
1437 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> | 1427 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> |
1438 | <source>powered by PeerTube - CopyLeft 2015-2020</source> | 1428 | <source>powered by PeerTube - CopyLeft 2015-2020</source> |
1439 | <target state="new">powered by PeerTube - CopyLeft 2015-2020</target> | 1429 | <target state="new">powered by PeerTube - CopyLeft 2015-2020</target> |
1440 | 1430 | ||
1441 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> | 1431 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">176</context></context-group></trans-unit> |
1442 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344" datatype="html"> | 1432 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344" datatype="html"> |
1443 | <source>Log out</source> | 1433 | <source>Log out</source> |
1444 | <target state="new">Log out</target> | 1434 | <target state="new">Log out</target> |
1445 | 1435 | ||
1446 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">70</context></context-group></trans-unit> | 1436 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit> |
1447 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> | 1437 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> |
1448 | <source>Create an account</source> | 1438 | <source>Create an account</source> |
1449 | <target>zbasu lo pilno</target> | 1439 | <target>zbasu lo pilno</target> |
1450 | 1440 | ||
1451 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">78</context></context-group></trans-unit> | 1441 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
1452 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> | 1442 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> |
1453 | <source>MY LIBRARY</source> | 1443 | <source>MY LIBRARY</source> |
1454 | <target state="new">MY LIBRARY</target> | 1444 | <target state="new">MY LIBRARY</target> |
1455 | 1445 | ||
1456 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 1446 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">88</context></context-group></trans-unit> |
1457 | <trans-unit id="6371572688505952303" datatype="html"> | 1447 | <trans-unit id="6371572688505952303" datatype="html"> |
1458 | <source>My library</source> | 1448 | <source>My library</source> |
1459 | <target state="new">My library</target> | 1449 | <target state="new">My library</target> |
@@ -1493,22 +1483,22 @@ galfi le mi japyvla</target> | |||
1493 | <source>Videos</source> | 1483 | <source>Videos</source> |
1494 | <target>lo vidvi</target> | 1484 | <target>lo vidvi</target> |
1495 | 1485 | ||
1496 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">86</context></context-group></trans-unit> | 1486 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">92</context></context-group></trans-unit> |
1497 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> | 1487 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> |
1498 | <source>Playlists</source> | 1488 | <source>Playlists</source> |
1499 | <target state="new">Playlists</target> | 1489 | <target state="new">Playlists</target> |
1500 | 1490 | ||
1501 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">91</context></context-group></trans-unit> | 1491 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">97</context></context-group></trans-unit> |
1502 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2"> | 1492 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2"> |
1503 | <source>Subscriptions</source> | 1493 | <source>Subscriptions</source> |
1504 | <target>lo se jersi pe'a</target> | 1494 | <target>lo se jersi pe'a</target> |
1505 | 1495 | ||
1506 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 1496 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">102</context></context-group></trans-unit> |
1507 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8"> | 1497 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8"> |
1508 | <source>History</source> | 1498 | <source>History</source> |
1509 | <target>citri</target> | 1499 | <target>citri</target> |
1510 | 1500 | ||
1511 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit> | 1501 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">107</context></context-group></trans-unit> |
1512 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> | 1502 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> |
1513 | <source>VIDEOS</source> | 1503 | <source>VIDEOS</source> |
1514 | <target state="new">VIDEOS</target> | 1504 | <target state="new">VIDEOS</target> |
@@ -1520,27 +1510,27 @@ galfi le mi japyvla</target> | |||
1520 | <target state="new">Discover</target> | 1510 | <target state="new">Discover</target> |
1521 | 1511 | ||
1522 | 1512 | ||
1523 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">111</context></context-group></trans-unit> | 1513 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">117</context></context-group></trans-unit> |
1524 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> | 1514 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> |
1525 | <source>Trending</source> | 1515 | <source>Trending</source> |
1526 | <target>lo cabna misno</target> | 1516 | <target>lo cabna misno</target> |
1527 | 1517 | ||
1528 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">116</context></context-group></trans-unit> | 1518 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">122</context></context-group></trans-unit> |
1529 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> | 1519 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> |
1530 | <source>Most liked</source> | 1520 | <source>Most liked</source> |
1531 | <target state="new">Most liked</target> | 1521 | <target state="new">Most liked</target> |
1532 | 1522 | ||
1533 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">121</context></context-group></trans-unit> | 1523 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">127</context></context-group></trans-unit> |
1534 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> | 1524 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> |
1535 | <source>Recently added</source> | 1525 | <source>Recently added</source> |
1536 | <target>pu za se jmina</target> | 1526 | <target>pu za se jmina</target> |
1537 | 1527 | ||
1538 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">126</context></context-group></trans-unit> | 1528 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">132</context></context-group></trans-unit> |
1539 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> | 1529 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> |
1540 | <source>Administration</source> | 1530 | <source>Administration</source> |
1541 | <target>nu jitro</target> | 1531 | <target>nu jitro</target> |
1542 | 1532 | ||
1543 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">140</context></context-group></trans-unit> | 1533 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">146</context></context-group></trans-unit> |
1544 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> | 1534 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> |
1545 | <source>About</source> | 1535 | <source>About</source> |
1546 | <target>lo datni</target> | 1536 | <target>lo datni</target> |
@@ -1551,7 +1541,7 @@ galfi le mi japyvla</target> | |||
1551 | <source>Contact</source> | 1541 | <source>Contact</source> |
1552 | <target state="new">Contact</target> | 1542 | <target state="new">Contact</target> |
1553 | 1543 | ||
1554 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">160</context></context-group></trans-unit> | 1544 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">166</context></context-group></trans-unit> |
1555 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771"> | 1545 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771"> |
1556 | <source>View your notifications</source> | 1546 | <source>View your notifications</source> |
1557 | <target>nu viska lo notci be fo do</target> | 1547 | <target>nu viska lo notci be fo do</target> |
@@ -1578,7 +1568,7 @@ galfi le mi japyvla</target> | |||
1578 | <source>See all your notifications</source> | 1568 | <source>See all your notifications</source> |
1579 | <target>nu viska ro notci be fo do</target> | 1569 | <target>nu viska ro notci be fo do</target> |
1580 | 1570 | ||
1581 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 1571 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">40</context></context-group></trans-unit> |
1582 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> | 1572 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> |
1583 | <source>Search videos, channels…</source> | 1573 | <source>Search videos, channels…</source> |
1584 | <target state="new">Search videos, channels…</target> | 1574 | <target state="new">Search videos, channels…</target> |
@@ -1922,22 +1912,22 @@ galfi le mi japyvla</target> | |||
1922 | <source>FAQ</source> | 1912 | <source>FAQ</source> |
1923 | <target state="new">FAQ</target> | 1913 | <target state="new">FAQ</target> |
1924 | 1914 | ||
1925 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">163</context></context-group></trans-unit> | 1915 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
1926 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> | 1916 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> |
1927 | <source>Frequently asked questions about PeerTube</source> | 1917 | <source>Frequently asked questions about PeerTube</source> |
1928 | <target state="new">Frequently asked questions about PeerTube</target> | 1918 | <target state="new">Frequently asked questions about PeerTube</target> |
1929 | 1919 | ||
1930 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1920 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1931 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> | 1921 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> |
1932 | <source>API</source> | 1922 | <source>API</source> |
1933 | <target state="new">API</target> | 1923 | <target state="new">API</target> |
1934 | 1924 | ||
1935 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1925 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1936 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> | 1926 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> |
1937 | <source>API documentation</source> | 1927 | <source>API documentation</source> |
1938 | <target state="new">API documentation</target> | 1928 | <target state="new">API documentation</target> |
1939 | 1929 | ||
1940 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 1930 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
1941 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5" datatype="html"> | 1931 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5" datatype="html"> |
1942 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> | 1932 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> |
1943 | <target state="new">Schedule publication ( | 1933 | <target state="new">Schedule publication ( |
@@ -2338,7 +2328,13 @@ galfi le mi japyvla</target> | |||
2338 | Less customization | 2328 | Less customization |
2339 | </target> | 2329 | </target> |
2340 | 2330 | ||
2341 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit> | 2331 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit><trans-unit id="2454050363478003966" datatype="html"> |
2332 | <source>Login</source><target state="new">Login</target> | ||
2333 | <context-group purpose="location"> | ||
2334 | <context context-type="sourcefile">../app/+login/login-routing.module.ts</context> | ||
2335 | <context context-type="linenumber">14</context> | ||
2336 | </context-group> | ||
2337 | </trans-unit> | ||
2342 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e" datatype="html"> | 2338 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e" datatype="html"> |
2343 | <source>Autoplay</source> | 2339 | <source>Autoplay</source> |
2344 | <target state="new">Autoplay</target> | 2340 | <target state="new">Autoplay</target> |
@@ -2612,7 +2608,7 @@ galfi le mi japyvla</target> | |||
2612 | <source>No comments.</source> | 2608 | <source>No comments.</source> |
2613 | <target state="new">No comments.</target> | 2609 | <target state="new">No comments.</target> |
2614 | 2610 | ||
2615 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 2611 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> |
2616 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> | 2612 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> |
2617 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> | 2613 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> |
2618 | <target state="new"> | 2614 | <target state="new"> |
@@ -2622,7 +2618,7 @@ galfi le mi japyvla</target> | |||
2622 | 2618 | ||
2623 | </target> | 2619 | </target> |
2624 | 2620 | ||
2625 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">79</context></context-group></trans-unit> | 2621 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
2626 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> | 2622 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> |
2627 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> | 2623 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> |
2628 | <target state="new"> | 2624 | <target state="new"> |
@@ -2631,14 +2627,14 @@ galfi le mi japyvla</target> | |||
2631 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> | 2627 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> |
2632 | </target> | 2628 | </target> |
2633 | 2629 | ||
2634 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 2630 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">87</context></context-group></trans-unit> |
2635 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> | 2631 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> |
2636 | <source>View <x id="INTERPOLATION"/> replies</source> | 2632 | <source>View <x id="INTERPOLATION"/> replies</source> |
2637 | <target state="new">View | 2633 | <target state="new">View |
2638 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies | 2634 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies |
2639 | </target> | 2635 | </target> |
2640 | 2636 | ||
2641 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">85</context></context-group></trans-unit> | 2637 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">90</context></context-group></trans-unit> |
2642 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828"> | 2638 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828"> |
2643 | <source> | 2639 | <source> |
2644 | Comments are disabled. | 2640 | Comments are disabled. |
@@ -2647,26 +2643,84 @@ galfi le mi japyvla</target> | |||
2647 | lo nu pinka na cumki | 2643 | lo nu pinka na cumki |
2648 | </target> | 2644 | </target> |
2649 | 2645 | ||
2650 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 2646 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit> |
2651 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e"> | 2647 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e"> |
2652 | <source>Add comment...</source> | 2648 | <source>Add comment...</source> |
2653 | <target>jmina lo pinka</target> | 2649 | <target>jmina lo pinka</target> |
2654 | 2650 | ||
2655 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | 2651 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit><trans-unit id="4e5254dedf0c12ce7e7c2197384fceebe3b29a2b" datatype="html"> |
2656 | <trans-unit id="8956c0f4c6974289fc63f1ab6b54f5b32ed65eeb" datatype="html"> | 2652 | <source>Markdown compatible</source><target state="new">Markdown compatible</target> |
2657 | <source> | 2653 | <context-group purpose="location"> |
2658 | Reply | 2654 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> |
2659 | </source> | 2655 | <context context-type="linenumber">13</context> |
2660 | <target state="new"> | 2656 | </context-group> |
2661 | Reply | 2657 | </trans-unit><trans-unit id="4739ffad85f09defefdb6e51b45f43b2ef7c4388" datatype="html"> |
2662 | </target> | 2658 | <source>Markdown compatible that supports:</source><target state="new">Markdown compatible that supports:</target> |
2663 | 2659 | <context-group purpose="location"> | |
2664 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 2660 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> |
2661 | <context context-type="linenumber">15</context> | ||
2662 | </context-group> | ||
2663 | </trans-unit><trans-unit id="9a53b17a021bb0677c156fd893461797fc497a10" datatype="html"> | ||
2664 | <source>Auto generated links</source><target state="new">Auto generated links</target> | ||
2665 | <context-group purpose="location"> | ||
2666 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2667 | <context context-type="linenumber">18</context> | ||
2668 | </context-group> | ||
2669 | </trans-unit><trans-unit id="664f99b8919d6dd2faa1c1f7c378aa86d1be5e8a" datatype="html"> | ||
2670 | <source>Break lines</source><target state="new">Break lines</target> | ||
2671 | <context-group purpose="location"> | ||
2672 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2673 | <context context-type="linenumber">19</context> | ||
2674 | </context-group> | ||
2675 | </trans-unit><trans-unit id="b15e7bec5c7833d2d9634946ccbed68967b1bee1" datatype="html"> | ||
2676 | <source>Lists</source><target state="new">Lists</target> | ||
2677 | <context-group purpose="location"> | ||
2678 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2679 | <context context-type="linenumber">20</context> | ||
2680 | </context-group> | ||
2681 | </trans-unit><trans-unit id="ab4426b60f13c00b61d6b714d390dc629f314980" datatype="html"> | ||
2682 | <source>Emphasis</source><target state="new">Emphasis</target> | ||
2683 | <context-group purpose="location"> | ||
2684 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2685 | <context context-type="linenumber">22</context> | ||
2686 | </context-group> | ||
2687 | </trans-unit><trans-unit id="4e13b179501d3d32721037e03b4c04acb9857c5f" datatype="html"> | ||
2688 | <source>bold</source><target state="new">bold</target> | ||
2689 | <context-group purpose="location"> | ||
2690 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2691 | <context context-type="linenumber">23</context> | ||
2692 | </context-group> | ||
2693 | </trans-unit><trans-unit id="3c12190421fbb2756e6bbead923df9ec5de8ede2" datatype="html"> | ||
2694 | <source>italic</source><target state="new">italic</target> | ||
2695 | <context-group purpose="location"> | ||
2696 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2697 | <context context-type="linenumber">23</context> | ||
2698 | </context-group> | ||
2699 | </trans-unit><trans-unit id="adb4bbdcb961b8aac8298d6cac554d9b25636b7a" datatype="html"> | ||
2700 | <source>Emoji shortcuts</source><target state="new">Emoji shortcuts</target> | ||
2701 | <context-group purpose="location"> | ||
2702 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2703 | <context context-type="linenumber">26</context> | ||
2704 | </context-group> | ||
2705 | </trans-unit><trans-unit id="b9809a21a8eb3c9db2a0282c5dd94bc221575c96" datatype="html"> | ||
2706 | <source>Emoji markup</source><target state="new">Emoji markup</target> | ||
2707 | <context-group purpose="location"> | ||
2708 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2709 | <context context-type="linenumber">30</context> | ||
2710 | </context-group> | ||
2711 | </trans-unit><trans-unit id="f37feb427aaa551edd1f22616be6464bc0d492de" datatype="html"> | ||
2712 | <source>See complete list</source><target state="new">See complete list</target> | ||
2713 | <context-group purpose="location"> | ||
2714 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2715 | <context context-type="linenumber">32</context> | ||
2716 | </context-group> | ||
2717 | </trans-unit> | ||
2718 | |||
2665 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135" datatype="html"> | 2719 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135" datatype="html"> |
2666 | <source>You are one step away from commenting</source> | 2720 | <source>You are one step away from commenting</source> |
2667 | <target state="new">You are one step away from commenting</target> | 2721 | <target state="new">You are one step away from commenting</target> |
2668 | 2722 | ||
2669 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 2723 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
2670 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> | 2724 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> |
2671 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> | 2725 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> |
2672 | <target state="new"> | 2726 | <target state="new"> |
@@ -2675,7 +2729,7 @@ galfi le mi japyvla</target> | |||
2675 | from within the software's interface. | 2729 | from within the software's interface. |
2676 | </target> | 2730 | </target> |
2677 | 2731 | ||
2678 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 2732 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
2679 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb" datatype="html"> | 2733 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb" datatype="html"> |
2680 | <source> | 2734 | <source> |
2681 | If you have an account on Mastodon or Pleroma, you can open it directly in their interface: | 2735 | If you have an account on Mastodon or Pleroma, you can open it directly in their interface: |
@@ -2684,12 +2738,30 @@ galfi le mi japyvla</target> | |||
2684 | If you have an account on Mastodon or Pleroma, you can open it directly in their interface: | 2738 | If you have an account on Mastodon or Pleroma, you can open it directly in their interface: |
2685 | </target> | 2739 | </target> |
2686 | 2740 | ||
2687 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">41</context></context-group></trans-unit> | 2741 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">65</context></context-group></trans-unit> |
2688 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> | 2742 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> |
2689 | <source>Login to comment</source> | 2743 | <source>Login to comment</source> |
2690 | <target state="new">Login to comment</target> | 2744 | <target state="new">Login to comment</target> |
2691 | 2745 | ||
2692 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">52</context></context-group></trans-unit> | 2746 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit><trans-unit id="974170f455ff5a9034d5737e84b4194c0046fc6b" datatype="html"> |
2747 | <source>Markdown Emoji List</source><target state="new">Markdown Emoji List</target> | ||
2748 | <context-group purpose="location"> | ||
2749 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2750 | <context context-type="linenumber">84</context> | ||
2751 | </context-group> | ||
2752 | </trans-unit><trans-unit id="2662644497259948010" datatype="html"> | ||
2753 | <source>Comment</source><target state="new">Comment</target> | ||
2754 | <context-group purpose="location"> | ||
2755 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2756 | <context context-type="linenumber">58</context> | ||
2757 | </context-group> | ||
2758 | </trans-unit><trans-unit id="4502286564339177240" datatype="html"> | ||
2759 | <source>Reply</source><target state="new">Reply</target> | ||
2760 | <context-group purpose="location"> | ||
2761 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2762 | <context context-type="linenumber">60</context> | ||
2763 | </context-group> | ||
2764 | </trans-unit> | ||
2693 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285" datatype="html"> | 2765 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285" datatype="html"> |
2694 | <source>Highlighted comment</source> | 2766 | <source>Highlighted comment</source> |
2695 | <target state="new">Highlighted comment</target> | 2767 | <target state="new">Highlighted comment</target> |
@@ -2704,7 +2776,7 @@ galfi le mi japyvla</target> | |||
2704 | <source>This comment has been deleted</source> | 2776 | <source>This comment has been deleted</source> |
2705 | <target state="new">This comment has been deleted</target> | 2777 | <target state="new">This comment has been deleted</target> |
2706 | 2778 | ||
2707 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">62</context></context-group></trans-unit> | 2779 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">61</context></context-group></trans-unit> |
2708 | <trans-unit id="9031514421077169181" datatype="html"> | 2780 | <trans-unit id="9031514421077169181" datatype="html"> |
2709 | <source>Video redundancies</source> | 2781 | <source>Video redundancies</source> |
2710 | <target state="new">Video redundancies</target> | 2782 | <target state="new">Video redundancies</target> |
@@ -3561,7 +3633,25 @@ galfi le mi japyvla</target> | |||
3561 | <target state="new">No account found.</target> | 3633 | <target state="new">No account found.</target> |
3562 | 3634 | ||
3563 | 3635 | ||
3564 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit> | 3636 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit><trans-unit id="2338185419645468935" datatype="html"> |
3637 | <source>List installed plugins</source><target state="new">List installed plugins</target> | ||
3638 | <context-group purpose="location"> | ||
3639 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3640 | <context context-type="linenumber">28</context> | ||
3641 | </context-group> | ||
3642 | </trans-unit><trans-unit id="8897412584195581488" datatype="html"> | ||
3643 | <source>Search plugins</source><target state="new">Search plugins</target> | ||
3644 | <context-group purpose="location"> | ||
3645 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3646 | <context context-type="linenumber">37</context> | ||
3647 | </context-group> | ||
3648 | </trans-unit><trans-unit id="4994333937800672218" datatype="html"> | ||
3649 | <source>Show plugin</source><target state="new">Show plugin</target> | ||
3650 | <context-group purpose="location"> | ||
3651 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3652 | <context context-type="linenumber">46</context> | ||
3653 | </context-group> | ||
3654 | </trans-unit> | ||
3565 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> | 3655 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> |
3566 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> | 3656 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> |
3567 | <target state="new">Showing | 3657 | <target state="new">Showing |
@@ -4292,7 +4382,7 @@ galfi le mi japyvla</target> | |||
4292 | <source>Administrator</source> | 4382 | <source>Administrator</source> |
4293 | <target state="new">Administrator</target> | 4383 | <target state="new">Administrator</target> |
4294 | 4384 | ||
4295 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">385</context></context-group></trans-unit> | 4385 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">383</context></context-group></trans-unit> |
4296 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587" datatype="html"> | 4386 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587" datatype="html"> |
4297 | <source>Admin email</source> | 4387 | <source>Admin email</source> |
4298 | <target state="new">Admin email</target> | 4388 | <target state="new">Admin email</target> |
@@ -4554,27 +4644,27 @@ galfi le mi japyvla</target> | |||
4554 | <source>VIDEO SETTINGS</source> | 4644 | <source>VIDEO SETTINGS</source> |
4555 | <target state="new">VIDEO SETTINGS</target> | 4645 | <target state="new">VIDEO SETTINGS</target> |
4556 | 4646 | ||
4557 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit> | 4647 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
4558 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> | 4648 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> |
4559 | <source>NOTIFICATIONS</source> | 4649 | <source>NOTIFICATIONS</source> |
4560 | <target state="new">NOTIFICATIONS</target> | 4650 | <target state="new">NOTIFICATIONS</target> |
4561 | 4651 | ||
4562 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 4652 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">37</context></context-group></trans-unit> |
4563 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> | 4653 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> |
4564 | <source>INTERFACE</source> | 4654 | <source>INTERFACE</source> |
4565 | <target state="new">INTERFACE</target> | 4655 | <target state="new">INTERFACE</target> |
4566 | 4656 | ||
4567 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 4657 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit> |
4568 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> | 4658 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> |
4569 | <source>PASSWORD</source> | 4659 | <source>PASSWORD</source> |
4570 | <target state="new">PASSWORD</target> | 4660 | <target state="new">PASSWORD</target> |
4571 | 4661 | ||
4572 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">59</context></context-group></trans-unit> | 4662 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">57</context></context-group></trans-unit> |
4573 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> | 4663 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> |
4574 | <source>EMAIL</source> | 4664 | <source>EMAIL</source> |
4575 | <target state="new">EMAIL</target> | 4665 | <target state="new">EMAIL</target> |
4576 | 4666 | ||
4577 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">69</context></context-group></trans-unit> | 4667 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">67</context></context-group></trans-unit> |
4578 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> | 4668 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> |
4579 | <source>DANGER ZONE</source> | 4669 | <source>DANGER ZONE</source> |
4580 | <target state="new">DANGER ZONE</target> | 4670 | <target state="new">DANGER ZONE</target> |
@@ -4824,7 +4914,31 @@ galfi le mi japyvla</target> | |||
4824 | <source>No ownership change request found.</source> | 4914 | <source>No ownership change request found.</source> |
4825 | <target state="new">No ownership change request found.</target> | 4915 | <target state="new">No ownership change request found.</target> |
4826 | 4916 | ||
4827 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit> | 4917 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit><trans-unit id="4247400351982331798" datatype="html"> |
4918 | <source>Account settings</source><target state="new">Account settings</target> | ||
4919 | <context-group purpose="location"> | ||
4920 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4921 | <context context-type="linenumber">37</context> | ||
4922 | </context-group> | ||
4923 | </trans-unit><trans-unit id="154062590416726309" datatype="html"> | ||
4924 | <source>Account playlists</source><target state="new">Account playlists</target> | ||
4925 | <context-group purpose="location"> | ||
4926 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4927 | <context context-type="linenumber">55</context> | ||
4928 | </context-group> | ||
4929 | </trans-unit><trans-unit id="6550287183367517925" datatype="html"> | ||
4930 | <source>Create new playlist</source><target state="new">Create new playlist</target> | ||
4931 | <context-group purpose="location"> | ||
4932 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4933 | <context context-type="linenumber">64</context> | ||
4934 | </context-group> | ||
4935 | </trans-unit><trans-unit id="2864486939135008600" datatype="html"> | ||
4936 | <source>Playlist elements</source><target state="new">Playlist elements</target> | ||
4937 | <context-group purpose="location"> | ||
4938 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4939 | <context context-type="linenumber">73</context> | ||
4940 | </context-group> | ||
4941 | </trans-unit> | ||
4828 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> | 4942 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> |
4829 | <source>My imports</source> | 4943 | <source>My imports</source> |
4830 | <target state="new">My imports</target> | 4944 | <target state="new">My imports</target> |
@@ -5099,7 +5213,25 @@ galfi le mi japyvla</target> | |||
5099 | <source>An error occurred.</source> | 5213 | <source>An error occurred.</source> |
5100 | <target state="new">An error occurred.</target> | 5214 | <target state="new">An error occurred.</target> |
5101 | 5215 | ||
5102 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 5216 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit><trans-unit id="9128669621822125729" datatype="html"> |
5217 | <source>Video channel videos</source><target state="new">Video channel videos</target> | ||
5218 | <context-group purpose="location"> | ||
5219 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5220 | <context context-type="linenumber">25</context> | ||
5221 | </context-group> | ||
5222 | </trans-unit><trans-unit id="3193822049276963401" datatype="html"> | ||
5223 | <source>Video channel playlists</source><target state="new">Video channel playlists</target> | ||
5224 | <context-group purpose="location"> | ||
5225 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5226 | <context context-type="linenumber">38</context> | ||
5227 | </context-group> | ||
5228 | </trans-unit><trans-unit id="4723526509708949088" datatype="html"> | ||
5229 | <source>About video channel</source><target state="new">About video channel</target> | ||
5230 | <context-group purpose="location"> | ||
5231 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5232 | <context context-type="linenumber">47</context> | ||
5233 | </context-group> | ||
5234 | </trans-unit> | ||
5103 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97" datatype="html"> | 5235 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97" datatype="html"> |
5104 | <source> | 5236 | <source> |
5105 | Request email for account verification | 5237 | Request email for account verification |
@@ -5222,7 +5354,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5222 | <source>Stats</source> | 5354 | <source>Stats</source> |
5223 | <target state="new">Stats</target> | 5355 | <target state="new">Stats</target> |
5224 | 5356 | ||
5225 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 5357 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
5226 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc"> | 5358 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc"> |
5227 | <source>Joined <x id="INTERPOLATION"/></source> | 5359 | <source>Joined <x id="INTERPOLATION"/></source> |
5228 | <target>.i | 5360 | <target>.i |
@@ -5675,7 +5807,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5675 | <source>This instance does not have instances followings.</source> | 5807 | <source>This instance does not have instances followings.</source> |
5676 | <target state="new">This instance does not have instances followings.</target> | 5808 | <target state="new">This instance does not have instances followings.</target> |
5677 | 5809 | ||
5678 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit> | 5810 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit><trans-unit id="4195286790385468087" datatype="html"> |
5811 | <source>About this instance</source><target state="new">About this instance</target> | ||
5812 | <context-group purpose="location"> | ||
5813 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5814 | <context context-type="linenumber">26</context> | ||
5815 | </context-group> | ||
5816 | </trans-unit><trans-unit id="8773846522957677259" datatype="html"> | ||
5817 | <source>About PeerTube</source><target state="new">About PeerTube</target> | ||
5818 | <context-group purpose="location"> | ||
5819 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5820 | <context context-type="linenumber">38</context> | ||
5821 | </context-group> | ||
5822 | </trans-unit><trans-unit id="5782088737558028158" datatype="html"> | ||
5823 | <source>About follows</source><target state="new">About follows</target> | ||
5824 | <context-group purpose="location"> | ||
5825 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5826 | <context context-type="linenumber">47</context> | ||
5827 | </context-group> | ||
5828 | </trans-unit> | ||
5679 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> | 5829 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> |
5680 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> | 5830 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> |
5681 | <target state="new">Developed with ❤ by | 5831 | <target state="new">Developed with ❤ by |
@@ -5846,6 +5996,12 @@ zbasu lo pilno</target> | |||
5846 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 5996 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> |
5847 | <context context-type="linenumber">1</context> | 5997 | <context context-type="linenumber">1</context> |
5848 | </context-group> | 5998 | </context-group> |
5999 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
6000 | <source>Get help</source><target state="new">Get help</target> | ||
6001 | <context-group purpose="location"> | ||
6002 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | ||
6003 | <context context-type="linenumber">16</context> | ||
6004 | </context-group> | ||
5849 | </trans-unit> | 6005 | </trans-unit> |
5850 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1" datatype="html"> | 6006 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1" datatype="html"> |
5851 | <source> | 6007 | <source> |
@@ -5980,7 +6136,13 @@ zbasu lo pilno</target> | |||
5980 | 6136 | ||
5981 | </target> | 6137 | </target> |
5982 | 6138 | ||
5983 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 6139 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit><trans-unit id="3301086086650990787" datatype="html"> |
6140 | <source>Register</source><target state="new">Register</target> | ||
6141 | <context-group purpose="location"> | ||
6142 | <context context-type="sourcefile">../app/+signup/+register/register-routing.module.ts</context> | ||
6143 | <context context-type="linenumber">14</context> | ||
6144 | </context-group> | ||
6145 | </trans-unit> | ||
5984 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> | 6146 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> |
5985 | <source> | 6147 | <source> |
5986 | Sorry, we couldn't find the page you were looking for. | 6148 | Sorry, we couldn't find the page you were looking for. |
@@ -6005,7 +6167,25 @@ zbasu lo pilno</target> | |||
6005 | <target state="new">No description</target> | 6167 | <target state="new">No description</target> |
6006 | 6168 | ||
6007 | 6169 | ||
6008 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit> | 6170 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit><trans-unit id="819067926858619041" datatype="html"> |
6171 | <source>Account videos</source><target state="new">Account videos</target> | ||
6172 | <context-group purpose="location"> | ||
6173 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6174 | <context context-type="linenumber">29</context> | ||
6175 | </context-group> | ||
6176 | </trans-unit><trans-unit id="6823616469362610020" datatype="html"> | ||
6177 | <source>Account video channels</source><target state="new">Account video channels</target> | ||
6178 | <context-group purpose="location"> | ||
6179 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6180 | <context context-type="linenumber">42</context> | ||
6181 | </context-group> | ||
6182 | </trans-unit><trans-unit id="7678273613459026643" datatype="html"> | ||
6183 | <source>About account</source><target state="new">About account</target> | ||
6184 | <context-group purpose="location"> | ||
6185 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6186 | <context context-type="linenumber">51</context> | ||
6187 | </context-group> | ||
6188 | </trans-unit> | ||
6009 | <trans-unit id="3755500631176893489" datatype="html"> | 6189 | <trans-unit id="3755500631176893489" datatype="html"> |
6010 | <source>Published <x id="PH"/> videos</source> | 6190 | <source>Published <x id="PH"/> videos</source> |
6011 | <target state="new">Published | 6191 | <target state="new">Published |
@@ -6122,7 +6302,13 @@ zbasu lo pilno</target> | |||
6122 | <source>Configuration updated.</source> | 6302 | <source>Configuration updated.</source> |
6123 | <target>.i mo'u co'a basti fi lo ka ce'u te tcimi'e</target> | 6303 | <target>.i mo'u co'a basti fi lo ka ce'u te tcimi'e</target> |
6124 | 6304 | ||
6125 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit> | 6305 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit><trans-unit id="6284468333579755406" datatype="html"> |
6306 | <source>Edit custom configuration</source><target state="new">Edit custom configuration</target> | ||
6307 | <context-group purpose="location"> | ||
6308 | <context context-type="sourcefile">../app/+admin/config/config.routes.ts</context> | ||
6309 | <context context-type="linenumber">26</context> | ||
6310 | </context-group> | ||
6311 | </trans-unit> | ||
6126 | 6312 | ||
6127 | 6313 | ||
6128 | <trans-unit id="6549061957433635758" datatype="html"> | 6314 | <trans-unit id="6549061957433635758" datatype="html"> |
@@ -6601,7 +6787,19 @@ zbasu lo pilno</target> | |||
6601 | <x id="PH"/> updated. | 6787 | <x id="PH"/> updated. |
6602 | </target> | 6788 | </target> |
6603 | 6789 | ||
6604 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 6790 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit><trans-unit id="3229595422546554334" datatype="html"> |
6791 | <source>Jobs</source><target state="new">Jobs</target> | ||
6792 | <context-group purpose="location"> | ||
6793 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6794 | <context context-type="linenumber">26</context> | ||
6795 | </context-group> | ||
6796 | </trans-unit><trans-unit id="4804785061014590286" datatype="html"> | ||
6797 | <source>Logs</source><target state="new">Logs</target> | ||
6798 | <context-group purpose="location"> | ||
6799 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6800 | <context context-type="linenumber">37</context> | ||
6801 | </context-group> | ||
6802 | </trans-unit> | ||
6605 | <trans-unit id="3150704904301058778" datatype="html"> | 6803 | <trans-unit id="3150704904301058778" datatype="html"> |
6606 | <source>The plugin index is not available. Please retry later.</source> | 6804 | <source>The plugin index is not available. Please retry later.</source> |
6607 | <target state="new">The plugin index is not available. Please retry later.</target> | 6805 | <target state="new">The plugin index is not available. Please retry later.</target> |
@@ -6715,6 +6913,18 @@ zbasu lo pilno</target> | |||
6715 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> | 6913 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> |
6716 | <context context-type="linenumber">86</context> | 6914 | <context context-type="linenumber">86</context> |
6717 | </context-group> | 6915 | </context-group> |
6916 | </trans-unit><trans-unit id="2903648076838460070" datatype="html"> | ||
6917 | <source>Videos blocked</source><target state="new">Videos blocked</target> | ||
6918 | <context-group purpose="location"> | ||
6919 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6920 | <context context-type="linenumber">67</context> | ||
6921 | </context-group> | ||
6922 | </trans-unit><trans-unit id="7805059636749367886" datatype="html"> | ||
6923 | <source>Muted instances</source><target state="new">Muted instances</target> | ||
6924 | <context-group purpose="location"> | ||
6925 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6926 | <context context-type="linenumber">89</context> | ||
6927 | </context-group> | ||
6718 | </trans-unit> | 6928 | </trans-unit> |
6719 | <trans-unit id="5974506725502681113" datatype="html"> | 6929 | <trans-unit id="5974506725502681113" datatype="html"> |
6720 | <source>Password changed for user <x id="PH"/>.</source> | 6930 | <source>Password changed for user <x id="PH"/>.</source> |
@@ -6727,7 +6937,19 @@ zbasu lo pilno</target> | |||
6727 | <source>Update user password</source> | 6937 | <source>Update user password</source> |
6728 | <target state="new">Update user password</target> | 6938 | <target state="new">Update user password</target> |
6729 | 6939 | ||
6730 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit> | 6940 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit><trans-unit id="177544274549739411" datatype="html"> |
6941 | <source>Following list</source><target state="new">Following list</target> | ||
6942 | <context-group purpose="location"> | ||
6943 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6944 | <context context-type="linenumber">28</context> | ||
6945 | </context-group> | ||
6946 | </trans-unit><trans-unit id="8092429110007204784" datatype="html"> | ||
6947 | <source>Followers list</source><target state="new">Followers list</target> | ||
6948 | <context-group purpose="location"> | ||
6949 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6950 | <context context-type="linenumber">37</context> | ||
6951 | </context-group> | ||
6952 | </trans-unit> | ||
6731 | <trans-unit id="780323526182667308" datatype="html"> | 6953 | <trans-unit id="780323526182667308" datatype="html"> |
6732 | <source>User <x id="PH"/> updated.</source> | 6954 | <source>User <x id="PH"/> updated.</source> |
6733 | <target state="new">User | 6955 | <target state="new">User |
@@ -6746,7 +6968,25 @@ zbasu lo pilno</target> | |||
6746 | <x id="PH"/>. | 6968 | <x id="PH"/>. |
6747 | </target> | 6969 | </target> |
6748 | 6970 | ||
6749 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="8564701209009684429" datatype="html"> | 6971 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="7483807629538115183" datatype="html"> |
6972 | <source>Users list</source><target state="new">Users list</target> | ||
6973 | <context-group purpose="location"> | ||
6974 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6975 | <context context-type="linenumber">27</context> | ||
6976 | </context-group> | ||
6977 | </trans-unit><trans-unit id="1525334987774465166" datatype="html"> | ||
6978 | <source>Create a user</source><target state="new">Create a user</target> | ||
6979 | <context-group purpose="location"> | ||
6980 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6981 | <context context-type="linenumber">36</context> | ||
6982 | </context-group> | ||
6983 | </trans-unit><trans-unit id="5552039423287890133" datatype="html"> | ||
6984 | <source>Update a user</source><target state="new">Update a user</target> | ||
6985 | <context-group purpose="location"> | ||
6986 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6987 | <context context-type="linenumber">48</context> | ||
6988 | </context-group> | ||
6989 | </trans-unit><trans-unit id="8564701209009684429" datatype="html"> | ||
6750 | <source>Federation</source><target state="new">Federation</target> | 6990 | <source>Federation</source><target state="new">Federation</target> |
6751 | <context-group purpose="location"> | 6991 | <context-group purpose="location"> |
6752 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> | 6992 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> |
@@ -7100,7 +7340,25 @@ zbasu lo pilno</target> | |||
7100 | <source>Views for the day</source> | 7340 | <source>Views for the day</source> |
7101 | <target state="new">Views for the day</target> | 7341 | <target state="new">Views for the day</target> |
7102 | 7342 | ||
7103 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit> | 7343 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit><trans-unit id="4707367314920217630" datatype="html"> |
7344 | <source>Create new video channel</source><target state="new">Create new video channel</target> | ||
7345 | <context-group purpose="location"> | ||
7346 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7347 | <context context-type="linenumber">22</context> | ||
7348 | </context-group> | ||
7349 | </trans-unit><trans-unit id="6059091237492573541" datatype="html"> | ||
7350 | <source>Update video channel</source><target state="new">Update video channel</target> | ||
7351 | <context-group purpose="location"> | ||
7352 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7353 | <context context-type="linenumber">31</context> | ||
7354 | </context-group> | ||
7355 | </trans-unit><trans-unit id="6595008830732269870" datatype="html"> | ||
7356 | <source>Not found</source><target state="new">Not found</target> | ||
7357 | <context-group purpose="location"> | ||
7358 | <context context-type="sourcefile">../app/+page-not-found/page-not-found-routing.module.ts</context> | ||
7359 | <context context-type="linenumber">13</context> | ||
7360 | </context-group> | ||
7361 | </trans-unit> | ||
7104 | <trans-unit id="5032453707232754344" datatype="html"> | 7362 | <trans-unit id="5032453707232754344" datatype="html"> |
7105 | <source>Playlist <x id="PH"/> created.</source> | 7363 | <source>Playlist <x id="PH"/> created.</source> |
7106 | <target state="new">Playlist | 7364 | <target state="new">Playlist |
@@ -7118,7 +7376,31 @@ zbasu lo pilno</target> | |||
7118 | <source>Update playlist</source> | 7376 | <source>Update playlist</source> |
7119 | <target state="new">Update playlist</target> | 7377 | <target state="new">Update playlist</target> |
7120 | 7378 | ||
7121 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-video-playlists/my-account-video-playlist-elements.component.ts</context><context context-type="linenumber">48</context></context-group></trans-unit> | 7379 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">82</context></context-group></trans-unit><trans-unit id="3410331549417637431" datatype="html"> |
7380 | <source>Account video imports</source><target state="new">Account video imports</target> | ||
7381 | <context-group purpose="location"> | ||
7382 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7383 | <context context-type="linenumber">105</context> | ||
7384 | </context-group> | ||
7385 | </trans-unit><trans-unit id="4434998055872154420" datatype="html"> | ||
7386 | <source>Account subscriptions</source><target state="new">Account subscriptions</target> | ||
7387 | <context-group purpose="location"> | ||
7388 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7389 | <context context-type="linenumber">114</context> | ||
7390 | </context-group> | ||
7391 | </trans-unit><trans-unit id="6019411775996586321" datatype="html"> | ||
7392 | <source>Videos history</source><target state="new">Videos history</target> | ||
7393 | <context-group purpose="location"> | ||
7394 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7395 | <context context-type="linenumber">150</context> | ||
7396 | </context-group> | ||
7397 | </trans-unit><trans-unit id="5851560788527570644" datatype="html"> | ||
7398 | <source>Notifications</source><target state="new">Notifications</target> | ||
7399 | <context-group purpose="location"> | ||
7400 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7401 | <context context-type="linenumber">163</context> | ||
7402 | </context-group> | ||
7403 | </trans-unit> | ||
7122 | <trans-unit id="104404386496394770" datatype="html"> | 7404 | <trans-unit id="104404386496394770" datatype="html"> |
7123 | <source>Delete playlist</source> | 7405 | <source>Delete playlist</source> |
7124 | <target state="new">Delete playlist</target> | 7406 | <target state="new">Delete playlist</target> |
@@ -7272,7 +7554,19 @@ zbasu lo pilno</target> | |||
7272 | <x id="PH"/>. | 7554 | <x id="PH"/>. |
7273 | </target> | 7555 | </target> |
7274 | 7556 | ||
7275 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit> | 7557 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit><trans-unit id="8231550792139699065" datatype="html"> |
7558 | <source>Verify account email</source><target state="new">Verify account email</target> | ||
7559 | <context-group purpose="location"> | ||
7560 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7561 | <context context-type="linenumber">17</context> | ||
7562 | </context-group> | ||
7563 | </trans-unit><trans-unit id="4997281272800290390" datatype="html"> | ||
7564 | <source>Verify account ask send email</source><target state="new">Verify account ask send email</target> | ||
7565 | <context-group purpose="location"> | ||
7566 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7567 | <context context-type="linenumber">26</context> | ||
7568 | </context-group> | ||
7569 | </trans-unit> | ||
7276 | <trans-unit id="4180693983967989981" datatype="html"> | 7570 | <trans-unit id="4180693983967989981" datatype="html"> |
7277 | <source>Unable to find user id or verification string.</source> | 7571 | <source>Unable to find user id or verification string.</source> |
7278 | <target state="new">Unable to find user id or verification string.</target> | 7572 | <target state="new">Unable to find user id or verification string.</target> |
@@ -7397,27 +7691,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7397 | <source>any language</source> | 7691 | <source>any language</source> |
7398 | <target state="new">any language</target> | 7692 | <target state="new">any language</target> |
7399 | 7693 | ||
7400 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">202</context></context-group></trans-unit> | 7694 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">229</context></context-group></trans-unit> |
7401 | <trans-unit id="5633144232269377096" datatype="html"> | 7695 | <trans-unit id="5633144232269377096" datatype="html"> |
7402 | <source>hide</source> | 7696 | <source>hide</source> |
7403 | <target state="new">hide</target> | 7697 | <target state="new">hide</target> |
7404 | 7698 | ||
7405 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">118</context></context-group></trans-unit> | 7699 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> |
7406 | <trans-unit id="8603861867909474404" datatype="html"> | 7700 | <trans-unit id="8603861867909474404" datatype="html"> |
7407 | <source>blur</source> | 7701 | <source>blur</source> |
7408 | <target state="new">blur</target> | 7702 | <target state="new">blur</target> |
7409 | 7703 | ||
7410 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> | 7704 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> |
7411 | <trans-unit id="4534458451100881847" datatype="html"> | 7705 | <trans-unit id="4534458451100881847" datatype="html"> |
7412 | <source>display</source> | 7706 | <source>display</source> |
7413 | <target state="new">display</target> | 7707 | <target state="new">display</target> |
7414 | 7708 | ||
7415 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> | 7709 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">127</context></context-group></trans-unit> |
7416 | <trans-unit id="4467323362722952678" datatype="html"> | 7710 | <trans-unit id="4467323362722952678" datatype="html"> |
7417 | <source>Unknown</source> | 7711 | <source>Unknown</source> |
7418 | <target state="new">Unknown</target> | 7712 | <target state="new">Unknown</target> |
7419 | 7713 | ||
7420 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">190</context></context-group></trans-unit> | 7714 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">193</context></context-group></trans-unit> |
7421 | <trans-unit id="8781423666414310853"> | 7715 | <trans-unit id="8781423666414310853"> |
7422 | <source>Your password has been successfully reset!</source> | 7716 | <source>Your password has been successfully reset!</source> |
7423 | <target>.i snada lo nu mo'u galfi le do japyvla</target> | 7717 | <target>.i snada lo nu mo'u galfi le do japyvla</target> |
@@ -8537,27 +8831,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8537 | <source>Emphasis</source> | 8831 | <source>Emphasis</source> |
8538 | <target state="new">Emphasis</target> | 8832 | <target state="new">Emphasis</target> |
8539 | 8833 | ||
8540 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">77</context></context-group></trans-unit> | 8834 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> |
8541 | <trans-unit id="7565716024468232322" datatype="html"> | 8835 | <trans-unit id="7565716024468232322" datatype="html"> |
8542 | <source>Links</source> | 8836 | <source>Links</source> |
8543 | <target state="new">Links</target> | 8837 | <target state="new">Links</target> |
8544 | 8838 | ||
8545 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">78</context></context-group></trans-unit> | 8839 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> |
8546 | <trans-unit id="7838476952710404110" datatype="html"> | 8840 | <trans-unit id="7838476952710404110" datatype="html"> |
8547 | <source>New lines</source> | 8841 | <source>New lines</source> |
8548 | <target state="new">New lines</target> | 8842 | <target state="new">New lines</target> |
8549 | 8843 | ||
8550 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 8844 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">83</context></context-group></trans-unit> |
8551 | <trans-unit id="8756167649220050929" datatype="html"> | 8845 | <trans-unit id="8756167649220050929" datatype="html"> |
8552 | <source>Lists</source> | 8846 | <source>Lists</source> |
8553 | <target state="new">Lists</target> | 8847 | <target state="new">Lists</target> |
8554 | 8848 | ||
8555 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">80</context></context-group></trans-unit> | 8849 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">84</context></context-group></trans-unit> |
8556 | <trans-unit id="414887388288176527" datatype="html"> | 8850 | <trans-unit id="414887388288176527" datatype="html"> |
8557 | <source>Images</source> | 8851 | <source>Images</source> |
8558 | <target state="new">Images</target> | 8852 | <target state="new">Images</target> |
8559 | 8853 | ||
8560 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> | 8854 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">85</context></context-group></trans-unit> |
8561 | <trans-unit id="5708680277917691451" datatype="html"> | 8855 | <trans-unit id="5708680277917691451" datatype="html"> |
8562 | <source> | 8856 | <source> |
8563 | <x id="PH"/> users banned. | 8857 | <x id="PH"/> users banned. |
@@ -8953,7 +9247,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8953 | <source>Moderator</source> | 9247 | <source>Moderator</source> |
8954 | <target state="new">Moderator</target> | 9248 | <target state="new">Moderator</target> |
8955 | 9249 | ||
8956 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">386</context></context-group></trans-unit> | 9250 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">384</context></context-group></trans-unit> |
8957 | <trans-unit id="3723085768598852106" datatype="html"> | 9251 | <trans-unit id="3723085768598852106" datatype="html"> |
8958 | <source>Video removed from | 9252 | <source>Video removed from |
8959 | <x id="PH"/> | 9253 | <x id="PH"/> |
@@ -9021,7 +9315,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9021 | <source>Do you really want to delete this comment?</source> | 9315 | <source>Do you really want to delete this comment?</source> |
9022 | <target state="new">Do you really want to delete this comment?</target> | 9316 | <target state="new">Do you really want to delete this comment?</target> |
9023 | 9317 | ||
9024 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">434</context></context-group></trans-unit> | 9318 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">166</context></context-group></trans-unit> |
9025 | <trans-unit id="7837272126865175984" datatype="html"> | 9319 | <trans-unit id="7837272126865175984" datatype="html"> |
9026 | <source>Comment deleted.</source> | 9320 | <source>Comment deleted.</source> |
9027 | <target state="new">Comment deleted.</target> | 9321 | <target state="new">Comment deleted.</target> |
@@ -9133,9 +9427,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9133 | 9427 | ||
9134 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> | 9428 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> |
9135 | <source>Report</source><target state="new">Report</target> | 9429 | <source>Report</source><target state="new">Report</target> |
9430 | |||
9431 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="4814285799071780083" datatype="html"> | ||
9432 | <source>Remove</source><target state="new">Remove</target> | ||
9136 | <context-group purpose="location"> | 9433 | <context-group purpose="location"> |
9137 | <context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> | 9434 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> |
9138 | <context context-type="linenumber">286</context> | 9435 | <context context-type="linenumber">179</context> |
9436 | </context-group> | ||
9437 | </trans-unit><trans-unit id="6871668720687277843" datatype="html"> | ||
9438 | <source>Remove & re-draft</source><target state="new">Remove & re-draft</target> | ||
9439 | <context-group purpose="location"> | ||
9440 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> | ||
9441 | <context context-type="linenumber">187</context> | ||
9139 | </context-group> | 9442 | </context-group> |
9140 | </trans-unit> | 9443 | </trans-unit> |
9141 | <trans-unit id="4903651219400691248" datatype="html"> | 9444 | <trans-unit id="4903651219400691248" datatype="html"> |
@@ -9237,22 +9540,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9237 | <source>Only I can see this video</source> | 9540 | <source>Only I can see this video</source> |
9238 | <target state="new">Only I can see this video</target> | 9541 | <target state="new">Only I can see this video</target> |
9239 | 9542 | ||
9240 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">340</context></context-group></trans-unit> | 9543 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">341</context></context-group></trans-unit> |
9241 | <trans-unit id="6767380569816110388" datatype="html"> | 9544 | <trans-unit id="6767380569816110388" datatype="html"> |
9242 | <source>Only shareable via a private link</source> | 9545 | <source>Only shareable via a private link</source> |
9243 | <target state="new">Only shareable via a private link</target> | 9546 | <target state="new">Only shareable via a private link</target> |
9244 | 9547 | ||
9245 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">344</context></context-group></trans-unit> | 9548 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">345</context></context-group></trans-unit> |
9246 | <trans-unit id="6828965264297239528" datatype="html"> | 9549 | <trans-unit id="6828965264297239528" datatype="html"> |
9247 | <source>Anyone can see this video</source> | 9550 | <source>Anyone can see this video</source> |
9248 | <target state="new">Anyone can see this video</target> | 9551 | <target state="new">Anyone can see this video</target> |
9249 | 9552 | ||
9250 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">348</context></context-group></trans-unit> | 9553 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">349</context></context-group></trans-unit> |
9251 | <trans-unit id="1425933035739773115" datatype="html"> | 9554 | <trans-unit id="1425933035739773115" datatype="html"> |
9252 | <source>Only users of this instance can see this video</source> | 9555 | <source>Only users of this instance can see this video</source> |
9253 | <target state="new">Only users of this instance can see this video</target> | 9556 | <target state="new">Only users of this instance can see this video</target> |
9254 | 9557 | ||
9255 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">352</context></context-group></trans-unit> | 9558 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">353</context></context-group></trans-unit> |
9256 | <trans-unit id="5210096066382592800" datatype="html"> | 9559 | <trans-unit id="5210096066382592800" datatype="html"> |
9257 | <source>Video to import updated.</source> | 9560 | <source>Video to import updated.</source> |
9258 | <target state="new">Video to import updated.</target> | 9561 | <target state="new">Video to import updated.</target> |
@@ -9332,17 +9635,29 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9332 | <target state="new">Report comment</target> | 9635 | <target state="new">Report comment</target> |
9333 | 9636 | ||
9334 | 9637 | ||
9335 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 9638 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/report-modals/comment-report.component.ts</context><context context-type="linenumber">51</context></context-group></trans-unit> |
9336 | <trans-unit id="3691787517663044217" datatype="html"> | 9639 | <trans-unit id="3691787517663044217" datatype="html"> |
9337 | <source> The deletion will be sent to remote instances so they can reflect the change.</source> | 9640 | <source> The deletion will be sent to remote instances so they can reflect the change.</source> |
9338 | <target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> | 9641 | <target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> |
9339 | 9642 | ||
9340 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">163</context></context-group></trans-unit> | 9643 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">169</context></context-group></trans-unit> |
9341 | <trans-unit id="7321800851971795962" datatype="html"> | 9644 | <trans-unit id="7321800851971795962" datatype="html"> |
9342 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source> | 9645 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source> |
9343 | <target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> | 9646 | <target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> |
9344 | 9647 | ||
9345 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">165</context></context-group></trans-unit> | 9648 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="5964038603724691720" datatype="html"> |
9649 | <source>Delete and re-draft</source><target state="new">Delete and re-draft</target> | ||
9650 | <context-group purpose="location"> | ||
9651 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | ||
9652 | <context context-type="linenumber">197</context> | ||
9653 | </context-group> | ||
9654 | </trans-unit><trans-unit id="7163633882758007711" datatype="html"> | ||
9655 | <source>Do you really want to delete and re-draft this comment?</source><target state="new">Do you really want to delete and re-draft this comment?</target> | ||
9656 | <context-group purpose="location"> | ||
9657 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | ||
9658 | <context context-type="linenumber">197</context> | ||
9659 | </context-group> | ||
9660 | </trans-unit> | ||
9346 | <trans-unit id="6775540171466219199" datatype="html"> | 9661 | <trans-unit id="6775540171466219199" datatype="html"> |
9347 | <source>Stop autoplaying next video</source> | 9662 | <source>Stop autoplaying next video</source> |
9348 | <target state="new">Stop autoplaying next video</target> | 9663 | <target state="new">Stop autoplaying next video</target> |
@@ -9504,6 +9819,36 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9504 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> | 9819 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> |
9505 | <context context-type="linenumber">36</context> | 9820 | <context context-type="linenumber">36</context> |
9506 | </context-group> | 9821 | </context-group> |
9822 | </trans-unit><trans-unit id="4668975178372693951" datatype="html"> | ||
9823 | <source>Discover videos</source><target state="new">Discover videos</target> | ||
9824 | <context-group purpose="location"> | ||
9825 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9826 | <context context-type="linenumber">23</context> | ||
9827 | </context-group> | ||
9828 | </trans-unit><trans-unit id="8067135025051844577" datatype="html"> | ||
9829 | <source>Trending videos</source><target state="new">Trending videos</target> | ||
9830 | <context-group purpose="location"> | ||
9831 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9832 | <context context-type="linenumber">32</context> | ||
9833 | </context-group> | ||
9834 | </trans-unit><trans-unit id="664221386829541948" datatype="html"> | ||
9835 | <source>Recently added videos</source><target state="new">Recently added videos</target> | ||
9836 | <context-group purpose="location"> | ||
9837 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9838 | <context context-type="linenumber">58</context> | ||
9839 | </context-group> | ||
9840 | </trans-unit><trans-unit id="8212906256415538361" datatype="html"> | ||
9841 | <source>Upload a video</source><target state="new">Upload a video</target> | ||
9842 | <context-group purpose="location"> | ||
9843 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9844 | <context context-type="linenumber">97</context> | ||
9845 | </context-group> | ||
9846 | </trans-unit><trans-unit id="7590784934397800835" datatype="html"> | ||
9847 | <source>Edit a video</source><target state="new">Edit a video</target> | ||
9848 | <context-group purpose="location"> | ||
9849 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9850 | <context context-type="linenumber">106</context> | ||
9851 | </context-group> | ||
9507 | </trans-unit> | 9852 | </trans-unit> |
9508 | </body> | 9853 | </body> |
9509 | </file> | 9854 | </file> |
diff --git a/client/src/locale/angular.kab.xlf b/client/src/locale/angular.kab.xlf index 9e0ccfa80..ac7bb99b2 100644 --- a/client/src/locale/angular.kab.xlf +++ b/client/src/locale/angular.kab.xlf | |||
@@ -318,7 +318,7 @@ | |||
318 | <target>Iɣewwaṛen</target> | 318 | <target>Iɣewwaṛen</target> |
319 | 319 | ||
320 | 320 | ||
321 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 321 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">48</context></context-group></trans-unit> |
322 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d" datatype="html"> | 322 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d" datatype="html"> |
323 | <source>Start at</source> | 323 | <source>Start at</source> |
324 | <target>Bdu deg</target> | 324 | <target>Bdu deg</target> |
@@ -573,7 +573,7 @@ | |||
573 | 573 | ||
574 | 574 | ||
575 | 575 | ||
576 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 576 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
577 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc" datatype="html"> | 577 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc" datatype="html"> |
578 | <source>Edit starts/stops at</source> | 578 | <source>Edit starts/stops at</source> |
579 | <target state="new">Edit starts/stops at</target> | 579 | <target state="new">Edit starts/stops at</target> |
@@ -618,7 +618,7 @@ | |||
618 | 618 | ||
619 | 619 | ||
620 | 620 | ||
621 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> | 621 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
622 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c" datatype="html"> | 622 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c" datatype="html"> |
623 | <source>Edit</source> | 623 | <source>Edit</source> |
624 | <target>Édition</target> | 624 | <target>Édition</target> |
@@ -643,17 +643,10 @@ | |||
643 | <target state="translated">Taskant taččurant</target> | 643 | <target state="translated">Taskant taččurant</target> |
644 | 644 | ||
645 | <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></trans-unit> | 645 | <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></trans-unit> |
646 | <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f" datatype="html"> | 646 | <trans-unit id="8644431249513874405" datatype="html"> |
647 | <source>Get help</source> | ||
648 | <target>Awi tallelt</target> | ||
649 | |||
650 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit><trans-unit id="8644431249513874405" datatype="html"> | ||
651 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> | 647 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> |
652 | <context-group purpose="location"> | 648 | |
653 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 649 | <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></trans-unit> |
654 | <context context-type="linenumber">71</context> | ||
655 | </context-group> | ||
656 | </trans-unit> | ||
657 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> | 650 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> |
658 | <source>Recommended</source> | 651 | <source>Recommended</source> |
659 | <target>Yettuwelleh</target> | 652 | <target>Yettuwelleh</target> |
@@ -713,7 +706,7 @@ | |||
713 | <source>PROFILE SETTINGS</source> | 706 | <source>PROFILE SETTINGS</source> |
714 | <target state="new">PROFILE SETTINGS</target> | 707 | <target state="new">PROFILE SETTINGS</target> |
715 | 708 | ||
716 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 709 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">12</context></context-group></trans-unit> |
717 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3" datatype="html"> | 710 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3" datatype="html"> |
718 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> | 711 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> |
719 | <target state="translated"> | 712 | <target state="translated"> |
@@ -899,11 +892,8 @@ | |||
899 | 892 | ||
900 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> | 893 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> |
901 | <source>User</source><target state="new">User</target> | 894 | <source>User</source><target state="new">User</target> |
902 | <context-group purpose="location"> | 895 | |
903 | <context context-type="sourcefile">../app/core/users/user.service.ts</context> | 896 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit> |
904 | <context context-type="linenumber">384</context> | ||
905 | </context-group> | ||
906 | </trans-unit> | ||
907 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0" datatype="html"> | 897 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0" datatype="html"> |
908 | <source>Ban</source> | 898 | <source>Ban</source> |
909 | <target state="new">Ban</target> | 899 | <target state="new">Ban</target> |
@@ -1523,84 +1513,84 @@ The link will expire within 1 hour.</target> | |||
1523 | <source>Account settings</source> | 1513 | <source>Account settings</source> |
1524 | <target state="new">Account settings</target> | 1514 | <target state="new">Account settings</target> |
1525 | 1515 | ||
1526 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 1516 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
1527 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> | 1517 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> |
1528 | <source>Channels settings</source> | 1518 | <source>Channels settings</source> |
1529 | <target state="new">Channels settings</target> | 1519 | <target state="new">Channels settings</target> |
1530 | 1520 | ||
1531 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 1521 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> |
1532 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> | 1522 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> |
1533 | <source>Interface:</source> | 1523 | <source>Interface:</source> |
1534 | <target state="new">Interface:</target> | 1524 | <target state="new">Interface:</target> |
1535 | 1525 | ||
1536 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 1526 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1537 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> | 1527 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> |
1538 | <source>Videos:</source> | 1528 | <source>Videos:</source> |
1539 | <target state="new">Videos:</target> | 1529 | <target state="new">Videos:</target> |
1540 | 1530 | ||
1541 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 1531 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> |
1542 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> | 1532 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> |
1543 | <source>Sensitive:</source> | 1533 | <source>Sensitive:</source> |
1544 | <target state="new">Sensitive:</target> | 1534 | <target state="new">Sensitive:</target> |
1545 | 1535 | ||
1546 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 1536 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">54</context></context-group></trans-unit> |
1547 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1537 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> |
1548 | <source>Interface: <x id="INTERPOLATION"/></source> | 1538 | <source>Interface: <x id="INTERPOLATION"/></source> |
1549 | <target state="new">Interface: | 1539 | <target state="new">Interface: |
1550 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> | 1540 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> |
1551 | </target> | 1541 | </target> |
1552 | 1542 | ||
1553 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">156</context></context-group></trans-unit> | 1543 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> |
1554 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1544 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1555 | <source>Help share videos</source> | 1545 | <source>Help share videos</source> |
1556 | <target state="new">Help share videos</target> | 1546 | <target state="new">Help share videos</target> |
1557 | 1547 | ||
1558 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> | 1548 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
1559 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> | 1549 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> |
1560 | <source>More account settings</source> | 1550 | <source>More account settings</source> |
1561 | <target state="new">More account settings</target> | 1551 | <target state="new">More account settings</target> |
1562 | 1552 | ||
1563 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> | 1553 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> |
1564 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> | 1554 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> |
1565 | <source>Keyboard shortcuts</source> | 1555 | <source>Keyboard shortcuts</source> |
1566 | <target>Inegzumen n unasiw</target> | 1556 | <target>Inegzumen n unasiw</target> |
1567 | 1557 | ||
1568 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 1558 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">72</context></context-group></trans-unit> |
1569 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344" datatype="html"> | 1559 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344" datatype="html"> |
1570 | <source>Log out</source> | 1560 | <source>Log out</source> |
1571 | <target>Asenser</target> | 1561 | <target>Asenser</target> |
1572 | 1562 | ||
1573 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">70</context></context-group></trans-unit> | 1563 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit> |
1574 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87" datatype="html"> | 1564 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87" datatype="html"> |
1575 | <source>Create an account</source> | 1565 | <source>Create an account</source> |
1576 | <target>Rnu amiḍan</target> | 1566 | <target>Rnu amiḍan</target> |
1577 | 1567 | ||
1578 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">78</context></context-group></trans-unit> | 1568 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
1579 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> | 1569 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> |
1580 | <source>MY LIBRARY</source> | 1570 | <source>MY LIBRARY</source> |
1581 | <target state="new">MY LIBRARY</target> | 1571 | <target state="new">MY LIBRARY</target> |
1582 | 1572 | ||
1583 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 1573 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">88</context></context-group></trans-unit> |
1584 | <trans-unit id="a52dae09be10ca3a65da918533ced3d3f4992238" datatype="html"> | 1574 | <trans-unit id="a52dae09be10ca3a65da918533ced3d3f4992238" datatype="html"> |
1585 | <source>Videos</source> | 1575 | <source>Videos</source> |
1586 | <target>Tividyutin</target> | 1576 | <target>Tividyutin</target> |
1587 | 1577 | ||
1588 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">86</context></context-group></trans-unit> | 1578 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">92</context></context-group></trans-unit> |
1589 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> | 1579 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> |
1590 | <source>Playlists</source> | 1580 | <source>Playlists</source> |
1591 | <target>Tibdarin n tɣuri</target> | 1581 | <target>Tibdarin n tɣuri</target> |
1592 | 1582 | ||
1593 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">91</context></context-group></trans-unit> | 1583 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">97</context></context-group></trans-unit> |
1594 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2" datatype="html"> | 1584 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2" datatype="html"> |
1595 | <source>Subscriptions</source> | 1585 | <source>Subscriptions</source> |
1596 | <target>Ijerriden</target> | 1586 | <target>Ijerriden</target> |
1597 | 1587 | ||
1598 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 1588 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">102</context></context-group></trans-unit> |
1599 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8" datatype="html"> | 1589 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8" datatype="html"> |
1600 | <source>History</source> | 1590 | <source>History</source> |
1601 | <target>Amezray</target> | 1591 | <target>Amezray</target> |
1602 | 1592 | ||
1603 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit> | 1593 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">107</context></context-group></trans-unit> |
1604 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> | 1594 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> |
1605 | <source>VIDEOS</source> | 1595 | <source>VIDEOS</source> |
1606 | <target state="new">VIDEOS</target> | 1596 | <target state="new">VIDEOS</target> |
@@ -1612,27 +1602,27 @@ The link will expire within 1 hour.</target> | |||
1612 | <target state="new">Discover</target> | 1602 | <target state="new">Discover</target> |
1613 | 1603 | ||
1614 | 1604 | ||
1615 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">111</context></context-group></trans-unit> | 1605 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">117</context></context-group></trans-unit> |
1616 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807" datatype="html"> | 1606 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807" datatype="html"> |
1617 | <source>Trending</source> | 1607 | <source>Trending</source> |
1618 | <target>Tiddin</target> | 1608 | <target>Tiddin</target> |
1619 | 1609 | ||
1620 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">116</context></context-group></trans-unit> | 1610 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">122</context></context-group></trans-unit> |
1621 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> | 1611 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> |
1622 | <source>Most liked</source> | 1612 | <source>Most liked</source> |
1623 | <target state="new">Most liked</target> | 1613 | <target state="new">Most liked</target> |
1624 | 1614 | ||
1625 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">121</context></context-group></trans-unit> | 1615 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">127</context></context-group></trans-unit> |
1626 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1" datatype="html"> | 1616 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1" datatype="html"> |
1627 | <source>Recently added</source> | 1617 | <source>Recently added</source> |
1628 | <target state="new">Recently added</target> | 1618 | <target state="new">Recently added</target> |
1629 | 1619 | ||
1630 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">126</context></context-group></trans-unit> | 1620 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">132</context></context-group></trans-unit> |
1631 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919" datatype="html"> | 1621 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919" datatype="html"> |
1632 | <source>Administration</source> | 1622 | <source>Administration</source> |
1633 | <target>Tadbelt</target> | 1623 | <target>Tadbelt</target> |
1634 | 1624 | ||
1635 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">140</context></context-group></trans-unit> | 1625 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">146</context></context-group></trans-unit> |
1636 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a" datatype="html"> | 1626 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a" datatype="html"> |
1637 | <source>About</source> | 1627 | <source>About</source> |
1638 | <target>Awal ɣef…</target> | 1628 | <target>Awal ɣef…</target> |
@@ -1643,57 +1633,57 @@ The link will expire within 1 hour.</target> | |||
1643 | <source>Contact</source> | 1633 | <source>Contact</source> |
1644 | <target>Anermis</target> | 1634 | <target>Anermis</target> |
1645 | 1635 | ||
1646 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">160</context></context-group></trans-unit> | 1636 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">166</context></context-group></trans-unit> |
1647 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> | 1637 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> |
1648 | <source>Help</source> | 1638 | <source>Help</source> |
1649 | <target>Tallelt</target> | 1639 | <target>Tallelt</target> |
1650 | 1640 | ||
1651 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1641 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1652 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> | 1642 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> |
1653 | <source>Get help using PeerTube</source> | 1643 | <source>Get help using PeerTube</source> |
1654 | <target state="new">Get help using PeerTube</target> | 1644 | <target state="new">Get help using PeerTube</target> |
1655 | 1645 | ||
1656 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">161</context></context-group></trans-unit> | 1646 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">167</context></context-group></trans-unit> |
1657 | <trans-unit id="4b6dbf2d92858e82bcf6ae5dbc8dfb4b29d82ad0" datatype="html"> | 1647 | <trans-unit id="4b6dbf2d92858e82bcf6ae5dbc8dfb4b29d82ad0" datatype="html"> |
1658 | <source>FAQ</source> | 1648 | <source>FAQ</source> |
1659 | <target>Isteqsiyen FAQ</target> | 1649 | <target>Isteqsiyen FAQ</target> |
1660 | 1650 | ||
1661 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">163</context></context-group></trans-unit> | 1651 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
1662 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> | 1652 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> |
1663 | <source>Frequently asked questions about PeerTube</source> | 1653 | <source>Frequently asked questions about PeerTube</source> |
1664 | <target state="new">Frequently asked questions about PeerTube</target> | 1654 | <target state="new">Frequently asked questions about PeerTube</target> |
1665 | 1655 | ||
1666 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1656 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1667 | <trans-unit id="299f97b8ee9c62d45f2cc01961aa1e5101d6d05a" datatype="html"> | 1657 | <trans-unit id="299f97b8ee9c62d45f2cc01961aa1e5101d6d05a" datatype="html"> |
1668 | <source>Stats</source> | 1658 | <source>Stats</source> |
1669 | <target>Tiddadanin</target> | 1659 | <target>Tiddadanin</target> |
1670 | 1660 | ||
1671 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 1661 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
1672 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> | 1662 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> |
1673 | <source>API</source> | 1663 | <source>API</source> |
1674 | <target state="new">API</target> | 1664 | <target state="new">API</target> |
1675 | 1665 | ||
1676 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1666 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1677 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> | 1667 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> |
1678 | <source>API documentation</source> | 1668 | <source>API documentation</source> |
1679 | <target state="new">API documentation</target> | 1669 | <target state="new">API documentation</target> |
1680 | 1670 | ||
1681 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 1671 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
1682 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> | 1672 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> |
1683 | <source>Shortcuts</source> | 1673 | <source>Shortcuts</source> |
1684 | <target>Inegzumen</target> | 1674 | <target>Inegzumen</target> |
1685 | 1675 | ||
1686 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1676 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1687 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> | 1677 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> |
1688 | <source>powered by PeerTube</source> | 1678 | <source>powered by PeerTube</source> |
1689 | <target state="new">powered by PeerTube</target> | 1679 | <target state="new">powered by PeerTube</target> |
1690 | 1680 | ||
1691 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | 1681 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">177</context></context-group></trans-unit> |
1692 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> | 1682 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> |
1693 | <source>powered by PeerTube - CopyLeft 2015-2020</source> | 1683 | <source>powered by PeerTube - CopyLeft 2015-2020</source> |
1694 | <target state="new">powered by PeerTube - CopyLeft 2015-2020</target> | 1684 | <target state="new">powered by PeerTube - CopyLeft 2015-2020</target> |
1695 | 1685 | ||
1696 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> | 1686 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">176</context></context-group></trans-unit> |
1697 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771" datatype="html"> | 1687 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771" datatype="html"> |
1698 | <source>View your notifications</source> | 1688 | <source>View your notifications</source> |
1699 | <target>Wali tilɣa-inek.m</target> | 1689 | <target>Wali tilɣa-inek.m</target> |
@@ -1720,7 +1710,7 @@ The link will expire within 1 hour.</target> | |||
1720 | <source>See all your notifications</source> | 1710 | <source>See all your notifications</source> |
1721 | <target state="new">See all your notifications</target> | 1711 | <target state="new">See all your notifications</target> |
1722 | 1712 | ||
1723 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 1713 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">40</context></context-group></trans-unit> |
1724 | <trans-unit id="4b3972c3e9485218508a95f7a4ce7758e3f09ced" datatype="html"> | 1714 | <trans-unit id="4b3972c3e9485218508a95f7a4ce7758e3f09ced" datatype="html"> |
1725 | <source>Upload</source> | 1715 | <source>Upload</source> |
1726 | <target>Sali</target> | 1716 | <target>Sali</target> |
@@ -2473,7 +2463,13 @@ The link will expire within 1 hour.</target> | |||
2473 | Less customization | 2463 | Less customization |
2474 | </target> | 2464 | </target> |
2475 | 2465 | ||
2476 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit> | 2466 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit><trans-unit id="2454050363478003966" datatype="html"> |
2467 | <source>Login</source><target state="new">Login</target> | ||
2468 | <context-group purpose="location"> | ||
2469 | <context context-type="sourcefile">../app/+login/login-routing.module.ts</context> | ||
2470 | <context context-type="linenumber">14</context> | ||
2471 | </context-group> | ||
2472 | </trans-unit> | ||
2477 | <trans-unit id="3c4c080864b313cfdff5fdea6aae5da276246d99" datatype="html"> | 2473 | <trans-unit id="3c4c080864b313cfdff5fdea6aae5da276246d99" datatype="html"> |
2478 | <source>Public</source> | 2474 | <source>Public</source> |
2479 | <target>Azayez</target> | 2475 | <target>Azayez</target> |
@@ -2653,7 +2649,7 @@ The link will expire within 1 hour.</target> | |||
2653 | <source>No comments.</source> | 2649 | <source>No comments.</source> |
2654 | <target state="new">No comments.</target> | 2650 | <target state="new">No comments.</target> |
2655 | 2651 | ||
2656 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 2652 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> |
2657 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> | 2653 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> |
2658 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> | 2654 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> |
2659 | <target state="new"> | 2655 | <target state="new"> |
@@ -2663,7 +2659,7 @@ The link will expire within 1 hour.</target> | |||
2663 | 2659 | ||
2664 | </target> | 2660 | </target> |
2665 | 2661 | ||
2666 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">79</context></context-group></trans-unit> | 2662 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
2667 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> | 2663 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> |
2668 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> | 2664 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> |
2669 | <target state="new"> | 2665 | <target state="new"> |
@@ -2672,53 +2668,121 @@ The link will expire within 1 hour.</target> | |||
2672 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> | 2668 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> |
2673 | </target> | 2669 | </target> |
2674 | 2670 | ||
2675 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 2671 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">87</context></context-group></trans-unit> |
2676 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> | 2672 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> |
2677 | <source>View <x id="INTERPOLATION"/> replies</source> | 2673 | <source>View <x id="INTERPOLATION"/> replies</source> |
2678 | <target state="new">View | 2674 | <target state="new">View |
2679 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies | 2675 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies |
2680 | </target> | 2676 | </target> |
2681 | 2677 | ||
2682 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">85</context></context-group></trans-unit> | 2678 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">90</context></context-group></trans-unit> |
2683 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828" datatype="html"> | 2679 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828" datatype="html"> |
2684 | <source>Comments are disabled.</source> | 2680 | <source>Comments are disabled.</source> |
2685 | <target state="new"> | 2681 | <target state="new"> |
2686 | Comments are disabled. | 2682 | Comments are disabled. |
2687 | </target> | 2683 | </target> |
2688 | 2684 | ||
2689 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit><trans-unit id="3691787517663044217" datatype="html"> | 2685 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit><trans-unit id="3691787517663044217" datatype="html"> |
2690 | <source> The deletion will be sent to remote instances so they can reflect the change.</source><target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> | 2686 | <source> The deletion will be sent to remote instances so they can reflect the change.</source><target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> |
2687 | |||
2688 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">169</context></context-group></trans-unit><trans-unit id="7321800851971795962" datatype="html"> | ||
2689 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source><target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> | ||
2690 | |||
2691 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="5964038603724691720" datatype="html"> | ||
2692 | <source>Delete and re-draft</source><target state="new">Delete and re-draft</target> | ||
2691 | <context-group purpose="location"> | 2693 | <context-group purpose="location"> |
2692 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | 2694 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> |
2693 | <context context-type="linenumber">163</context> | 2695 | <context context-type="linenumber">197</context> |
2694 | </context-group> | 2696 | </context-group> |
2695 | </trans-unit><trans-unit id="7321800851971795962" datatype="html"> | 2697 | </trans-unit><trans-unit id="7163633882758007711" datatype="html"> |
2696 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source><target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> | 2698 | <source>Do you really want to delete and re-draft this comment?</source><target state="new">Do you really want to delete and re-draft this comment?</target> |
2697 | <context-group purpose="location"> | 2699 | <context-group purpose="location"> |
2698 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | 2700 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> |
2699 | <context context-type="linenumber">165</context> | 2701 | <context context-type="linenumber">197</context> |
2700 | </context-group> | 2702 | </context-group> |
2701 | </trans-unit> | 2703 | </trans-unit> |
2702 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e" datatype="html"> | 2704 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e" datatype="html"> |
2703 | <source>Add comment...</source> | 2705 | <source>Add comment...</source> |
2704 | <target state="new">Add comment...</target> | 2706 | <target state="new">Add comment...</target> |
2705 | 2707 | ||
2706 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | 2708 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit><trans-unit id="4e5254dedf0c12ce7e7c2197384fceebe3b29a2b" datatype="html"> |
2709 | <source>Markdown compatible</source><target state="new">Markdown compatible</target> | ||
2710 | <context-group purpose="location"> | ||
2711 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2712 | <context context-type="linenumber">13</context> | ||
2713 | </context-group> | ||
2714 | </trans-unit><trans-unit id="4739ffad85f09defefdb6e51b45f43b2ef7c4388" datatype="html"> | ||
2715 | <source>Markdown compatible that supports:</source><target state="new">Markdown compatible that supports:</target> | ||
2716 | <context-group purpose="location"> | ||
2717 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2718 | <context context-type="linenumber">15</context> | ||
2719 | </context-group> | ||
2720 | </trans-unit><trans-unit id="9a53b17a021bb0677c156fd893461797fc497a10" datatype="html"> | ||
2721 | <source>Auto generated links</source><target state="new">Auto generated links</target> | ||
2722 | <context-group purpose="location"> | ||
2723 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2724 | <context context-type="linenumber">18</context> | ||
2725 | </context-group> | ||
2726 | </trans-unit><trans-unit id="664f99b8919d6dd2faa1c1f7c378aa86d1be5e8a" datatype="html"> | ||
2727 | <source>Break lines</source><target state="new">Break lines</target> | ||
2728 | <context-group purpose="location"> | ||
2729 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2730 | <context context-type="linenumber">19</context> | ||
2731 | </context-group> | ||
2732 | </trans-unit><trans-unit id="b15e7bec5c7833d2d9634946ccbed68967b1bee1" datatype="html"> | ||
2733 | <source>Lists</source><target state="new">Lists</target> | ||
2734 | <context-group purpose="location"> | ||
2735 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2736 | <context context-type="linenumber">20</context> | ||
2737 | </context-group> | ||
2738 | </trans-unit><trans-unit id="ab4426b60f13c00b61d6b714d390dc629f314980" datatype="html"> | ||
2739 | <source>Emphasis</source><target state="new">Emphasis</target> | ||
2740 | <context-group purpose="location"> | ||
2741 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2742 | <context context-type="linenumber">22</context> | ||
2743 | </context-group> | ||
2744 | </trans-unit><trans-unit id="4e13b179501d3d32721037e03b4c04acb9857c5f" datatype="html"> | ||
2745 | <source>bold</source><target state="new">bold</target> | ||
2746 | <context-group purpose="location"> | ||
2747 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2748 | <context context-type="linenumber">23</context> | ||
2749 | </context-group> | ||
2750 | </trans-unit><trans-unit id="3c12190421fbb2756e6bbead923df9ec5de8ede2" datatype="html"> | ||
2751 | <source>italic</source><target state="new">italic</target> | ||
2752 | <context-group purpose="location"> | ||
2753 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2754 | <context context-type="linenumber">23</context> | ||
2755 | </context-group> | ||
2756 | </trans-unit><trans-unit id="adb4bbdcb961b8aac8298d6cac554d9b25636b7a" datatype="html"> | ||
2757 | <source>Emoji shortcuts</source><target state="new">Emoji shortcuts</target> | ||
2758 | <context-group purpose="location"> | ||
2759 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2760 | <context context-type="linenumber">26</context> | ||
2761 | </context-group> | ||
2762 | </trans-unit><trans-unit id="b9809a21a8eb3c9db2a0282c5dd94bc221575c96" datatype="html"> | ||
2763 | <source>Emoji markup</source><target state="new">Emoji markup</target> | ||
2764 | <context-group purpose="location"> | ||
2765 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2766 | <context context-type="linenumber">30</context> | ||
2767 | </context-group> | ||
2768 | </trans-unit><trans-unit id="f37feb427aaa551edd1f22616be6464bc0d492de" datatype="html"> | ||
2769 | <source>See complete list</source><target state="new">See complete list</target> | ||
2770 | <context-group purpose="location"> | ||
2771 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2772 | <context context-type="linenumber">32</context> | ||
2773 | </context-group> | ||
2774 | </trans-unit> | ||
2707 | <trans-unit id="da44efc7b658c318651866454d258bbbe57ff21c" datatype="html"> | 2775 | <trans-unit id="da44efc7b658c318651866454d258bbbe57ff21c" datatype="html"> |
2708 | <source>Cancel</source> | 2776 | <source>Cancel</source> |
2709 | <target>Sefsex</target> | 2777 | <target>Sefsex</target> |
2710 | 2778 | ||
2711 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> | 2779 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit> |
2712 | <trans-unit id="8956c0f4c6974289fc63f1ab6b54f5b32ed65eeb" datatype="html"> | 2780 | |
2713 | <source>Reply</source> | ||
2714 | <target>Err</target> | ||
2715 | |||
2716 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | ||
2717 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135" datatype="html"> | 2781 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135" datatype="html"> |
2718 | <source>You are one step away from commenting</source> | 2782 | <source>You are one step away from commenting</source> |
2719 | <target state="new">You are one step away from commenting</target> | 2783 | <target state="new">You are one step away from commenting</target> |
2720 | 2784 | ||
2721 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 2785 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
2722 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> | 2786 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> |
2723 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> | 2787 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> |
2724 | <target state="new"> | 2788 | <target state="new"> |
@@ -2727,19 +2791,37 @@ The link will expire within 1 hour.</target> | |||
2727 | from within the software's interface. | 2791 | from within the software's interface. |
2728 | </target> | 2792 | </target> |
2729 | 2793 | ||
2730 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 2794 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
2731 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb" datatype="html"> | 2795 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb" datatype="html"> |
2732 | <source>If you have an account on Mastodon or Pleroma, you can open it directly in their interface:</source> | 2796 | <source>If you have an account on Mastodon or Pleroma, you can open it directly in their interface:</source> |
2733 | <target state="new"> | 2797 | <target state="new"> |
2734 | If you have an account on Mastodon or Pleroma, you can open it directly in their interface: | 2798 | If you have an account on Mastodon or Pleroma, you can open it directly in their interface: |
2735 | </target> | 2799 | </target> |
2736 | 2800 | ||
2737 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">41</context></context-group></trans-unit> | 2801 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">65</context></context-group></trans-unit> |
2738 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> | 2802 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> |
2739 | <source>Login to comment</source> | 2803 | <source>Login to comment</source> |
2740 | <target state="new">Login to comment</target> | 2804 | <target state="new">Login to comment</target> |
2741 | 2805 | ||
2742 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">52</context></context-group></trans-unit> | 2806 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit><trans-unit id="974170f455ff5a9034d5737e84b4194c0046fc6b" datatype="html"> |
2807 | <source>Markdown Emoji List</source><target state="new">Markdown Emoji List</target> | ||
2808 | <context-group purpose="location"> | ||
2809 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2810 | <context context-type="linenumber">84</context> | ||
2811 | </context-group> | ||
2812 | </trans-unit><trans-unit id="2662644497259948010" datatype="html"> | ||
2813 | <source>Comment</source><target state="new">Comment</target> | ||
2814 | <context-group purpose="location"> | ||
2815 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2816 | <context context-type="linenumber">58</context> | ||
2817 | </context-group> | ||
2818 | </trans-unit><trans-unit id="4502286564339177240" datatype="html"> | ||
2819 | <source>Reply</source><target state="new">Reply</target> | ||
2820 | <context-group purpose="location"> | ||
2821 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2822 | <context context-type="linenumber">60</context> | ||
2823 | </context-group> | ||
2824 | </trans-unit> | ||
2743 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285" datatype="html"> | 2825 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285" datatype="html"> |
2744 | <source>Highlighted comment</source> | 2826 | <source>Highlighted comment</source> |
2745 | <target state="new">Highlighted comment</target> | 2827 | <target state="new">Highlighted comment</target> |
@@ -2754,7 +2836,7 @@ The link will expire within 1 hour.</target> | |||
2754 | <source>This comment has been deleted</source> | 2836 | <source>This comment has been deleted</source> |
2755 | <target state="new">This comment has been deleted</target> | 2837 | <target state="new">This comment has been deleted</target> |
2756 | 2838 | ||
2757 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">62</context></context-group></trans-unit> | 2839 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">61</context></context-group></trans-unit> |
2758 | <trans-unit id="9031514421077169181" datatype="html"> | 2840 | <trans-unit id="9031514421077169181" datatype="html"> |
2759 | <source>Video redundancies</source> | 2841 | <source>Video redundancies</source> |
2760 | <target state="new">Video redundancies</target> | 2842 | <target state="new">Video redundancies</target> |
@@ -3676,7 +3758,25 @@ The link will expire within 1 hour.</target> | |||
3676 | <target state="new">No account found.</target> | 3758 | <target state="new">No account found.</target> |
3677 | 3759 | ||
3678 | 3760 | ||
3679 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit> | 3761 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit><trans-unit id="2338185419645468935" datatype="html"> |
3762 | <source>List installed plugins</source><target state="new">List installed plugins</target> | ||
3763 | <context-group purpose="location"> | ||
3764 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3765 | <context context-type="linenumber">28</context> | ||
3766 | </context-group> | ||
3767 | </trans-unit><trans-unit id="8897412584195581488" datatype="html"> | ||
3768 | <source>Search plugins</source><target state="new">Search plugins</target> | ||
3769 | <context-group purpose="location"> | ||
3770 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3771 | <context context-type="linenumber">37</context> | ||
3772 | </context-group> | ||
3773 | </trans-unit><trans-unit id="4994333937800672218" datatype="html"> | ||
3774 | <source>Show plugin</source><target state="new">Show plugin</target> | ||
3775 | <context-group purpose="location"> | ||
3776 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3777 | <context context-type="linenumber">46</context> | ||
3778 | </context-group> | ||
3779 | </trans-unit> | ||
3680 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> | 3780 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> |
3681 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> | 3781 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> |
3682 | <target state="new">Showing | 3782 | <target state="new">Showing |
@@ -4546,27 +4646,27 @@ The link will expire within 1 hour.</target> | |||
4546 | <source>VIDEO SETTINGS</source> | 4646 | <source>VIDEO SETTINGS</source> |
4547 | <target state="new">VIDEO SETTINGS</target> | 4647 | <target state="new">VIDEO SETTINGS</target> |
4548 | 4648 | ||
4549 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit> | 4649 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
4550 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> | 4650 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> |
4551 | <source>NOTIFICATIONS</source> | 4651 | <source>NOTIFICATIONS</source> |
4552 | <target state="new">NOTIFICATIONS</target> | 4652 | <target state="new">NOTIFICATIONS</target> |
4553 | 4653 | ||
4554 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 4654 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">37</context></context-group></trans-unit> |
4555 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> | 4655 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> |
4556 | <source>INTERFACE</source> | 4656 | <source>INTERFACE</source> |
4557 | <target state="new">INTERFACE</target> | 4657 | <target state="new">INTERFACE</target> |
4558 | 4658 | ||
4559 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 4659 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit> |
4560 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> | 4660 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> |
4561 | <source>PASSWORD</source> | 4661 | <source>PASSWORD</source> |
4562 | <target state="translated">AWAL UFFIR</target> | 4662 | <target state="translated">AWAL UFFIR</target> |
4563 | 4663 | ||
4564 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">59</context></context-group></trans-unit> | 4664 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">57</context></context-group></trans-unit> |
4565 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> | 4665 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> |
4566 | <source>EMAIL</source> | 4666 | <source>EMAIL</source> |
4567 | <target state="new">EMAIL</target> | 4667 | <target state="new">EMAIL</target> |
4568 | 4668 | ||
4569 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">69</context></context-group></trans-unit> | 4669 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">67</context></context-group></trans-unit> |
4570 | <trans-unit id="739516c2ca75843d5aec9cf0e6b3e4335c4227b9" datatype="html"> | 4670 | <trans-unit id="739516c2ca75843d5aec9cf0e6b3e4335c4227b9" datatype="html"> |
4571 | <source>Change password</source> | 4671 | <source>Change password</source> |
4572 | <target>Beddel awal uffir</target> | 4672 | <target>Beddel awal uffir</target> |
@@ -4709,7 +4809,31 @@ The link will expire within 1 hour.</target> | |||
4709 | <source>No ownership change request found.</source> | 4809 | <source>No ownership change request found.</source> |
4710 | <target state="new">No ownership change request found.</target> | 4810 | <target state="new">No ownership change request found.</target> |
4711 | 4811 | ||
4712 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit> | 4812 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit><trans-unit id="4247400351982331798" datatype="html"> |
4813 | <source>Account settings</source><target state="new">Account settings</target> | ||
4814 | <context-group purpose="location"> | ||
4815 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4816 | <context context-type="linenumber">37</context> | ||
4817 | </context-group> | ||
4818 | </trans-unit><trans-unit id="154062590416726309" datatype="html"> | ||
4819 | <source>Account playlists</source><target state="new">Account playlists</target> | ||
4820 | <context-group purpose="location"> | ||
4821 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4822 | <context context-type="linenumber">55</context> | ||
4823 | </context-group> | ||
4824 | </trans-unit><trans-unit id="6550287183367517925" datatype="html"> | ||
4825 | <source>Create new playlist</source><target state="new">Create new playlist</target> | ||
4826 | <context-group purpose="location"> | ||
4827 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4828 | <context context-type="linenumber">64</context> | ||
4829 | </context-group> | ||
4830 | </trans-unit><trans-unit id="2864486939135008600" datatype="html"> | ||
4831 | <source>Playlist elements</source><target state="new">Playlist elements</target> | ||
4832 | <context-group purpose="location"> | ||
4833 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4834 | <context context-type="linenumber">73</context> | ||
4835 | </context-group> | ||
4836 | </trans-unit> | ||
4713 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> | 4837 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> |
4714 | <source>My imports</source> | 4838 | <source>My imports</source> |
4715 | <target state="new">My imports</target> | 4839 | <target state="new">My imports</target> |
@@ -5009,7 +5133,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5009 | <source>An error occurred.</source> | 5133 | <source>An error occurred.</source> |
5010 | <target state="new">An error occurred.</target> | 5134 | <target state="new">An error occurred.</target> |
5011 | 5135 | ||
5012 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 5136 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit><trans-unit id="9128669621822125729" datatype="html"> |
5137 | <source>Video channel videos</source><target state="new">Video channel videos</target> | ||
5138 | <context-group purpose="location"> | ||
5139 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5140 | <context context-type="linenumber">25</context> | ||
5141 | </context-group> | ||
5142 | </trans-unit><trans-unit id="3193822049276963401" datatype="html"> | ||
5143 | <source>Video channel playlists</source><target state="new">Video channel playlists</target> | ||
5144 | <context-group purpose="location"> | ||
5145 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5146 | <context context-type="linenumber">38</context> | ||
5147 | </context-group> | ||
5148 | </trans-unit><trans-unit id="4723526509708949088" datatype="html"> | ||
5149 | <source>About video channel</source><target state="new">About video channel</target> | ||
5150 | <context-group purpose="location"> | ||
5151 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5152 | <context context-type="linenumber">47</context> | ||
5153 | </context-group> | ||
5154 | </trans-unit> | ||
5013 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97" datatype="html"> | 5155 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97" datatype="html"> |
5014 | <source>Request email for account verification</source> | 5156 | <source>Request email for account verification</source> |
5015 | <target state="new"> | 5157 | <target state="new"> |
@@ -5522,7 +5664,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5522 | <source>This instance does not have instances followings.</source> | 5664 | <source>This instance does not have instances followings.</source> |
5523 | <target state="new">This instance does not have instances followings.</target> | 5665 | <target state="new">This instance does not have instances followings.</target> |
5524 | 5666 | ||
5525 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit> | 5667 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit><trans-unit id="4195286790385468087" datatype="html"> |
5668 | <source>About this instance</source><target state="new">About this instance</target> | ||
5669 | <context-group purpose="location"> | ||
5670 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5671 | <context context-type="linenumber">26</context> | ||
5672 | </context-group> | ||
5673 | </trans-unit><trans-unit id="8773846522957677259" datatype="html"> | ||
5674 | <source>About PeerTube</source><target state="new">About PeerTube</target> | ||
5675 | <context-group purpose="location"> | ||
5676 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5677 | <context context-type="linenumber">38</context> | ||
5678 | </context-group> | ||
5679 | </trans-unit><trans-unit id="5782088737558028158" datatype="html"> | ||
5680 | <source>About follows</source><target state="new">About follows</target> | ||
5681 | <context-group purpose="location"> | ||
5682 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5683 | <context context-type="linenumber">47</context> | ||
5684 | </context-group> | ||
5685 | </trans-unit> | ||
5526 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> | 5686 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> |
5527 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> | 5687 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> |
5528 | <target state="new">Developed with ❤ by | 5688 | <target state="new">Developed with ❤ by |
@@ -5690,6 +5850,12 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5690 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 5850 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> |
5691 | <context context-type="linenumber">1</context> | 5851 | <context context-type="linenumber">1</context> |
5692 | </context-group> | 5852 | </context-group> |
5853 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
5854 | <source>Get help</source><target state="new">Get help</target> | ||
5855 | <context-group purpose="location"> | ||
5856 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | ||
5857 | <context context-type="linenumber">16</context> | ||
5858 | </context-group> | ||
5693 | </trans-unit> | 5859 | </trans-unit> |
5694 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1" datatype="html"> | 5860 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1" datatype="html"> |
5695 | <source>Create my account</source> | 5861 | <source>Create my account</source> |
@@ -5814,7 +5980,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5814 | 5980 | ||
5815 | </target> | 5981 | </target> |
5816 | 5982 | ||
5817 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 5983 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit><trans-unit id="3301086086650990787" datatype="html"> |
5984 | <source>Register</source><target state="new">Register</target> | ||
5985 | <context-group purpose="location"> | ||
5986 | <context context-type="sourcefile">../app/+signup/+register/register-routing.module.ts</context> | ||
5987 | <context context-type="linenumber">14</context> | ||
5988 | </context-group> | ||
5989 | </trans-unit> | ||
5818 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> | 5990 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> |
5819 | <source>Sorry, we couldn't find the page you were looking for.</source> | 5991 | <source>Sorry, we couldn't find the page you were looking for.</source> |
5820 | <target state="new"> | 5992 | <target state="new"> |
@@ -5837,7 +6009,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5837 | <target>Ulac aglam</target> | 6009 | <target>Ulac aglam</target> |
5838 | 6010 | ||
5839 | 6011 | ||
5840 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit> | 6012 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit><trans-unit id="819067926858619041" datatype="html"> |
6013 | <source>Account videos</source><target state="new">Account videos</target> | ||
6014 | <context-group purpose="location"> | ||
6015 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6016 | <context context-type="linenumber">29</context> | ||
6017 | </context-group> | ||
6018 | </trans-unit><trans-unit id="6823616469362610020" datatype="html"> | ||
6019 | <source>Account video channels</source><target state="new">Account video channels</target> | ||
6020 | <context-group purpose="location"> | ||
6021 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6022 | <context context-type="linenumber">42</context> | ||
6023 | </context-group> | ||
6024 | </trans-unit><trans-unit id="7678273613459026643" datatype="html"> | ||
6025 | <source>About account</source><target state="new">About account</target> | ||
6026 | <context-group purpose="location"> | ||
6027 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6028 | <context context-type="linenumber">51</context> | ||
6029 | </context-group> | ||
6030 | </trans-unit> | ||
5841 | <trans-unit id="3755500631176893489" datatype="html"> | 6031 | <trans-unit id="3755500631176893489" datatype="html"> |
5842 | <source>Published <x id="PH"/> videos</source> | 6032 | <source>Published <x id="PH"/> videos</source> |
5843 | <target state="new">Published | 6033 | <target state="new">Published |
@@ -5959,7 +6149,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5959 | <source>Configuration updated.</source> | 6149 | <source>Configuration updated.</source> |
5960 | <target state="new">Configuration updated.</target> | 6150 | <target state="new">Configuration updated.</target> |
5961 | 6151 | ||
5962 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit> | 6152 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit><trans-unit id="6284468333579755406" datatype="html"> |
6153 | <source>Edit custom configuration</source><target state="new">Edit custom configuration</target> | ||
6154 | <context-group purpose="location"> | ||
6155 | <context context-type="sourcefile">../app/+admin/config/config.routes.ts</context> | ||
6156 | <context context-type="linenumber">26</context> | ||
6157 | </context-group> | ||
6158 | </trans-unit> | ||
5963 | 6159 | ||
5964 | 6160 | ||
5965 | <trans-unit id="6549061957433635758" datatype="html"> | 6161 | <trans-unit id="6549061957433635758" datatype="html"> |
@@ -6335,7 +6531,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6335 | <source>Do you really want to delete this comment?</source> | 6531 | <source>Do you really want to delete this comment?</source> |
6336 | <target state="new">Do you really want to delete this comment?</target> | 6532 | <target state="new">Do you really want to delete this comment?</target> |
6337 | 6533 | ||
6338 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">434</context></context-group></trans-unit> | 6534 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">166</context></context-group></trans-unit> |
6339 | <trans-unit id="7837272126865175984" datatype="html"> | 6535 | <trans-unit id="7837272126865175984" datatype="html"> |
6340 | <source>Comment deleted.</source> | 6536 | <source>Comment deleted.</source> |
6341 | <target state="new">Comment deleted.</target> | 6537 | <target state="new">Comment deleted.</target> |
@@ -6528,7 +6724,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6528 | <x id="PH"/> updated. | 6724 | <x id="PH"/> updated. |
6529 | </target> | 6725 | </target> |
6530 | 6726 | ||
6531 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 6727 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit><trans-unit id="3229595422546554334" datatype="html"> |
6728 | <source>Jobs</source><target state="new">Jobs</target> | ||
6729 | <context-group purpose="location"> | ||
6730 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6731 | <context context-type="linenumber">26</context> | ||
6732 | </context-group> | ||
6733 | </trans-unit><trans-unit id="4804785061014590286" datatype="html"> | ||
6734 | <source>Logs</source><target state="new">Logs</target> | ||
6735 | <context-group purpose="location"> | ||
6736 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6737 | <context context-type="linenumber">37</context> | ||
6738 | </context-group> | ||
6739 | </trans-unit> | ||
6532 | <trans-unit id="3150704904301058778" datatype="html"> | 6740 | <trans-unit id="3150704904301058778" datatype="html"> |
6533 | <source>The plugin index is not available. Please retry later.</source> | 6741 | <source>The plugin index is not available. Please retry later.</source> |
6534 | <target state="new">The plugin index is not available. Please retry later.</target> | 6742 | <target state="new">The plugin index is not available. Please retry later.</target> |
@@ -6642,6 +6850,18 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6642 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> | 6850 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> |
6643 | <context context-type="linenumber">86</context> | 6851 | <context context-type="linenumber">86</context> |
6644 | </context-group> | 6852 | </context-group> |
6853 | </trans-unit><trans-unit id="2903648076838460070" datatype="html"> | ||
6854 | <source>Videos blocked</source><target state="new">Videos blocked</target> | ||
6855 | <context-group purpose="location"> | ||
6856 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6857 | <context context-type="linenumber">67</context> | ||
6858 | </context-group> | ||
6859 | </trans-unit><trans-unit id="7805059636749367886" datatype="html"> | ||
6860 | <source>Muted instances</source><target state="new">Muted instances</target> | ||
6861 | <context-group purpose="location"> | ||
6862 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6863 | <context context-type="linenumber">89</context> | ||
6864 | </context-group> | ||
6645 | </trans-unit> | 6865 | </trans-unit> |
6646 | <trans-unit id="5974506725502681113" datatype="html"> | 6866 | <trans-unit id="5974506725502681113" datatype="html"> |
6647 | <source>Password changed for user <x id="PH"/>.</source> | 6867 | <source>Password changed for user <x id="PH"/>.</source> |
@@ -6654,7 +6874,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6654 | <source>Update user password</source> | 6874 | <source>Update user password</source> |
6655 | <target state="new">Update user password</target> | 6875 | <target state="new">Update user password</target> |
6656 | 6876 | ||
6657 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit> | 6877 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit><trans-unit id="177544274549739411" datatype="html"> |
6878 | <source>Following list</source><target state="new">Following list</target> | ||
6879 | <context-group purpose="location"> | ||
6880 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6881 | <context context-type="linenumber">28</context> | ||
6882 | </context-group> | ||
6883 | </trans-unit><trans-unit id="8092429110007204784" datatype="html"> | ||
6884 | <source>Followers list</source><target state="new">Followers list</target> | ||
6885 | <context-group purpose="location"> | ||
6886 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6887 | <context context-type="linenumber">37</context> | ||
6888 | </context-group> | ||
6889 | </trans-unit> | ||
6658 | <trans-unit id="780323526182667308" datatype="html"> | 6890 | <trans-unit id="780323526182667308" datatype="html"> |
6659 | <source>User <x id="PH"/> updated.</source> | 6891 | <source>User <x id="PH"/> updated.</source> |
6660 | <target state="new">User | 6892 | <target state="new">User |
@@ -6673,7 +6905,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6673 | <x id="PH"/>. | 6905 | <x id="PH"/>. |
6674 | </target> | 6906 | </target> |
6675 | 6907 | ||
6676 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="8564701209009684429" datatype="html"> | 6908 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="7483807629538115183" datatype="html"> |
6909 | <source>Users list</source><target state="new">Users list</target> | ||
6910 | <context-group purpose="location"> | ||
6911 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6912 | <context context-type="linenumber">27</context> | ||
6913 | </context-group> | ||
6914 | </trans-unit><trans-unit id="1525334987774465166" datatype="html"> | ||
6915 | <source>Create a user</source><target state="new">Create a user</target> | ||
6916 | <context-group purpose="location"> | ||
6917 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6918 | <context context-type="linenumber">36</context> | ||
6919 | </context-group> | ||
6920 | </trans-unit><trans-unit id="5552039423287890133" datatype="html"> | ||
6921 | <source>Update a user</source><target state="new">Update a user</target> | ||
6922 | <context-group purpose="location"> | ||
6923 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6924 | <context context-type="linenumber">48</context> | ||
6925 | </context-group> | ||
6926 | </trans-unit><trans-unit id="8564701209009684429" datatype="html"> | ||
6677 | <source>Federation</source><target state="new">Federation</target> | 6927 | <source>Federation</source><target state="new">Federation</target> |
6678 | <context-group purpose="location"> | 6928 | <context-group purpose="location"> |
6679 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> | 6929 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> |
@@ -7027,7 +7277,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7027 | <source>Views for the day</source> | 7277 | <source>Views for the day</source> |
7028 | <target state="translated">Timeẓriyin deg ass</target> | 7278 | <target state="translated">Timeẓriyin deg ass</target> |
7029 | 7279 | ||
7030 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit> | 7280 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit><trans-unit id="4707367314920217630" datatype="html"> |
7281 | <source>Create new video channel</source><target state="new">Create new video channel</target> | ||
7282 | <context-group purpose="location"> | ||
7283 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7284 | <context context-type="linenumber">22</context> | ||
7285 | </context-group> | ||
7286 | </trans-unit><trans-unit id="6059091237492573541" datatype="html"> | ||
7287 | <source>Update video channel</source><target state="new">Update video channel</target> | ||
7288 | <context-group purpose="location"> | ||
7289 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7290 | <context context-type="linenumber">31</context> | ||
7291 | </context-group> | ||
7292 | </trans-unit><trans-unit id="6595008830732269870" datatype="html"> | ||
7293 | <source>Not found</source><target state="new">Not found</target> | ||
7294 | <context-group purpose="location"> | ||
7295 | <context context-type="sourcefile">../app/+page-not-found/page-not-found-routing.module.ts</context> | ||
7296 | <context context-type="linenumber">13</context> | ||
7297 | </context-group> | ||
7298 | </trans-unit> | ||
7031 | <trans-unit id="5032453707232754344" datatype="html"> | 7299 | <trans-unit id="5032453707232754344" datatype="html"> |
7032 | <source>Playlist <x id="PH"/> created.</source> | 7300 | <source>Playlist <x id="PH"/> created.</source> |
7033 | <target state="new">Playlist | 7301 | <target state="new">Playlist |
@@ -7045,7 +7313,31 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7045 | <source>Update playlist</source> | 7313 | <source>Update playlist</source> |
7046 | <target state="new">Update playlist</target> | 7314 | <target state="new">Update playlist</target> |
7047 | 7315 | ||
7048 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-video-playlists/my-account-video-playlist-elements.component.ts</context><context context-type="linenumber">48</context></context-group></trans-unit> | 7316 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">82</context></context-group></trans-unit><trans-unit id="3410331549417637431" datatype="html"> |
7317 | <source>Account video imports</source><target state="new">Account video imports</target> | ||
7318 | <context-group purpose="location"> | ||
7319 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7320 | <context context-type="linenumber">105</context> | ||
7321 | </context-group> | ||
7322 | </trans-unit><trans-unit id="4434998055872154420" datatype="html"> | ||
7323 | <source>Account subscriptions</source><target state="new">Account subscriptions</target> | ||
7324 | <context-group purpose="location"> | ||
7325 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7326 | <context context-type="linenumber">114</context> | ||
7327 | </context-group> | ||
7328 | </trans-unit><trans-unit id="6019411775996586321" datatype="html"> | ||
7329 | <source>Videos history</source><target state="new">Videos history</target> | ||
7330 | <context-group purpose="location"> | ||
7331 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7332 | <context context-type="linenumber">150</context> | ||
7333 | </context-group> | ||
7334 | </trans-unit><trans-unit id="5851560788527570644" datatype="html"> | ||
7335 | <source>Notifications</source><target state="new">Notifications</target> | ||
7336 | <context-group purpose="location"> | ||
7337 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7338 | <context context-type="linenumber">163</context> | ||
7339 | </context-group> | ||
7340 | </trans-unit> | ||
7049 | <trans-unit id="104404386496394770" datatype="html"> | 7341 | <trans-unit id="104404386496394770" datatype="html"> |
7050 | <source>Delete playlist</source> | 7342 | <source>Delete playlist</source> |
7051 | <target state="new">Delete playlist</target> | 7343 | <target state="new">Delete playlist</target> |
@@ -7234,7 +7526,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7234 | <x id="PH"/>. | 7526 | <x id="PH"/>. |
7235 | </target> | 7527 | </target> |
7236 | 7528 | ||
7237 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit> | 7529 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit><trans-unit id="8231550792139699065" datatype="html"> |
7530 | <source>Verify account email</source><target state="new">Verify account email</target> | ||
7531 | <context-group purpose="location"> | ||
7532 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7533 | <context context-type="linenumber">17</context> | ||
7534 | </context-group> | ||
7535 | </trans-unit><trans-unit id="4997281272800290390" datatype="html"> | ||
7536 | <source>Verify account ask send email</source><target state="new">Verify account ask send email</target> | ||
7537 | <context-group purpose="location"> | ||
7538 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7539 | <context context-type="linenumber">26</context> | ||
7540 | </context-group> | ||
7541 | </trans-unit> | ||
7238 | <trans-unit id="4180693983967989981" datatype="html"> | 7542 | <trans-unit id="4180693983967989981" datatype="html"> |
7239 | <source>Unable to find user id or verification string.</source> | 7543 | <source>Unable to find user id or verification string.</source> |
7240 | <target state="new">Unable to find user id or verification string.</target> | 7544 | <target state="new">Unable to find user id or verification string.</target> |
@@ -7359,27 +7663,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7359 | <source>hide</source> | 7663 | <source>hide</source> |
7360 | <target>ffer</target> | 7664 | <target>ffer</target> |
7361 | 7665 | ||
7362 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">118</context></context-group></trans-unit> | 7666 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> |
7363 | <trans-unit id="8603861867909474404" datatype="html"> | 7667 | <trans-unit id="8603861867909474404" datatype="html"> |
7364 | <source>blur</source> | 7668 | <source>blur</source> |
7365 | <target state="new">blur</target> | 7669 | <target state="new">blur</target> |
7366 | 7670 | ||
7367 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> | 7671 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> |
7368 | <trans-unit id="4534458451100881847" datatype="html"> | 7672 | <trans-unit id="4534458451100881847" datatype="html"> |
7369 | <source>display</source> | 7673 | <source>display</source> |
7370 | <target state="new">display</target> | 7674 | <target state="new">display</target> |
7371 | 7675 | ||
7372 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> | 7676 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">127</context></context-group></trans-unit> |
7373 | <trans-unit id="4467323362722952678" datatype="html"> | 7677 | <trans-unit id="4467323362722952678" datatype="html"> |
7374 | <source>Unknown</source> | 7678 | <source>Unknown</source> |
7375 | <target>D arussin</target> | 7679 | <target>D arussin</target> |
7376 | 7680 | ||
7377 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">190</context></context-group></trans-unit> | 7681 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">193</context></context-group></trans-unit> |
7378 | <trans-unit id="7939914198003891823" datatype="html"> | 7682 | <trans-unit id="7939914198003891823" datatype="html"> |
7379 | <source>any language</source> | 7683 | <source>any language</source> |
7380 | <target state="new">any language</target> | 7684 | <target state="new">any language</target> |
7381 | 7685 | ||
7382 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">202</context></context-group></trans-unit> | 7686 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">229</context></context-group></trans-unit> |
7383 | <trans-unit id="8781423666414310853" datatype="html"> | 7687 | <trans-unit id="8781423666414310853" datatype="html"> |
7384 | <source>Your password has been successfully reset!</source> | 7688 | <source>Your password has been successfully reset!</source> |
7385 | <target state="new">Your password has been successfully reset!</target> | 7689 | <target state="new">Your password has been successfully reset!</target> |
@@ -8503,27 +8807,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8503 | <source>Emphasis</source> | 8807 | <source>Emphasis</source> |
8504 | <target state="new">Emphasis</target> | 8808 | <target state="new">Emphasis</target> |
8505 | 8809 | ||
8506 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">77</context></context-group></trans-unit> | 8810 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> |
8507 | <trans-unit id="7565716024468232322" datatype="html"> | 8811 | <trans-unit id="7565716024468232322" datatype="html"> |
8508 | <source>Links</source> | 8812 | <source>Links</source> |
8509 | <target>Iseɣwan</target> | 8813 | <target>Iseɣwan</target> |
8510 | 8814 | ||
8511 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">78</context></context-group></trans-unit> | 8815 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> |
8512 | <trans-unit id="7838476952710404110" datatype="html"> | 8816 | <trans-unit id="7838476952710404110" datatype="html"> |
8513 | <source>New lines</source> | 8817 | <source>New lines</source> |
8514 | <target state="new">New lines</target> | 8818 | <target state="new">New lines</target> |
8515 | 8819 | ||
8516 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 8820 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">83</context></context-group></trans-unit> |
8517 | <trans-unit id="8756167649220050929" datatype="html"> | 8821 | <trans-unit id="8756167649220050929" datatype="html"> |
8518 | <source>Lists</source> | 8822 | <source>Lists</source> |
8519 | <target>Tibdarint</target> | 8823 | <target>Tibdarint</target> |
8520 | 8824 | ||
8521 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">80</context></context-group></trans-unit> | 8825 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">84</context></context-group></trans-unit> |
8522 | <trans-unit id="414887388288176527" datatype="html"> | 8826 | <trans-unit id="414887388288176527" datatype="html"> |
8523 | <source>Images</source> | 8827 | <source>Images</source> |
8524 | <target>Tugniwin</target> | 8828 | <target>Tugniwin</target> |
8525 | 8829 | ||
8526 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> | 8830 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">85</context></context-group></trans-unit> |
8527 | <trans-unit id="5708680277917691451" datatype="html"> | 8831 | <trans-unit id="5708680277917691451" datatype="html"> |
8528 | <source> | 8832 | <source> |
8529 | <x id="PH"/> users banned. | 8833 | <x id="PH"/> users banned. |
@@ -8889,12 +9193,12 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8889 | <source>Administrator</source> | 9193 | <source>Administrator</source> |
8890 | <target>Anedbal</target> | 9194 | <target>Anedbal</target> |
8891 | 9195 | ||
8892 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">385</context></context-group></trans-unit> | 9196 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">383</context></context-group></trans-unit> |
8893 | <trans-unit id="4968151111061046122" datatype="html"> | 9197 | <trans-unit id="4968151111061046122" datatype="html"> |
8894 | <source>Moderator</source> | 9198 | <source>Moderator</source> |
8895 | <target state="new">Moderator</target> | 9199 | <target state="new">Moderator</target> |
8896 | 9200 | ||
8897 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">386</context></context-group></trans-unit> | 9201 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">384</context></context-group></trans-unit> |
8898 | <trans-unit id="3723085768598852106" datatype="html"> | 9202 | <trans-unit id="3723085768598852106" datatype="html"> |
8899 | <source>Video removed from | 9203 | <source>Video removed from |
8900 | <x id="PH"/> | 9204 | <x id="PH"/> |
@@ -9048,9 +9352,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9048 | 9352 | ||
9049 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> | 9353 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> |
9050 | <source>Report</source><target state="new">Report</target> | 9354 | <source>Report</source><target state="new">Report</target> |
9355 | |||
9356 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="4814285799071780083" datatype="html"> | ||
9357 | <source>Remove</source><target state="new">Remove</target> | ||
9051 | <context-group purpose="location"> | 9358 | <context-group purpose="location"> |
9052 | <context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> | 9359 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> |
9053 | <context context-type="linenumber">286</context> | 9360 | <context context-type="linenumber">179</context> |
9361 | </context-group> | ||
9362 | </trans-unit><trans-unit id="6871668720687277843" datatype="html"> | ||
9363 | <source>Remove & re-draft</source><target state="new">Remove & re-draft</target> | ||
9364 | <context-group purpose="location"> | ||
9365 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> | ||
9366 | <context context-type="linenumber">187</context> | ||
9054 | </context-group> | 9367 | </context-group> |
9055 | </trans-unit> | 9368 | </trans-unit> |
9056 | <trans-unit id="4903651219400691248" datatype="html"> | 9369 | <trans-unit id="4903651219400691248" datatype="html"> |
@@ -9105,22 +9418,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9105 | <source>Only I can see this video</source> | 9418 | <source>Only I can see this video</source> |
9106 | <target state="new">Only I can see this video</target> | 9419 | <target state="new">Only I can see this video</target> |
9107 | 9420 | ||
9108 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">340</context></context-group></trans-unit> | 9421 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">341</context></context-group></trans-unit> |
9109 | <trans-unit id="6767380569816110388" datatype="html"> | 9422 | <trans-unit id="6767380569816110388" datatype="html"> |
9110 | <source>Only shareable via a private link</source> | 9423 | <source>Only shareable via a private link</source> |
9111 | <target state="new">Only shareable via a private link</target> | 9424 | <target state="new">Only shareable via a private link</target> |
9112 | 9425 | ||
9113 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">344</context></context-group></trans-unit> | 9426 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">345</context></context-group></trans-unit> |
9114 | <trans-unit id="6828965264297239528" datatype="html"> | 9427 | <trans-unit id="6828965264297239528" datatype="html"> |
9115 | <source>Anyone can see this video</source> | 9428 | <source>Anyone can see this video</source> |
9116 | <target state="new">Anyone can see this video</target> | 9429 | <target state="new">Anyone can see this video</target> |
9117 | 9430 | ||
9118 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">348</context></context-group></trans-unit> | 9431 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">349</context></context-group></trans-unit> |
9119 | <trans-unit id="1425933035739773115" datatype="html"> | 9432 | <trans-unit id="1425933035739773115" datatype="html"> |
9120 | <source>Only users of this instance can see this video</source> | 9433 | <source>Only users of this instance can see this video</source> |
9121 | <target state="new">Only users of this instance can see this video</target> | 9434 | <target state="new">Only users of this instance can see this video</target> |
9122 | 9435 | ||
9123 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">352</context></context-group></trans-unit> | 9436 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">353</context></context-group></trans-unit> |
9124 | <trans-unit id="5210096066382592800" datatype="html"> | 9437 | <trans-unit id="5210096066382592800" datatype="html"> |
9125 | <source>Video to import updated.</source> | 9438 | <source>Video to import updated.</source> |
9126 | <target state="new">Video to import updated.</target> | 9439 | <target state="new">Video to import updated.</target> |
@@ -9200,7 +9513,7 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9200 | <target state="new">Report comment</target> | 9513 | <target state="new">Report comment</target> |
9201 | 9514 | ||
9202 | 9515 | ||
9203 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 9516 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/report-modals/comment-report.component.ts</context><context context-type="linenumber">51</context></context-group></trans-unit> |
9204 | 9517 | ||
9205 | 9518 | ||
9206 | <trans-unit id="6775540171466219199" datatype="html"> | 9519 | <trans-unit id="6775540171466219199" datatype="html"> |
@@ -9379,6 +9692,36 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9379 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> | 9692 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> |
9380 | <context context-type="linenumber">36</context> | 9693 | <context context-type="linenumber">36</context> |
9381 | </context-group> | 9694 | </context-group> |
9695 | </trans-unit><trans-unit id="4668975178372693951" datatype="html"> | ||
9696 | <source>Discover videos</source><target state="new">Discover videos</target> | ||
9697 | <context-group purpose="location"> | ||
9698 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9699 | <context context-type="linenumber">23</context> | ||
9700 | </context-group> | ||
9701 | </trans-unit><trans-unit id="8067135025051844577" datatype="html"> | ||
9702 | <source>Trending videos</source><target state="new">Trending videos</target> | ||
9703 | <context-group purpose="location"> | ||
9704 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9705 | <context context-type="linenumber">32</context> | ||
9706 | </context-group> | ||
9707 | </trans-unit><trans-unit id="664221386829541948" datatype="html"> | ||
9708 | <source>Recently added videos</source><target state="new">Recently added videos</target> | ||
9709 | <context-group purpose="location"> | ||
9710 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9711 | <context context-type="linenumber">58</context> | ||
9712 | </context-group> | ||
9713 | </trans-unit><trans-unit id="8212906256415538361" datatype="html"> | ||
9714 | <source>Upload a video</source><target state="new">Upload a video</target> | ||
9715 | <context-group purpose="location"> | ||
9716 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9717 | <context context-type="linenumber">97</context> | ||
9718 | </context-group> | ||
9719 | </trans-unit><trans-unit id="7590784934397800835" datatype="html"> | ||
9720 | <source>Edit a video</source><target state="new">Edit a video</target> | ||
9721 | <context-group purpose="location"> | ||
9722 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9723 | <context context-type="linenumber">106</context> | ||
9724 | </context-group> | ||
9382 | </trans-unit> | 9725 | </trans-unit> |
9383 | </body> | 9726 | </body> |
9384 | </file> | 9727 | </file> |
diff --git a/client/src/locale/angular.ko-KR.xlf b/client/src/locale/angular.ko-KR.xlf index 53e77e85e..c6738ea14 100644 --- a/client/src/locale/angular.ko-KR.xlf +++ b/client/src/locale/angular.ko-KR.xlf | |||
@@ -310,7 +310,7 @@ | |||
310 | <target>옵션</target> | 310 | <target>옵션</target> |
311 | 311 | ||
312 | 312 | ||
313 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 313 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">48</context></context-group></trans-unit> |
314 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d"> | 314 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d"> |
315 | <source>Start at</source> | 315 | <source>Start at</source> |
316 | <target>시작 위치</target> | 316 | <target>시작 위치</target> |
@@ -442,7 +442,7 @@ | |||
442 | 취소 | 442 | 취소 |
443 | </target> | 443 | </target> |
444 | 444 | ||
445 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> | 445 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit> |
446 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd"> | 446 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd"> |
447 | <source>Download</source> | 447 | <source>Download</source> |
448 | <target>다운로드</target> | 448 | <target>다운로드</target> |
@@ -560,7 +560,7 @@ | |||
560 | 560 | ||
561 | 561 | ||
562 | 562 | ||
563 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 563 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
564 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc"> | 564 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc"> |
565 | <source>Edit starts/stops at</source> | 565 | <source>Edit starts/stops at</source> |
566 | <target>시작 / 종료 지점 수정</target> | 566 | <target>시작 / 종료 지점 수정</target> |
@@ -600,7 +600,7 @@ | |||
600 | 600 | ||
601 | 601 | ||
602 | 602 | ||
603 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> | 603 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
604 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> | 604 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> |
605 | <source>Edit</source> | 605 | <source>Edit</source> |
606 | <target>편집</target> | 606 | <target>편집</target> |
@@ -625,17 +625,10 @@ | |||
625 | <target>완전한 미리보기</target> | 625 | <target>완전한 미리보기</target> |
626 | 626 | ||
627 | <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></trans-unit> | 627 | <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></trans-unit> |
628 | <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f"> | 628 | <trans-unit id="8644431249513874405" datatype="html"> |
629 | <source>Get help</source> | ||
630 | <target>도움말</target> | ||
631 | |||
632 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit><trans-unit id="8644431249513874405" datatype="html"> | ||
633 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> | 629 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> |
634 | <context-group purpose="location"> | 630 | |
635 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 631 | <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></trans-unit> |
636 | <context context-type="linenumber">71</context> | ||
637 | </context-group> | ||
638 | </trans-unit> | ||
639 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> | 632 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> |
640 | <source>Recommended</source> | 633 | <source>Recommended</source> |
641 | <target state="new">Recommended</target> | 634 | <target state="new">Recommended</target> |
@@ -675,7 +668,7 @@ | |||
675 | <source>PROFILE SETTINGS</source> | 668 | <source>PROFILE SETTINGS</source> |
676 | <target state="new">PROFILE SETTINGS</target> | 669 | <target state="new">PROFILE SETTINGS</target> |
677 | 670 | ||
678 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 671 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">12</context></context-group></trans-unit> |
679 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3" datatype="html"> | 672 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3" datatype="html"> |
680 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> | 673 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> |
681 | <target state="new"> | 674 | <target state="new"> |
@@ -847,11 +840,8 @@ | |||
847 | 840 | ||
848 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> | 841 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> |
849 | <source>User</source><target state="new">User</target> | 842 | <source>User</source><target state="new">User</target> |
850 | <context-group purpose="location"> | 843 | |
851 | <context context-type="sourcefile">../app/core/users/user.service.ts</context> | 844 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit> |
852 | <context context-type="linenumber">384</context> | ||
853 | </context-group> | ||
854 | </trans-unit> | ||
855 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0"> | 845 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0"> |
856 | <source>Ban</source> | 846 | <source>Ban</source> |
857 | <target>강퇴</target> | 847 | <target>강퇴</target> |
@@ -1341,89 +1331,89 @@ The link will expire within 1 hour.</target> | |||
1341 | <source>Account settings</source> | 1331 | <source>Account settings</source> |
1342 | <target state="new">Account settings</target> | 1332 | <target state="new">Account settings</target> |
1343 | 1333 | ||
1344 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 1334 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
1345 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> | 1335 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> |
1346 | <source>Channels settings</source> | 1336 | <source>Channels settings</source> |
1347 | <target state="new">Channels settings</target> | 1337 | <target state="new">Channels settings</target> |
1348 | 1338 | ||
1349 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 1339 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> |
1350 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> | 1340 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> |
1351 | <source>Interface:</source> | 1341 | <source>Interface:</source> |
1352 | <target state="new">Interface:</target> | 1342 | <target state="new">Interface:</target> |
1353 | 1343 | ||
1354 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 1344 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1355 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> | 1345 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> |
1356 | <source>Videos:</source> | 1346 | <source>Videos:</source> |
1357 | <target state="new">Videos:</target> | 1347 | <target state="new">Videos:</target> |
1358 | 1348 | ||
1359 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 1349 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> |
1360 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> | 1350 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> |
1361 | <source>Sensitive:</source> | 1351 | <source>Sensitive:</source> |
1362 | <target state="new">Sensitive:</target> | 1352 | <target state="new">Sensitive:</target> |
1363 | 1353 | ||
1364 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 1354 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">54</context></context-group></trans-unit> |
1365 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1355 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> |
1366 | <source>Interface: <x id="INTERPOLATION"/></source> | 1356 | <source>Interface: <x id="INTERPOLATION"/></source> |
1367 | <target state="new">Interface: | 1357 | <target state="new">Interface: |
1368 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> | 1358 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> |
1369 | </target> | 1359 | </target> |
1370 | 1360 | ||
1371 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">156</context></context-group></trans-unit> | 1361 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> |
1372 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1362 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1373 | <source>Help share videos</source> | 1363 | <source>Help share videos</source> |
1374 | <target state="new">Help share videos</target> | 1364 | <target state="new">Help share videos</target> |
1375 | 1365 | ||
1376 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> | 1366 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
1377 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> | 1367 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> |
1378 | <source>More account settings</source> | 1368 | <source>More account settings</source> |
1379 | <target state="new">More account settings</target> | 1369 | <target state="new">More account settings</target> |
1380 | 1370 | ||
1381 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> | 1371 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> |
1382 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> | 1372 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> |
1383 | <source>Keyboard shortcuts</source> | 1373 | <source>Keyboard shortcuts</source> |
1384 | <target state="new">Keyboard shortcuts</target> | 1374 | <target state="new">Keyboard shortcuts</target> |
1385 | 1375 | ||
1386 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 1376 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">72</context></context-group></trans-unit> |
1387 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> | 1377 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> |
1388 | <source>Help</source> | 1378 | <source>Help</source> |
1389 | <target state="new">Help</target> | 1379 | <target state="new">Help</target> |
1390 | 1380 | ||
1391 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1381 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1392 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> | 1382 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> |
1393 | <source>Get help using PeerTube</source> | 1383 | <source>Get help using PeerTube</source> |
1394 | <target state="new">Get help using PeerTube</target> | 1384 | <target state="new">Get help using PeerTube</target> |
1395 | 1385 | ||
1396 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">161</context></context-group></trans-unit> | 1386 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">167</context></context-group></trans-unit> |
1397 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> | 1387 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> |
1398 | <source>Shortcuts</source> | 1388 | <source>Shortcuts</source> |
1399 | <target state="new">Shortcuts</target> | 1389 | <target state="new">Shortcuts</target> |
1400 | 1390 | ||
1401 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1391 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1402 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> | 1392 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> |
1403 | <source>powered by PeerTube</source> | 1393 | <source>powered by PeerTube</source> |
1404 | <target state="new">powered by PeerTube</target> | 1394 | <target state="new">powered by PeerTube</target> |
1405 | 1395 | ||
1406 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | 1396 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">177</context></context-group></trans-unit> |
1407 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> | 1397 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> |
1408 | <source>powered by PeerTube - CopyLeft 2015-2020</source> | 1398 | <source>powered by PeerTube - CopyLeft 2015-2020</source> |
1409 | <target state="new">powered by PeerTube - CopyLeft 2015-2020</target> | 1399 | <target state="new">powered by PeerTube - CopyLeft 2015-2020</target> |
1410 | 1400 | ||
1411 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> | 1401 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">176</context></context-group></trans-unit> |
1412 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344"> | 1402 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344"> |
1413 | <source>Log out</source> | 1403 | <source>Log out</source> |
1414 | <target>로그아웃</target> | 1404 | <target>로그아웃</target> |
1415 | 1405 | ||
1416 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">70</context></context-group></trans-unit> | 1406 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit> |
1417 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> | 1407 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> |
1418 | <source>Create an account</source> | 1408 | <source>Create an account</source> |
1419 | <target>계정 만들기</target> | 1409 | <target>계정 만들기</target> |
1420 | 1410 | ||
1421 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">78</context></context-group></trans-unit> | 1411 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
1422 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> | 1412 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> |
1423 | <source>MY LIBRARY</source> | 1413 | <source>MY LIBRARY</source> |
1424 | <target state="new">MY LIBRARY</target> | 1414 | <target state="new">MY LIBRARY</target> |
1425 | 1415 | ||
1426 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 1416 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">88</context></context-group></trans-unit> |
1427 | <trans-unit id="6371572688505952303"> | 1417 | <trans-unit id="6371572688505952303"> |
1428 | <source>My library</source> | 1418 | <source>My library</source> |
1429 | <target>내 라이브러리</target> | 1419 | <target>내 라이브러리</target> |
@@ -1463,22 +1453,22 @@ The link will expire within 1 hour.</target> | |||
1463 | <source>Videos</source> | 1453 | <source>Videos</source> |
1464 | <target>영상</target> | 1454 | <target>영상</target> |
1465 | 1455 | ||
1466 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">86</context></context-group></trans-unit> | 1456 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">92</context></context-group></trans-unit> |
1467 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> | 1457 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> |
1468 | <source>Playlists</source> | 1458 | <source>Playlists</source> |
1469 | <target>재생목록</target> | 1459 | <target>재생목록</target> |
1470 | 1460 | ||
1471 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">91</context></context-group></trans-unit> | 1461 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">97</context></context-group></trans-unit> |
1472 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2"> | 1462 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2"> |
1473 | <source>Subscriptions</source> | 1463 | <source>Subscriptions</source> |
1474 | <target>구독목록</target> | 1464 | <target>구독목록</target> |
1475 | 1465 | ||
1476 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 1466 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">102</context></context-group></trans-unit> |
1477 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8"> | 1467 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8"> |
1478 | <source>History</source> | 1468 | <source>History</source> |
1479 | <target>기록</target> | 1469 | <target>기록</target> |
1480 | 1470 | ||
1481 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit> | 1471 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">107</context></context-group></trans-unit> |
1482 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> | 1472 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> |
1483 | <source>VIDEOS</source> | 1473 | <source>VIDEOS</source> |
1484 | <target state="new">VIDEOS</target> | 1474 | <target state="new">VIDEOS</target> |
@@ -1490,27 +1480,27 @@ The link will expire within 1 hour.</target> | |||
1490 | <target>발견</target> | 1480 | <target>발견</target> |
1491 | 1481 | ||
1492 | 1482 | ||
1493 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">111</context></context-group></trans-unit> | 1483 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">117</context></context-group></trans-unit> |
1494 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> | 1484 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> |
1495 | <source>Trending</source> | 1485 | <source>Trending</source> |
1496 | <target>인기</target> | 1486 | <target>인기</target> |
1497 | 1487 | ||
1498 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">116</context></context-group></trans-unit> | 1488 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">122</context></context-group></trans-unit> |
1499 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> | 1489 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> |
1500 | <source>Most liked</source> | 1490 | <source>Most liked</source> |
1501 | <target state="new">Most liked</target> | 1491 | <target state="new">Most liked</target> |
1502 | 1492 | ||
1503 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">121</context></context-group></trans-unit> | 1493 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">127</context></context-group></trans-unit> |
1504 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> | 1494 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> |
1505 | <source>Recently added</source> | 1495 | <source>Recently added</source> |
1506 | <target>최근 추가됨</target> | 1496 | <target>최근 추가됨</target> |
1507 | 1497 | ||
1508 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">126</context></context-group></trans-unit> | 1498 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">132</context></context-group></trans-unit> |
1509 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> | 1499 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> |
1510 | <source>Administration</source> | 1500 | <source>Administration</source> |
1511 | <target>관리</target> | 1501 | <target>관리</target> |
1512 | 1502 | ||
1513 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">140</context></context-group></trans-unit> | 1503 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">146</context></context-group></trans-unit> |
1514 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> | 1504 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> |
1515 | <source>About</source> | 1505 | <source>About</source> |
1516 | <target>정보</target> | 1506 | <target>정보</target> |
@@ -1521,7 +1511,7 @@ The link will expire within 1 hour.</target> | |||
1521 | <source>Contact</source> | 1511 | <source>Contact</source> |
1522 | <target state="new">Contact</target> | 1512 | <target state="new">Contact</target> |
1523 | 1513 | ||
1524 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">160</context></context-group></trans-unit> | 1514 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">166</context></context-group></trans-unit> |
1525 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771"> | 1515 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771"> |
1526 | <source>View your notifications</source> | 1516 | <source>View your notifications</source> |
1527 | <target>알림 보기</target> | 1517 | <target>알림 보기</target> |
@@ -1548,7 +1538,7 @@ The link will expire within 1 hour.</target> | |||
1548 | <source>See all your notifications</source> | 1538 | <source>See all your notifications</source> |
1549 | <target>모든 알림 보기</target> | 1539 | <target>모든 알림 보기</target> |
1550 | 1540 | ||
1551 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 1541 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">40</context></context-group></trans-unit> |
1552 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> | 1542 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> |
1553 | <source>Search videos, channels…</source> | 1543 | <source>Search videos, channels…</source> |
1554 | <target state="new">Search videos, channels…</target> | 1544 | <target state="new">Search videos, channels…</target> |
@@ -1882,22 +1872,22 @@ The link will expire within 1 hour.</target> | |||
1882 | <source>FAQ</source> | 1872 | <source>FAQ</source> |
1883 | <target state="new">FAQ</target> | 1873 | <target state="new">FAQ</target> |
1884 | 1874 | ||
1885 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">163</context></context-group></trans-unit> | 1875 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
1886 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> | 1876 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> |
1887 | <source>Frequently asked questions about PeerTube</source> | 1877 | <source>Frequently asked questions about PeerTube</source> |
1888 | <target state="new">Frequently asked questions about PeerTube</target> | 1878 | <target state="new">Frequently asked questions about PeerTube</target> |
1889 | 1879 | ||
1890 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1880 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1891 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> | 1881 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> |
1892 | <source>API</source> | 1882 | <source>API</source> |
1893 | <target state="new">API</target> | 1883 | <target state="new">API</target> |
1894 | 1884 | ||
1895 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1885 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1896 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> | 1886 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> |
1897 | <source>API documentation</source> | 1887 | <source>API documentation</source> |
1898 | <target state="new">API documentation</target> | 1888 | <target state="new">API documentation</target> |
1899 | 1889 | ||
1900 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 1890 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
1901 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5" datatype="html"> | 1891 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5" datatype="html"> |
1902 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> | 1892 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> |
1903 | <target state="new">Schedule publication ( | 1893 | <target state="new">Schedule publication ( |
@@ -2284,7 +2274,13 @@ The link will expire within 1 hour.</target> | |||
2284 | Less customization | 2274 | Less customization |
2285 | </target> | 2275 | </target> |
2286 | 2276 | ||
2287 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit> | 2277 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit><trans-unit id="2454050363478003966" datatype="html"> |
2278 | <source>Login</source><target state="new">Login</target> | ||
2279 | <context-group purpose="location"> | ||
2280 | <context context-type="sourcefile">../app/+login/login-routing.module.ts</context> | ||
2281 | <context context-type="linenumber">14</context> | ||
2282 | </context-group> | ||
2283 | </trans-unit> | ||
2288 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e" datatype="html"> | 2284 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e" datatype="html"> |
2289 | <source>Autoplay</source> | 2285 | <source>Autoplay</source> |
2290 | <target state="new">Autoplay</target> | 2286 | <target state="new">Autoplay</target> |
@@ -2549,7 +2545,7 @@ The link will expire within 1 hour.</target> | |||
2549 | <source>No comments.</source> | 2545 | <source>No comments.</source> |
2550 | <target state="new">No comments.</target> | 2546 | <target state="new">No comments.</target> |
2551 | 2547 | ||
2552 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 2548 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> |
2553 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> | 2549 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> |
2554 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> | 2550 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> |
2555 | <target state="new"> | 2551 | <target state="new"> |
@@ -2559,7 +2555,7 @@ The link will expire within 1 hour.</target> | |||
2559 | 2555 | ||
2560 | </target> | 2556 | </target> |
2561 | 2557 | ||
2562 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">79</context></context-group></trans-unit> | 2558 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
2563 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> | 2559 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> |
2564 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> | 2560 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> |
2565 | <target state="new"> | 2561 | <target state="new"> |
@@ -2568,50 +2564,116 @@ The link will expire within 1 hour.</target> | |||
2568 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> | 2564 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> |
2569 | </target> | 2565 | </target> |
2570 | 2566 | ||
2571 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 2567 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">87</context></context-group></trans-unit> |
2572 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> | 2568 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> |
2573 | <source>View <x id="INTERPOLATION"/> replies</source> | 2569 | <source>View <x id="INTERPOLATION"/> replies</source> |
2574 | <target state="new">View | 2570 | <target state="new">View |
2575 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies | 2571 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies |
2576 | </target> | 2572 | </target> |
2577 | 2573 | ||
2578 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">85</context></context-group></trans-unit> | 2574 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">90</context></context-group></trans-unit> |
2579 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828" datatype="html"> | 2575 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828" datatype="html"> |
2580 | <source>Comments are disabled.</source> | 2576 | <source>Comments are disabled.</source> |
2581 | <target state="new"> | 2577 | <target state="new"> |
2582 | Comments are disabled. | 2578 | Comments are disabled. |
2583 | </target> | 2579 | </target> |
2584 | 2580 | ||
2585 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit><trans-unit id="3691787517663044217" datatype="html"> | 2581 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit><trans-unit id="3691787517663044217" datatype="html"> |
2586 | <source> The deletion will be sent to remote instances so they can reflect the change.</source><target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> | 2582 | <source> The deletion will be sent to remote instances so they can reflect the change.</source><target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> |
2583 | |||
2584 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">169</context></context-group></trans-unit><trans-unit id="7321800851971795962" datatype="html"> | ||
2585 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source><target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> | ||
2586 | |||
2587 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="5964038603724691720" datatype="html"> | ||
2588 | <source>Delete and re-draft</source><target state="new">Delete and re-draft</target> | ||
2587 | <context-group purpose="location"> | 2589 | <context-group purpose="location"> |
2588 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | 2590 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> |
2589 | <context context-type="linenumber">163</context> | 2591 | <context context-type="linenumber">197</context> |
2590 | </context-group> | 2592 | </context-group> |
2591 | </trans-unit><trans-unit id="7321800851971795962" datatype="html"> | 2593 | </trans-unit><trans-unit id="7163633882758007711" datatype="html"> |
2592 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source><target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> | 2594 | <source>Do you really want to delete and re-draft this comment?</source><target state="new">Do you really want to delete and re-draft this comment?</target> |
2593 | <context-group purpose="location"> | 2595 | <context-group purpose="location"> |
2594 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | 2596 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> |
2595 | <context context-type="linenumber">165</context> | 2597 | <context context-type="linenumber">197</context> |
2596 | </context-group> | 2598 | </context-group> |
2597 | </trans-unit> | 2599 | </trans-unit> |
2598 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e" datatype="html"> | 2600 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e" datatype="html"> |
2599 | <source>Add comment...</source> | 2601 | <source>Add comment...</source> |
2600 | <target state="new">Add comment...</target> | 2602 | <target state="new">Add comment...</target> |
2601 | 2603 | ||
2602 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | 2604 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit><trans-unit id="4e5254dedf0c12ce7e7c2197384fceebe3b29a2b" datatype="html"> |
2603 | <trans-unit id="8956c0f4c6974289fc63f1ab6b54f5b32ed65eeb" datatype="html"> | 2605 | <source>Markdown compatible</source><target state="new">Markdown compatible</target> |
2604 | <source>Reply</source> | 2606 | <context-group purpose="location"> |
2605 | <target state="new"> | 2607 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> |
2606 | Reply | 2608 | <context context-type="linenumber">13</context> |
2607 | </target> | 2609 | </context-group> |
2608 | 2610 | </trans-unit><trans-unit id="4739ffad85f09defefdb6e51b45f43b2ef7c4388" datatype="html"> | |
2609 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 2611 | <source>Markdown compatible that supports:</source><target state="new">Markdown compatible that supports:</target> |
2612 | <context-group purpose="location"> | ||
2613 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2614 | <context context-type="linenumber">15</context> | ||
2615 | </context-group> | ||
2616 | </trans-unit><trans-unit id="9a53b17a021bb0677c156fd893461797fc497a10" datatype="html"> | ||
2617 | <source>Auto generated links</source><target state="new">Auto generated links</target> | ||
2618 | <context-group purpose="location"> | ||
2619 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2620 | <context context-type="linenumber">18</context> | ||
2621 | </context-group> | ||
2622 | </trans-unit><trans-unit id="664f99b8919d6dd2faa1c1f7c378aa86d1be5e8a" datatype="html"> | ||
2623 | <source>Break lines</source><target state="new">Break lines</target> | ||
2624 | <context-group purpose="location"> | ||
2625 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2626 | <context context-type="linenumber">19</context> | ||
2627 | </context-group> | ||
2628 | </trans-unit><trans-unit id="b15e7bec5c7833d2d9634946ccbed68967b1bee1" datatype="html"> | ||
2629 | <source>Lists</source><target state="new">Lists</target> | ||
2630 | <context-group purpose="location"> | ||
2631 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2632 | <context context-type="linenumber">20</context> | ||
2633 | </context-group> | ||
2634 | </trans-unit><trans-unit id="ab4426b60f13c00b61d6b714d390dc629f314980" datatype="html"> | ||
2635 | <source>Emphasis</source><target state="new">Emphasis</target> | ||
2636 | <context-group purpose="location"> | ||
2637 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2638 | <context context-type="linenumber">22</context> | ||
2639 | </context-group> | ||
2640 | </trans-unit><trans-unit id="4e13b179501d3d32721037e03b4c04acb9857c5f" datatype="html"> | ||
2641 | <source>bold</source><target state="new">bold</target> | ||
2642 | <context-group purpose="location"> | ||
2643 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2644 | <context context-type="linenumber">23</context> | ||
2645 | </context-group> | ||
2646 | </trans-unit><trans-unit id="3c12190421fbb2756e6bbead923df9ec5de8ede2" datatype="html"> | ||
2647 | <source>italic</source><target state="new">italic</target> | ||
2648 | <context-group purpose="location"> | ||
2649 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2650 | <context context-type="linenumber">23</context> | ||
2651 | </context-group> | ||
2652 | </trans-unit><trans-unit id="adb4bbdcb961b8aac8298d6cac554d9b25636b7a" datatype="html"> | ||
2653 | <source>Emoji shortcuts</source><target state="new">Emoji shortcuts</target> | ||
2654 | <context-group purpose="location"> | ||
2655 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2656 | <context context-type="linenumber">26</context> | ||
2657 | </context-group> | ||
2658 | </trans-unit><trans-unit id="b9809a21a8eb3c9db2a0282c5dd94bc221575c96" datatype="html"> | ||
2659 | <source>Emoji markup</source><target state="new">Emoji markup</target> | ||
2660 | <context-group purpose="location"> | ||
2661 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2662 | <context context-type="linenumber">30</context> | ||
2663 | </context-group> | ||
2664 | </trans-unit><trans-unit id="f37feb427aaa551edd1f22616be6464bc0d492de" datatype="html"> | ||
2665 | <source>See complete list</source><target state="new">See complete list</target> | ||
2666 | <context-group purpose="location"> | ||
2667 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2668 | <context context-type="linenumber">32</context> | ||
2669 | </context-group> | ||
2670 | </trans-unit> | ||
2671 | |||
2610 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135" datatype="html"> | 2672 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135" datatype="html"> |
2611 | <source>You are one step away from commenting</source> | 2673 | <source>You are one step away from commenting</source> |
2612 | <target state="new">You are one step away from commenting</target> | 2674 | <target state="new">You are one step away from commenting</target> |
2613 | 2675 | ||
2614 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 2676 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
2615 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> | 2677 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> |
2616 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> | 2678 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> |
2617 | <target state="new"> | 2679 | <target state="new"> |
@@ -2620,19 +2682,37 @@ The link will expire within 1 hour.</target> | |||
2620 | from within the software's interface. | 2682 | from within the software's interface. |
2621 | </target> | 2683 | </target> |
2622 | 2684 | ||
2623 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 2685 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
2624 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb" datatype="html"> | 2686 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb" datatype="html"> |
2625 | <source>If you have an account on Mastodon or Pleroma, you can open it directly in their interface:</source> | 2687 | <source>If you have an account on Mastodon or Pleroma, you can open it directly in their interface:</source> |
2626 | <target state="new"> | 2688 | <target state="new"> |
2627 | If you have an account on Mastodon or Pleroma, you can open it directly in their interface: | 2689 | If you have an account on Mastodon or Pleroma, you can open it directly in their interface: |
2628 | </target> | 2690 | </target> |
2629 | 2691 | ||
2630 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">41</context></context-group></trans-unit> | 2692 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">65</context></context-group></trans-unit> |
2631 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> | 2693 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> |
2632 | <source>Login to comment</source> | 2694 | <source>Login to comment</source> |
2633 | <target state="new">Login to comment</target> | 2695 | <target state="new">Login to comment</target> |
2634 | 2696 | ||
2635 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">52</context></context-group></trans-unit> | 2697 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit><trans-unit id="974170f455ff5a9034d5737e84b4194c0046fc6b" datatype="html"> |
2698 | <source>Markdown Emoji List</source><target state="new">Markdown Emoji List</target> | ||
2699 | <context-group purpose="location"> | ||
2700 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2701 | <context context-type="linenumber">84</context> | ||
2702 | </context-group> | ||
2703 | </trans-unit><trans-unit id="2662644497259948010" datatype="html"> | ||
2704 | <source>Comment</source><target state="new">Comment</target> | ||
2705 | <context-group purpose="location"> | ||
2706 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2707 | <context context-type="linenumber">58</context> | ||
2708 | </context-group> | ||
2709 | </trans-unit><trans-unit id="4502286564339177240" datatype="html"> | ||
2710 | <source>Reply</source><target state="new">Reply</target> | ||
2711 | <context-group purpose="location"> | ||
2712 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2713 | <context context-type="linenumber">60</context> | ||
2714 | </context-group> | ||
2715 | </trans-unit> | ||
2636 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285" datatype="html"> | 2716 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285" datatype="html"> |
2637 | <source>Highlighted comment</source> | 2717 | <source>Highlighted comment</source> |
2638 | <target state="new">Highlighted comment</target> | 2718 | <target state="new">Highlighted comment</target> |
@@ -2647,7 +2727,7 @@ The link will expire within 1 hour.</target> | |||
2647 | <source>This comment has been deleted</source> | 2727 | <source>This comment has been deleted</source> |
2648 | <target state="new">This comment has been deleted</target> | 2728 | <target state="new">This comment has been deleted</target> |
2649 | 2729 | ||
2650 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">62</context></context-group></trans-unit> | 2730 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">61</context></context-group></trans-unit> |
2651 | <trans-unit id="9031514421077169181" datatype="html"> | 2731 | <trans-unit id="9031514421077169181" datatype="html"> |
2652 | <source>Video redundancies</source> | 2732 | <source>Video redundancies</source> |
2653 | <target state="new">Video redundancies</target> | 2733 | <target state="new">Video redundancies</target> |
@@ -3496,7 +3576,25 @@ The link will expire within 1 hour.</target> | |||
3496 | <target state="new">No account found.</target> | 3576 | <target state="new">No account found.</target> |
3497 | 3577 | ||
3498 | 3578 | ||
3499 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit> | 3579 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit><trans-unit id="2338185419645468935" datatype="html"> |
3580 | <source>List installed plugins</source><target state="new">List installed plugins</target> | ||
3581 | <context-group purpose="location"> | ||
3582 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3583 | <context context-type="linenumber">28</context> | ||
3584 | </context-group> | ||
3585 | </trans-unit><trans-unit id="8897412584195581488" datatype="html"> | ||
3586 | <source>Search plugins</source><target state="new">Search plugins</target> | ||
3587 | <context-group purpose="location"> | ||
3588 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3589 | <context context-type="linenumber">37</context> | ||
3590 | </context-group> | ||
3591 | </trans-unit><trans-unit id="4994333937800672218" datatype="html"> | ||
3592 | <source>Show plugin</source><target state="new">Show plugin</target> | ||
3593 | <context-group purpose="location"> | ||
3594 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3595 | <context context-type="linenumber">46</context> | ||
3596 | </context-group> | ||
3597 | </trans-unit> | ||
3500 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> | 3598 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> |
3501 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> | 3599 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> |
3502 | <target state="new">Showing | 3600 | <target state="new">Showing |
@@ -4221,7 +4319,7 @@ The link will expire within 1 hour.</target> | |||
4221 | <source>Administrator</source> | 4319 | <source>Administrator</source> |
4222 | <target state="new">Administrator</target> | 4320 | <target state="new">Administrator</target> |
4223 | 4321 | ||
4224 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">385</context></context-group></trans-unit> | 4322 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">383</context></context-group></trans-unit> |
4225 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587" datatype="html"> | 4323 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587" datatype="html"> |
4226 | <source>Admin email</source> | 4324 | <source>Admin email</source> |
4227 | <target state="new">Admin email</target> | 4325 | <target state="new">Admin email</target> |
@@ -4477,27 +4575,27 @@ The link will expire within 1 hour.</target> | |||
4477 | <source>VIDEO SETTINGS</source> | 4575 | <source>VIDEO SETTINGS</source> |
4478 | <target state="new">VIDEO SETTINGS</target> | 4576 | <target state="new">VIDEO SETTINGS</target> |
4479 | 4577 | ||
4480 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit> | 4578 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
4481 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> | 4579 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> |
4482 | <source>NOTIFICATIONS</source> | 4580 | <source>NOTIFICATIONS</source> |
4483 | <target state="new">NOTIFICATIONS</target> | 4581 | <target state="new">NOTIFICATIONS</target> |
4484 | 4582 | ||
4485 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 4583 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">37</context></context-group></trans-unit> |
4486 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> | 4584 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> |
4487 | <source>INTERFACE</source> | 4585 | <source>INTERFACE</source> |
4488 | <target state="new">INTERFACE</target> | 4586 | <target state="new">INTERFACE</target> |
4489 | 4587 | ||
4490 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 4588 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit> |
4491 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> | 4589 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> |
4492 | <source>PASSWORD</source> | 4590 | <source>PASSWORD</source> |
4493 | <target state="new">PASSWORD</target> | 4591 | <target state="new">PASSWORD</target> |
4494 | 4592 | ||
4495 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">59</context></context-group></trans-unit> | 4593 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">57</context></context-group></trans-unit> |
4496 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> | 4594 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> |
4497 | <source>EMAIL</source> | 4595 | <source>EMAIL</source> |
4498 | <target state="new">EMAIL</target> | 4596 | <target state="new">EMAIL</target> |
4499 | 4597 | ||
4500 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">69</context></context-group></trans-unit> | 4598 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">67</context></context-group></trans-unit> |
4501 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> | 4599 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> |
4502 | <source>DANGER ZONE</source> | 4600 | <source>DANGER ZONE</source> |
4503 | <target state="new">DANGER ZONE</target> | 4601 | <target state="new">DANGER ZONE</target> |
@@ -4747,7 +4845,31 @@ The link will expire within 1 hour.</target> | |||
4747 | <source>No ownership change request found.</source> | 4845 | <source>No ownership change request found.</source> |
4748 | <target state="new">No ownership change request found.</target> | 4846 | <target state="new">No ownership change request found.</target> |
4749 | 4847 | ||
4750 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit> | 4848 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit><trans-unit id="4247400351982331798" datatype="html"> |
4849 | <source>Account settings</source><target state="new">Account settings</target> | ||
4850 | <context-group purpose="location"> | ||
4851 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4852 | <context context-type="linenumber">37</context> | ||
4853 | </context-group> | ||
4854 | </trans-unit><trans-unit id="154062590416726309" datatype="html"> | ||
4855 | <source>Account playlists</source><target state="new">Account playlists</target> | ||
4856 | <context-group purpose="location"> | ||
4857 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4858 | <context context-type="linenumber">55</context> | ||
4859 | </context-group> | ||
4860 | </trans-unit><trans-unit id="6550287183367517925" datatype="html"> | ||
4861 | <source>Create new playlist</source><target state="new">Create new playlist</target> | ||
4862 | <context-group purpose="location"> | ||
4863 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4864 | <context context-type="linenumber">64</context> | ||
4865 | </context-group> | ||
4866 | </trans-unit><trans-unit id="2864486939135008600" datatype="html"> | ||
4867 | <source>Playlist elements</source><target state="new">Playlist elements</target> | ||
4868 | <context-group purpose="location"> | ||
4869 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4870 | <context context-type="linenumber">73</context> | ||
4871 | </context-group> | ||
4872 | </trans-unit> | ||
4751 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> | 4873 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> |
4752 | <source>My imports</source> | 4874 | <source>My imports</source> |
4753 | <target state="new">My imports</target> | 4875 | <target state="new">My imports</target> |
@@ -5018,7 +5140,25 @@ The link will expire within 1 hour.</target> | |||
5018 | <source>An error occurred.</source> | 5140 | <source>An error occurred.</source> |
5019 | <target state="new">An error occurred.</target> | 5141 | <target state="new">An error occurred.</target> |
5020 | 5142 | ||
5021 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 5143 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit><trans-unit id="9128669621822125729" datatype="html"> |
5144 | <source>Video channel videos</source><target state="new">Video channel videos</target> | ||
5145 | <context-group purpose="location"> | ||
5146 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5147 | <context context-type="linenumber">25</context> | ||
5148 | </context-group> | ||
5149 | </trans-unit><trans-unit id="3193822049276963401" datatype="html"> | ||
5150 | <source>Video channel playlists</source><target state="new">Video channel playlists</target> | ||
5151 | <context-group purpose="location"> | ||
5152 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5153 | <context context-type="linenumber">38</context> | ||
5154 | </context-group> | ||
5155 | </trans-unit><trans-unit id="4723526509708949088" datatype="html"> | ||
5156 | <source>About video channel</source><target state="new">About video channel</target> | ||
5157 | <context-group purpose="location"> | ||
5158 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5159 | <context context-type="linenumber">47</context> | ||
5160 | </context-group> | ||
5161 | </trans-unit> | ||
5022 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97" datatype="html"> | 5162 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97" datatype="html"> |
5023 | <source>Request email for account verification</source> | 5163 | <source>Request email for account verification</source> |
5024 | <target state="new"> | 5164 | <target state="new"> |
@@ -5137,7 +5277,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5137 | <source>Stats</source> | 5277 | <source>Stats</source> |
5138 | <target state="new">Stats</target> | 5278 | <target state="new">Stats</target> |
5139 | 5279 | ||
5140 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 5280 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
5141 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc" datatype="html"> | 5281 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc" datatype="html"> |
5142 | <source>Joined <x id="INTERPOLATION"/></source> | 5282 | <source>Joined <x id="INTERPOLATION"/></source> |
5143 | <target state="new">Joined | 5283 | <target state="new">Joined |
@@ -5574,7 +5714,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5574 | <source>This instance does not have instances followings.</source> | 5714 | <source>This instance does not have instances followings.</source> |
5575 | <target state="new">This instance does not have instances followings.</target> | 5715 | <target state="new">This instance does not have instances followings.</target> |
5576 | 5716 | ||
5577 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit> | 5717 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit><trans-unit id="4195286790385468087" datatype="html"> |
5718 | <source>About this instance</source><target state="new">About this instance</target> | ||
5719 | <context-group purpose="location"> | ||
5720 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5721 | <context context-type="linenumber">26</context> | ||
5722 | </context-group> | ||
5723 | </trans-unit><trans-unit id="8773846522957677259" datatype="html"> | ||
5724 | <source>About PeerTube</source><target state="new">About PeerTube</target> | ||
5725 | <context-group purpose="location"> | ||
5726 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5727 | <context context-type="linenumber">38</context> | ||
5728 | </context-group> | ||
5729 | </trans-unit><trans-unit id="5782088737558028158" datatype="html"> | ||
5730 | <source>About follows</source><target state="new">About follows</target> | ||
5731 | <context-group purpose="location"> | ||
5732 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5733 | <context context-type="linenumber">47</context> | ||
5734 | </context-group> | ||
5735 | </trans-unit> | ||
5578 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> | 5736 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> |
5579 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> | 5737 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> |
5580 | <target state="new">Developed with ❤ by | 5738 | <target state="new">Developed with ❤ by |
@@ -5744,6 +5902,12 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5744 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 5902 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> |
5745 | <context context-type="linenumber">1</context> | 5903 | <context context-type="linenumber">1</context> |
5746 | </context-group> | 5904 | </context-group> |
5905 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
5906 | <source>Get help</source><target state="new">Get help</target> | ||
5907 | <context-group purpose="location"> | ||
5908 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | ||
5909 | <context context-type="linenumber">16</context> | ||
5910 | </context-group> | ||
5747 | </trans-unit> | 5911 | </trans-unit> |
5748 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1" datatype="html"> | 5912 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1" datatype="html"> |
5749 | <source>Create my account</source> | 5913 | <source>Create my account</source> |
@@ -5868,7 +6032,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5868 | 6032 | ||
5869 | </target> | 6033 | </target> |
5870 | 6034 | ||
5871 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 6035 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit><trans-unit id="3301086086650990787" datatype="html"> |
6036 | <source>Register</source><target state="new">Register</target> | ||
6037 | <context-group purpose="location"> | ||
6038 | <context context-type="sourcefile">../app/+signup/+register/register-routing.module.ts</context> | ||
6039 | <context context-type="linenumber">14</context> | ||
6040 | </context-group> | ||
6041 | </trans-unit> | ||
5872 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> | 6042 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> |
5873 | <source>Sorry, we couldn't find the page you were looking for.</source> | 6043 | <source>Sorry, we couldn't find the page you were looking for.</source> |
5874 | <target state="new"> | 6044 | <target state="new"> |
@@ -5891,7 +6061,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5891 | <target state="new">No description</target> | 6061 | <target state="new">No description</target> |
5892 | 6062 | ||
5893 | 6063 | ||
5894 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit> | 6064 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit><trans-unit id="819067926858619041" datatype="html"> |
6065 | <source>Account videos</source><target state="new">Account videos</target> | ||
6066 | <context-group purpose="location"> | ||
6067 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6068 | <context context-type="linenumber">29</context> | ||
6069 | </context-group> | ||
6070 | </trans-unit><trans-unit id="6823616469362610020" datatype="html"> | ||
6071 | <source>Account video channels</source><target state="new">Account video channels</target> | ||
6072 | <context-group purpose="location"> | ||
6073 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6074 | <context context-type="linenumber">42</context> | ||
6075 | </context-group> | ||
6076 | </trans-unit><trans-unit id="7678273613459026643" datatype="html"> | ||
6077 | <source>About account</source><target state="new">About account</target> | ||
6078 | <context-group purpose="location"> | ||
6079 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6080 | <context context-type="linenumber">51</context> | ||
6081 | </context-group> | ||
6082 | </trans-unit> | ||
5895 | <trans-unit id="3755500631176893489" datatype="html"> | 6083 | <trans-unit id="3755500631176893489" datatype="html"> |
5896 | <source>Published <x id="PH"/> videos</source> | 6084 | <source>Published <x id="PH"/> videos</source> |
5897 | <target state="new">Published | 6085 | <target state="new">Published |
@@ -6008,7 +6196,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6008 | <source>Configuration updated.</source> | 6196 | <source>Configuration updated.</source> |
6009 | <target state="new">Configuration updated.</target> | 6197 | <target state="new">Configuration updated.</target> |
6010 | 6198 | ||
6011 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit> | 6199 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit><trans-unit id="6284468333579755406" datatype="html"> |
6200 | <source>Edit custom configuration</source><target state="new">Edit custom configuration</target> | ||
6201 | <context-group purpose="location"> | ||
6202 | <context context-type="sourcefile">../app/+admin/config/config.routes.ts</context> | ||
6203 | <context context-type="linenumber">26</context> | ||
6204 | </context-group> | ||
6205 | </trans-unit> | ||
6012 | 6206 | ||
6013 | 6207 | ||
6014 | <trans-unit id="6549061957433635758" datatype="html"> | 6208 | <trans-unit id="6549061957433635758" datatype="html"> |
@@ -6487,7 +6681,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6487 | <x id="PH"/> updated. | 6681 | <x id="PH"/> updated. |
6488 | </target> | 6682 | </target> |
6489 | 6683 | ||
6490 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 6684 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit><trans-unit id="3229595422546554334" datatype="html"> |
6685 | <source>Jobs</source><target state="new">Jobs</target> | ||
6686 | <context-group purpose="location"> | ||
6687 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6688 | <context context-type="linenumber">26</context> | ||
6689 | </context-group> | ||
6690 | </trans-unit><trans-unit id="4804785061014590286" datatype="html"> | ||
6691 | <source>Logs</source><target state="new">Logs</target> | ||
6692 | <context-group purpose="location"> | ||
6693 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6694 | <context context-type="linenumber">37</context> | ||
6695 | </context-group> | ||
6696 | </trans-unit> | ||
6491 | <trans-unit id="3150704904301058778" datatype="html"> | 6697 | <trans-unit id="3150704904301058778" datatype="html"> |
6492 | <source>The plugin index is not available. Please retry later.</source> | 6698 | <source>The plugin index is not available. Please retry later.</source> |
6493 | <target state="new">The plugin index is not available. Please retry later.</target> | 6699 | <target state="new">The plugin index is not available. Please retry later.</target> |
@@ -6601,6 +6807,18 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6601 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> | 6807 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> |
6602 | <context context-type="linenumber">86</context> | 6808 | <context context-type="linenumber">86</context> |
6603 | </context-group> | 6809 | </context-group> |
6810 | </trans-unit><trans-unit id="2903648076838460070" datatype="html"> | ||
6811 | <source>Videos blocked</source><target state="new">Videos blocked</target> | ||
6812 | <context-group purpose="location"> | ||
6813 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6814 | <context context-type="linenumber">67</context> | ||
6815 | </context-group> | ||
6816 | </trans-unit><trans-unit id="7805059636749367886" datatype="html"> | ||
6817 | <source>Muted instances</source><target state="new">Muted instances</target> | ||
6818 | <context-group purpose="location"> | ||
6819 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6820 | <context context-type="linenumber">89</context> | ||
6821 | </context-group> | ||
6604 | </trans-unit> | 6822 | </trans-unit> |
6605 | <trans-unit id="5974506725502681113" datatype="html"> | 6823 | <trans-unit id="5974506725502681113" datatype="html"> |
6606 | <source>Password changed for user <x id="PH"/>.</source> | 6824 | <source>Password changed for user <x id="PH"/>.</source> |
@@ -6613,7 +6831,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6613 | <source>Update user password</source> | 6831 | <source>Update user password</source> |
6614 | <target state="new">Update user password</target> | 6832 | <target state="new">Update user password</target> |
6615 | 6833 | ||
6616 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit> | 6834 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit><trans-unit id="177544274549739411" datatype="html"> |
6835 | <source>Following list</source><target state="new">Following list</target> | ||
6836 | <context-group purpose="location"> | ||
6837 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6838 | <context context-type="linenumber">28</context> | ||
6839 | </context-group> | ||
6840 | </trans-unit><trans-unit id="8092429110007204784" datatype="html"> | ||
6841 | <source>Followers list</source><target state="new">Followers list</target> | ||
6842 | <context-group purpose="location"> | ||
6843 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6844 | <context context-type="linenumber">37</context> | ||
6845 | </context-group> | ||
6846 | </trans-unit> | ||
6617 | <trans-unit id="780323526182667308" datatype="html"> | 6847 | <trans-unit id="780323526182667308" datatype="html"> |
6618 | <source>User <x id="PH"/> updated.</source> | 6848 | <source>User <x id="PH"/> updated.</source> |
6619 | <target state="new">User | 6849 | <target state="new">User |
@@ -6632,7 +6862,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6632 | <x id="PH"/>. | 6862 | <x id="PH"/>. |
6633 | </target> | 6863 | </target> |
6634 | 6864 | ||
6635 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="8564701209009684429" datatype="html"> | 6865 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="7483807629538115183" datatype="html"> |
6866 | <source>Users list</source><target state="new">Users list</target> | ||
6867 | <context-group purpose="location"> | ||
6868 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6869 | <context context-type="linenumber">27</context> | ||
6870 | </context-group> | ||
6871 | </trans-unit><trans-unit id="1525334987774465166" datatype="html"> | ||
6872 | <source>Create a user</source><target state="new">Create a user</target> | ||
6873 | <context-group purpose="location"> | ||
6874 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6875 | <context context-type="linenumber">36</context> | ||
6876 | </context-group> | ||
6877 | </trans-unit><trans-unit id="5552039423287890133" datatype="html"> | ||
6878 | <source>Update a user</source><target state="new">Update a user</target> | ||
6879 | <context-group purpose="location"> | ||
6880 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6881 | <context context-type="linenumber">48</context> | ||
6882 | </context-group> | ||
6883 | </trans-unit><trans-unit id="8564701209009684429" datatype="html"> | ||
6636 | <source>Federation</source><target state="new">Federation</target> | 6884 | <source>Federation</source><target state="new">Federation</target> |
6637 | <context-group purpose="location"> | 6885 | <context-group purpose="location"> |
6638 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> | 6886 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> |
@@ -6986,7 +7234,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6986 | <source>Views for the day</source> | 7234 | <source>Views for the day</source> |
6987 | <target state="new">Views for the day</target> | 7235 | <target state="new">Views for the day</target> |
6988 | 7236 | ||
6989 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit> | 7237 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit><trans-unit id="4707367314920217630" datatype="html"> |
7238 | <source>Create new video channel</source><target state="new">Create new video channel</target> | ||
7239 | <context-group purpose="location"> | ||
7240 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7241 | <context context-type="linenumber">22</context> | ||
7242 | </context-group> | ||
7243 | </trans-unit><trans-unit id="6059091237492573541" datatype="html"> | ||
7244 | <source>Update video channel</source><target state="new">Update video channel</target> | ||
7245 | <context-group purpose="location"> | ||
7246 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7247 | <context context-type="linenumber">31</context> | ||
7248 | </context-group> | ||
7249 | </trans-unit><trans-unit id="6595008830732269870" datatype="html"> | ||
7250 | <source>Not found</source><target state="new">Not found</target> | ||
7251 | <context-group purpose="location"> | ||
7252 | <context context-type="sourcefile">../app/+page-not-found/page-not-found-routing.module.ts</context> | ||
7253 | <context context-type="linenumber">13</context> | ||
7254 | </context-group> | ||
7255 | </trans-unit> | ||
6990 | <trans-unit id="5032453707232754344" datatype="html"> | 7256 | <trans-unit id="5032453707232754344" datatype="html"> |
6991 | <source>Playlist <x id="PH"/> created.</source> | 7257 | <source>Playlist <x id="PH"/> created.</source> |
6992 | <target state="new">Playlist | 7258 | <target state="new">Playlist |
@@ -7004,7 +7270,31 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7004 | <source>Update playlist</source> | 7270 | <source>Update playlist</source> |
7005 | <target state="new">Update playlist</target> | 7271 | <target state="new">Update playlist</target> |
7006 | 7272 | ||
7007 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-video-playlists/my-account-video-playlist-elements.component.ts</context><context context-type="linenumber">48</context></context-group></trans-unit> | 7273 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">82</context></context-group></trans-unit><trans-unit id="3410331549417637431" datatype="html"> |
7274 | <source>Account video imports</source><target state="new">Account video imports</target> | ||
7275 | <context-group purpose="location"> | ||
7276 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7277 | <context context-type="linenumber">105</context> | ||
7278 | </context-group> | ||
7279 | </trans-unit><trans-unit id="4434998055872154420" datatype="html"> | ||
7280 | <source>Account subscriptions</source><target state="new">Account subscriptions</target> | ||
7281 | <context-group purpose="location"> | ||
7282 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7283 | <context context-type="linenumber">114</context> | ||
7284 | </context-group> | ||
7285 | </trans-unit><trans-unit id="6019411775996586321" datatype="html"> | ||
7286 | <source>Videos history</source><target state="new">Videos history</target> | ||
7287 | <context-group purpose="location"> | ||
7288 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7289 | <context context-type="linenumber">150</context> | ||
7290 | </context-group> | ||
7291 | </trans-unit><trans-unit id="5851560788527570644" datatype="html"> | ||
7292 | <source>Notifications</source><target state="new">Notifications</target> | ||
7293 | <context-group purpose="location"> | ||
7294 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7295 | <context context-type="linenumber">163</context> | ||
7296 | </context-group> | ||
7297 | </trans-unit> | ||
7008 | <trans-unit id="104404386496394770" datatype="html"> | 7298 | <trans-unit id="104404386496394770" datatype="html"> |
7009 | <source>Delete playlist</source> | 7299 | <source>Delete playlist</source> |
7010 | <target state="new">Delete playlist</target> | 7300 | <target state="new">Delete playlist</target> |
@@ -7158,7 +7448,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7158 | <x id="PH"/>. | 7448 | <x id="PH"/>. |
7159 | </target> | 7449 | </target> |
7160 | 7450 | ||
7161 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit> | 7451 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit><trans-unit id="8231550792139699065" datatype="html"> |
7452 | <source>Verify account email</source><target state="new">Verify account email</target> | ||
7453 | <context-group purpose="location"> | ||
7454 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7455 | <context context-type="linenumber">17</context> | ||
7456 | </context-group> | ||
7457 | </trans-unit><trans-unit id="4997281272800290390" datatype="html"> | ||
7458 | <source>Verify account ask send email</source><target state="new">Verify account ask send email</target> | ||
7459 | <context-group purpose="location"> | ||
7460 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7461 | <context context-type="linenumber">26</context> | ||
7462 | </context-group> | ||
7463 | </trans-unit> | ||
7162 | <trans-unit id="4180693983967989981" datatype="html"> | 7464 | <trans-unit id="4180693983967989981" datatype="html"> |
7163 | <source>Unable to find user id or verification string.</source> | 7465 | <source>Unable to find user id or verification string.</source> |
7164 | <target state="new">Unable to find user id or verification string.</target> | 7466 | <target state="new">Unable to find user id or verification string.</target> |
@@ -7283,27 +7585,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7283 | <source>any language</source> | 7585 | <source>any language</source> |
7284 | <target state="new">any language</target> | 7586 | <target state="new">any language</target> |
7285 | 7587 | ||
7286 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">202</context></context-group></trans-unit> | 7588 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">229</context></context-group></trans-unit> |
7287 | <trans-unit id="5633144232269377096" datatype="html"> | 7589 | <trans-unit id="5633144232269377096" datatype="html"> |
7288 | <source>hide</source> | 7590 | <source>hide</source> |
7289 | <target state="new">hide</target> | 7591 | <target state="new">hide</target> |
7290 | 7592 | ||
7291 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">118</context></context-group></trans-unit> | 7593 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> |
7292 | <trans-unit id="8603861867909474404" datatype="html"> | 7594 | <trans-unit id="8603861867909474404" datatype="html"> |
7293 | <source>blur</source> | 7595 | <source>blur</source> |
7294 | <target state="new">blur</target> | 7596 | <target state="new">blur</target> |
7295 | 7597 | ||
7296 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> | 7598 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> |
7297 | <trans-unit id="4534458451100881847" datatype="html"> | 7599 | <trans-unit id="4534458451100881847" datatype="html"> |
7298 | <source>display</source> | 7600 | <source>display</source> |
7299 | <target state="new">display</target> | 7601 | <target state="new">display</target> |
7300 | 7602 | ||
7301 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> | 7603 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">127</context></context-group></trans-unit> |
7302 | <trans-unit id="4467323362722952678" datatype="html"> | 7604 | <trans-unit id="4467323362722952678" datatype="html"> |
7303 | <source>Unknown</source> | 7605 | <source>Unknown</source> |
7304 | <target state="new">Unknown</target> | 7606 | <target state="new">Unknown</target> |
7305 | 7607 | ||
7306 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">190</context></context-group></trans-unit> | 7608 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">193</context></context-group></trans-unit> |
7307 | <trans-unit id="8781423666414310853" datatype="html"> | 7609 | <trans-unit id="8781423666414310853" datatype="html"> |
7308 | <source>Your password has been successfully reset!</source> | 7610 | <source>Your password has been successfully reset!</source> |
7309 | <target state="new">Your password has been successfully reset!</target> | 7611 | <target state="new">Your password has been successfully reset!</target> |
@@ -8421,27 +8723,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8421 | <source>Emphasis</source> | 8723 | <source>Emphasis</source> |
8422 | <target state="new">Emphasis</target> | 8724 | <target state="new">Emphasis</target> |
8423 | 8725 | ||
8424 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">77</context></context-group></trans-unit> | 8726 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> |
8425 | <trans-unit id="7565716024468232322" datatype="html"> | 8727 | <trans-unit id="7565716024468232322" datatype="html"> |
8426 | <source>Links</source> | 8728 | <source>Links</source> |
8427 | <target state="new">Links</target> | 8729 | <target state="new">Links</target> |
8428 | 8730 | ||
8429 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">78</context></context-group></trans-unit> | 8731 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> |
8430 | <trans-unit id="7838476952710404110" datatype="html"> | 8732 | <trans-unit id="7838476952710404110" datatype="html"> |
8431 | <source>New lines</source> | 8733 | <source>New lines</source> |
8432 | <target state="new">New lines</target> | 8734 | <target state="new">New lines</target> |
8433 | 8735 | ||
8434 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 8736 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">83</context></context-group></trans-unit> |
8435 | <trans-unit id="8756167649220050929" datatype="html"> | 8737 | <trans-unit id="8756167649220050929" datatype="html"> |
8436 | <source>Lists</source> | 8738 | <source>Lists</source> |
8437 | <target state="new">Lists</target> | 8739 | <target state="new">Lists</target> |
8438 | 8740 | ||
8439 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">80</context></context-group></trans-unit> | 8741 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">84</context></context-group></trans-unit> |
8440 | <trans-unit id="414887388288176527" datatype="html"> | 8742 | <trans-unit id="414887388288176527" datatype="html"> |
8441 | <source>Images</source> | 8743 | <source>Images</source> |
8442 | <target state="new">Images</target> | 8744 | <target state="new">Images</target> |
8443 | 8745 | ||
8444 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> | 8746 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">85</context></context-group></trans-unit> |
8445 | <trans-unit id="5708680277917691451" datatype="html"> | 8747 | <trans-unit id="5708680277917691451" datatype="html"> |
8446 | <source> | 8748 | <source> |
8447 | <x id="PH"/> users banned. | 8749 | <x id="PH"/> users banned. |
@@ -8837,7 +9139,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8837 | <source>Moderator</source> | 9139 | <source>Moderator</source> |
8838 | <target state="new">Moderator</target> | 9140 | <target state="new">Moderator</target> |
8839 | 9141 | ||
8840 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">386</context></context-group></trans-unit> | 9142 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">384</context></context-group></trans-unit> |
8841 | <trans-unit id="3723085768598852106" datatype="html"> | 9143 | <trans-unit id="3723085768598852106" datatype="html"> |
8842 | <source>Video removed from | 9144 | <source>Video removed from |
8843 | <x id="PH"/> | 9145 | <x id="PH"/> |
@@ -8910,7 +9212,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8910 | <source>Do you really want to delete this comment?</source> | 9212 | <source>Do you really want to delete this comment?</source> |
8911 | <target state="new">Do you really want to delete this comment?</target> | 9213 | <target state="new">Do you really want to delete this comment?</target> |
8912 | 9214 | ||
8913 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">434</context></context-group></trans-unit> | 9215 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">166</context></context-group></trans-unit> |
8914 | <trans-unit id="7837272126865175984" datatype="html"> | 9216 | <trans-unit id="7837272126865175984" datatype="html"> |
8915 | <source>Comment deleted.</source> | 9217 | <source>Comment deleted.</source> |
8916 | <target state="new">Comment deleted.</target> | 9218 | <target state="new">Comment deleted.</target> |
@@ -9022,9 +9324,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9022 | 9324 | ||
9023 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> | 9325 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> |
9024 | <source>Report</source><target state="new">Report</target> | 9326 | <source>Report</source><target state="new">Report</target> |
9327 | |||
9328 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="4814285799071780083" datatype="html"> | ||
9329 | <source>Remove</source><target state="new">Remove</target> | ||
9025 | <context-group purpose="location"> | 9330 | <context-group purpose="location"> |
9026 | <context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> | 9331 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> |
9027 | <context context-type="linenumber">286</context> | 9332 | <context context-type="linenumber">179</context> |
9333 | </context-group> | ||
9334 | </trans-unit><trans-unit id="6871668720687277843" datatype="html"> | ||
9335 | <source>Remove & re-draft</source><target state="new">Remove & re-draft</target> | ||
9336 | <context-group purpose="location"> | ||
9337 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> | ||
9338 | <context context-type="linenumber">187</context> | ||
9028 | </context-group> | 9339 | </context-group> |
9029 | </trans-unit> | 9340 | </trans-unit> |
9030 | <trans-unit id="4903651219400691248" datatype="html"> | 9341 | <trans-unit id="4903651219400691248" datatype="html"> |
@@ -9128,22 +9439,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9128 | <source>Only I can see this video</source> | 9439 | <source>Only I can see this video</source> |
9129 | <target state="new">Only I can see this video</target> | 9440 | <target state="new">Only I can see this video</target> |
9130 | 9441 | ||
9131 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">340</context></context-group></trans-unit> | 9442 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">341</context></context-group></trans-unit> |
9132 | <trans-unit id="6767380569816110388" datatype="html"> | 9443 | <trans-unit id="6767380569816110388" datatype="html"> |
9133 | <source>Only shareable via a private link</source> | 9444 | <source>Only shareable via a private link</source> |
9134 | <target state="new">Only shareable via a private link</target> | 9445 | <target state="new">Only shareable via a private link</target> |
9135 | 9446 | ||
9136 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">344</context></context-group></trans-unit> | 9447 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">345</context></context-group></trans-unit> |
9137 | <trans-unit id="6828965264297239528" datatype="html"> | 9448 | <trans-unit id="6828965264297239528" datatype="html"> |
9138 | <source>Anyone can see this video</source> | 9449 | <source>Anyone can see this video</source> |
9139 | <target state="new">Anyone can see this video</target> | 9450 | <target state="new">Anyone can see this video</target> |
9140 | 9451 | ||
9141 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">348</context></context-group></trans-unit> | 9452 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">349</context></context-group></trans-unit> |
9142 | <trans-unit id="1425933035739773115" datatype="html"> | 9453 | <trans-unit id="1425933035739773115" datatype="html"> |
9143 | <source>Only users of this instance can see this video</source> | 9454 | <source>Only users of this instance can see this video</source> |
9144 | <target state="new">Only users of this instance can see this video</target> | 9455 | <target state="new">Only users of this instance can see this video</target> |
9145 | 9456 | ||
9146 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">352</context></context-group></trans-unit> | 9457 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">353</context></context-group></trans-unit> |
9147 | <trans-unit id="5210096066382592800" datatype="html"> | 9458 | <trans-unit id="5210096066382592800" datatype="html"> |
9148 | <source>Video to import updated.</source> | 9459 | <source>Video to import updated.</source> |
9149 | <target state="new">Video to import updated.</target> | 9460 | <target state="new">Video to import updated.</target> |
@@ -9223,7 +9534,7 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9223 | <target state="new">Report comment</target> | 9534 | <target state="new">Report comment</target> |
9224 | 9535 | ||
9225 | 9536 | ||
9226 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 9537 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/report-modals/comment-report.component.ts</context><context context-type="linenumber">51</context></context-group></trans-unit> |
9227 | 9538 | ||
9228 | 9539 | ||
9229 | <trans-unit id="6775540171466219199" datatype="html"> | 9540 | <trans-unit id="6775540171466219199" datatype="html"> |
@@ -9387,6 +9698,36 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9387 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> | 9698 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> |
9388 | <context context-type="linenumber">36</context> | 9699 | <context context-type="linenumber">36</context> |
9389 | </context-group> | 9700 | </context-group> |
9701 | </trans-unit><trans-unit id="4668975178372693951" datatype="html"> | ||
9702 | <source>Discover videos</source><target state="new">Discover videos</target> | ||
9703 | <context-group purpose="location"> | ||
9704 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9705 | <context context-type="linenumber">23</context> | ||
9706 | </context-group> | ||
9707 | </trans-unit><trans-unit id="8067135025051844577" datatype="html"> | ||
9708 | <source>Trending videos</source><target state="new">Trending videos</target> | ||
9709 | <context-group purpose="location"> | ||
9710 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9711 | <context context-type="linenumber">32</context> | ||
9712 | </context-group> | ||
9713 | </trans-unit><trans-unit id="664221386829541948" datatype="html"> | ||
9714 | <source>Recently added videos</source><target state="new">Recently added videos</target> | ||
9715 | <context-group purpose="location"> | ||
9716 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9717 | <context context-type="linenumber">58</context> | ||
9718 | </context-group> | ||
9719 | </trans-unit><trans-unit id="8212906256415538361" datatype="html"> | ||
9720 | <source>Upload a video</source><target state="new">Upload a video</target> | ||
9721 | <context-group purpose="location"> | ||
9722 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9723 | <context context-type="linenumber">97</context> | ||
9724 | </context-group> | ||
9725 | </trans-unit><trans-unit id="7590784934397800835" datatype="html"> | ||
9726 | <source>Edit a video</source><target state="new">Edit a video</target> | ||
9727 | <context-group purpose="location"> | ||
9728 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9729 | <context context-type="linenumber">106</context> | ||
9730 | </context-group> | ||
9390 | </trans-unit> | 9731 | </trans-unit> |
9391 | </body> | 9732 | </body> |
9392 | </file> | 9733 | </file> |
diff --git a/client/src/locale/angular.lt-LT.xlf b/client/src/locale/angular.lt-LT.xlf index 0591341e6..c0c396095 100644 --- a/client/src/locale/angular.lt-LT.xlf +++ b/client/src/locale/angular.lt-LT.xlf | |||
@@ -302,7 +302,7 @@ | |||
302 | <target state="new">Options</target> | 302 | <target state="new">Options</target> |
303 | 303 | ||
304 | 304 | ||
305 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 305 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">48</context></context-group></trans-unit> |
306 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d" datatype="html"> | 306 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d" datatype="html"> |
307 | <source>Start at</source> | 307 | <source>Start at</source> |
308 | <target state="new">Start at</target> | 308 | <target state="new">Start at</target> |
@@ -434,7 +434,7 @@ | |||
434 | Cancel | 434 | Cancel |
435 | </target> | 435 | </target> |
436 | 436 | ||
437 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> | 437 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit> |
438 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd" datatype="html"> | 438 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd" datatype="html"> |
439 | <source>Download</source> | 439 | <source>Download</source> |
440 | <target state="new">Download</target> | 440 | <target state="new">Download</target> |
@@ -553,7 +553,7 @@ | |||
553 | 553 | ||
554 | 554 | ||
555 | 555 | ||
556 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 556 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
557 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc" datatype="html"> | 557 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc" datatype="html"> |
558 | <source>Edit starts/stops at</source> | 558 | <source>Edit starts/stops at</source> |
559 | <target state="new">Edit starts/stops at</target> | 559 | <target state="new">Edit starts/stops at</target> |
@@ -593,7 +593,7 @@ | |||
593 | 593 | ||
594 | 594 | ||
595 | 595 | ||
596 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> | 596 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
597 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c" datatype="html"> | 597 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c" datatype="html"> |
598 | <source>Edit</source> | 598 | <source>Edit</source> |
599 | <target state="new">Edit</target> | 599 | <target state="new">Edit</target> |
@@ -618,17 +618,10 @@ | |||
618 | <target state="new">Complete preview</target> | 618 | <target state="new">Complete preview</target> |
619 | 619 | ||
620 | <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></trans-unit> | 620 | <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></trans-unit> |
621 | <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f" datatype="html"> | 621 | <trans-unit id="8644431249513874405" datatype="html"> |
622 | <source>Get help</source> | ||
623 | <target state="new">Get help</target> | ||
624 | |||
625 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit><trans-unit id="8644431249513874405" datatype="html"> | ||
626 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> | 622 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> |
627 | <context-group purpose="location"> | 623 | |
628 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 624 | <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></trans-unit> |
629 | <context context-type="linenumber">71</context> | ||
630 | </context-group> | ||
631 | </trans-unit> | ||
632 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> | 625 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> |
633 | <source>Recommended</source> | 626 | <source>Recommended</source> |
634 | <target state="new">Recommended</target> | 627 | <target state="new">Recommended</target> |
@@ -668,7 +661,7 @@ | |||
668 | <source>PROFILE SETTINGS</source> | 661 | <source>PROFILE SETTINGS</source> |
669 | <target state="new">PROFILE SETTINGS</target> | 662 | <target state="new">PROFILE SETTINGS</target> |
670 | 663 | ||
671 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 664 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">12</context></context-group></trans-unit> |
672 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3" datatype="html"> | 665 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3" datatype="html"> |
673 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> | 666 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> |
674 | <target state="new"> | 667 | <target state="new"> |
@@ -840,11 +833,8 @@ | |||
840 | 833 | ||
841 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> | 834 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> |
842 | <source>User</source><target state="new">User</target> | 835 | <source>User</source><target state="new">User</target> |
843 | <context-group purpose="location"> | 836 | |
844 | <context context-type="sourcefile">../app/core/users/user.service.ts</context> | 837 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit> |
845 | <context context-type="linenumber">384</context> | ||
846 | </context-group> | ||
847 | </trans-unit> | ||
848 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0" datatype="html"> | 838 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0" datatype="html"> |
849 | <source>Ban</source> | 839 | <source>Ban</source> |
850 | <target state="new">Ban</target> | 840 | <target state="new">Ban</target> |
@@ -1338,89 +1328,89 @@ The link will expire within 1 hour.</target> | |||
1338 | <source>Account settings</source> | 1328 | <source>Account settings</source> |
1339 | <target state="new">Account settings</target> | 1329 | <target state="new">Account settings</target> |
1340 | 1330 | ||
1341 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 1331 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
1342 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> | 1332 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> |
1343 | <source>Channels settings</source> | 1333 | <source>Channels settings</source> |
1344 | <target state="new">Channels settings</target> | 1334 | <target state="new">Channels settings</target> |
1345 | 1335 | ||
1346 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 1336 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> |
1347 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> | 1337 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> |
1348 | <source>Interface:</source> | 1338 | <source>Interface:</source> |
1349 | <target state="new">Interface:</target> | 1339 | <target state="new">Interface:</target> |
1350 | 1340 | ||
1351 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 1341 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1352 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> | 1342 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> |
1353 | <source>Videos:</source> | 1343 | <source>Videos:</source> |
1354 | <target state="new">Videos:</target> | 1344 | <target state="new">Videos:</target> |
1355 | 1345 | ||
1356 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 1346 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> |
1357 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> | 1347 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> |
1358 | <source>Sensitive:</source> | 1348 | <source>Sensitive:</source> |
1359 | <target state="new">Sensitive:</target> | 1349 | <target state="new">Sensitive:</target> |
1360 | 1350 | ||
1361 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 1351 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">54</context></context-group></trans-unit> |
1362 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1352 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> |
1363 | <source>Interface: <x id="INTERPOLATION"/></source> | 1353 | <source>Interface: <x id="INTERPOLATION"/></source> |
1364 | <target state="new">Interface: | 1354 | <target state="new">Interface: |
1365 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> | 1355 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> |
1366 | </target> | 1356 | </target> |
1367 | 1357 | ||
1368 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">156</context></context-group></trans-unit> | 1358 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> |
1369 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1359 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1370 | <source>Help share videos</source> | 1360 | <source>Help share videos</source> |
1371 | <target state="new">Help share videos</target> | 1361 | <target state="new">Help share videos</target> |
1372 | 1362 | ||
1373 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> | 1363 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
1374 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> | 1364 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> |
1375 | <source>More account settings</source> | 1365 | <source>More account settings</source> |
1376 | <target state="new">More account settings</target> | 1366 | <target state="new">More account settings</target> |
1377 | 1367 | ||
1378 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> | 1368 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> |
1379 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> | 1369 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> |
1380 | <source>Keyboard shortcuts</source> | 1370 | <source>Keyboard shortcuts</source> |
1381 | <target state="new">Keyboard shortcuts</target> | 1371 | <target state="new">Keyboard shortcuts</target> |
1382 | 1372 | ||
1383 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 1373 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">72</context></context-group></trans-unit> |
1384 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> | 1374 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> |
1385 | <source>Help</source> | 1375 | <source>Help</source> |
1386 | <target state="new">Help</target> | 1376 | <target state="new">Help</target> |
1387 | 1377 | ||
1388 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1378 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1389 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> | 1379 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> |
1390 | <source>Get help using PeerTube</source> | 1380 | <source>Get help using PeerTube</source> |
1391 | <target state="new">Get help using PeerTube</target> | 1381 | <target state="new">Get help using PeerTube</target> |
1392 | 1382 | ||
1393 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">161</context></context-group></trans-unit> | 1383 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">167</context></context-group></trans-unit> |
1394 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> | 1384 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> |
1395 | <source>Shortcuts</source> | 1385 | <source>Shortcuts</source> |
1396 | <target state="new">Shortcuts</target> | 1386 | <target state="new">Shortcuts</target> |
1397 | 1387 | ||
1398 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1388 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1399 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> | 1389 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> |
1400 | <source>powered by PeerTube</source> | 1390 | <source>powered by PeerTube</source> |
1401 | <target state="new">powered by PeerTube</target> | 1391 | <target state="new">powered by PeerTube</target> |
1402 | 1392 | ||
1403 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | 1393 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">177</context></context-group></trans-unit> |
1404 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> | 1394 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> |
1405 | <source>powered by PeerTube - CopyLeft 2015-2020</source> | 1395 | <source>powered by PeerTube - CopyLeft 2015-2020</source> |
1406 | <target state="new">powered by PeerTube - CopyLeft 2015-2020</target> | 1396 | <target state="new">powered by PeerTube - CopyLeft 2015-2020</target> |
1407 | 1397 | ||
1408 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> | 1398 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">176</context></context-group></trans-unit> |
1409 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344" datatype="html"> | 1399 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344" datatype="html"> |
1410 | <source>Log out</source> | 1400 | <source>Log out</source> |
1411 | <target state="new">Log out</target> | 1401 | <target state="new">Log out</target> |
1412 | 1402 | ||
1413 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">70</context></context-group></trans-unit> | 1403 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit> |
1414 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87" datatype="html"> | 1404 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87" datatype="html"> |
1415 | <source>Create an account</source> | 1405 | <source>Create an account</source> |
1416 | <target state="new">Create an account</target> | 1406 | <target state="new">Create an account</target> |
1417 | 1407 | ||
1418 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">78</context></context-group></trans-unit> | 1408 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
1419 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> | 1409 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> |
1420 | <source>MY LIBRARY</source> | 1410 | <source>MY LIBRARY</source> |
1421 | <target state="new">MY LIBRARY</target> | 1411 | <target state="new">MY LIBRARY</target> |
1422 | 1412 | ||
1423 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 1413 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">88</context></context-group></trans-unit> |
1424 | <trans-unit id="6371572688505952303" datatype="html"> | 1414 | <trans-unit id="6371572688505952303" datatype="html"> |
1425 | <source>My library</source> | 1415 | <source>My library</source> |
1426 | <target state="new">My library</target> | 1416 | <target state="new">My library</target> |
@@ -1460,22 +1450,22 @@ The link will expire within 1 hour.</target> | |||
1460 | <source>Videos</source> | 1450 | <source>Videos</source> |
1461 | <target state="new">Videos</target> | 1451 | <target state="new">Videos</target> |
1462 | 1452 | ||
1463 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">86</context></context-group></trans-unit> | 1453 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">92</context></context-group></trans-unit> |
1464 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> | 1454 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> |
1465 | <source>Playlists</source> | 1455 | <source>Playlists</source> |
1466 | <target state="new">Playlists</target> | 1456 | <target state="new">Playlists</target> |
1467 | 1457 | ||
1468 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">91</context></context-group></trans-unit> | 1458 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">97</context></context-group></trans-unit> |
1469 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2" datatype="html"> | 1459 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2" datatype="html"> |
1470 | <source>Subscriptions</source> | 1460 | <source>Subscriptions</source> |
1471 | <target state="new">Subscriptions</target> | 1461 | <target state="new">Subscriptions</target> |
1472 | 1462 | ||
1473 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 1463 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">102</context></context-group></trans-unit> |
1474 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8" datatype="html"> | 1464 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8" datatype="html"> |
1475 | <source>History</source> | 1465 | <source>History</source> |
1476 | <target state="new">History</target> | 1466 | <target state="new">History</target> |
1477 | 1467 | ||
1478 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit> | 1468 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">107</context></context-group></trans-unit> |
1479 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> | 1469 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> |
1480 | <source>VIDEOS</source> | 1470 | <source>VIDEOS</source> |
1481 | <target state="new">VIDEOS</target> | 1471 | <target state="new">VIDEOS</target> |
@@ -1487,27 +1477,27 @@ The link will expire within 1 hour.</target> | |||
1487 | <target state="new">Discover</target> | 1477 | <target state="new">Discover</target> |
1488 | 1478 | ||
1489 | 1479 | ||
1490 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">111</context></context-group></trans-unit> | 1480 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">117</context></context-group></trans-unit> |
1491 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807" datatype="html"> | 1481 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807" datatype="html"> |
1492 | <source>Trending</source> | 1482 | <source>Trending</source> |
1493 | <target state="new">Trending</target> | 1483 | <target state="new">Trending</target> |
1494 | 1484 | ||
1495 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">116</context></context-group></trans-unit> | 1485 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">122</context></context-group></trans-unit> |
1496 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> | 1486 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> |
1497 | <source>Most liked</source> | 1487 | <source>Most liked</source> |
1498 | <target state="new">Most liked</target> | 1488 | <target state="new">Most liked</target> |
1499 | 1489 | ||
1500 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">121</context></context-group></trans-unit> | 1490 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">127</context></context-group></trans-unit> |
1501 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1" datatype="html"> | 1491 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1" datatype="html"> |
1502 | <source>Recently added</source> | 1492 | <source>Recently added</source> |
1503 | <target state="new">Recently added</target> | 1493 | <target state="new">Recently added</target> |
1504 | 1494 | ||
1505 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">126</context></context-group></trans-unit> | 1495 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">132</context></context-group></trans-unit> |
1506 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919" datatype="html"> | 1496 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919" datatype="html"> |
1507 | <source>Administration</source> | 1497 | <source>Administration</source> |
1508 | <target state="new">Administration</target> | 1498 | <target state="new">Administration</target> |
1509 | 1499 | ||
1510 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">140</context></context-group></trans-unit> | 1500 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">146</context></context-group></trans-unit> |
1511 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a" datatype="html"> | 1501 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a" datatype="html"> |
1512 | <source>About</source> | 1502 | <source>About</source> |
1513 | <target state="new">About</target> | 1503 | <target state="new">About</target> |
@@ -1518,7 +1508,7 @@ The link will expire within 1 hour.</target> | |||
1518 | <source>Contact</source> | 1508 | <source>Contact</source> |
1519 | <target state="new">Contact</target> | 1509 | <target state="new">Contact</target> |
1520 | 1510 | ||
1521 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">160</context></context-group></trans-unit> | 1511 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">166</context></context-group></trans-unit> |
1522 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771" datatype="html"> | 1512 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771" datatype="html"> |
1523 | <source>View your notifications</source> | 1513 | <source>View your notifications</source> |
1524 | <target state="new">View your notifications</target> | 1514 | <target state="new">View your notifications</target> |
@@ -1545,7 +1535,7 @@ The link will expire within 1 hour.</target> | |||
1545 | <source>See all your notifications</source> | 1535 | <source>See all your notifications</source> |
1546 | <target state="new">See all your notifications</target> | 1536 | <target state="new">See all your notifications</target> |
1547 | 1537 | ||
1548 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 1538 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">40</context></context-group></trans-unit> |
1549 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> | 1539 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> |
1550 | <source>Search videos, channels…</source> | 1540 | <source>Search videos, channels…</source> |
1551 | <target state="new">Search videos, channels…</target> | 1541 | <target state="new">Search videos, channels…</target> |
@@ -1879,22 +1869,22 @@ The link will expire within 1 hour.</target> | |||
1879 | <source>FAQ</source> | 1869 | <source>FAQ</source> |
1880 | <target state="new">FAQ</target> | 1870 | <target state="new">FAQ</target> |
1881 | 1871 | ||
1882 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">163</context></context-group></trans-unit> | 1872 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
1883 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> | 1873 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> |
1884 | <source>Frequently asked questions about PeerTube</source> | 1874 | <source>Frequently asked questions about PeerTube</source> |
1885 | <target state="new">Frequently asked questions about PeerTube</target> | 1875 | <target state="new">Frequently asked questions about PeerTube</target> |
1886 | 1876 | ||
1887 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1877 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1888 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> | 1878 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> |
1889 | <source>API</source> | 1879 | <source>API</source> |
1890 | <target state="new">API</target> | 1880 | <target state="new">API</target> |
1891 | 1881 | ||
1892 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1882 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1893 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> | 1883 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> |
1894 | <source>API documentation</source> | 1884 | <source>API documentation</source> |
1895 | <target state="new">API documentation</target> | 1885 | <target state="new">API documentation</target> |
1896 | 1886 | ||
1897 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 1887 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
1898 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5" datatype="html"> | 1888 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5" datatype="html"> |
1899 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> | 1889 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> |
1900 | <target state="new">Schedule publication ( | 1890 | <target state="new">Schedule publication ( |
@@ -2281,7 +2271,13 @@ The link will expire within 1 hour.</target> | |||
2281 | Less customization | 2271 | Less customization |
2282 | </target> | 2272 | </target> |
2283 | 2273 | ||
2284 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit> | 2274 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit><trans-unit id="2454050363478003966" datatype="html"> |
2275 | <source>Login</source><target state="new">Login</target> | ||
2276 | <context-group purpose="location"> | ||
2277 | <context context-type="sourcefile">../app/+login/login-routing.module.ts</context> | ||
2278 | <context context-type="linenumber">14</context> | ||
2279 | </context-group> | ||
2280 | </trans-unit> | ||
2285 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e" datatype="html"> | 2281 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e" datatype="html"> |
2286 | <source>Autoplay</source> | 2282 | <source>Autoplay</source> |
2287 | <target state="new">Autoplay</target> | 2283 | <target state="new">Autoplay</target> |
@@ -2546,7 +2542,7 @@ The link will expire within 1 hour.</target> | |||
2546 | <source>No comments.</source> | 2542 | <source>No comments.</source> |
2547 | <target state="new">No comments.</target> | 2543 | <target state="new">No comments.</target> |
2548 | 2544 | ||
2549 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 2545 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> |
2550 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> | 2546 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> |
2551 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> | 2547 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> |
2552 | <target state="new"> | 2548 | <target state="new"> |
@@ -2556,7 +2552,7 @@ The link will expire within 1 hour.</target> | |||
2556 | 2552 | ||
2557 | </target> | 2553 | </target> |
2558 | 2554 | ||
2559 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">79</context></context-group></trans-unit> | 2555 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
2560 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> | 2556 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> |
2561 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> | 2557 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> |
2562 | <target state="new"> | 2558 | <target state="new"> |
@@ -2565,38 +2561,98 @@ The link will expire within 1 hour.</target> | |||
2565 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> | 2561 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> |
2566 | </target> | 2562 | </target> |
2567 | 2563 | ||
2568 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 2564 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">87</context></context-group></trans-unit> |
2569 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> | 2565 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> |
2570 | <source>View <x id="INTERPOLATION"/> replies</source> | 2566 | <source>View <x id="INTERPOLATION"/> replies</source> |
2571 | <target state="new">View | 2567 | <target state="new">View |
2572 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies | 2568 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies |
2573 | </target> | 2569 | </target> |
2574 | 2570 | ||
2575 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">85</context></context-group></trans-unit> | 2571 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">90</context></context-group></trans-unit> |
2576 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828" datatype="html"> | 2572 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828" datatype="html"> |
2577 | <source>Comments are disabled.</source> | 2573 | <source>Comments are disabled.</source> |
2578 | <target state="new"> | 2574 | <target state="new"> |
2579 | Comments are disabled. | 2575 | Comments are disabled. |
2580 | </target> | 2576 | </target> |
2581 | 2577 | ||
2582 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 2578 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit> |
2583 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e" datatype="html"> | 2579 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e" datatype="html"> |
2584 | <source>Add comment...</source> | 2580 | <source>Add comment...</source> |
2585 | <target state="new">Add comment...</target> | 2581 | <target state="new">Add comment...</target> |
2586 | 2582 | ||
2587 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | 2583 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit><trans-unit id="4e5254dedf0c12ce7e7c2197384fceebe3b29a2b" datatype="html"> |
2588 | <trans-unit id="8956c0f4c6974289fc63f1ab6b54f5b32ed65eeb" datatype="html"> | 2584 | <source>Markdown compatible</source><target state="new">Markdown compatible</target> |
2589 | <source>Reply</source> | 2585 | <context-group purpose="location"> |
2590 | <target state="new"> | 2586 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> |
2591 | Reply | 2587 | <context context-type="linenumber">13</context> |
2592 | </target> | 2588 | </context-group> |
2593 | 2589 | </trans-unit><trans-unit id="4739ffad85f09defefdb6e51b45f43b2ef7c4388" datatype="html"> | |
2594 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 2590 | <source>Markdown compatible that supports:</source><target state="new">Markdown compatible that supports:</target> |
2591 | <context-group purpose="location"> | ||
2592 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2593 | <context context-type="linenumber">15</context> | ||
2594 | </context-group> | ||
2595 | </trans-unit><trans-unit id="9a53b17a021bb0677c156fd893461797fc497a10" datatype="html"> | ||
2596 | <source>Auto generated links</source><target state="new">Auto generated links</target> | ||
2597 | <context-group purpose="location"> | ||
2598 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2599 | <context context-type="linenumber">18</context> | ||
2600 | </context-group> | ||
2601 | </trans-unit><trans-unit id="664f99b8919d6dd2faa1c1f7c378aa86d1be5e8a" datatype="html"> | ||
2602 | <source>Break lines</source><target state="new">Break lines</target> | ||
2603 | <context-group purpose="location"> | ||
2604 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2605 | <context context-type="linenumber">19</context> | ||
2606 | </context-group> | ||
2607 | </trans-unit><trans-unit id="b15e7bec5c7833d2d9634946ccbed68967b1bee1" datatype="html"> | ||
2608 | <source>Lists</source><target state="new">Lists</target> | ||
2609 | <context-group purpose="location"> | ||
2610 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2611 | <context context-type="linenumber">20</context> | ||
2612 | </context-group> | ||
2613 | </trans-unit><trans-unit id="ab4426b60f13c00b61d6b714d390dc629f314980" datatype="html"> | ||
2614 | <source>Emphasis</source><target state="new">Emphasis</target> | ||
2615 | <context-group purpose="location"> | ||
2616 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2617 | <context context-type="linenumber">22</context> | ||
2618 | </context-group> | ||
2619 | </trans-unit><trans-unit id="4e13b179501d3d32721037e03b4c04acb9857c5f" datatype="html"> | ||
2620 | <source>bold</source><target state="new">bold</target> | ||
2621 | <context-group purpose="location"> | ||
2622 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2623 | <context context-type="linenumber">23</context> | ||
2624 | </context-group> | ||
2625 | </trans-unit><trans-unit id="3c12190421fbb2756e6bbead923df9ec5de8ede2" datatype="html"> | ||
2626 | <source>italic</source><target state="new">italic</target> | ||
2627 | <context-group purpose="location"> | ||
2628 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2629 | <context context-type="linenumber">23</context> | ||
2630 | </context-group> | ||
2631 | </trans-unit><trans-unit id="adb4bbdcb961b8aac8298d6cac554d9b25636b7a" datatype="html"> | ||
2632 | <source>Emoji shortcuts</source><target state="new">Emoji shortcuts</target> | ||
2633 | <context-group purpose="location"> | ||
2634 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2635 | <context context-type="linenumber">26</context> | ||
2636 | </context-group> | ||
2637 | </trans-unit><trans-unit id="b9809a21a8eb3c9db2a0282c5dd94bc221575c96" datatype="html"> | ||
2638 | <source>Emoji markup</source><target state="new">Emoji markup</target> | ||
2639 | <context-group purpose="location"> | ||
2640 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2641 | <context context-type="linenumber">30</context> | ||
2642 | </context-group> | ||
2643 | </trans-unit><trans-unit id="f37feb427aaa551edd1f22616be6464bc0d492de" datatype="html"> | ||
2644 | <source>See complete list</source><target state="new">See complete list</target> | ||
2645 | <context-group purpose="location"> | ||
2646 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2647 | <context context-type="linenumber">32</context> | ||
2648 | </context-group> | ||
2649 | </trans-unit> | ||
2650 | |||
2595 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135" datatype="html"> | 2651 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135" datatype="html"> |
2596 | <source>You are one step away from commenting</source> | 2652 | <source>You are one step away from commenting</source> |
2597 | <target state="new">You are one step away from commenting</target> | 2653 | <target state="new">You are one step away from commenting</target> |
2598 | 2654 | ||
2599 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 2655 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
2600 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> | 2656 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> |
2601 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> | 2657 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> |
2602 | <target state="new"> | 2658 | <target state="new"> |
@@ -2605,19 +2661,37 @@ The link will expire within 1 hour.</target> | |||
2605 | from within the software's interface. | 2661 | from within the software's interface. |
2606 | </target> | 2662 | </target> |
2607 | 2663 | ||
2608 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 2664 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
2609 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb" datatype="html"> | 2665 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb" datatype="html"> |
2610 | <source>If you have an account on Mastodon or Pleroma, you can open it directly in their interface:</source> | 2666 | <source>If you have an account on Mastodon or Pleroma, you can open it directly in their interface:</source> |
2611 | <target state="new"> | 2667 | <target state="new"> |
2612 | If you have an account on Mastodon or Pleroma, you can open it directly in their interface: | 2668 | If you have an account on Mastodon or Pleroma, you can open it directly in their interface: |
2613 | </target> | 2669 | </target> |
2614 | 2670 | ||
2615 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">41</context></context-group></trans-unit> | 2671 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">65</context></context-group></trans-unit> |
2616 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> | 2672 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> |
2617 | <source>Login to comment</source> | 2673 | <source>Login to comment</source> |
2618 | <target state="new">Login to comment</target> | 2674 | <target state="new">Login to comment</target> |
2619 | 2675 | ||
2620 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">52</context></context-group></trans-unit> | 2676 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit><trans-unit id="974170f455ff5a9034d5737e84b4194c0046fc6b" datatype="html"> |
2677 | <source>Markdown Emoji List</source><target state="new">Markdown Emoji List</target> | ||
2678 | <context-group purpose="location"> | ||
2679 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2680 | <context context-type="linenumber">84</context> | ||
2681 | </context-group> | ||
2682 | </trans-unit><trans-unit id="2662644497259948010" datatype="html"> | ||
2683 | <source>Comment</source><target state="new">Comment</target> | ||
2684 | <context-group purpose="location"> | ||
2685 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2686 | <context context-type="linenumber">58</context> | ||
2687 | </context-group> | ||
2688 | </trans-unit><trans-unit id="4502286564339177240" datatype="html"> | ||
2689 | <source>Reply</source><target state="new">Reply</target> | ||
2690 | <context-group purpose="location"> | ||
2691 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2692 | <context context-type="linenumber">60</context> | ||
2693 | </context-group> | ||
2694 | </trans-unit> | ||
2621 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285" datatype="html"> | 2695 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285" datatype="html"> |
2622 | <source>Highlighted comment</source> | 2696 | <source>Highlighted comment</source> |
2623 | <target state="new">Highlighted comment</target> | 2697 | <target state="new">Highlighted comment</target> |
@@ -2632,7 +2706,7 @@ The link will expire within 1 hour.</target> | |||
2632 | <source>This comment has been deleted</source> | 2706 | <source>This comment has been deleted</source> |
2633 | <target state="new">This comment has been deleted</target> | 2707 | <target state="new">This comment has been deleted</target> |
2634 | 2708 | ||
2635 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">62</context></context-group></trans-unit> | 2709 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">61</context></context-group></trans-unit> |
2636 | <trans-unit id="9031514421077169181" datatype="html"> | 2710 | <trans-unit id="9031514421077169181" datatype="html"> |
2637 | <source>Video redundancies</source> | 2711 | <source>Video redundancies</source> |
2638 | <target state="new">Video redundancies</target> | 2712 | <target state="new">Video redundancies</target> |
@@ -3485,7 +3559,25 @@ The link will expire within 1 hour.</target> | |||
3485 | <target state="new">No account found.</target> | 3559 | <target state="new">No account found.</target> |
3486 | 3560 | ||
3487 | 3561 | ||
3488 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit> | 3562 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit><trans-unit id="2338185419645468935" datatype="html"> |
3563 | <source>List installed plugins</source><target state="new">List installed plugins</target> | ||
3564 | <context-group purpose="location"> | ||
3565 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3566 | <context context-type="linenumber">28</context> | ||
3567 | </context-group> | ||
3568 | </trans-unit><trans-unit id="8897412584195581488" datatype="html"> | ||
3569 | <source>Search plugins</source><target state="new">Search plugins</target> | ||
3570 | <context-group purpose="location"> | ||
3571 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3572 | <context context-type="linenumber">37</context> | ||
3573 | </context-group> | ||
3574 | </trans-unit><trans-unit id="4994333937800672218" datatype="html"> | ||
3575 | <source>Show plugin</source><target state="new">Show plugin</target> | ||
3576 | <context-group purpose="location"> | ||
3577 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3578 | <context context-type="linenumber">46</context> | ||
3579 | </context-group> | ||
3580 | </trans-unit> | ||
3489 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> | 3581 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> |
3490 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> | 3582 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> |
3491 | <target state="new">Showing | 3583 | <target state="new">Showing |
@@ -4212,7 +4304,7 @@ The link will expire within 1 hour.</target> | |||
4212 | <source>Administrator</source> | 4304 | <source>Administrator</source> |
4213 | <target state="new">Administrator</target> | 4305 | <target state="new">Administrator</target> |
4214 | 4306 | ||
4215 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">385</context></context-group></trans-unit> | 4307 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">383</context></context-group></trans-unit> |
4216 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587" datatype="html"> | 4308 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587" datatype="html"> |
4217 | <source>Admin email</source> | 4309 | <source>Admin email</source> |
4218 | <target state="new">Admin email</target> | 4310 | <target state="new">Admin email</target> |
@@ -4468,27 +4560,27 @@ The link will expire within 1 hour.</target> | |||
4468 | <source>VIDEO SETTINGS</source> | 4560 | <source>VIDEO SETTINGS</source> |
4469 | <target state="new">VIDEO SETTINGS</target> | 4561 | <target state="new">VIDEO SETTINGS</target> |
4470 | 4562 | ||
4471 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit> | 4563 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
4472 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> | 4564 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> |
4473 | <source>NOTIFICATIONS</source> | 4565 | <source>NOTIFICATIONS</source> |
4474 | <target state="new">NOTIFICATIONS</target> | 4566 | <target state="new">NOTIFICATIONS</target> |
4475 | 4567 | ||
4476 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 4568 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">37</context></context-group></trans-unit> |
4477 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> | 4569 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> |
4478 | <source>INTERFACE</source> | 4570 | <source>INTERFACE</source> |
4479 | <target state="new">INTERFACE</target> | 4571 | <target state="new">INTERFACE</target> |
4480 | 4572 | ||
4481 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 4573 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit> |
4482 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> | 4574 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> |
4483 | <source>PASSWORD</source> | 4575 | <source>PASSWORD</source> |
4484 | <target state="new">PASSWORD</target> | 4576 | <target state="new">PASSWORD</target> |
4485 | 4577 | ||
4486 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">59</context></context-group></trans-unit> | 4578 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">57</context></context-group></trans-unit> |
4487 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> | 4579 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> |
4488 | <source>EMAIL</source> | 4580 | <source>EMAIL</source> |
4489 | <target state="new">EMAIL</target> | 4581 | <target state="new">EMAIL</target> |
4490 | 4582 | ||
4491 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">69</context></context-group></trans-unit> | 4583 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">67</context></context-group></trans-unit> |
4492 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> | 4584 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> |
4493 | <source>DANGER ZONE</source> | 4585 | <source>DANGER ZONE</source> |
4494 | <target state="new">DANGER ZONE</target> | 4586 | <target state="new">DANGER ZONE</target> |
@@ -4738,7 +4830,31 @@ The link will expire within 1 hour.</target> | |||
4738 | <source>No ownership change request found.</source> | 4830 | <source>No ownership change request found.</source> |
4739 | <target state="new">No ownership change request found.</target> | 4831 | <target state="new">No ownership change request found.</target> |
4740 | 4832 | ||
4741 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit> | 4833 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit><trans-unit id="4247400351982331798" datatype="html"> |
4834 | <source>Account settings</source><target state="new">Account settings</target> | ||
4835 | <context-group purpose="location"> | ||
4836 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4837 | <context context-type="linenumber">37</context> | ||
4838 | </context-group> | ||
4839 | </trans-unit><trans-unit id="154062590416726309" datatype="html"> | ||
4840 | <source>Account playlists</source><target state="new">Account playlists</target> | ||
4841 | <context-group purpose="location"> | ||
4842 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4843 | <context context-type="linenumber">55</context> | ||
4844 | </context-group> | ||
4845 | </trans-unit><trans-unit id="6550287183367517925" datatype="html"> | ||
4846 | <source>Create new playlist</source><target state="new">Create new playlist</target> | ||
4847 | <context-group purpose="location"> | ||
4848 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4849 | <context context-type="linenumber">64</context> | ||
4850 | </context-group> | ||
4851 | </trans-unit><trans-unit id="2864486939135008600" datatype="html"> | ||
4852 | <source>Playlist elements</source><target state="new">Playlist elements</target> | ||
4853 | <context-group purpose="location"> | ||
4854 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4855 | <context context-type="linenumber">73</context> | ||
4856 | </context-group> | ||
4857 | </trans-unit> | ||
4742 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> | 4858 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> |
4743 | <source>My imports</source> | 4859 | <source>My imports</source> |
4744 | <target state="new">My imports</target> | 4860 | <target state="new">My imports</target> |
@@ -5009,7 +5125,25 @@ The link will expire within 1 hour.</target> | |||
5009 | <source>An error occurred.</source> | 5125 | <source>An error occurred.</source> |
5010 | <target state="new">An error occurred.</target> | 5126 | <target state="new">An error occurred.</target> |
5011 | 5127 | ||
5012 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 5128 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit><trans-unit id="9128669621822125729" datatype="html"> |
5129 | <source>Video channel videos</source><target state="new">Video channel videos</target> | ||
5130 | <context-group purpose="location"> | ||
5131 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5132 | <context context-type="linenumber">25</context> | ||
5133 | </context-group> | ||
5134 | </trans-unit><trans-unit id="3193822049276963401" datatype="html"> | ||
5135 | <source>Video channel playlists</source><target state="new">Video channel playlists</target> | ||
5136 | <context-group purpose="location"> | ||
5137 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5138 | <context context-type="linenumber">38</context> | ||
5139 | </context-group> | ||
5140 | </trans-unit><trans-unit id="4723526509708949088" datatype="html"> | ||
5141 | <source>About video channel</source><target state="new">About video channel</target> | ||
5142 | <context-group purpose="location"> | ||
5143 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5144 | <context context-type="linenumber">47</context> | ||
5145 | </context-group> | ||
5146 | </trans-unit> | ||
5013 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97" datatype="html"> | 5147 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97" datatype="html"> |
5014 | <source>Request email for account verification</source> | 5148 | <source>Request email for account verification</source> |
5015 | <target state="new"> | 5149 | <target state="new"> |
@@ -5128,7 +5262,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5128 | <source>Stats</source> | 5262 | <source>Stats</source> |
5129 | <target state="new">Stats</target> | 5263 | <target state="new">Stats</target> |
5130 | 5264 | ||
5131 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 5265 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
5132 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc" datatype="html"> | 5266 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc" datatype="html"> |
5133 | <source>Joined <x id="INTERPOLATION"/></source> | 5267 | <source>Joined <x id="INTERPOLATION"/></source> |
5134 | <target state="new">Joined | 5268 | <target state="new">Joined |
@@ -5567,7 +5701,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5567 | <source>This instance does not have instances followings.</source> | 5701 | <source>This instance does not have instances followings.</source> |
5568 | <target state="new">This instance does not have instances followings.</target> | 5702 | <target state="new">This instance does not have instances followings.</target> |
5569 | 5703 | ||
5570 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit> | 5704 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit><trans-unit id="4195286790385468087" datatype="html"> |
5705 | <source>About this instance</source><target state="new">About this instance</target> | ||
5706 | <context-group purpose="location"> | ||
5707 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5708 | <context context-type="linenumber">26</context> | ||
5709 | </context-group> | ||
5710 | </trans-unit><trans-unit id="8773846522957677259" datatype="html"> | ||
5711 | <source>About PeerTube</source><target state="new">About PeerTube</target> | ||
5712 | <context-group purpose="location"> | ||
5713 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5714 | <context context-type="linenumber">38</context> | ||
5715 | </context-group> | ||
5716 | </trans-unit><trans-unit id="5782088737558028158" datatype="html"> | ||
5717 | <source>About follows</source><target state="new">About follows</target> | ||
5718 | <context-group purpose="location"> | ||
5719 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5720 | <context context-type="linenumber">47</context> | ||
5721 | </context-group> | ||
5722 | </trans-unit> | ||
5571 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> | 5723 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> |
5572 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> | 5724 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> |
5573 | <target state="new">Developed with ❤ by | 5725 | <target state="new">Developed with ❤ by |
@@ -5737,6 +5889,12 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5737 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 5889 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> |
5738 | <context context-type="linenumber">1</context> | 5890 | <context context-type="linenumber">1</context> |
5739 | </context-group> | 5891 | </context-group> |
5892 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
5893 | <source>Get help</source><target state="new">Get help</target> | ||
5894 | <context-group purpose="location"> | ||
5895 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | ||
5896 | <context context-type="linenumber">16</context> | ||
5897 | </context-group> | ||
5740 | </trans-unit> | 5898 | </trans-unit> |
5741 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1" datatype="html"> | 5899 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1" datatype="html"> |
5742 | <source>Create my account</source> | 5900 | <source>Create my account</source> |
@@ -5861,7 +6019,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5861 | 6019 | ||
5862 | </target> | 6020 | </target> |
5863 | 6021 | ||
5864 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 6022 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit><trans-unit id="3301086086650990787" datatype="html"> |
6023 | <source>Register</source><target state="new">Register</target> | ||
6024 | <context-group purpose="location"> | ||
6025 | <context context-type="sourcefile">../app/+signup/+register/register-routing.module.ts</context> | ||
6026 | <context context-type="linenumber">14</context> | ||
6027 | </context-group> | ||
6028 | </trans-unit> | ||
5865 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> | 6029 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> |
5866 | <source>Sorry, we couldn't find the page you were looking for.</source> | 6030 | <source>Sorry, we couldn't find the page you were looking for.</source> |
5867 | <target state="new"> | 6031 | <target state="new"> |
@@ -5884,7 +6048,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5884 | <target state="new">No description</target> | 6048 | <target state="new">No description</target> |
5885 | 6049 | ||
5886 | 6050 | ||
5887 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit> | 6051 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit><trans-unit id="819067926858619041" datatype="html"> |
6052 | <source>Account videos</source><target state="new">Account videos</target> | ||
6053 | <context-group purpose="location"> | ||
6054 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6055 | <context context-type="linenumber">29</context> | ||
6056 | </context-group> | ||
6057 | </trans-unit><trans-unit id="6823616469362610020" datatype="html"> | ||
6058 | <source>Account video channels</source><target state="new">Account video channels</target> | ||
6059 | <context-group purpose="location"> | ||
6060 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6061 | <context context-type="linenumber">42</context> | ||
6062 | </context-group> | ||
6063 | </trans-unit><trans-unit id="7678273613459026643" datatype="html"> | ||
6064 | <source>About account</source><target state="new">About account</target> | ||
6065 | <context-group purpose="location"> | ||
6066 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6067 | <context context-type="linenumber">51</context> | ||
6068 | </context-group> | ||
6069 | </trans-unit> | ||
5888 | <trans-unit id="3755500631176893489" datatype="html"> | 6070 | <trans-unit id="3755500631176893489" datatype="html"> |
5889 | <source>Published <x id="PH"/> videos</source> | 6071 | <source>Published <x id="PH"/> videos</source> |
5890 | <target state="new">Published | 6072 | <target state="new">Published |
@@ -6001,7 +6183,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6001 | <source>Configuration updated.</source> | 6183 | <source>Configuration updated.</source> |
6002 | <target state="new">Configuration updated.</target> | 6184 | <target state="new">Configuration updated.</target> |
6003 | 6185 | ||
6004 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit> | 6186 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit><trans-unit id="6284468333579755406" datatype="html"> |
6187 | <source>Edit custom configuration</source><target state="new">Edit custom configuration</target> | ||
6188 | <context-group purpose="location"> | ||
6189 | <context context-type="sourcefile">../app/+admin/config/config.routes.ts</context> | ||
6190 | <context context-type="linenumber">26</context> | ||
6191 | </context-group> | ||
6192 | </trans-unit> | ||
6005 | 6193 | ||
6006 | 6194 | ||
6007 | <trans-unit id="6549061957433635758" datatype="html"> | 6195 | <trans-unit id="6549061957433635758" datatype="html"> |
@@ -6480,7 +6668,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6480 | <x id="PH"/> updated. | 6668 | <x id="PH"/> updated. |
6481 | </target> | 6669 | </target> |
6482 | 6670 | ||
6483 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 6671 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit><trans-unit id="3229595422546554334" datatype="html"> |
6672 | <source>Jobs</source><target state="new">Jobs</target> | ||
6673 | <context-group purpose="location"> | ||
6674 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6675 | <context context-type="linenumber">26</context> | ||
6676 | </context-group> | ||
6677 | </trans-unit><trans-unit id="4804785061014590286" datatype="html"> | ||
6678 | <source>Logs</source><target state="new">Logs</target> | ||
6679 | <context-group purpose="location"> | ||
6680 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6681 | <context context-type="linenumber">37</context> | ||
6682 | </context-group> | ||
6683 | </trans-unit> | ||
6484 | <trans-unit id="3150704904301058778" datatype="html"> | 6684 | <trans-unit id="3150704904301058778" datatype="html"> |
6485 | <source>The plugin index is not available. Please retry later.</source> | 6685 | <source>The plugin index is not available. Please retry later.</source> |
6486 | <target state="new">The plugin index is not available. Please retry later.</target> | 6686 | <target state="new">The plugin index is not available. Please retry later.</target> |
@@ -6594,6 +6794,18 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6594 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> | 6794 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> |
6595 | <context context-type="linenumber">86</context> | 6795 | <context context-type="linenumber">86</context> |
6596 | </context-group> | 6796 | </context-group> |
6797 | </trans-unit><trans-unit id="2903648076838460070" datatype="html"> | ||
6798 | <source>Videos blocked</source><target state="new">Videos blocked</target> | ||
6799 | <context-group purpose="location"> | ||
6800 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6801 | <context context-type="linenumber">67</context> | ||
6802 | </context-group> | ||
6803 | </trans-unit><trans-unit id="7805059636749367886" datatype="html"> | ||
6804 | <source>Muted instances</source><target state="new">Muted instances</target> | ||
6805 | <context-group purpose="location"> | ||
6806 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6807 | <context context-type="linenumber">89</context> | ||
6808 | </context-group> | ||
6597 | </trans-unit> | 6809 | </trans-unit> |
6598 | <trans-unit id="5974506725502681113" datatype="html"> | 6810 | <trans-unit id="5974506725502681113" datatype="html"> |
6599 | <source>Password changed for user <x id="PH"/>.</source> | 6811 | <source>Password changed for user <x id="PH"/>.</source> |
@@ -6606,7 +6818,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6606 | <source>Update user password</source> | 6818 | <source>Update user password</source> |
6607 | <target state="new">Update user password</target> | 6819 | <target state="new">Update user password</target> |
6608 | 6820 | ||
6609 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit> | 6821 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit><trans-unit id="177544274549739411" datatype="html"> |
6822 | <source>Following list</source><target state="new">Following list</target> | ||
6823 | <context-group purpose="location"> | ||
6824 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6825 | <context context-type="linenumber">28</context> | ||
6826 | </context-group> | ||
6827 | </trans-unit><trans-unit id="8092429110007204784" datatype="html"> | ||
6828 | <source>Followers list</source><target state="new">Followers list</target> | ||
6829 | <context-group purpose="location"> | ||
6830 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6831 | <context context-type="linenumber">37</context> | ||
6832 | </context-group> | ||
6833 | </trans-unit> | ||
6610 | <trans-unit id="780323526182667308" datatype="html"> | 6834 | <trans-unit id="780323526182667308" datatype="html"> |
6611 | <source>User <x id="PH"/> updated.</source> | 6835 | <source>User <x id="PH"/> updated.</source> |
6612 | <target state="new">User | 6836 | <target state="new">User |
@@ -6625,7 +6849,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6625 | <x id="PH"/>. | 6849 | <x id="PH"/>. |
6626 | </target> | 6850 | </target> |
6627 | 6851 | ||
6628 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="8564701209009684429" datatype="html"> | 6852 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="7483807629538115183" datatype="html"> |
6853 | <source>Users list</source><target state="new">Users list</target> | ||
6854 | <context-group purpose="location"> | ||
6855 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6856 | <context context-type="linenumber">27</context> | ||
6857 | </context-group> | ||
6858 | </trans-unit><trans-unit id="1525334987774465166" datatype="html"> | ||
6859 | <source>Create a user</source><target state="new">Create a user</target> | ||
6860 | <context-group purpose="location"> | ||
6861 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6862 | <context context-type="linenumber">36</context> | ||
6863 | </context-group> | ||
6864 | </trans-unit><trans-unit id="5552039423287890133" datatype="html"> | ||
6865 | <source>Update a user</source><target state="new">Update a user</target> | ||
6866 | <context-group purpose="location"> | ||
6867 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6868 | <context context-type="linenumber">48</context> | ||
6869 | </context-group> | ||
6870 | </trans-unit><trans-unit id="8564701209009684429" datatype="html"> | ||
6629 | <source>Federation</source><target state="new">Federation</target> | 6871 | <source>Federation</source><target state="new">Federation</target> |
6630 | <context-group purpose="location"> | 6872 | <context-group purpose="location"> |
6631 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> | 6873 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> |
@@ -6979,7 +7221,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6979 | <source>Views for the day</source> | 7221 | <source>Views for the day</source> |
6980 | <target state="new">Views for the day</target> | 7222 | <target state="new">Views for the day</target> |
6981 | 7223 | ||
6982 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit> | 7224 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit><trans-unit id="4707367314920217630" datatype="html"> |
7225 | <source>Create new video channel</source><target state="new">Create new video channel</target> | ||
7226 | <context-group purpose="location"> | ||
7227 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7228 | <context context-type="linenumber">22</context> | ||
7229 | </context-group> | ||
7230 | </trans-unit><trans-unit id="6059091237492573541" datatype="html"> | ||
7231 | <source>Update video channel</source><target state="new">Update video channel</target> | ||
7232 | <context-group purpose="location"> | ||
7233 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7234 | <context context-type="linenumber">31</context> | ||
7235 | </context-group> | ||
7236 | </trans-unit><trans-unit id="6595008830732269870" datatype="html"> | ||
7237 | <source>Not found</source><target state="new">Not found</target> | ||
7238 | <context-group purpose="location"> | ||
7239 | <context context-type="sourcefile">../app/+page-not-found/page-not-found-routing.module.ts</context> | ||
7240 | <context context-type="linenumber">13</context> | ||
7241 | </context-group> | ||
7242 | </trans-unit> | ||
6983 | <trans-unit id="5032453707232754344" datatype="html"> | 7243 | <trans-unit id="5032453707232754344" datatype="html"> |
6984 | <source>Playlist <x id="PH"/> created.</source> | 7244 | <source>Playlist <x id="PH"/> created.</source> |
6985 | <target state="new">Playlist | 7245 | <target state="new">Playlist |
@@ -6997,7 +7257,31 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6997 | <source>Update playlist</source> | 7257 | <source>Update playlist</source> |
6998 | <target state="new">Update playlist</target> | 7258 | <target state="new">Update playlist</target> |
6999 | 7259 | ||
7000 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-video-playlists/my-account-video-playlist-elements.component.ts</context><context context-type="linenumber">48</context></context-group></trans-unit> | 7260 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">82</context></context-group></trans-unit><trans-unit id="3410331549417637431" datatype="html"> |
7261 | <source>Account video imports</source><target state="new">Account video imports</target> | ||
7262 | <context-group purpose="location"> | ||
7263 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7264 | <context context-type="linenumber">105</context> | ||
7265 | </context-group> | ||
7266 | </trans-unit><trans-unit id="4434998055872154420" datatype="html"> | ||
7267 | <source>Account subscriptions</source><target state="new">Account subscriptions</target> | ||
7268 | <context-group purpose="location"> | ||
7269 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7270 | <context context-type="linenumber">114</context> | ||
7271 | </context-group> | ||
7272 | </trans-unit><trans-unit id="6019411775996586321" datatype="html"> | ||
7273 | <source>Videos history</source><target state="new">Videos history</target> | ||
7274 | <context-group purpose="location"> | ||
7275 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7276 | <context context-type="linenumber">150</context> | ||
7277 | </context-group> | ||
7278 | </trans-unit><trans-unit id="5851560788527570644" datatype="html"> | ||
7279 | <source>Notifications</source><target state="new">Notifications</target> | ||
7280 | <context-group purpose="location"> | ||
7281 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7282 | <context context-type="linenumber">163</context> | ||
7283 | </context-group> | ||
7284 | </trans-unit> | ||
7001 | <trans-unit id="104404386496394770" datatype="html"> | 7285 | <trans-unit id="104404386496394770" datatype="html"> |
7002 | <source>Delete playlist</source> | 7286 | <source>Delete playlist</source> |
7003 | <target state="new">Delete playlist</target> | 7287 | <target state="new">Delete playlist</target> |
@@ -7151,7 +7435,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7151 | <x id="PH"/>. | 7435 | <x id="PH"/>. |
7152 | </target> | 7436 | </target> |
7153 | 7437 | ||
7154 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit> | 7438 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit><trans-unit id="8231550792139699065" datatype="html"> |
7439 | <source>Verify account email</source><target state="new">Verify account email</target> | ||
7440 | <context-group purpose="location"> | ||
7441 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7442 | <context context-type="linenumber">17</context> | ||
7443 | </context-group> | ||
7444 | </trans-unit><trans-unit id="4997281272800290390" datatype="html"> | ||
7445 | <source>Verify account ask send email</source><target state="new">Verify account ask send email</target> | ||
7446 | <context-group purpose="location"> | ||
7447 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7448 | <context context-type="linenumber">26</context> | ||
7449 | </context-group> | ||
7450 | </trans-unit> | ||
7155 | <trans-unit id="4180693983967989981" datatype="html"> | 7451 | <trans-unit id="4180693983967989981" datatype="html"> |
7156 | <source>Unable to find user id or verification string.</source> | 7452 | <source>Unable to find user id or verification string.</source> |
7157 | <target state="new">Unable to find user id or verification string.</target> | 7453 | <target state="new">Unable to find user id or verification string.</target> |
@@ -7276,27 +7572,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7276 | <source>any language</source> | 7572 | <source>any language</source> |
7277 | <target state="new">any language</target> | 7573 | <target state="new">any language</target> |
7278 | 7574 | ||
7279 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">202</context></context-group></trans-unit> | 7575 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">229</context></context-group></trans-unit> |
7280 | <trans-unit id="5633144232269377096" datatype="html"> | 7576 | <trans-unit id="5633144232269377096" datatype="html"> |
7281 | <source>hide</source> | 7577 | <source>hide</source> |
7282 | <target state="new">hide</target> | 7578 | <target state="new">hide</target> |
7283 | 7579 | ||
7284 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">118</context></context-group></trans-unit> | 7580 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> |
7285 | <trans-unit id="8603861867909474404" datatype="html"> | 7581 | <trans-unit id="8603861867909474404" datatype="html"> |
7286 | <source>blur</source> | 7582 | <source>blur</source> |
7287 | <target state="new">blur</target> | 7583 | <target state="new">blur</target> |
7288 | 7584 | ||
7289 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> | 7585 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> |
7290 | <trans-unit id="4534458451100881847" datatype="html"> | 7586 | <trans-unit id="4534458451100881847" datatype="html"> |
7291 | <source>display</source> | 7587 | <source>display</source> |
7292 | <target state="new">display</target> | 7588 | <target state="new">display</target> |
7293 | 7589 | ||
7294 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> | 7590 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">127</context></context-group></trans-unit> |
7295 | <trans-unit id="4467323362722952678" datatype="html"> | 7591 | <trans-unit id="4467323362722952678" datatype="html"> |
7296 | <source>Unknown</source> | 7592 | <source>Unknown</source> |
7297 | <target state="new">Unknown</target> | 7593 | <target state="new">Unknown</target> |
7298 | 7594 | ||
7299 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">190</context></context-group></trans-unit> | 7595 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">193</context></context-group></trans-unit> |
7300 | <trans-unit id="8781423666414310853" datatype="html"> | 7596 | <trans-unit id="8781423666414310853" datatype="html"> |
7301 | <source>Your password has been successfully reset!</source> | 7597 | <source>Your password has been successfully reset!</source> |
7302 | <target state="new">Your password has been successfully reset!</target> | 7598 | <target state="new">Your password has been successfully reset!</target> |
@@ -8414,27 +8710,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8414 | <source>Emphasis</source> | 8710 | <source>Emphasis</source> |
8415 | <target state="new">Emphasis</target> | 8711 | <target state="new">Emphasis</target> |
8416 | 8712 | ||
8417 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">77</context></context-group></trans-unit> | 8713 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> |
8418 | <trans-unit id="7565716024468232322" datatype="html"> | 8714 | <trans-unit id="7565716024468232322" datatype="html"> |
8419 | <source>Links</source> | 8715 | <source>Links</source> |
8420 | <target state="new">Links</target> | 8716 | <target state="new">Links</target> |
8421 | 8717 | ||
8422 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">78</context></context-group></trans-unit> | 8718 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> |
8423 | <trans-unit id="7838476952710404110" datatype="html"> | 8719 | <trans-unit id="7838476952710404110" datatype="html"> |
8424 | <source>New lines</source> | 8720 | <source>New lines</source> |
8425 | <target state="new">New lines</target> | 8721 | <target state="new">New lines</target> |
8426 | 8722 | ||
8427 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 8723 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">83</context></context-group></trans-unit> |
8428 | <trans-unit id="8756167649220050929" datatype="html"> | 8724 | <trans-unit id="8756167649220050929" datatype="html"> |
8429 | <source>Lists</source> | 8725 | <source>Lists</source> |
8430 | <target state="new">Lists</target> | 8726 | <target state="new">Lists</target> |
8431 | 8727 | ||
8432 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">80</context></context-group></trans-unit> | 8728 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">84</context></context-group></trans-unit> |
8433 | <trans-unit id="414887388288176527" datatype="html"> | 8729 | <trans-unit id="414887388288176527" datatype="html"> |
8434 | <source>Images</source> | 8730 | <source>Images</source> |
8435 | <target state="new">Images</target> | 8731 | <target state="new">Images</target> |
8436 | 8732 | ||
8437 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> | 8733 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">85</context></context-group></trans-unit> |
8438 | <trans-unit id="5708680277917691451" datatype="html"> | 8734 | <trans-unit id="5708680277917691451" datatype="html"> |
8439 | <source> | 8735 | <source> |
8440 | <x id="PH"/> users banned. | 8736 | <x id="PH"/> users banned. |
@@ -8830,7 +9126,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8830 | <source>Moderator</source> | 9126 | <source>Moderator</source> |
8831 | <target state="new">Moderator</target> | 9127 | <target state="new">Moderator</target> |
8832 | 9128 | ||
8833 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">386</context></context-group></trans-unit> | 9129 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">384</context></context-group></trans-unit> |
8834 | <trans-unit id="3723085768598852106" datatype="html"> | 9130 | <trans-unit id="3723085768598852106" datatype="html"> |
8835 | <source>Video removed from | 9131 | <source>Video removed from |
8836 | <x id="PH"/> | 9132 | <x id="PH"/> |
@@ -8903,7 +9199,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8903 | <source>Do you really want to delete this comment?</source> | 9199 | <source>Do you really want to delete this comment?</source> |
8904 | <target state="new">Do you really want to delete this comment?</target> | 9200 | <target state="new">Do you really want to delete this comment?</target> |
8905 | 9201 | ||
8906 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">434</context></context-group></trans-unit> | 9202 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">166</context></context-group></trans-unit> |
8907 | <trans-unit id="7837272126865175984" datatype="html"> | 9203 | <trans-unit id="7837272126865175984" datatype="html"> |
8908 | <source>Comment deleted.</source> | 9204 | <source>Comment deleted.</source> |
8909 | <target state="new">Comment deleted.</target> | 9205 | <target state="new">Comment deleted.</target> |
@@ -9015,9 +9311,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9015 | 9311 | ||
9016 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> | 9312 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> |
9017 | <source>Report</source><target state="new">Report</target> | 9313 | <source>Report</source><target state="new">Report</target> |
9314 | |||
9315 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="4814285799071780083" datatype="html"> | ||
9316 | <source>Remove</source><target state="new">Remove</target> | ||
9018 | <context-group purpose="location"> | 9317 | <context-group purpose="location"> |
9019 | <context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> | 9318 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> |
9020 | <context context-type="linenumber">286</context> | 9319 | <context context-type="linenumber">179</context> |
9320 | </context-group> | ||
9321 | </trans-unit><trans-unit id="6871668720687277843" datatype="html"> | ||
9322 | <source>Remove & re-draft</source><target state="new">Remove & re-draft</target> | ||
9323 | <context-group purpose="location"> | ||
9324 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> | ||
9325 | <context context-type="linenumber">187</context> | ||
9021 | </context-group> | 9326 | </context-group> |
9022 | </trans-unit> | 9327 | </trans-unit> |
9023 | <trans-unit id="4903651219400691248" datatype="html"> | 9328 | <trans-unit id="4903651219400691248" datatype="html"> |
@@ -9121,22 +9426,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9121 | <source>Only I can see this video</source> | 9426 | <source>Only I can see this video</source> |
9122 | <target state="new">Only I can see this video</target> | 9427 | <target state="new">Only I can see this video</target> |
9123 | 9428 | ||
9124 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">340</context></context-group></trans-unit> | 9429 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">341</context></context-group></trans-unit> |
9125 | <trans-unit id="6767380569816110388" datatype="html"> | 9430 | <trans-unit id="6767380569816110388" datatype="html"> |
9126 | <source>Only shareable via a private link</source> | 9431 | <source>Only shareable via a private link</source> |
9127 | <target state="new">Only shareable via a private link</target> | 9432 | <target state="new">Only shareable via a private link</target> |
9128 | 9433 | ||
9129 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">344</context></context-group></trans-unit> | 9434 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">345</context></context-group></trans-unit> |
9130 | <trans-unit id="6828965264297239528" datatype="html"> | 9435 | <trans-unit id="6828965264297239528" datatype="html"> |
9131 | <source>Anyone can see this video</source> | 9436 | <source>Anyone can see this video</source> |
9132 | <target state="new">Anyone can see this video</target> | 9437 | <target state="new">Anyone can see this video</target> |
9133 | 9438 | ||
9134 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">348</context></context-group></trans-unit> | 9439 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">349</context></context-group></trans-unit> |
9135 | <trans-unit id="1425933035739773115" datatype="html"> | 9440 | <trans-unit id="1425933035739773115" datatype="html"> |
9136 | <source>Only users of this instance can see this video</source> | 9441 | <source>Only users of this instance can see this video</source> |
9137 | <target state="new">Only users of this instance can see this video</target> | 9442 | <target state="new">Only users of this instance can see this video</target> |
9138 | 9443 | ||
9139 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">352</context></context-group></trans-unit> | 9444 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">353</context></context-group></trans-unit> |
9140 | <trans-unit id="5210096066382592800" datatype="html"> | 9445 | <trans-unit id="5210096066382592800" datatype="html"> |
9141 | <source>Video to import updated.</source> | 9446 | <source>Video to import updated.</source> |
9142 | <target state="new">Video to import updated.</target> | 9447 | <target state="new">Video to import updated.</target> |
@@ -9216,16 +9521,25 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9216 | <target state="new">Report comment</target> | 9521 | <target state="new">Report comment</target> |
9217 | 9522 | ||
9218 | 9523 | ||
9219 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 9524 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/report-modals/comment-report.component.ts</context><context context-type="linenumber">51</context></context-group></trans-unit> |
9220 | <trans-unit id="3691787517663044217" datatype="html"> | 9525 | <trans-unit id="3691787517663044217" datatype="html"> |
9221 | <source> The deletion will be sent to remote instances so they can reflect the change.</source> | 9526 | <source> The deletion will be sent to remote instances so they can reflect the change.</source> |
9222 | <target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> | 9527 | <target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> |
9223 | 9528 | ||
9224 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">163</context></context-group></trans-unit><trans-unit id="7321800851971795962" datatype="html"> | 9529 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">169</context></context-group></trans-unit><trans-unit id="7321800851971795962" datatype="html"> |
9225 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source><target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> | 9530 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source><target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> |
9531 | |||
9532 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="5964038603724691720" datatype="html"> | ||
9533 | <source>Delete and re-draft</source><target state="new">Delete and re-draft</target> | ||
9226 | <context-group purpose="location"> | 9534 | <context-group purpose="location"> |
9227 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | 9535 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> |
9228 | <context context-type="linenumber">165</context> | 9536 | <context context-type="linenumber">197</context> |
9537 | </context-group> | ||
9538 | </trans-unit><trans-unit id="7163633882758007711" datatype="html"> | ||
9539 | <source>Do you really want to delete and re-draft this comment?</source><target state="new">Do you really want to delete and re-draft this comment?</target> | ||
9540 | <context-group purpose="location"> | ||
9541 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | ||
9542 | <context context-type="linenumber">197</context> | ||
9229 | </context-group> | 9543 | </context-group> |
9230 | </trans-unit> | 9544 | </trans-unit> |
9231 | 9545 | ||
@@ -9390,6 +9704,36 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9390 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> | 9704 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> |
9391 | <context context-type="linenumber">36</context> | 9705 | <context context-type="linenumber">36</context> |
9392 | </context-group> | 9706 | </context-group> |
9707 | </trans-unit><trans-unit id="4668975178372693951" datatype="html"> | ||
9708 | <source>Discover videos</source><target state="new">Discover videos</target> | ||
9709 | <context-group purpose="location"> | ||
9710 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9711 | <context context-type="linenumber">23</context> | ||
9712 | </context-group> | ||
9713 | </trans-unit><trans-unit id="8067135025051844577" datatype="html"> | ||
9714 | <source>Trending videos</source><target state="new">Trending videos</target> | ||
9715 | <context-group purpose="location"> | ||
9716 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9717 | <context context-type="linenumber">32</context> | ||
9718 | </context-group> | ||
9719 | </trans-unit><trans-unit id="664221386829541948" datatype="html"> | ||
9720 | <source>Recently added videos</source><target state="new">Recently added videos</target> | ||
9721 | <context-group purpose="location"> | ||
9722 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9723 | <context context-type="linenumber">58</context> | ||
9724 | </context-group> | ||
9725 | </trans-unit><trans-unit id="8212906256415538361" datatype="html"> | ||
9726 | <source>Upload a video</source><target state="new">Upload a video</target> | ||
9727 | <context-group purpose="location"> | ||
9728 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9729 | <context context-type="linenumber">97</context> | ||
9730 | </context-group> | ||
9731 | </trans-unit><trans-unit id="7590784934397800835" datatype="html"> | ||
9732 | <source>Edit a video</source><target state="new">Edit a video</target> | ||
9733 | <context-group purpose="location"> | ||
9734 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9735 | <context context-type="linenumber">106</context> | ||
9736 | </context-group> | ||
9393 | </trans-unit> | 9737 | </trans-unit> |
9394 | </body> | 9738 | </body> |
9395 | </file> | 9739 | </file> |
diff --git a/client/src/locale/angular.nb-NO.xlf b/client/src/locale/angular.nb-NO.xlf index 536f414c2..566abe3dd 100644 --- a/client/src/locale/angular.nb-NO.xlf +++ b/client/src/locale/angular.nb-NO.xlf | |||
@@ -318,7 +318,7 @@ | |||
318 | <target state="new">Options</target> | 318 | <target state="new">Options</target> |
319 | 319 | ||
320 | 320 | ||
321 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 321 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">48</context></context-group></trans-unit> |
322 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d" datatype="html"> | 322 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d" datatype="html"> |
323 | <source>Start at</source> | 323 | <source>Start at</source> |
324 | <target state="new">Start at</target> | 324 | <target state="new">Start at</target> |
@@ -452,7 +452,7 @@ | |||
452 | Cancel | 452 | Cancel |
453 | </target> | 453 | </target> |
454 | 454 | ||
455 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> | 455 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit> |
456 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd" datatype="html"> | 456 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd" datatype="html"> |
457 | <source>Download</source> | 457 | <source>Download</source> |
458 | <target state="new">Download</target> | 458 | <target state="new">Download</target> |
@@ -575,7 +575,7 @@ | |||
575 | 575 | ||
576 | 576 | ||
577 | 577 | ||
578 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 578 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
579 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc" datatype="html"> | 579 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc" datatype="html"> |
580 | <source>Edit starts/stops at</source> | 580 | <source>Edit starts/stops at</source> |
581 | <target state="new">Edit starts/stops at</target> | 581 | <target state="new">Edit starts/stops at</target> |
@@ -615,7 +615,7 @@ | |||
615 | 615 | ||
616 | 616 | ||
617 | 617 | ||
618 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> | 618 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
619 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c" datatype="html"> | 619 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c" datatype="html"> |
620 | <source>Edit</source> | 620 | <source>Edit</source> |
621 | <target state="new">Edit</target> | 621 | <target state="new">Edit</target> |
@@ -640,17 +640,10 @@ | |||
640 | <target state="new">Complete preview</target> | 640 | <target state="new">Complete preview</target> |
641 | 641 | ||
642 | <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></trans-unit> | 642 | <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></trans-unit> |
643 | <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f" datatype="html"> | 643 | <trans-unit id="8644431249513874405" datatype="html"> |
644 | <source>Get help</source> | ||
645 | <target state="new">Get help</target> | ||
646 | |||
647 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit><trans-unit id="8644431249513874405" datatype="html"> | ||
648 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> | 644 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> |
649 | <context-group purpose="location"> | 645 | |
650 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 646 | <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></trans-unit> |
651 | <context context-type="linenumber">71</context> | ||
652 | </context-group> | ||
653 | </trans-unit> | ||
654 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> | 647 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> |
655 | <source>Recommended</source> | 648 | <source>Recommended</source> |
656 | <target state="new">Recommended</target> | 649 | <target state="new">Recommended</target> |
@@ -690,7 +683,7 @@ | |||
690 | <source>PROFILE SETTINGS</source> | 683 | <source>PROFILE SETTINGS</source> |
691 | <target state="new">PROFILE SETTINGS</target> | 684 | <target state="new">PROFILE SETTINGS</target> |
692 | 685 | ||
693 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 686 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">12</context></context-group></trans-unit> |
694 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3" datatype="html"> | 687 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3" datatype="html"> |
695 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> | 688 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> |
696 | <target state="new"> | 689 | <target state="new"> |
@@ -862,11 +855,8 @@ | |||
862 | 855 | ||
863 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> | 856 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> |
864 | <source>User</source><target state="new">User</target> | 857 | <source>User</source><target state="new">User</target> |
865 | <context-group purpose="location"> | 858 | |
866 | <context context-type="sourcefile">../app/core/users/user.service.ts</context> | 859 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit> |
867 | <context context-type="linenumber">384</context> | ||
868 | </context-group> | ||
869 | </trans-unit> | ||
870 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0" datatype="html"> | 860 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0" datatype="html"> |
871 | <source>Ban</source> | 861 | <source>Ban</source> |
872 | <target state="new">Ban</target> | 862 | <target state="new">Ban</target> |
@@ -1374,89 +1364,89 @@ The link will expire within 1 hour.</target> | |||
1374 | <source>Account settings</source> | 1364 | <source>Account settings</source> |
1375 | <target state="new">Account settings</target> | 1365 | <target state="new">Account settings</target> |
1376 | 1366 | ||
1377 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 1367 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
1378 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> | 1368 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> |
1379 | <source>Channels settings</source> | 1369 | <source>Channels settings</source> |
1380 | <target state="new">Channels settings</target> | 1370 | <target state="new">Channels settings</target> |
1381 | 1371 | ||
1382 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 1372 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> |
1383 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> | 1373 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> |
1384 | <source>Interface:</source> | 1374 | <source>Interface:</source> |
1385 | <target state="new">Interface:</target> | 1375 | <target state="new">Interface:</target> |
1386 | 1376 | ||
1387 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 1377 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1388 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> | 1378 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> |
1389 | <source>Videos:</source> | 1379 | <source>Videos:</source> |
1390 | <target state="new">Videos:</target> | 1380 | <target state="new">Videos:</target> |
1391 | 1381 | ||
1392 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 1382 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> |
1393 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> | 1383 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> |
1394 | <source>Sensitive:</source> | 1384 | <source>Sensitive:</source> |
1395 | <target state="new">Sensitive:</target> | 1385 | <target state="new">Sensitive:</target> |
1396 | 1386 | ||
1397 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 1387 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">54</context></context-group></trans-unit> |
1398 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1388 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> |
1399 | <source>Interface: <x id="INTERPOLATION"/></source> | 1389 | <source>Interface: <x id="INTERPOLATION"/></source> |
1400 | <target state="new">Interface: | 1390 | <target state="new">Interface: |
1401 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> | 1391 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> |
1402 | </target> | 1392 | </target> |
1403 | 1393 | ||
1404 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">156</context></context-group></trans-unit> | 1394 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> |
1405 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1395 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1406 | <source>Help share videos</source> | 1396 | <source>Help share videos</source> |
1407 | <target state="new">Help share videos</target> | 1397 | <target state="new">Help share videos</target> |
1408 | 1398 | ||
1409 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> | 1399 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
1410 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> | 1400 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> |
1411 | <source>More account settings</source> | 1401 | <source>More account settings</source> |
1412 | <target state="new">More account settings</target> | 1402 | <target state="new">More account settings</target> |
1413 | 1403 | ||
1414 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> | 1404 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> |
1415 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> | 1405 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> |
1416 | <source>Keyboard shortcuts</source> | 1406 | <source>Keyboard shortcuts</source> |
1417 | <target state="new">Keyboard shortcuts</target> | 1407 | <target state="new">Keyboard shortcuts</target> |
1418 | 1408 | ||
1419 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 1409 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">72</context></context-group></trans-unit> |
1420 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> | 1410 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> |
1421 | <source>Help</source> | 1411 | <source>Help</source> |
1422 | <target state="new">Help</target> | 1412 | <target state="new">Help</target> |
1423 | 1413 | ||
1424 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1414 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1425 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> | 1415 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> |
1426 | <source>Get help using PeerTube</source> | 1416 | <source>Get help using PeerTube</source> |
1427 | <target state="new">Get help using PeerTube</target> | 1417 | <target state="new">Get help using PeerTube</target> |
1428 | 1418 | ||
1429 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">161</context></context-group></trans-unit> | 1419 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">167</context></context-group></trans-unit> |
1430 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> | 1420 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> |
1431 | <source>Shortcuts</source> | 1421 | <source>Shortcuts</source> |
1432 | <target state="new">Shortcuts</target> | 1422 | <target state="new">Shortcuts</target> |
1433 | 1423 | ||
1434 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1424 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1435 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> | 1425 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> |
1436 | <source>powered by PeerTube</source> | 1426 | <source>powered by PeerTube</source> |
1437 | <target state="new">powered by PeerTube</target> | 1427 | <target state="new">powered by PeerTube</target> |
1438 | 1428 | ||
1439 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | 1429 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">177</context></context-group></trans-unit> |
1440 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> | 1430 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> |
1441 | <source>powered by PeerTube - CopyLeft 2015-2020</source> | 1431 | <source>powered by PeerTube - CopyLeft 2015-2020</source> |
1442 | <target state="new">powered by PeerTube - CopyLeft 2015-2020</target> | 1432 | <target state="new">powered by PeerTube - CopyLeft 2015-2020</target> |
1443 | 1433 | ||
1444 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> | 1434 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">176</context></context-group></trans-unit> |
1445 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344" datatype="html"> | 1435 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344" datatype="html"> |
1446 | <source>Log out</source> | 1436 | <source>Log out</source> |
1447 | <target state="new">Log out</target> | 1437 | <target state="new">Log out</target> |
1448 | 1438 | ||
1449 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">70</context></context-group></trans-unit> | 1439 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit> |
1450 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87" datatype="html"> | 1440 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87" datatype="html"> |
1451 | <source>Create an account</source> | 1441 | <source>Create an account</source> |
1452 | <target state="new">Create an account</target> | 1442 | <target state="new">Create an account</target> |
1453 | 1443 | ||
1454 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">78</context></context-group></trans-unit> | 1444 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
1455 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> | 1445 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> |
1456 | <source>MY LIBRARY</source> | 1446 | <source>MY LIBRARY</source> |
1457 | <target state="new">MY LIBRARY</target> | 1447 | <target state="new">MY LIBRARY</target> |
1458 | 1448 | ||
1459 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 1449 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">88</context></context-group></trans-unit> |
1460 | <trans-unit id="6371572688505952303" datatype="html"> | 1450 | <trans-unit id="6371572688505952303" datatype="html"> |
1461 | <source>My library</source> | 1451 | <source>My library</source> |
1462 | <target state="new">My library</target> | 1452 | <target state="new">My library</target> |
@@ -1496,22 +1486,22 @@ The link will expire within 1 hour.</target> | |||
1496 | <source>Videos</source> | 1486 | <source>Videos</source> |
1497 | <target state="new">Videos</target> | 1487 | <target state="new">Videos</target> |
1498 | 1488 | ||
1499 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">86</context></context-group></trans-unit> | 1489 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">92</context></context-group></trans-unit> |
1500 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> | 1490 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> |
1501 | <source>Playlists</source> | 1491 | <source>Playlists</source> |
1502 | <target state="new">Playlists</target> | 1492 | <target state="new">Playlists</target> |
1503 | 1493 | ||
1504 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">91</context></context-group></trans-unit> | 1494 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">97</context></context-group></trans-unit> |
1505 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2" datatype="html"> | 1495 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2" datatype="html"> |
1506 | <source>Subscriptions</source> | 1496 | <source>Subscriptions</source> |
1507 | <target state="new">Subscriptions</target> | 1497 | <target state="new">Subscriptions</target> |
1508 | 1498 | ||
1509 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 1499 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">102</context></context-group></trans-unit> |
1510 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8" datatype="html"> | 1500 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8" datatype="html"> |
1511 | <source>History</source> | 1501 | <source>History</source> |
1512 | <target state="new">History</target> | 1502 | <target state="new">History</target> |
1513 | 1503 | ||
1514 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit> | 1504 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">107</context></context-group></trans-unit> |
1515 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> | 1505 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> |
1516 | <source>VIDEOS</source> | 1506 | <source>VIDEOS</source> |
1517 | <target state="new">VIDEOS</target> | 1507 | <target state="new">VIDEOS</target> |
@@ -1523,27 +1513,27 @@ The link will expire within 1 hour.</target> | |||
1523 | <target state="new">Discover</target> | 1513 | <target state="new">Discover</target> |
1524 | 1514 | ||
1525 | 1515 | ||
1526 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">111</context></context-group></trans-unit> | 1516 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">117</context></context-group></trans-unit> |
1527 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807" datatype="html"> | 1517 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807" datatype="html"> |
1528 | <source>Trending</source> | 1518 | <source>Trending</source> |
1529 | <target state="new">Trending</target> | 1519 | <target state="new">Trending</target> |
1530 | 1520 | ||
1531 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">116</context></context-group></trans-unit> | 1521 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">122</context></context-group></trans-unit> |
1532 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> | 1522 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> |
1533 | <source>Most liked</source> | 1523 | <source>Most liked</source> |
1534 | <target state="new">Most liked</target> | 1524 | <target state="new">Most liked</target> |
1535 | 1525 | ||
1536 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">121</context></context-group></trans-unit> | 1526 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">127</context></context-group></trans-unit> |
1537 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1" datatype="html"> | 1527 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1" datatype="html"> |
1538 | <source>Recently added</source> | 1528 | <source>Recently added</source> |
1539 | <target state="new">Recently added</target> | 1529 | <target state="new">Recently added</target> |
1540 | 1530 | ||
1541 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">126</context></context-group></trans-unit> | 1531 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">132</context></context-group></trans-unit> |
1542 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919" datatype="html"> | 1532 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919" datatype="html"> |
1543 | <source>Administration</source> | 1533 | <source>Administration</source> |
1544 | <target state="new">Administration</target> | 1534 | <target state="new">Administration</target> |
1545 | 1535 | ||
1546 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">140</context></context-group></trans-unit> | 1536 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">146</context></context-group></trans-unit> |
1547 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a" datatype="html"> | 1537 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a" datatype="html"> |
1548 | <source>About</source> | 1538 | <source>About</source> |
1549 | <target state="new">About</target> | 1539 | <target state="new">About</target> |
@@ -1554,7 +1544,7 @@ The link will expire within 1 hour.</target> | |||
1554 | <source>Contact</source> | 1544 | <source>Contact</source> |
1555 | <target state="new">Contact</target> | 1545 | <target state="new">Contact</target> |
1556 | 1546 | ||
1557 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">160</context></context-group></trans-unit> | 1547 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">166</context></context-group></trans-unit> |
1558 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771" datatype="html"> | 1548 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771" datatype="html"> |
1559 | <source>View your notifications</source> | 1549 | <source>View your notifications</source> |
1560 | <target state="new">View your notifications</target> | 1550 | <target state="new">View your notifications</target> |
@@ -1581,7 +1571,7 @@ The link will expire within 1 hour.</target> | |||
1581 | <source>See all your notifications</source> | 1571 | <source>See all your notifications</source> |
1582 | <target state="new">See all your notifications</target> | 1572 | <target state="new">See all your notifications</target> |
1583 | 1573 | ||
1584 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 1574 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">40</context></context-group></trans-unit> |
1585 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> | 1575 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> |
1586 | <source>Search videos, channels…</source> | 1576 | <source>Search videos, channels…</source> |
1587 | <target state="new">Search videos, channels…</target> | 1577 | <target state="new">Search videos, channels…</target> |
@@ -1925,22 +1915,22 @@ The link will expire within 1 hour.</target> | |||
1925 | <source>FAQ</source> | 1915 | <source>FAQ</source> |
1926 | <target state="new">FAQ</target> | 1916 | <target state="new">FAQ</target> |
1927 | 1917 | ||
1928 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">163</context></context-group></trans-unit> | 1918 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
1929 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> | 1919 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> |
1930 | <source>Frequently asked questions about PeerTube</source> | 1920 | <source>Frequently asked questions about PeerTube</source> |
1931 | <target state="new">Frequently asked questions about PeerTube</target> | 1921 | <target state="new">Frequently asked questions about PeerTube</target> |
1932 | 1922 | ||
1933 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1923 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1934 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> | 1924 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> |
1935 | <source>API</source> | 1925 | <source>API</source> |
1936 | <target state="new">API</target> | 1926 | <target state="new">API</target> |
1937 | 1927 | ||
1938 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1928 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1939 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> | 1929 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> |
1940 | <source>API documentation</source> | 1930 | <source>API documentation</source> |
1941 | <target state="new">API documentation</target> | 1931 | <target state="new">API documentation</target> |
1942 | 1932 | ||
1943 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 1933 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
1944 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5" datatype="html"> | 1934 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5" datatype="html"> |
1945 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> | 1935 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> |
1946 | <target state="new">Schedule publication ( | 1936 | <target state="new">Schedule publication ( |
@@ -2341,7 +2331,13 @@ The link will expire within 1 hour.</target> | |||
2341 | Less customization | 2331 | Less customization |
2342 | </target> | 2332 | </target> |
2343 | 2333 | ||
2344 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit> | 2334 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit><trans-unit id="2454050363478003966" datatype="html"> |
2335 | <source>Login</source><target state="new">Login</target> | ||
2336 | <context-group purpose="location"> | ||
2337 | <context context-type="sourcefile">../app/+login/login-routing.module.ts</context> | ||
2338 | <context context-type="linenumber">14</context> | ||
2339 | </context-group> | ||
2340 | </trans-unit> | ||
2345 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e" datatype="html"> | 2341 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e" datatype="html"> |
2346 | <source>Autoplay</source> | 2342 | <source>Autoplay</source> |
2347 | <target state="new">Autoplay</target> | 2343 | <target state="new">Autoplay</target> |
@@ -2616,7 +2612,7 @@ The link will expire within 1 hour.</target> | |||
2616 | <source>No comments.</source> | 2612 | <source>No comments.</source> |
2617 | <target state="new">No comments.</target> | 2613 | <target state="new">No comments.</target> |
2618 | 2614 | ||
2619 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 2615 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> |
2620 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> | 2616 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> |
2621 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> | 2617 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> |
2622 | <target state="new"> | 2618 | <target state="new"> |
@@ -2626,7 +2622,7 @@ The link will expire within 1 hour.</target> | |||
2626 | 2622 | ||
2627 | </target> | 2623 | </target> |
2628 | 2624 | ||
2629 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">79</context></context-group></trans-unit> | 2625 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
2630 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> | 2626 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> |
2631 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> | 2627 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> |
2632 | <target state="new"> | 2628 | <target state="new"> |
@@ -2635,14 +2631,14 @@ The link will expire within 1 hour.</target> | |||
2635 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> | 2631 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> |
2636 | </target> | 2632 | </target> |
2637 | 2633 | ||
2638 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 2634 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">87</context></context-group></trans-unit> |
2639 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> | 2635 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> |
2640 | <source>View <x id="INTERPOLATION"/> replies</source> | 2636 | <source>View <x id="INTERPOLATION"/> replies</source> |
2641 | <target state="new">View | 2637 | <target state="new">View |
2642 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies | 2638 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies |
2643 | </target> | 2639 | </target> |
2644 | 2640 | ||
2645 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">85</context></context-group></trans-unit> | 2641 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">90</context></context-group></trans-unit> |
2646 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828" datatype="html"> | 2642 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828" datatype="html"> |
2647 | <source> | 2643 | <source> |
2648 | Comments are disabled. | 2644 | Comments are disabled. |
@@ -2651,26 +2647,84 @@ The link will expire within 1 hour.</target> | |||
2651 | Comments are disabled. | 2647 | Comments are disabled. |
2652 | </target> | 2648 | </target> |
2653 | 2649 | ||
2654 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 2650 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit> |
2655 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e" datatype="html"> | 2651 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e" datatype="html"> |
2656 | <source>Add comment...</source> | 2652 | <source>Add comment...</source> |
2657 | <target state="new">Add comment...</target> | 2653 | <target state="new">Add comment...</target> |
2658 | 2654 | ||
2659 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | 2655 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit><trans-unit id="4e5254dedf0c12ce7e7c2197384fceebe3b29a2b" datatype="html"> |
2660 | <trans-unit id="8956c0f4c6974289fc63f1ab6b54f5b32ed65eeb" datatype="html"> | 2656 | <source>Markdown compatible</source><target state="new">Markdown compatible</target> |
2661 | <source> | 2657 | <context-group purpose="location"> |
2662 | Reply | 2658 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> |
2663 | </source> | 2659 | <context context-type="linenumber">13</context> |
2664 | <target state="new"> | 2660 | </context-group> |
2665 | Reply | 2661 | </trans-unit><trans-unit id="4739ffad85f09defefdb6e51b45f43b2ef7c4388" datatype="html"> |
2666 | </target> | 2662 | <source>Markdown compatible that supports:</source><target state="new">Markdown compatible that supports:</target> |
2667 | 2663 | <context-group purpose="location"> | |
2668 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 2664 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> |
2665 | <context context-type="linenumber">15</context> | ||
2666 | </context-group> | ||
2667 | </trans-unit><trans-unit id="9a53b17a021bb0677c156fd893461797fc497a10" datatype="html"> | ||
2668 | <source>Auto generated links</source><target state="new">Auto generated links</target> | ||
2669 | <context-group purpose="location"> | ||
2670 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2671 | <context context-type="linenumber">18</context> | ||
2672 | </context-group> | ||
2673 | </trans-unit><trans-unit id="664f99b8919d6dd2faa1c1f7c378aa86d1be5e8a" datatype="html"> | ||
2674 | <source>Break lines</source><target state="new">Break lines</target> | ||
2675 | <context-group purpose="location"> | ||
2676 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2677 | <context context-type="linenumber">19</context> | ||
2678 | </context-group> | ||
2679 | </trans-unit><trans-unit id="b15e7bec5c7833d2d9634946ccbed68967b1bee1" datatype="html"> | ||
2680 | <source>Lists</source><target state="new">Lists</target> | ||
2681 | <context-group purpose="location"> | ||
2682 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2683 | <context context-type="linenumber">20</context> | ||
2684 | </context-group> | ||
2685 | </trans-unit><trans-unit id="ab4426b60f13c00b61d6b714d390dc629f314980" datatype="html"> | ||
2686 | <source>Emphasis</source><target state="new">Emphasis</target> | ||
2687 | <context-group purpose="location"> | ||
2688 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2689 | <context context-type="linenumber">22</context> | ||
2690 | </context-group> | ||
2691 | </trans-unit><trans-unit id="4e13b179501d3d32721037e03b4c04acb9857c5f" datatype="html"> | ||
2692 | <source>bold</source><target state="new">bold</target> | ||
2693 | <context-group purpose="location"> | ||
2694 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2695 | <context context-type="linenumber">23</context> | ||
2696 | </context-group> | ||
2697 | </trans-unit><trans-unit id="3c12190421fbb2756e6bbead923df9ec5de8ede2" datatype="html"> | ||
2698 | <source>italic</source><target state="new">italic</target> | ||
2699 | <context-group purpose="location"> | ||
2700 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2701 | <context context-type="linenumber">23</context> | ||
2702 | </context-group> | ||
2703 | </trans-unit><trans-unit id="adb4bbdcb961b8aac8298d6cac554d9b25636b7a" datatype="html"> | ||
2704 | <source>Emoji shortcuts</source><target state="new">Emoji shortcuts</target> | ||
2705 | <context-group purpose="location"> | ||
2706 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2707 | <context context-type="linenumber">26</context> | ||
2708 | </context-group> | ||
2709 | </trans-unit><trans-unit id="b9809a21a8eb3c9db2a0282c5dd94bc221575c96" datatype="html"> | ||
2710 | <source>Emoji markup</source><target state="new">Emoji markup</target> | ||
2711 | <context-group purpose="location"> | ||
2712 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2713 | <context context-type="linenumber">30</context> | ||
2714 | </context-group> | ||
2715 | </trans-unit><trans-unit id="f37feb427aaa551edd1f22616be6464bc0d492de" datatype="html"> | ||
2716 | <source>See complete list</source><target state="new">See complete list</target> | ||
2717 | <context-group purpose="location"> | ||
2718 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2719 | <context context-type="linenumber">32</context> | ||
2720 | </context-group> | ||
2721 | </trans-unit> | ||
2722 | |||
2669 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135" datatype="html"> | 2723 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135" datatype="html"> |
2670 | <source>You are one step away from commenting</source> | 2724 | <source>You are one step away from commenting</source> |
2671 | <target state="new">You are one step away from commenting</target> | 2725 | <target state="new">You are one step away from commenting</target> |
2672 | 2726 | ||
2673 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 2727 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
2674 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> | 2728 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> |
2675 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> | 2729 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> |
2676 | <target state="new"> | 2730 | <target state="new"> |
@@ -2679,7 +2733,7 @@ The link will expire within 1 hour.</target> | |||
2679 | from within the software's interface. | 2733 | from within the software's interface. |
2680 | </target> | 2734 | </target> |
2681 | 2735 | ||
2682 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 2736 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
2683 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb" datatype="html"> | 2737 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb" datatype="html"> |
2684 | <source> | 2738 | <source> |
2685 | If you have an account on Mastodon or Pleroma, you can open it directly in their interface: | 2739 | If you have an account on Mastodon or Pleroma, you can open it directly in their interface: |
@@ -2688,12 +2742,30 @@ The link will expire within 1 hour.</target> | |||
2688 | If you have an account on Mastodon or Pleroma, you can open it directly in their interface: | 2742 | If you have an account on Mastodon or Pleroma, you can open it directly in their interface: |
2689 | </target> | 2743 | </target> |
2690 | 2744 | ||
2691 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">41</context></context-group></trans-unit> | 2745 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">65</context></context-group></trans-unit> |
2692 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> | 2746 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> |
2693 | <source>Login to comment</source> | 2747 | <source>Login to comment</source> |
2694 | <target state="new">Login to comment</target> | 2748 | <target state="new">Login to comment</target> |
2695 | 2749 | ||
2696 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">52</context></context-group></trans-unit> | 2750 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit><trans-unit id="974170f455ff5a9034d5737e84b4194c0046fc6b" datatype="html"> |
2751 | <source>Markdown Emoji List</source><target state="new">Markdown Emoji List</target> | ||
2752 | <context-group purpose="location"> | ||
2753 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2754 | <context context-type="linenumber">84</context> | ||
2755 | </context-group> | ||
2756 | </trans-unit><trans-unit id="2662644497259948010" datatype="html"> | ||
2757 | <source>Comment</source><target state="new">Comment</target> | ||
2758 | <context-group purpose="location"> | ||
2759 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2760 | <context context-type="linenumber">58</context> | ||
2761 | </context-group> | ||
2762 | </trans-unit><trans-unit id="4502286564339177240" datatype="html"> | ||
2763 | <source>Reply</source><target state="new">Reply</target> | ||
2764 | <context-group purpose="location"> | ||
2765 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2766 | <context context-type="linenumber">60</context> | ||
2767 | </context-group> | ||
2768 | </trans-unit> | ||
2697 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285" datatype="html"> | 2769 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285" datatype="html"> |
2698 | <source>Highlighted comment</source> | 2770 | <source>Highlighted comment</source> |
2699 | <target state="new">Highlighted comment</target> | 2771 | <target state="new">Highlighted comment</target> |
@@ -2708,7 +2780,7 @@ The link will expire within 1 hour.</target> | |||
2708 | <source>This comment has been deleted</source> | 2780 | <source>This comment has been deleted</source> |
2709 | <target state="new">This comment has been deleted</target> | 2781 | <target state="new">This comment has been deleted</target> |
2710 | 2782 | ||
2711 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">62</context></context-group></trans-unit> | 2783 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">61</context></context-group></trans-unit> |
2712 | <trans-unit id="9031514421077169181" datatype="html"> | 2784 | <trans-unit id="9031514421077169181" datatype="html"> |
2713 | <source>Video redundancies</source> | 2785 | <source>Video redundancies</source> |
2714 | <target state="new">Video redundancies</target> | 2786 | <target state="new">Video redundancies</target> |
@@ -3565,7 +3637,25 @@ The link will expire within 1 hour.</target> | |||
3565 | <target state="new">No account found.</target> | 3637 | <target state="new">No account found.</target> |
3566 | 3638 | ||
3567 | 3639 | ||
3568 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit> | 3640 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit><trans-unit id="2338185419645468935" datatype="html"> |
3641 | <source>List installed plugins</source><target state="new">List installed plugins</target> | ||
3642 | <context-group purpose="location"> | ||
3643 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3644 | <context context-type="linenumber">28</context> | ||
3645 | </context-group> | ||
3646 | </trans-unit><trans-unit id="8897412584195581488" datatype="html"> | ||
3647 | <source>Search plugins</source><target state="new">Search plugins</target> | ||
3648 | <context-group purpose="location"> | ||
3649 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3650 | <context context-type="linenumber">37</context> | ||
3651 | </context-group> | ||
3652 | </trans-unit><trans-unit id="4994333937800672218" datatype="html"> | ||
3653 | <source>Show plugin</source><target state="new">Show plugin</target> | ||
3654 | <context-group purpose="location"> | ||
3655 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3656 | <context context-type="linenumber">46</context> | ||
3657 | </context-group> | ||
3658 | </trans-unit> | ||
3569 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> | 3659 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> |
3570 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> | 3660 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> |
3571 | <target state="new">Showing | 3661 | <target state="new">Showing |
@@ -4296,7 +4386,7 @@ The link will expire within 1 hour.</target> | |||
4296 | <source>Administrator</source> | 4386 | <source>Administrator</source> |
4297 | <target state="new">Administrator</target> | 4387 | <target state="new">Administrator</target> |
4298 | 4388 | ||
4299 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">385</context></context-group></trans-unit> | 4389 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">383</context></context-group></trans-unit> |
4300 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587" datatype="html"> | 4390 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587" datatype="html"> |
4301 | <source>Admin email</source> | 4391 | <source>Admin email</source> |
4302 | <target state="new">Admin email</target> | 4392 | <target state="new">Admin email</target> |
@@ -4558,27 +4648,27 @@ The link will expire within 1 hour.</target> | |||
4558 | <source>VIDEO SETTINGS</source> | 4648 | <source>VIDEO SETTINGS</source> |
4559 | <target state="new">VIDEO SETTINGS</target> | 4649 | <target state="new">VIDEO SETTINGS</target> |
4560 | 4650 | ||
4561 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit> | 4651 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
4562 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> | 4652 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> |
4563 | <source>NOTIFICATIONS</source> | 4653 | <source>NOTIFICATIONS</source> |
4564 | <target state="new">NOTIFICATIONS</target> | 4654 | <target state="new">NOTIFICATIONS</target> |
4565 | 4655 | ||
4566 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 4656 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">37</context></context-group></trans-unit> |
4567 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> | 4657 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> |
4568 | <source>INTERFACE</source> | 4658 | <source>INTERFACE</source> |
4569 | <target state="new">INTERFACE</target> | 4659 | <target state="new">INTERFACE</target> |
4570 | 4660 | ||
4571 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 4661 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit> |
4572 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> | 4662 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> |
4573 | <source>PASSWORD</source> | 4663 | <source>PASSWORD</source> |
4574 | <target state="new">PASSWORD</target> | 4664 | <target state="new">PASSWORD</target> |
4575 | 4665 | ||
4576 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">59</context></context-group></trans-unit> | 4666 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">57</context></context-group></trans-unit> |
4577 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> | 4667 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> |
4578 | <source>EMAIL</source> | 4668 | <source>EMAIL</source> |
4579 | <target state="new">EMAIL</target> | 4669 | <target state="new">EMAIL</target> |
4580 | 4670 | ||
4581 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">69</context></context-group></trans-unit> | 4671 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">67</context></context-group></trans-unit> |
4582 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> | 4672 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> |
4583 | <source>DANGER ZONE</source> | 4673 | <source>DANGER ZONE</source> |
4584 | <target state="new">DANGER ZONE</target> | 4674 | <target state="new">DANGER ZONE</target> |
@@ -4828,7 +4918,31 @@ The link will expire within 1 hour.</target> | |||
4828 | <source>No ownership change request found.</source> | 4918 | <source>No ownership change request found.</source> |
4829 | <target state="new">No ownership change request found.</target> | 4919 | <target state="new">No ownership change request found.</target> |
4830 | 4920 | ||
4831 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit> | 4921 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit><trans-unit id="4247400351982331798" datatype="html"> |
4922 | <source>Account settings</source><target state="new">Account settings</target> | ||
4923 | <context-group purpose="location"> | ||
4924 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4925 | <context context-type="linenumber">37</context> | ||
4926 | </context-group> | ||
4927 | </trans-unit><trans-unit id="154062590416726309" datatype="html"> | ||
4928 | <source>Account playlists</source><target state="new">Account playlists</target> | ||
4929 | <context-group purpose="location"> | ||
4930 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4931 | <context context-type="linenumber">55</context> | ||
4932 | </context-group> | ||
4933 | </trans-unit><trans-unit id="6550287183367517925" datatype="html"> | ||
4934 | <source>Create new playlist</source><target state="new">Create new playlist</target> | ||
4935 | <context-group purpose="location"> | ||
4936 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4937 | <context context-type="linenumber">64</context> | ||
4938 | </context-group> | ||
4939 | </trans-unit><trans-unit id="2864486939135008600" datatype="html"> | ||
4940 | <source>Playlist elements</source><target state="new">Playlist elements</target> | ||
4941 | <context-group purpose="location"> | ||
4942 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4943 | <context context-type="linenumber">73</context> | ||
4944 | </context-group> | ||
4945 | </trans-unit> | ||
4832 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> | 4946 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> |
4833 | <source>My imports</source> | 4947 | <source>My imports</source> |
4834 | <target state="new">My imports</target> | 4948 | <target state="new">My imports</target> |
@@ -5103,7 +5217,25 @@ The link will expire within 1 hour.</target> | |||
5103 | <source>An error occurred.</source> | 5217 | <source>An error occurred.</source> |
5104 | <target state="new">An error occurred.</target> | 5218 | <target state="new">An error occurred.</target> |
5105 | 5219 | ||
5106 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 5220 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit><trans-unit id="9128669621822125729" datatype="html"> |
5221 | <source>Video channel videos</source><target state="new">Video channel videos</target> | ||
5222 | <context-group purpose="location"> | ||
5223 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5224 | <context context-type="linenumber">25</context> | ||
5225 | </context-group> | ||
5226 | </trans-unit><trans-unit id="3193822049276963401" datatype="html"> | ||
5227 | <source>Video channel playlists</source><target state="new">Video channel playlists</target> | ||
5228 | <context-group purpose="location"> | ||
5229 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5230 | <context context-type="linenumber">38</context> | ||
5231 | </context-group> | ||
5232 | </trans-unit><trans-unit id="4723526509708949088" datatype="html"> | ||
5233 | <source>About video channel</source><target state="new">About video channel</target> | ||
5234 | <context-group purpose="location"> | ||
5235 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5236 | <context context-type="linenumber">47</context> | ||
5237 | </context-group> | ||
5238 | </trans-unit> | ||
5107 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97" datatype="html"> | 5239 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97" datatype="html"> |
5108 | <source> | 5240 | <source> |
5109 | Request email for account verification | 5241 | Request email for account verification |
@@ -5226,7 +5358,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5226 | <source>Stats</source> | 5358 | <source>Stats</source> |
5227 | <target state="new">Stats</target> | 5359 | <target state="new">Stats</target> |
5228 | 5360 | ||
5229 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 5361 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
5230 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc" datatype="html"> | 5362 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc" datatype="html"> |
5231 | <source>Joined <x id="INTERPOLATION"/></source> | 5363 | <source>Joined <x id="INTERPOLATION"/></source> |
5232 | <target state="new">Joined | 5364 | <target state="new">Joined |
@@ -5679,7 +5811,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5679 | <source>This instance does not have instances followings.</source> | 5811 | <source>This instance does not have instances followings.</source> |
5680 | <target state="new">This instance does not have instances followings.</target> | 5812 | <target state="new">This instance does not have instances followings.</target> |
5681 | 5813 | ||
5682 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit> | 5814 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit><trans-unit id="4195286790385468087" datatype="html"> |
5815 | <source>About this instance</source><target state="new">About this instance</target> | ||
5816 | <context-group purpose="location"> | ||
5817 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5818 | <context context-type="linenumber">26</context> | ||
5819 | </context-group> | ||
5820 | </trans-unit><trans-unit id="8773846522957677259" datatype="html"> | ||
5821 | <source>About PeerTube</source><target state="new">About PeerTube</target> | ||
5822 | <context-group purpose="location"> | ||
5823 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5824 | <context context-type="linenumber">38</context> | ||
5825 | </context-group> | ||
5826 | </trans-unit><trans-unit id="5782088737558028158" datatype="html"> | ||
5827 | <source>About follows</source><target state="new">About follows</target> | ||
5828 | <context-group purpose="location"> | ||
5829 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5830 | <context context-type="linenumber">47</context> | ||
5831 | </context-group> | ||
5832 | </trans-unit> | ||
5683 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> | 5833 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> |
5684 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> | 5834 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> |
5685 | <target state="new">Developed with ❤ by | 5835 | <target state="new">Developed with ❤ by |
@@ -5851,6 +6001,12 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5851 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 6001 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> |
5852 | <context context-type="linenumber">1</context> | 6002 | <context context-type="linenumber">1</context> |
5853 | </context-group> | 6003 | </context-group> |
6004 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
6005 | <source>Get help</source><target state="new">Get help</target> | ||
6006 | <context-group purpose="location"> | ||
6007 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | ||
6008 | <context context-type="linenumber">16</context> | ||
6009 | </context-group> | ||
5854 | </trans-unit> | 6010 | </trans-unit> |
5855 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1" datatype="html"> | 6011 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1" datatype="html"> |
5856 | <source> | 6012 | <source> |
@@ -5985,7 +6141,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5985 | 6141 | ||
5986 | </target> | 6142 | </target> |
5987 | 6143 | ||
5988 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 6144 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit><trans-unit id="3301086086650990787" datatype="html"> |
6145 | <source>Register</source><target state="new">Register</target> | ||
6146 | <context-group purpose="location"> | ||
6147 | <context context-type="sourcefile">../app/+signup/+register/register-routing.module.ts</context> | ||
6148 | <context context-type="linenumber">14</context> | ||
6149 | </context-group> | ||
6150 | </trans-unit> | ||
5989 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> | 6151 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> |
5990 | <source> | 6152 | <source> |
5991 | Sorry, we couldn't find the page you were looking for. | 6153 | Sorry, we couldn't find the page you were looking for. |
@@ -6010,7 +6172,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6010 | <target state="new">No description</target> | 6172 | <target state="new">No description</target> |
6011 | 6173 | ||
6012 | 6174 | ||
6013 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit> | 6175 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit><trans-unit id="819067926858619041" datatype="html"> |
6176 | <source>Account videos</source><target state="new">Account videos</target> | ||
6177 | <context-group purpose="location"> | ||
6178 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6179 | <context context-type="linenumber">29</context> | ||
6180 | </context-group> | ||
6181 | </trans-unit><trans-unit id="6823616469362610020" datatype="html"> | ||
6182 | <source>Account video channels</source><target state="new">Account video channels</target> | ||
6183 | <context-group purpose="location"> | ||
6184 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6185 | <context context-type="linenumber">42</context> | ||
6186 | </context-group> | ||
6187 | </trans-unit><trans-unit id="7678273613459026643" datatype="html"> | ||
6188 | <source>About account</source><target state="new">About account</target> | ||
6189 | <context-group purpose="location"> | ||
6190 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6191 | <context context-type="linenumber">51</context> | ||
6192 | </context-group> | ||
6193 | </trans-unit> | ||
6014 | <trans-unit id="3755500631176893489" datatype="html"> | 6194 | <trans-unit id="3755500631176893489" datatype="html"> |
6015 | <source>Published <x id="PH"/> videos</source> | 6195 | <source>Published <x id="PH"/> videos</source> |
6016 | <target state="new">Published | 6196 | <target state="new">Published |
@@ -6127,7 +6307,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6127 | <source>Configuration updated.</source> | 6307 | <source>Configuration updated.</source> |
6128 | <target state="new">Configuration updated.</target> | 6308 | <target state="new">Configuration updated.</target> |
6129 | 6309 | ||
6130 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit> | 6310 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit><trans-unit id="6284468333579755406" datatype="html"> |
6311 | <source>Edit custom configuration</source><target state="new">Edit custom configuration</target> | ||
6312 | <context-group purpose="location"> | ||
6313 | <context context-type="sourcefile">../app/+admin/config/config.routes.ts</context> | ||
6314 | <context context-type="linenumber">26</context> | ||
6315 | </context-group> | ||
6316 | </trans-unit> | ||
6131 | 6317 | ||
6132 | 6318 | ||
6133 | <trans-unit id="6549061957433635758" datatype="html"> | 6319 | <trans-unit id="6549061957433635758" datatype="html"> |
@@ -6606,7 +6792,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6606 | <x id="PH"/> updated. | 6792 | <x id="PH"/> updated. |
6607 | </target> | 6793 | </target> |
6608 | 6794 | ||
6609 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 6795 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit><trans-unit id="3229595422546554334" datatype="html"> |
6796 | <source>Jobs</source><target state="new">Jobs</target> | ||
6797 | <context-group purpose="location"> | ||
6798 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6799 | <context context-type="linenumber">26</context> | ||
6800 | </context-group> | ||
6801 | </trans-unit><trans-unit id="4804785061014590286" datatype="html"> | ||
6802 | <source>Logs</source><target state="new">Logs</target> | ||
6803 | <context-group purpose="location"> | ||
6804 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6805 | <context context-type="linenumber">37</context> | ||
6806 | </context-group> | ||
6807 | </trans-unit> | ||
6610 | <trans-unit id="3150704904301058778" datatype="html"> | 6808 | <trans-unit id="3150704904301058778" datatype="html"> |
6611 | <source>The plugin index is not available. Please retry later.</source> | 6809 | <source>The plugin index is not available. Please retry later.</source> |
6612 | <target state="new">The plugin index is not available. Please retry later.</target> | 6810 | <target state="new">The plugin index is not available. Please retry later.</target> |
@@ -6720,6 +6918,18 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6720 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> | 6918 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> |
6721 | <context context-type="linenumber">86</context> | 6919 | <context context-type="linenumber">86</context> |
6722 | </context-group> | 6920 | </context-group> |
6921 | </trans-unit><trans-unit id="2903648076838460070" datatype="html"> | ||
6922 | <source>Videos blocked</source><target state="new">Videos blocked</target> | ||
6923 | <context-group purpose="location"> | ||
6924 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6925 | <context context-type="linenumber">67</context> | ||
6926 | </context-group> | ||
6927 | </trans-unit><trans-unit id="7805059636749367886" datatype="html"> | ||
6928 | <source>Muted instances</source><target state="new">Muted instances</target> | ||
6929 | <context-group purpose="location"> | ||
6930 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6931 | <context context-type="linenumber">89</context> | ||
6932 | </context-group> | ||
6723 | </trans-unit> | 6933 | </trans-unit> |
6724 | <trans-unit id="5974506725502681113" datatype="html"> | 6934 | <trans-unit id="5974506725502681113" datatype="html"> |
6725 | <source>Password changed for user <x id="PH"/>.</source> | 6935 | <source>Password changed for user <x id="PH"/>.</source> |
@@ -6732,7 +6942,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6732 | <source>Update user password</source> | 6942 | <source>Update user password</source> |
6733 | <target state="new">Update user password</target> | 6943 | <target state="new">Update user password</target> |
6734 | 6944 | ||
6735 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit> | 6945 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit><trans-unit id="177544274549739411" datatype="html"> |
6946 | <source>Following list</source><target state="new">Following list</target> | ||
6947 | <context-group purpose="location"> | ||
6948 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6949 | <context context-type="linenumber">28</context> | ||
6950 | </context-group> | ||
6951 | </trans-unit><trans-unit id="8092429110007204784" datatype="html"> | ||
6952 | <source>Followers list</source><target state="new">Followers list</target> | ||
6953 | <context-group purpose="location"> | ||
6954 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6955 | <context context-type="linenumber">37</context> | ||
6956 | </context-group> | ||
6957 | </trans-unit> | ||
6736 | <trans-unit id="780323526182667308" datatype="html"> | 6958 | <trans-unit id="780323526182667308" datatype="html"> |
6737 | <source>User <x id="PH"/> updated.</source> | 6959 | <source>User <x id="PH"/> updated.</source> |
6738 | <target state="new">User | 6960 | <target state="new">User |
@@ -6751,7 +6973,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6751 | <x id="PH"/>. | 6973 | <x id="PH"/>. |
6752 | </target> | 6974 | </target> |
6753 | 6975 | ||
6754 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="8564701209009684429" datatype="html"> | 6976 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="7483807629538115183" datatype="html"> |
6977 | <source>Users list</source><target state="new">Users list</target> | ||
6978 | <context-group purpose="location"> | ||
6979 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6980 | <context context-type="linenumber">27</context> | ||
6981 | </context-group> | ||
6982 | </trans-unit><trans-unit id="1525334987774465166" datatype="html"> | ||
6983 | <source>Create a user</source><target state="new">Create a user</target> | ||
6984 | <context-group purpose="location"> | ||
6985 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6986 | <context context-type="linenumber">36</context> | ||
6987 | </context-group> | ||
6988 | </trans-unit><trans-unit id="5552039423287890133" datatype="html"> | ||
6989 | <source>Update a user</source><target state="new">Update a user</target> | ||
6990 | <context-group purpose="location"> | ||
6991 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6992 | <context context-type="linenumber">48</context> | ||
6993 | </context-group> | ||
6994 | </trans-unit><trans-unit id="8564701209009684429" datatype="html"> | ||
6755 | <source>Federation</source><target state="new">Federation</target> | 6995 | <source>Federation</source><target state="new">Federation</target> |
6756 | <context-group purpose="location"> | 6996 | <context-group purpose="location"> |
6757 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> | 6997 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> |
@@ -7105,7 +7345,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7105 | <source>Views for the day</source> | 7345 | <source>Views for the day</source> |
7106 | <target state="new">Views for the day</target> | 7346 | <target state="new">Views for the day</target> |
7107 | 7347 | ||
7108 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit> | 7348 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit><trans-unit id="4707367314920217630" datatype="html"> |
7349 | <source>Create new video channel</source><target state="new">Create new video channel</target> | ||
7350 | <context-group purpose="location"> | ||
7351 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7352 | <context context-type="linenumber">22</context> | ||
7353 | </context-group> | ||
7354 | </trans-unit><trans-unit id="6059091237492573541" datatype="html"> | ||
7355 | <source>Update video channel</source><target state="new">Update video channel</target> | ||
7356 | <context-group purpose="location"> | ||
7357 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7358 | <context context-type="linenumber">31</context> | ||
7359 | </context-group> | ||
7360 | </trans-unit><trans-unit id="6595008830732269870" datatype="html"> | ||
7361 | <source>Not found</source><target state="new">Not found</target> | ||
7362 | <context-group purpose="location"> | ||
7363 | <context context-type="sourcefile">../app/+page-not-found/page-not-found-routing.module.ts</context> | ||
7364 | <context context-type="linenumber">13</context> | ||
7365 | </context-group> | ||
7366 | </trans-unit> | ||
7109 | <trans-unit id="5032453707232754344" datatype="html"> | 7367 | <trans-unit id="5032453707232754344" datatype="html"> |
7110 | <source>Playlist <x id="PH"/> created.</source> | 7368 | <source>Playlist <x id="PH"/> created.</source> |
7111 | <target state="new">Playlist | 7369 | <target state="new">Playlist |
@@ -7123,7 +7381,31 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7123 | <source>Update playlist</source> | 7381 | <source>Update playlist</source> |
7124 | <target state="new">Update playlist</target> | 7382 | <target state="new">Update playlist</target> |
7125 | 7383 | ||
7126 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-video-playlists/my-account-video-playlist-elements.component.ts</context><context context-type="linenumber">48</context></context-group></trans-unit> | 7384 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">82</context></context-group></trans-unit><trans-unit id="3410331549417637431" datatype="html"> |
7385 | <source>Account video imports</source><target state="new">Account video imports</target> | ||
7386 | <context-group purpose="location"> | ||
7387 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7388 | <context context-type="linenumber">105</context> | ||
7389 | </context-group> | ||
7390 | </trans-unit><trans-unit id="4434998055872154420" datatype="html"> | ||
7391 | <source>Account subscriptions</source><target state="new">Account subscriptions</target> | ||
7392 | <context-group purpose="location"> | ||
7393 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7394 | <context context-type="linenumber">114</context> | ||
7395 | </context-group> | ||
7396 | </trans-unit><trans-unit id="6019411775996586321" datatype="html"> | ||
7397 | <source>Videos history</source><target state="new">Videos history</target> | ||
7398 | <context-group purpose="location"> | ||
7399 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7400 | <context context-type="linenumber">150</context> | ||
7401 | </context-group> | ||
7402 | </trans-unit><trans-unit id="5851560788527570644" datatype="html"> | ||
7403 | <source>Notifications</source><target state="new">Notifications</target> | ||
7404 | <context-group purpose="location"> | ||
7405 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7406 | <context context-type="linenumber">163</context> | ||
7407 | </context-group> | ||
7408 | </trans-unit> | ||
7127 | <trans-unit id="104404386496394770" datatype="html"> | 7409 | <trans-unit id="104404386496394770" datatype="html"> |
7128 | <source>Delete playlist</source> | 7410 | <source>Delete playlist</source> |
7129 | <target state="new">Delete playlist</target> | 7411 | <target state="new">Delete playlist</target> |
@@ -7277,7 +7559,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7277 | <x id="PH"/>. | 7559 | <x id="PH"/>. |
7278 | </target> | 7560 | </target> |
7279 | 7561 | ||
7280 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit> | 7562 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit><trans-unit id="8231550792139699065" datatype="html"> |
7563 | <source>Verify account email</source><target state="new">Verify account email</target> | ||
7564 | <context-group purpose="location"> | ||
7565 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7566 | <context context-type="linenumber">17</context> | ||
7567 | </context-group> | ||
7568 | </trans-unit><trans-unit id="4997281272800290390" datatype="html"> | ||
7569 | <source>Verify account ask send email</source><target state="new">Verify account ask send email</target> | ||
7570 | <context-group purpose="location"> | ||
7571 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7572 | <context context-type="linenumber">26</context> | ||
7573 | </context-group> | ||
7574 | </trans-unit> | ||
7281 | <trans-unit id="4180693983967989981" datatype="html"> | 7575 | <trans-unit id="4180693983967989981" datatype="html"> |
7282 | <source>Unable to find user id or verification string.</source> | 7576 | <source>Unable to find user id or verification string.</source> |
7283 | <target state="new">Unable to find user id or verification string.</target> | 7577 | <target state="new">Unable to find user id or verification string.</target> |
@@ -7402,27 +7696,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7402 | <source>any language</source> | 7696 | <source>any language</source> |
7403 | <target state="new">any language</target> | 7697 | <target state="new">any language</target> |
7404 | 7698 | ||
7405 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">202</context></context-group></trans-unit> | 7699 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">229</context></context-group></trans-unit> |
7406 | <trans-unit id="5633144232269377096" datatype="html"> | 7700 | <trans-unit id="5633144232269377096" datatype="html"> |
7407 | <source>hide</source> | 7701 | <source>hide</source> |
7408 | <target state="new">hide</target> | 7702 | <target state="new">hide</target> |
7409 | 7703 | ||
7410 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">118</context></context-group></trans-unit> | 7704 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> |
7411 | <trans-unit id="8603861867909474404" datatype="html"> | 7705 | <trans-unit id="8603861867909474404" datatype="html"> |
7412 | <source>blur</source> | 7706 | <source>blur</source> |
7413 | <target state="new">blur</target> | 7707 | <target state="new">blur</target> |
7414 | 7708 | ||
7415 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> | 7709 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> |
7416 | <trans-unit id="4534458451100881847" datatype="html"> | 7710 | <trans-unit id="4534458451100881847" datatype="html"> |
7417 | <source>display</source> | 7711 | <source>display</source> |
7418 | <target state="new">display</target> | 7712 | <target state="new">display</target> |
7419 | 7713 | ||
7420 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> | 7714 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">127</context></context-group></trans-unit> |
7421 | <trans-unit id="4467323362722952678" datatype="html"> | 7715 | <trans-unit id="4467323362722952678" datatype="html"> |
7422 | <source>Unknown</source> | 7716 | <source>Unknown</source> |
7423 | <target state="new">Unknown</target> | 7717 | <target state="new">Unknown</target> |
7424 | 7718 | ||
7425 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">190</context></context-group></trans-unit> | 7719 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">193</context></context-group></trans-unit> |
7426 | <trans-unit id="8781423666414310853" datatype="html"> | 7720 | <trans-unit id="8781423666414310853" datatype="html"> |
7427 | <source>Your password has been successfully reset!</source> | 7721 | <source>Your password has been successfully reset!</source> |
7428 | <target state="new">Your password has been successfully reset!</target> | 7722 | <target state="new">Your password has been successfully reset!</target> |
@@ -8542,27 +8836,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8542 | <source>Emphasis</source> | 8836 | <source>Emphasis</source> |
8543 | <target state="new">Emphasis</target> | 8837 | <target state="new">Emphasis</target> |
8544 | 8838 | ||
8545 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">77</context></context-group></trans-unit> | 8839 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> |
8546 | <trans-unit id="7565716024468232322" datatype="html"> | 8840 | <trans-unit id="7565716024468232322" datatype="html"> |
8547 | <source>Links</source> | 8841 | <source>Links</source> |
8548 | <target state="new">Links</target> | 8842 | <target state="new">Links</target> |
8549 | 8843 | ||
8550 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">78</context></context-group></trans-unit> | 8844 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> |
8551 | <trans-unit id="7838476952710404110" datatype="html"> | 8845 | <trans-unit id="7838476952710404110" datatype="html"> |
8552 | <source>New lines</source> | 8846 | <source>New lines</source> |
8553 | <target state="new">New lines</target> | 8847 | <target state="new">New lines</target> |
8554 | 8848 | ||
8555 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 8849 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">83</context></context-group></trans-unit> |
8556 | <trans-unit id="8756167649220050929" datatype="html"> | 8850 | <trans-unit id="8756167649220050929" datatype="html"> |
8557 | <source>Lists</source> | 8851 | <source>Lists</source> |
8558 | <target state="new">Lists</target> | 8852 | <target state="new">Lists</target> |
8559 | 8853 | ||
8560 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">80</context></context-group></trans-unit> | 8854 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">84</context></context-group></trans-unit> |
8561 | <trans-unit id="414887388288176527" datatype="html"> | 8855 | <trans-unit id="414887388288176527" datatype="html"> |
8562 | <source>Images</source> | 8856 | <source>Images</source> |
8563 | <target state="new">Images</target> | 8857 | <target state="new">Images</target> |
8564 | 8858 | ||
8565 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> | 8859 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">85</context></context-group></trans-unit> |
8566 | <trans-unit id="5708680277917691451" datatype="html"> | 8860 | <trans-unit id="5708680277917691451" datatype="html"> |
8567 | <source> | 8861 | <source> |
8568 | <x id="PH"/> users banned. | 8862 | <x id="PH"/> users banned. |
@@ -8958,7 +9252,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8958 | <source>Moderator</source> | 9252 | <source>Moderator</source> |
8959 | <target state="new">Moderator</target> | 9253 | <target state="new">Moderator</target> |
8960 | 9254 | ||
8961 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">386</context></context-group></trans-unit> | 9255 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">384</context></context-group></trans-unit> |
8962 | <trans-unit id="3723085768598852106" datatype="html"> | 9256 | <trans-unit id="3723085768598852106" datatype="html"> |
8963 | <source>Video removed from | 9257 | <source>Video removed from |
8964 | <x id="PH"/> | 9258 | <x id="PH"/> |
@@ -9026,7 +9320,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9026 | <source>Do you really want to delete this comment?</source> | 9320 | <source>Do you really want to delete this comment?</source> |
9027 | <target state="new">Do you really want to delete this comment?</target> | 9321 | <target state="new">Do you really want to delete this comment?</target> |
9028 | 9322 | ||
9029 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">434</context></context-group></trans-unit> | 9323 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">166</context></context-group></trans-unit> |
9030 | <trans-unit id="7837272126865175984" datatype="html"> | 9324 | <trans-unit id="7837272126865175984" datatype="html"> |
9031 | <source>Comment deleted.</source> | 9325 | <source>Comment deleted.</source> |
9032 | <target state="new">Comment deleted.</target> | 9326 | <target state="new">Comment deleted.</target> |
@@ -9138,9 +9432,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9138 | 9432 | ||
9139 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> | 9433 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> |
9140 | <source>Report</source><target state="new">Report</target> | 9434 | <source>Report</source><target state="new">Report</target> |
9435 | |||
9436 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="4814285799071780083" datatype="html"> | ||
9437 | <source>Remove</source><target state="new">Remove</target> | ||
9141 | <context-group purpose="location"> | 9438 | <context-group purpose="location"> |
9142 | <context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> | 9439 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> |
9143 | <context context-type="linenumber">286</context> | 9440 | <context context-type="linenumber">179</context> |
9441 | </context-group> | ||
9442 | </trans-unit><trans-unit id="6871668720687277843" datatype="html"> | ||
9443 | <source>Remove & re-draft</source><target state="new">Remove & re-draft</target> | ||
9444 | <context-group purpose="location"> | ||
9445 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> | ||
9446 | <context context-type="linenumber">187</context> | ||
9144 | </context-group> | 9447 | </context-group> |
9145 | </trans-unit> | 9448 | </trans-unit> |
9146 | <trans-unit id="4903651219400691248" datatype="html"> | 9449 | <trans-unit id="4903651219400691248" datatype="html"> |
@@ -9242,22 +9545,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9242 | <source>Only I can see this video</source> | 9545 | <source>Only I can see this video</source> |
9243 | <target state="new">Only I can see this video</target> | 9546 | <target state="new">Only I can see this video</target> |
9244 | 9547 | ||
9245 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">340</context></context-group></trans-unit> | 9548 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">341</context></context-group></trans-unit> |
9246 | <trans-unit id="6767380569816110388" datatype="html"> | 9549 | <trans-unit id="6767380569816110388" datatype="html"> |
9247 | <source>Only shareable via a private link</source> | 9550 | <source>Only shareable via a private link</source> |
9248 | <target state="new">Only shareable via a private link</target> | 9551 | <target state="new">Only shareable via a private link</target> |
9249 | 9552 | ||
9250 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">344</context></context-group></trans-unit> | 9553 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">345</context></context-group></trans-unit> |
9251 | <trans-unit id="6828965264297239528" datatype="html"> | 9554 | <trans-unit id="6828965264297239528" datatype="html"> |
9252 | <source>Anyone can see this video</source> | 9555 | <source>Anyone can see this video</source> |
9253 | <target state="new">Anyone can see this video</target> | 9556 | <target state="new">Anyone can see this video</target> |
9254 | 9557 | ||
9255 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">348</context></context-group></trans-unit> | 9558 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">349</context></context-group></trans-unit> |
9256 | <trans-unit id="1425933035739773115" datatype="html"> | 9559 | <trans-unit id="1425933035739773115" datatype="html"> |
9257 | <source>Only users of this instance can see this video</source> | 9560 | <source>Only users of this instance can see this video</source> |
9258 | <target state="new">Only users of this instance can see this video</target> | 9561 | <target state="new">Only users of this instance can see this video</target> |
9259 | 9562 | ||
9260 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">352</context></context-group></trans-unit> | 9563 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">353</context></context-group></trans-unit> |
9261 | <trans-unit id="5210096066382592800" datatype="html"> | 9564 | <trans-unit id="5210096066382592800" datatype="html"> |
9262 | <source>Video to import updated.</source> | 9565 | <source>Video to import updated.</source> |
9263 | <target state="new">Video to import updated.</target> | 9566 | <target state="new">Video to import updated.</target> |
@@ -9337,17 +9640,29 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9337 | <target state="new">Report comment</target> | 9640 | <target state="new">Report comment</target> |
9338 | 9641 | ||
9339 | 9642 | ||
9340 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 9643 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/report-modals/comment-report.component.ts</context><context context-type="linenumber">51</context></context-group></trans-unit> |
9341 | <trans-unit id="3691787517663044217" datatype="html"> | 9644 | <trans-unit id="3691787517663044217" datatype="html"> |
9342 | <source> The deletion will be sent to remote instances so they can reflect the change.</source> | 9645 | <source> The deletion will be sent to remote instances so they can reflect the change.</source> |
9343 | <target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> | 9646 | <target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> |
9344 | 9647 | ||
9345 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">163</context></context-group></trans-unit> | 9648 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">169</context></context-group></trans-unit> |
9346 | <trans-unit id="7321800851971795962" datatype="html"> | 9649 | <trans-unit id="7321800851971795962" datatype="html"> |
9347 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source> | 9650 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source> |
9348 | <target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> | 9651 | <target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> |
9349 | 9652 | ||
9350 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">165</context></context-group></trans-unit> | 9653 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="5964038603724691720" datatype="html"> |
9654 | <source>Delete and re-draft</source><target state="new">Delete and re-draft</target> | ||
9655 | <context-group purpose="location"> | ||
9656 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | ||
9657 | <context context-type="linenumber">197</context> | ||
9658 | </context-group> | ||
9659 | </trans-unit><trans-unit id="7163633882758007711" datatype="html"> | ||
9660 | <source>Do you really want to delete and re-draft this comment?</source><target state="new">Do you really want to delete and re-draft this comment?</target> | ||
9661 | <context-group purpose="location"> | ||
9662 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | ||
9663 | <context context-type="linenumber">197</context> | ||
9664 | </context-group> | ||
9665 | </trans-unit> | ||
9351 | <trans-unit id="6775540171466219199" datatype="html"> | 9666 | <trans-unit id="6775540171466219199" datatype="html"> |
9352 | <source>Stop autoplaying next video</source> | 9667 | <source>Stop autoplaying next video</source> |
9353 | <target state="new">Stop autoplaying next video</target> | 9668 | <target state="new">Stop autoplaying next video</target> |
@@ -9509,6 +9824,36 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9509 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> | 9824 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> |
9510 | <context context-type="linenumber">36</context> | 9825 | <context context-type="linenumber">36</context> |
9511 | </context-group> | 9826 | </context-group> |
9827 | </trans-unit><trans-unit id="4668975178372693951" datatype="html"> | ||
9828 | <source>Discover videos</source><target state="new">Discover videos</target> | ||
9829 | <context-group purpose="location"> | ||
9830 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9831 | <context context-type="linenumber">23</context> | ||
9832 | </context-group> | ||
9833 | </trans-unit><trans-unit id="8067135025051844577" datatype="html"> | ||
9834 | <source>Trending videos</source><target state="new">Trending videos</target> | ||
9835 | <context-group purpose="location"> | ||
9836 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9837 | <context context-type="linenumber">32</context> | ||
9838 | </context-group> | ||
9839 | </trans-unit><trans-unit id="664221386829541948" datatype="html"> | ||
9840 | <source>Recently added videos</source><target state="new">Recently added videos</target> | ||
9841 | <context-group purpose="location"> | ||
9842 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9843 | <context context-type="linenumber">58</context> | ||
9844 | </context-group> | ||
9845 | </trans-unit><trans-unit id="8212906256415538361" datatype="html"> | ||
9846 | <source>Upload a video</source><target state="new">Upload a video</target> | ||
9847 | <context-group purpose="location"> | ||
9848 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9849 | <context context-type="linenumber">97</context> | ||
9850 | </context-group> | ||
9851 | </trans-unit><trans-unit id="7590784934397800835" datatype="html"> | ||
9852 | <source>Edit a video</source><target state="new">Edit a video</target> | ||
9853 | <context-group purpose="location"> | ||
9854 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9855 | <context context-type="linenumber">106</context> | ||
9856 | </context-group> | ||
9512 | </trans-unit> | 9857 | </trans-unit> |
9513 | </body> | 9858 | </body> |
9514 | </file> | 9859 | </file> |
diff --git a/client/src/locale/angular.nl-NL.xlf b/client/src/locale/angular.nl-NL.xlf index 2c9a24387..95b8b1fb7 100644 --- a/client/src/locale/angular.nl-NL.xlf +++ b/client/src/locale/angular.nl-NL.xlf | |||
@@ -305,7 +305,7 @@ | |||
305 | <target>Opties</target> | 305 | <target>Opties</target> |
306 | 306 | ||
307 | 307 | ||
308 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 308 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">48</context></context-group></trans-unit> |
309 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d"> | 309 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d"> |
310 | <source>Start at</source> | 310 | <source>Start at</source> |
311 | <target>Beginnen bij</target> | 311 | <target>Beginnen bij</target> |
@@ -436,7 +436,7 @@ | |||
436 | <target> | 436 | <target> |
437 | Annuleren</target> | 437 | Annuleren</target> |
438 | 438 | ||
439 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> | 439 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit> |
440 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd"> | 440 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd"> |
441 | <source>Download</source> | 441 | <source>Download</source> |
442 | <target>Downloaden</target> | 442 | <target>Downloaden</target> |
@@ -555,7 +555,7 @@ Annuleren</target> | |||
555 | 555 | ||
556 | 556 | ||
557 | 557 | ||
558 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 558 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
559 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc"> | 559 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc"> |
560 | <source>Edit starts/stops at</source> | 560 | <source>Edit starts/stops at</source> |
561 | <target>Bewerk beginnen/stoppen bij</target> | 561 | <target>Bewerk beginnen/stoppen bij</target> |
@@ -595,7 +595,7 @@ Annuleren</target> | |||
595 | 595 | ||
596 | 596 | ||
597 | 597 | ||
598 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> | 598 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
599 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> | 599 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> |
600 | <source>Edit</source> | 600 | <source>Edit</source> |
601 | <target>Bewerken</target> | 601 | <target>Bewerken</target> |
@@ -620,17 +620,10 @@ Annuleren</target> | |||
620 | <target>Volledige voorvertoning</target> | 620 | <target>Volledige voorvertoning</target> |
621 | 621 | ||
622 | <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></trans-unit> | 622 | <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></trans-unit> |
623 | <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f"> | 623 | <trans-unit id="8644431249513874405" datatype="html"> |
624 | <source>Get help</source> | ||
625 | <target>Hulp</target> | ||
626 | |||
627 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit><trans-unit id="8644431249513874405" datatype="html"> | ||
628 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> | 624 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> |
629 | <context-group purpose="location"> | 625 | |
630 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 626 | <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></trans-unit> |
631 | <context context-type="linenumber">71</context> | ||
632 | </context-group> | ||
633 | </trans-unit> | ||
634 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> | 627 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> |
635 | <source>Recommended</source> | 628 | <source>Recommended</source> |
636 | <target state="new">Recommended</target> | 629 | <target state="new">Recommended</target> |
@@ -670,7 +663,7 @@ Annuleren</target> | |||
670 | <source>PROFILE SETTINGS</source> | 663 | <source>PROFILE SETTINGS</source> |
671 | <target state="new">PROFILE SETTINGS</target> | 664 | <target state="new">PROFILE SETTINGS</target> |
672 | 665 | ||
673 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 666 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">12</context></context-group></trans-unit> |
674 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3"> | 667 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3"> |
675 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> | 668 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> |
676 | <target> | 669 | <target> |
@@ -842,11 +835,8 @@ Oneindig | |||
842 | 835 | ||
843 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> | 836 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> |
844 | <source>User</source><target state="new">User</target> | 837 | <source>User</source><target state="new">User</target> |
845 | <context-group purpose="location"> | 838 | |
846 | <context context-type="sourcefile">../app/core/users/user.service.ts</context> | 839 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit> |
847 | <context context-type="linenumber">384</context> | ||
848 | </context-group> | ||
849 | </trans-unit> | ||
850 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0"> | 840 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0"> |
851 | <source>Ban</source> | 841 | <source>Ban</source> |
852 | <target>Verbannen</target> | 842 | <target>Verbannen</target> |
@@ -1332,89 +1322,89 @@ Geen resultaten gevonden</target> | |||
1332 | <source>Account settings</source> | 1322 | <source>Account settings</source> |
1333 | <target state="new">Account settings</target> | 1323 | <target state="new">Account settings</target> |
1334 | 1324 | ||
1335 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 1325 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
1336 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> | 1326 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> |
1337 | <source>Channels settings</source> | 1327 | <source>Channels settings</source> |
1338 | <target state="new">Channels settings</target> | 1328 | <target state="new">Channels settings</target> |
1339 | 1329 | ||
1340 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 1330 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> |
1341 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> | 1331 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> |
1342 | <source>Interface:</source> | 1332 | <source>Interface:</source> |
1343 | <target state="new">Interface:</target> | 1333 | <target state="new">Interface:</target> |
1344 | 1334 | ||
1345 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 1335 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1346 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> | 1336 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> |
1347 | <source>Videos:</source> | 1337 | <source>Videos:</source> |
1348 | <target state="new">Videos:</target> | 1338 | <target state="new">Videos:</target> |
1349 | 1339 | ||
1350 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 1340 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> |
1351 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> | 1341 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> |
1352 | <source>Sensitive:</source> | 1342 | <source>Sensitive:</source> |
1353 | <target state="new">Sensitive:</target> | 1343 | <target state="new">Sensitive:</target> |
1354 | 1344 | ||
1355 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 1345 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">54</context></context-group></trans-unit> |
1356 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1346 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> |
1357 | <source>Interface: <x id="INTERPOLATION"/></source> | 1347 | <source>Interface: <x id="INTERPOLATION"/></source> |
1358 | <target state="new">Interface: | 1348 | <target state="new">Interface: |
1359 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> | 1349 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> |
1360 | </target> | 1350 | </target> |
1361 | 1351 | ||
1362 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">156</context></context-group></trans-unit> | 1352 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> |
1363 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1353 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1364 | <source>Help share videos</source> | 1354 | <source>Help share videos</source> |
1365 | <target state="new">Help share videos</target> | 1355 | <target state="new">Help share videos</target> |
1366 | 1356 | ||
1367 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> | 1357 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
1368 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> | 1358 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> |
1369 | <source>More account settings</source> | 1359 | <source>More account settings</source> |
1370 | <target state="new">More account settings</target> | 1360 | <target state="new">More account settings</target> |
1371 | 1361 | ||
1372 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> | 1362 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> |
1373 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> | 1363 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> |
1374 | <source>Keyboard shortcuts</source> | 1364 | <source>Keyboard shortcuts</source> |
1375 | <target state="new">Keyboard shortcuts</target> | 1365 | <target state="new">Keyboard shortcuts</target> |
1376 | 1366 | ||
1377 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 1367 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">72</context></context-group></trans-unit> |
1378 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> | 1368 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> |
1379 | <source>Help</source> | 1369 | <source>Help</source> |
1380 | <target state="new">Help</target> | 1370 | <target state="new">Help</target> |
1381 | 1371 | ||
1382 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1372 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1383 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> | 1373 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> |
1384 | <source>Get help using PeerTube</source> | 1374 | <source>Get help using PeerTube</source> |
1385 | <target state="new">Get help using PeerTube</target> | 1375 | <target state="new">Get help using PeerTube</target> |
1386 | 1376 | ||
1387 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">161</context></context-group></trans-unit> | 1377 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">167</context></context-group></trans-unit> |
1388 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> | 1378 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> |
1389 | <source>Shortcuts</source> | 1379 | <source>Shortcuts</source> |
1390 | <target state="new">Shortcuts</target> | 1380 | <target state="new">Shortcuts</target> |
1391 | 1381 | ||
1392 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1382 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1393 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> | 1383 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> |
1394 | <source>powered by PeerTube</source> | 1384 | <source>powered by PeerTube</source> |
1395 | <target state="new">powered by PeerTube</target> | 1385 | <target state="new">powered by PeerTube</target> |
1396 | 1386 | ||
1397 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | 1387 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">177</context></context-group></trans-unit> |
1398 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> | 1388 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> |
1399 | <source>powered by PeerTube - CopyLeft 2015-2020</source> | 1389 | <source>powered by PeerTube - CopyLeft 2015-2020</source> |
1400 | <target state="new">powered by PeerTube - CopyLeft 2015-2020</target> | 1390 | <target state="new">powered by PeerTube - CopyLeft 2015-2020</target> |
1401 | 1391 | ||
1402 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> | 1392 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">176</context></context-group></trans-unit> |
1403 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344"> | 1393 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344"> |
1404 | <source>Log out</source> | 1394 | <source>Log out</source> |
1405 | <target>Uitloggen</target> | 1395 | <target>Uitloggen</target> |
1406 | 1396 | ||
1407 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">70</context></context-group></trans-unit> | 1397 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit> |
1408 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> | 1398 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> |
1409 | <source>Create an account</source> | 1399 | <source>Create an account</source> |
1410 | <target>Account maken</target> | 1400 | <target>Account maken</target> |
1411 | 1401 | ||
1412 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">78</context></context-group></trans-unit> | 1402 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
1413 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> | 1403 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> |
1414 | <source>MY LIBRARY</source> | 1404 | <source>MY LIBRARY</source> |
1415 | <target state="new">MY LIBRARY</target> | 1405 | <target state="new">MY LIBRARY</target> |
1416 | 1406 | ||
1417 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 1407 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">88</context></context-group></trans-unit> |
1418 | <trans-unit id="6371572688505952303"> | 1408 | <trans-unit id="6371572688505952303"> |
1419 | <source>My library</source> | 1409 | <source>My library</source> |
1420 | <target>Mijn bibliotheek</target> | 1410 | <target>Mijn bibliotheek</target> |
@@ -1454,22 +1444,22 @@ Geen resultaten gevonden</target> | |||
1454 | <source>Videos</source> | 1444 | <source>Videos</source> |
1455 | <target>Video's</target> | 1445 | <target>Video's</target> |
1456 | 1446 | ||
1457 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">86</context></context-group></trans-unit> | 1447 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">92</context></context-group></trans-unit> |
1458 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> | 1448 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> |
1459 | <source>Playlists</source> | 1449 | <source>Playlists</source> |
1460 | <target>Afspeellijsten</target> | 1450 | <target>Afspeellijsten</target> |
1461 | 1451 | ||
1462 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">91</context></context-group></trans-unit> | 1452 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">97</context></context-group></trans-unit> |
1463 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2"> | 1453 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2"> |
1464 | <source>Subscriptions</source> | 1454 | <source>Subscriptions</source> |
1465 | <target>Abonnementen</target> | 1455 | <target>Abonnementen</target> |
1466 | 1456 | ||
1467 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 1457 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">102</context></context-group></trans-unit> |
1468 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8"> | 1458 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8"> |
1469 | <source>History</source> | 1459 | <source>History</source> |
1470 | <target>Geschiedenis</target> | 1460 | <target>Geschiedenis</target> |
1471 | 1461 | ||
1472 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit> | 1462 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">107</context></context-group></trans-unit> |
1473 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> | 1463 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> |
1474 | <source>VIDEOS</source> | 1464 | <source>VIDEOS</source> |
1475 | <target state="new">VIDEOS</target> | 1465 | <target state="new">VIDEOS</target> |
@@ -1481,27 +1471,27 @@ Geen resultaten gevonden</target> | |||
1481 | <target>Ontdekken</target> | 1471 | <target>Ontdekken</target> |
1482 | 1472 | ||
1483 | 1473 | ||
1484 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">111</context></context-group></trans-unit> | 1474 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">117</context></context-group></trans-unit> |
1485 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> | 1475 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> |
1486 | <source>Trending</source> | 1476 | <source>Trending</source> |
1487 | <target>Populair</target> | 1477 | <target>Populair</target> |
1488 | 1478 | ||
1489 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">116</context></context-group></trans-unit> | 1479 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">122</context></context-group></trans-unit> |
1490 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> | 1480 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> |
1491 | <source>Most liked</source> | 1481 | <source>Most liked</source> |
1492 | <target state="new">Most liked</target> | 1482 | <target state="new">Most liked</target> |
1493 | 1483 | ||
1494 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">121</context></context-group></trans-unit> | 1484 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">127</context></context-group></trans-unit> |
1495 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> | 1485 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> |
1496 | <source>Recently added</source> | 1486 | <source>Recently added</source> |
1497 | <target>Recent toegevoegd</target> | 1487 | <target>Recent toegevoegd</target> |
1498 | 1488 | ||
1499 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">126</context></context-group></trans-unit> | 1489 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">132</context></context-group></trans-unit> |
1500 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> | 1490 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> |
1501 | <source>Administration</source> | 1491 | <source>Administration</source> |
1502 | <target>Administratie</target> | 1492 | <target>Administratie</target> |
1503 | 1493 | ||
1504 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">140</context></context-group></trans-unit> | 1494 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">146</context></context-group></trans-unit> |
1505 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> | 1495 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> |
1506 | <source>About</source> | 1496 | <source>About</source> |
1507 | <target>Over</target> | 1497 | <target>Over</target> |
@@ -1512,7 +1502,7 @@ Geen resultaten gevonden</target> | |||
1512 | <source>Contact</source> | 1502 | <source>Contact</source> |
1513 | <target state="new">Contact</target> | 1503 | <target state="new">Contact</target> |
1514 | 1504 | ||
1515 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">160</context></context-group></trans-unit> | 1505 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">166</context></context-group></trans-unit> |
1516 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771"> | 1506 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771"> |
1517 | <source>View your notifications</source> | 1507 | <source>View your notifications</source> |
1518 | <target>Bekijk jouw notificaties.</target> | 1508 | <target>Bekijk jouw notificaties.</target> |
@@ -1539,7 +1529,7 @@ Geen resultaten gevonden</target> | |||
1539 | <source>See all your notifications</source> | 1529 | <source>See all your notifications</source> |
1540 | <target>Bekijk al jouw notificaties</target> | 1530 | <target>Bekijk al jouw notificaties</target> |
1541 | 1531 | ||
1542 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 1532 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">40</context></context-group></trans-unit> |
1543 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> | 1533 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> |
1544 | <source>Search videos, channels…</source> | 1534 | <source>Search videos, channels…</source> |
1545 | <target state="new">Search videos, channels…</target> | 1535 | <target state="new">Search videos, channels…</target> |
@@ -1872,22 +1862,22 @@ Dit zal een bestaande ondertiteling vervangen!</target> | |||
1872 | <source>FAQ</source> | 1862 | <source>FAQ</source> |
1873 | <target state="new">FAQ</target> | 1863 | <target state="new">FAQ</target> |
1874 | 1864 | ||
1875 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">163</context></context-group></trans-unit> | 1865 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
1876 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> | 1866 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> |
1877 | <source>Frequently asked questions about PeerTube</source> | 1867 | <source>Frequently asked questions about PeerTube</source> |
1878 | <target state="new">Frequently asked questions about PeerTube</target> | 1868 | <target state="new">Frequently asked questions about PeerTube</target> |
1879 | 1869 | ||
1880 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1870 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1881 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> | 1871 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> |
1882 | <source>API</source> | 1872 | <source>API</source> |
1883 | <target state="new">API</target> | 1873 | <target state="new">API</target> |
1884 | 1874 | ||
1885 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1875 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1886 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> | 1876 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> |
1887 | <source>API documentation</source> | 1877 | <source>API documentation</source> |
1888 | <target state="new">API documentation</target> | 1878 | <target state="new">API documentation</target> |
1889 | 1879 | ||
1890 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 1880 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
1891 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5"> | 1881 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5"> |
1892 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> | 1882 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> |
1893 | <target>Publicatie inroosteren op ( | 1883 | <target>Publicatie inroosteren op ( |
@@ -2276,7 +2266,13 @@ Je kan nu al informatie toevoegen over deze video. | |||
2276 | Less customization | 2266 | Less customization |
2277 | </target> | 2267 | </target> |
2278 | 2268 | ||
2279 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit> | 2269 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit><trans-unit id="2454050363478003966" datatype="html"> |
2270 | <source>Login</source><target state="new">Login</target> | ||
2271 | <context-group purpose="location"> | ||
2272 | <context context-type="sourcefile">../app/+login/login-routing.module.ts</context> | ||
2273 | <context context-type="linenumber">14</context> | ||
2274 | </context-group> | ||
2275 | </trans-unit> | ||
2280 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e"> | 2276 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e"> |
2281 | <source>Autoplay</source> | 2277 | <source>Autoplay</source> |
2282 | <target>Automatisch afspelen</target> | 2278 | <target>Automatisch afspelen</target> |
@@ -2541,7 +2537,7 @@ Je kan nu al informatie toevoegen over deze video. | |||
2541 | <source>No comments.</source> | 2537 | <source>No comments.</source> |
2542 | <target>Geen reacties</target> | 2538 | <target>Geen reacties</target> |
2543 | 2539 | ||
2544 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 2540 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> |
2545 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> | 2541 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> |
2546 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> | 2542 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> |
2547 | <target state="new"> | 2543 | <target state="new"> |
@@ -2551,7 +2547,7 @@ Je kan nu al informatie toevoegen over deze video. | |||
2551 | 2547 | ||
2552 | </target> | 2548 | </target> |
2553 | 2549 | ||
2554 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">79</context></context-group></trans-unit> | 2550 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
2555 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> | 2551 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> |
2556 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> | 2552 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> |
2557 | <target state="new"> | 2553 | <target state="new"> |
@@ -2560,50 +2556,116 @@ Je kan nu al informatie toevoegen over deze video. | |||
2560 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> | 2556 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> |
2561 | </target> | 2557 | </target> |
2562 | 2558 | ||
2563 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 2559 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">87</context></context-group></trans-unit> |
2564 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> | 2560 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> |
2565 | <source>View <x id="INTERPOLATION"/> replies</source> | 2561 | <source>View <x id="INTERPOLATION"/> replies</source> |
2566 | <target state="new">View | 2562 | <target state="new">View |
2567 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies | 2563 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies |
2568 | </target> | 2564 | </target> |
2569 | 2565 | ||
2570 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">85</context></context-group></trans-unit> | 2566 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">90</context></context-group></trans-unit> |
2571 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828"> | 2567 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828"> |
2572 | <source>Comments are disabled.</source> | 2568 | <source>Comments are disabled.</source> |
2573 | <target> | 2569 | <target> |
2574 | Reacties zijn uitgeschakeld. | 2570 | Reacties zijn uitgeschakeld. |
2575 | </target> | 2571 | </target> |
2576 | 2572 | ||
2577 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit><trans-unit id="3691787517663044217" datatype="html"> | 2573 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit><trans-unit id="3691787517663044217" datatype="html"> |
2578 | <source> The deletion will be sent to remote instances so they can reflect the change.</source><target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> | 2574 | <source> The deletion will be sent to remote instances so they can reflect the change.</source><target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> |
2575 | |||
2576 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">169</context></context-group></trans-unit><trans-unit id="7321800851971795962" datatype="html"> | ||
2577 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source><target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> | ||
2578 | |||
2579 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="5964038603724691720" datatype="html"> | ||
2580 | <source>Delete and re-draft</source><target state="new">Delete and re-draft</target> | ||
2579 | <context-group purpose="location"> | 2581 | <context-group purpose="location"> |
2580 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | 2582 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> |
2581 | <context context-type="linenumber">163</context> | 2583 | <context context-type="linenumber">197</context> |
2582 | </context-group> | 2584 | </context-group> |
2583 | </trans-unit><trans-unit id="7321800851971795962" datatype="html"> | 2585 | </trans-unit><trans-unit id="7163633882758007711" datatype="html"> |
2584 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source><target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> | 2586 | <source>Do you really want to delete and re-draft this comment?</source><target state="new">Do you really want to delete and re-draft this comment?</target> |
2585 | <context-group purpose="location"> | 2587 | <context-group purpose="location"> |
2586 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | 2588 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> |
2587 | <context context-type="linenumber">165</context> | 2589 | <context context-type="linenumber">197</context> |
2588 | </context-group> | 2590 | </context-group> |
2589 | </trans-unit> | 2591 | </trans-unit> |
2590 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e"> | 2592 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e"> |
2591 | <source>Add comment...</source> | 2593 | <source>Add comment...</source> |
2592 | <target>Voeg reactie toe...</target> | 2594 | <target>Voeg reactie toe...</target> |
2593 | 2595 | ||
2594 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | 2596 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit><trans-unit id="4e5254dedf0c12ce7e7c2197384fceebe3b29a2b" datatype="html"> |
2595 | <trans-unit id="8956c0f4c6974289fc63f1ab6b54f5b32ed65eeb" datatype="html"> | 2597 | <source>Markdown compatible</source><target state="new">Markdown compatible</target> |
2596 | <source>Reply</source> | 2598 | <context-group purpose="location"> |
2597 | <target state="new"> | 2599 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> |
2598 | Reply | 2600 | <context context-type="linenumber">13</context> |
2599 | </target> | 2601 | </context-group> |
2600 | 2602 | </trans-unit><trans-unit id="4739ffad85f09defefdb6e51b45f43b2ef7c4388" datatype="html"> | |
2601 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 2603 | <source>Markdown compatible that supports:</source><target state="new">Markdown compatible that supports:</target> |
2604 | <context-group purpose="location"> | ||
2605 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2606 | <context context-type="linenumber">15</context> | ||
2607 | </context-group> | ||
2608 | </trans-unit><trans-unit id="9a53b17a021bb0677c156fd893461797fc497a10" datatype="html"> | ||
2609 | <source>Auto generated links</source><target state="new">Auto generated links</target> | ||
2610 | <context-group purpose="location"> | ||
2611 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2612 | <context context-type="linenumber">18</context> | ||
2613 | </context-group> | ||
2614 | </trans-unit><trans-unit id="664f99b8919d6dd2faa1c1f7c378aa86d1be5e8a" datatype="html"> | ||
2615 | <source>Break lines</source><target state="new">Break lines</target> | ||
2616 | <context-group purpose="location"> | ||
2617 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2618 | <context context-type="linenumber">19</context> | ||
2619 | </context-group> | ||
2620 | </trans-unit><trans-unit id="b15e7bec5c7833d2d9634946ccbed68967b1bee1" datatype="html"> | ||
2621 | <source>Lists</source><target state="new">Lists</target> | ||
2622 | <context-group purpose="location"> | ||
2623 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2624 | <context context-type="linenumber">20</context> | ||
2625 | </context-group> | ||
2626 | </trans-unit><trans-unit id="ab4426b60f13c00b61d6b714d390dc629f314980" datatype="html"> | ||
2627 | <source>Emphasis</source><target state="new">Emphasis</target> | ||
2628 | <context-group purpose="location"> | ||
2629 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2630 | <context context-type="linenumber">22</context> | ||
2631 | </context-group> | ||
2632 | </trans-unit><trans-unit id="4e13b179501d3d32721037e03b4c04acb9857c5f" datatype="html"> | ||
2633 | <source>bold</source><target state="new">bold</target> | ||
2634 | <context-group purpose="location"> | ||
2635 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2636 | <context context-type="linenumber">23</context> | ||
2637 | </context-group> | ||
2638 | </trans-unit><trans-unit id="3c12190421fbb2756e6bbead923df9ec5de8ede2" datatype="html"> | ||
2639 | <source>italic</source><target state="new">italic</target> | ||
2640 | <context-group purpose="location"> | ||
2641 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2642 | <context context-type="linenumber">23</context> | ||
2643 | </context-group> | ||
2644 | </trans-unit><trans-unit id="adb4bbdcb961b8aac8298d6cac554d9b25636b7a" datatype="html"> | ||
2645 | <source>Emoji shortcuts</source><target state="new">Emoji shortcuts</target> | ||
2646 | <context-group purpose="location"> | ||
2647 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2648 | <context context-type="linenumber">26</context> | ||
2649 | </context-group> | ||
2650 | </trans-unit><trans-unit id="b9809a21a8eb3c9db2a0282c5dd94bc221575c96" datatype="html"> | ||
2651 | <source>Emoji markup</source><target state="new">Emoji markup</target> | ||
2652 | <context-group purpose="location"> | ||
2653 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2654 | <context context-type="linenumber">30</context> | ||
2655 | </context-group> | ||
2656 | </trans-unit><trans-unit id="f37feb427aaa551edd1f22616be6464bc0d492de" datatype="html"> | ||
2657 | <source>See complete list</source><target state="new">See complete list</target> | ||
2658 | <context-group purpose="location"> | ||
2659 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2660 | <context context-type="linenumber">32</context> | ||
2661 | </context-group> | ||
2662 | </trans-unit> | ||
2663 | |||
2602 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135"> | 2664 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135"> |
2603 | <source>You are one step away from commenting</source> | 2665 | <source>You are one step away from commenting</source> |
2604 | <target>Je bent een stap verwijderd van reageren</target> | 2666 | <target>Je bent een stap verwijderd van reageren</target> |
2605 | 2667 | ||
2606 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 2668 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
2607 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> | 2669 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> |
2608 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> | 2670 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> |
2609 | <target state="new"> | 2671 | <target state="new"> |
@@ -2612,18 +2674,36 @@ Je kan nu al informatie toevoegen over deze video. | |||
2612 | from within the software's interface. | 2674 | from within the software's interface. |
2613 | </target> | 2675 | </target> |
2614 | 2676 | ||
2615 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 2677 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
2616 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb"> | 2678 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb"> |
2617 | <source>If you have an account on Mastodon or Pleroma, you can open it directly in their interface:</source> | 2679 | <source>If you have an account on Mastodon or Pleroma, you can open it directly in their interface:</source> |
2618 | <target> | 2680 | <target> |
2619 | Als je een account op Mastodon of Pleroma hebt, kan je het direct openen vanuit hun interface:</target> | 2681 | Als je een account op Mastodon of Pleroma hebt, kan je het direct openen vanuit hun interface:</target> |
2620 | 2682 | ||
2621 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">41</context></context-group></trans-unit> | 2683 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">65</context></context-group></trans-unit> |
2622 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> | 2684 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> |
2623 | <source>Login to comment</source> | 2685 | <source>Login to comment</source> |
2624 | <target state="new">Login to comment</target> | 2686 | <target state="new">Login to comment</target> |
2625 | 2687 | ||
2626 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">52</context></context-group></trans-unit> | 2688 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit><trans-unit id="974170f455ff5a9034d5737e84b4194c0046fc6b" datatype="html"> |
2689 | <source>Markdown Emoji List</source><target state="new">Markdown Emoji List</target> | ||
2690 | <context-group purpose="location"> | ||
2691 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2692 | <context context-type="linenumber">84</context> | ||
2693 | </context-group> | ||
2694 | </trans-unit><trans-unit id="2662644497259948010" datatype="html"> | ||
2695 | <source>Comment</source><target state="new">Comment</target> | ||
2696 | <context-group purpose="location"> | ||
2697 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2698 | <context context-type="linenumber">58</context> | ||
2699 | </context-group> | ||
2700 | </trans-unit><trans-unit id="4502286564339177240" datatype="html"> | ||
2701 | <source>Reply</source><target state="new">Reply</target> | ||
2702 | <context-group purpose="location"> | ||
2703 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2704 | <context context-type="linenumber">60</context> | ||
2705 | </context-group> | ||
2706 | </trans-unit> | ||
2627 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285"> | 2707 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285"> |
2628 | <source>Highlighted comment</source> | 2708 | <source>Highlighted comment</source> |
2629 | <target>Belichte reactie</target> | 2709 | <target>Belichte reactie</target> |
@@ -2638,7 +2718,7 @@ Als je een account op Mastodon of Pleroma hebt, kan je het direct openen vanuit | |||
2638 | <source>This comment has been deleted</source> | 2718 | <source>This comment has been deleted</source> |
2639 | <target state="new">This comment has been deleted</target> | 2719 | <target state="new">This comment has been deleted</target> |
2640 | 2720 | ||
2641 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">62</context></context-group></trans-unit> | 2721 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">61</context></context-group></trans-unit> |
2642 | <trans-unit id="9031514421077169181" datatype="html"> | 2722 | <trans-unit id="9031514421077169181" datatype="html"> |
2643 | <source>Video redundancies</source> | 2723 | <source>Video redundancies</source> |
2644 | <target state="new">Video redundancies</target> | 2724 | <target state="new">Video redundancies</target> |
@@ -3487,7 +3567,25 @@ Als je een account op Mastodon of Pleroma hebt, kan je het direct openen vanuit | |||
3487 | <target state="new">No account found.</target> | 3567 | <target state="new">No account found.</target> |
3488 | 3568 | ||
3489 | 3569 | ||
3490 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit> | 3570 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit><trans-unit id="2338185419645468935" datatype="html"> |
3571 | <source>List installed plugins</source><target state="new">List installed plugins</target> | ||
3572 | <context-group purpose="location"> | ||
3573 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3574 | <context context-type="linenumber">28</context> | ||
3575 | </context-group> | ||
3576 | </trans-unit><trans-unit id="8897412584195581488" datatype="html"> | ||
3577 | <source>Search plugins</source><target state="new">Search plugins</target> | ||
3578 | <context-group purpose="location"> | ||
3579 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3580 | <context context-type="linenumber">37</context> | ||
3581 | </context-group> | ||
3582 | </trans-unit><trans-unit id="4994333937800672218" datatype="html"> | ||
3583 | <source>Show plugin</source><target state="new">Show plugin</target> | ||
3584 | <context-group purpose="location"> | ||
3585 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3586 | <context context-type="linenumber">46</context> | ||
3587 | </context-group> | ||
3588 | </trans-unit> | ||
3491 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> | 3589 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> |
3492 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> | 3590 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> |
3493 | <target state="new">Showing | 3591 | <target state="new">Showing |
@@ -4213,7 +4311,7 @@ Als je een account op Mastodon of Pleroma hebt, kan je het direct openen vanuit | |||
4213 | <source>Administrator</source> | 4311 | <source>Administrator</source> |
4214 | <target>Administrator</target> | 4312 | <target>Administrator</target> |
4215 | 4313 | ||
4216 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">385</context></context-group></trans-unit> | 4314 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">383</context></context-group></trans-unit> |
4217 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587"> | 4315 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587"> |
4218 | <source>Admin email</source> | 4316 | <source>Admin email</source> |
4219 | <target>E-mail van administrator</target> | 4317 | <target>E-mail van administrator</target> |
@@ -4469,27 +4567,27 @@ Als je een account op Mastodon of Pleroma hebt, kan je het direct openen vanuit | |||
4469 | <source>VIDEO SETTINGS</source> | 4567 | <source>VIDEO SETTINGS</source> |
4470 | <target state="new">VIDEO SETTINGS</target> | 4568 | <target state="new">VIDEO SETTINGS</target> |
4471 | 4569 | ||
4472 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit> | 4570 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
4473 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> | 4571 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> |
4474 | <source>NOTIFICATIONS</source> | 4572 | <source>NOTIFICATIONS</source> |
4475 | <target state="new">NOTIFICATIONS</target> | 4573 | <target state="new">NOTIFICATIONS</target> |
4476 | 4574 | ||
4477 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 4575 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">37</context></context-group></trans-unit> |
4478 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> | 4576 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> |
4479 | <source>INTERFACE</source> | 4577 | <source>INTERFACE</source> |
4480 | <target state="new">INTERFACE</target> | 4578 | <target state="new">INTERFACE</target> |
4481 | 4579 | ||
4482 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 4580 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit> |
4483 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> | 4581 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> |
4484 | <source>PASSWORD</source> | 4582 | <source>PASSWORD</source> |
4485 | <target state="new">PASSWORD</target> | 4583 | <target state="new">PASSWORD</target> |
4486 | 4584 | ||
4487 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">59</context></context-group></trans-unit> | 4585 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">57</context></context-group></trans-unit> |
4488 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> | 4586 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> |
4489 | <source>EMAIL</source> | 4587 | <source>EMAIL</source> |
4490 | <target state="new">EMAIL</target> | 4588 | <target state="new">EMAIL</target> |
4491 | 4589 | ||
4492 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">69</context></context-group></trans-unit> | 4590 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">67</context></context-group></trans-unit> |
4493 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> | 4591 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> |
4494 | <source>DANGER ZONE</source> | 4592 | <source>DANGER ZONE</source> |
4495 | <target state="new">DANGER ZONE</target> | 4593 | <target state="new">DANGER ZONE</target> |
@@ -4739,7 +4837,31 @@ Als je een account op Mastodon of Pleroma hebt, kan je het direct openen vanuit | |||
4739 | <source>No ownership change request found.</source> | 4837 | <source>No ownership change request found.</source> |
4740 | <target state="new">No ownership change request found.</target> | 4838 | <target state="new">No ownership change request found.</target> |
4741 | 4839 | ||
4742 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit> | 4840 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit><trans-unit id="4247400351982331798" datatype="html"> |
4841 | <source>Account settings</source><target state="new">Account settings</target> | ||
4842 | <context-group purpose="location"> | ||
4843 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4844 | <context context-type="linenumber">37</context> | ||
4845 | </context-group> | ||
4846 | </trans-unit><trans-unit id="154062590416726309" datatype="html"> | ||
4847 | <source>Account playlists</source><target state="new">Account playlists</target> | ||
4848 | <context-group purpose="location"> | ||
4849 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4850 | <context context-type="linenumber">55</context> | ||
4851 | </context-group> | ||
4852 | </trans-unit><trans-unit id="6550287183367517925" datatype="html"> | ||
4853 | <source>Create new playlist</source><target state="new">Create new playlist</target> | ||
4854 | <context-group purpose="location"> | ||
4855 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4856 | <context context-type="linenumber">64</context> | ||
4857 | </context-group> | ||
4858 | </trans-unit><trans-unit id="2864486939135008600" datatype="html"> | ||
4859 | <source>Playlist elements</source><target state="new">Playlist elements</target> | ||
4860 | <context-group purpose="location"> | ||
4861 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4862 | <context context-type="linenumber">73</context> | ||
4863 | </context-group> | ||
4864 | </trans-unit> | ||
4743 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> | 4865 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> |
4744 | <source>My imports</source> | 4866 | <source>My imports</source> |
4745 | <target state="new">My imports</target> | 4867 | <target state="new">My imports</target> |
@@ -5009,7 +5131,25 @@ Verifieer e-mailbevestiging van account</target> | |||
5009 | <source>An error occurred.</source> | 5131 | <source>An error occurred.</source> |
5010 | <target>Er is een probleem opgetreden.</target> | 5132 | <target>Er is een probleem opgetreden.</target> |
5011 | 5133 | ||
5012 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 5134 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit><trans-unit id="9128669621822125729" datatype="html"> |
5135 | <source>Video channel videos</source><target state="new">Video channel videos</target> | ||
5136 | <context-group purpose="location"> | ||
5137 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5138 | <context context-type="linenumber">25</context> | ||
5139 | </context-group> | ||
5140 | </trans-unit><trans-unit id="3193822049276963401" datatype="html"> | ||
5141 | <source>Video channel playlists</source><target state="new">Video channel playlists</target> | ||
5142 | <context-group purpose="location"> | ||
5143 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5144 | <context context-type="linenumber">38</context> | ||
5145 | </context-group> | ||
5146 | </trans-unit><trans-unit id="4723526509708949088" datatype="html"> | ||
5147 | <source>About video channel</source><target state="new">About video channel</target> | ||
5148 | <context-group purpose="location"> | ||
5149 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5150 | <context context-type="linenumber">47</context> | ||
5151 | </context-group> | ||
5152 | </trans-unit> | ||
5013 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97"> | 5153 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97"> |
5014 | <source>Request email for account verification</source> | 5154 | <source>Request email for account verification</source> |
5015 | <target> | 5155 | <target> |
@@ -5127,7 +5267,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5127 | <source>Stats</source> | 5267 | <source>Stats</source> |
5128 | <target>Statistieken</target> | 5268 | <target>Statistieken</target> |
5129 | 5269 | ||
5130 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 5270 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
5131 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc"> | 5271 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc"> |
5132 | <source>Joined <x id="INTERPOLATION"/></source> | 5272 | <source>Joined <x id="INTERPOLATION"/></source> |
5133 | <target>Account aangemaakt op | 5273 | <target>Account aangemaakt op |
@@ -5566,7 +5706,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5566 | <source>This instance does not have instances followings.</source> | 5706 | <source>This instance does not have instances followings.</source> |
5567 | <target state="new">This instance does not have instances followings.</target> | 5707 | <target state="new">This instance does not have instances followings.</target> |
5568 | 5708 | ||
5569 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit> | 5709 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit><trans-unit id="4195286790385468087" datatype="html"> |
5710 | <source>About this instance</source><target state="new">About this instance</target> | ||
5711 | <context-group purpose="location"> | ||
5712 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5713 | <context context-type="linenumber">26</context> | ||
5714 | </context-group> | ||
5715 | </trans-unit><trans-unit id="8773846522957677259" datatype="html"> | ||
5716 | <source>About PeerTube</source><target state="new">About PeerTube</target> | ||
5717 | <context-group purpose="location"> | ||
5718 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5719 | <context context-type="linenumber">38</context> | ||
5720 | </context-group> | ||
5721 | </trans-unit><trans-unit id="5782088737558028158" datatype="html"> | ||
5722 | <source>About follows</source><target state="new">About follows</target> | ||
5723 | <context-group purpose="location"> | ||
5724 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5725 | <context context-type="linenumber">47</context> | ||
5726 | </context-group> | ||
5727 | </trans-unit> | ||
5570 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> | 5728 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> |
5571 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> | 5729 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> |
5572 | <target state="new">Developed with ❤ by | 5730 | <target state="new">Developed with ❤ by |
@@ -5735,6 +5893,12 @@ Account aanmaken</target> | |||
5735 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 5893 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> |
5736 | <context context-type="linenumber">1</context> | 5894 | <context context-type="linenumber">1</context> |
5737 | </context-group> | 5895 | </context-group> |
5896 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
5897 | <source>Get help</source><target state="new">Get help</target> | ||
5898 | <context-group purpose="location"> | ||
5899 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | ||
5900 | <context context-type="linenumber">16</context> | ||
5901 | </context-group> | ||
5738 | </trans-unit> | 5902 | </trans-unit> |
5739 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1"> | 5903 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1"> |
5740 | <source>Create my account</source> | 5904 | <source>Create my account</source> |
@@ -5859,7 +6023,13 @@ Account aanmaken</target> | |||
5859 | 6023 | ||
5860 | </target> | 6024 | </target> |
5861 | 6025 | ||
5862 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 6026 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit><trans-unit id="3301086086650990787" datatype="html"> |
6027 | <source>Register</source><target state="new">Register</target> | ||
6028 | <context-group purpose="location"> | ||
6029 | <context context-type="sourcefile">../app/+signup/+register/register-routing.module.ts</context> | ||
6030 | <context context-type="linenumber">14</context> | ||
6031 | </context-group> | ||
6032 | </trans-unit> | ||
5863 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> | 6033 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> |
5864 | <source>Sorry, we couldn't find the page you were looking for.</source> | 6034 | <source>Sorry, we couldn't find the page you were looking for.</source> |
5865 | <target state="new"> | 6035 | <target state="new"> |
@@ -5882,7 +6052,25 @@ Account aanmaken</target> | |||
5882 | <target>Geen beschrijving</target> | 6052 | <target>Geen beschrijving</target> |
5883 | 6053 | ||
5884 | 6054 | ||
5885 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit> | 6055 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit><trans-unit id="819067926858619041" datatype="html"> |
6056 | <source>Account videos</source><target state="new">Account videos</target> | ||
6057 | <context-group purpose="location"> | ||
6058 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6059 | <context context-type="linenumber">29</context> | ||
6060 | </context-group> | ||
6061 | </trans-unit><trans-unit id="6823616469362610020" datatype="html"> | ||
6062 | <source>Account video channels</source><target state="new">Account video channels</target> | ||
6063 | <context-group purpose="location"> | ||
6064 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6065 | <context context-type="linenumber">42</context> | ||
6066 | </context-group> | ||
6067 | </trans-unit><trans-unit id="7678273613459026643" datatype="html"> | ||
6068 | <source>About account</source><target state="new">About account</target> | ||
6069 | <context-group purpose="location"> | ||
6070 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6071 | <context context-type="linenumber">51</context> | ||
6072 | </context-group> | ||
6073 | </trans-unit> | ||
5886 | <trans-unit id="3755500631176893489"> | 6074 | <trans-unit id="3755500631176893489"> |
5887 | <source>Published <x id="PH"/> videos</source> | 6075 | <source>Published <x id="PH"/> videos</source> |
5888 | <target> | 6076 | <target> |
@@ -5999,7 +6187,13 @@ Account aanmaken</target> | |||
5999 | <source>Configuration updated.</source> | 6187 | <source>Configuration updated.</source> |
6000 | <target>Configuratie bijgewerkt.</target> | 6188 | <target>Configuratie bijgewerkt.</target> |
6001 | 6189 | ||
6002 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit> | 6190 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit><trans-unit id="6284468333579755406" datatype="html"> |
6191 | <source>Edit custom configuration</source><target state="new">Edit custom configuration</target> | ||
6192 | <context-group purpose="location"> | ||
6193 | <context context-type="sourcefile">../app/+admin/config/config.routes.ts</context> | ||
6194 | <context context-type="linenumber">26</context> | ||
6195 | </context-group> | ||
6196 | </trans-unit> | ||
6003 | 6197 | ||
6004 | 6198 | ||
6005 | <trans-unit id="6549061957433635758" datatype="html"> | 6199 | <trans-unit id="6549061957433635758" datatype="html"> |
@@ -6478,7 +6672,19 @@ Account aanmaken</target> | |||
6478 | <x id="PH"/> bijgewerkt. | 6672 | <x id="PH"/> bijgewerkt. |
6479 | </target> | 6673 | </target> |
6480 | 6674 | ||
6481 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 6675 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit><trans-unit id="3229595422546554334" datatype="html"> |
6676 | <source>Jobs</source><target state="new">Jobs</target> | ||
6677 | <context-group purpose="location"> | ||
6678 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6679 | <context context-type="linenumber">26</context> | ||
6680 | </context-group> | ||
6681 | </trans-unit><trans-unit id="4804785061014590286" datatype="html"> | ||
6682 | <source>Logs</source><target state="new">Logs</target> | ||
6683 | <context-group purpose="location"> | ||
6684 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6685 | <context context-type="linenumber">37</context> | ||
6686 | </context-group> | ||
6687 | </trans-unit> | ||
6482 | <trans-unit id="3150704904301058778"> | 6688 | <trans-unit id="3150704904301058778"> |
6483 | <source>The plugin index is not available. Please retry later.</source> | 6689 | <source>The plugin index is not available. Please retry later.</source> |
6484 | <target>De plugin index is niet beschikbaar. Probeer later alstublieft weer.</target> | 6690 | <target>De plugin index is niet beschikbaar. Probeer later alstublieft weer.</target> |
@@ -6592,6 +6798,18 @@ Account aanmaken</target> | |||
6592 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> | 6798 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> |
6593 | <context context-type="linenumber">86</context> | 6799 | <context context-type="linenumber">86</context> |
6594 | </context-group> | 6800 | </context-group> |
6801 | </trans-unit><trans-unit id="2903648076838460070" datatype="html"> | ||
6802 | <source>Videos blocked</source><target state="new">Videos blocked</target> | ||
6803 | <context-group purpose="location"> | ||
6804 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6805 | <context context-type="linenumber">67</context> | ||
6806 | </context-group> | ||
6807 | </trans-unit><trans-unit id="7805059636749367886" datatype="html"> | ||
6808 | <source>Muted instances</source><target state="new">Muted instances</target> | ||
6809 | <context-group purpose="location"> | ||
6810 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6811 | <context context-type="linenumber">89</context> | ||
6812 | </context-group> | ||
6595 | </trans-unit> | 6813 | </trans-unit> |
6596 | <trans-unit id="5974506725502681113"> | 6814 | <trans-unit id="5974506725502681113"> |
6597 | <source>Password changed for user <x id="PH"/>.</source> | 6815 | <source>Password changed for user <x id="PH"/>.</source> |
@@ -6604,7 +6822,19 @@ Account aanmaken</target> | |||
6604 | <source>Update user password</source> | 6822 | <source>Update user password</source> |
6605 | <target>Update gebruikerswachtwoord</target> | 6823 | <target>Update gebruikerswachtwoord</target> |
6606 | 6824 | ||
6607 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit> | 6825 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit><trans-unit id="177544274549739411" datatype="html"> |
6826 | <source>Following list</source><target state="new">Following list</target> | ||
6827 | <context-group purpose="location"> | ||
6828 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6829 | <context context-type="linenumber">28</context> | ||
6830 | </context-group> | ||
6831 | </trans-unit><trans-unit id="8092429110007204784" datatype="html"> | ||
6832 | <source>Followers list</source><target state="new">Followers list</target> | ||
6833 | <context-group purpose="location"> | ||
6834 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6835 | <context context-type="linenumber">37</context> | ||
6836 | </context-group> | ||
6837 | </trans-unit> | ||
6608 | <trans-unit id="780323526182667308" datatype="html"> | 6838 | <trans-unit id="780323526182667308" datatype="html"> |
6609 | <source>User <x id="PH"/> updated.</source> | 6839 | <source>User <x id="PH"/> updated.</source> |
6610 | <target state="new">User | 6840 | <target state="new">User |
@@ -6623,7 +6853,25 @@ Account aanmaken</target> | |||
6623 | <x id="PH"/>. | 6853 | <x id="PH"/>. |
6624 | </target> | 6854 | </target> |
6625 | 6855 | ||
6626 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="8564701209009684429" datatype="html"> | 6856 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="7483807629538115183" datatype="html"> |
6857 | <source>Users list</source><target state="new">Users list</target> | ||
6858 | <context-group purpose="location"> | ||
6859 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6860 | <context context-type="linenumber">27</context> | ||
6861 | </context-group> | ||
6862 | </trans-unit><trans-unit id="1525334987774465166" datatype="html"> | ||
6863 | <source>Create a user</source><target state="new">Create a user</target> | ||
6864 | <context-group purpose="location"> | ||
6865 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6866 | <context context-type="linenumber">36</context> | ||
6867 | </context-group> | ||
6868 | </trans-unit><trans-unit id="5552039423287890133" datatype="html"> | ||
6869 | <source>Update a user</source><target state="new">Update a user</target> | ||
6870 | <context-group purpose="location"> | ||
6871 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6872 | <context context-type="linenumber">48</context> | ||
6873 | </context-group> | ||
6874 | </trans-unit><trans-unit id="8564701209009684429" datatype="html"> | ||
6627 | <source>Federation</source><target state="new">Federation</target> | 6875 | <source>Federation</source><target state="new">Federation</target> |
6628 | <context-group purpose="location"> | 6876 | <context-group purpose="location"> |
6629 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> | 6877 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> |
@@ -6977,7 +7225,25 @@ Account aanmaken</target> | |||
6977 | <source>Views for the day</source> | 7225 | <source>Views for the day</source> |
6978 | <target state="new">Views for the day</target> | 7226 | <target state="new">Views for the day</target> |
6979 | 7227 | ||
6980 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit> | 7228 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit><trans-unit id="4707367314920217630" datatype="html"> |
7229 | <source>Create new video channel</source><target state="new">Create new video channel</target> | ||
7230 | <context-group purpose="location"> | ||
7231 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7232 | <context context-type="linenumber">22</context> | ||
7233 | </context-group> | ||
7234 | </trans-unit><trans-unit id="6059091237492573541" datatype="html"> | ||
7235 | <source>Update video channel</source><target state="new">Update video channel</target> | ||
7236 | <context-group purpose="location"> | ||
7237 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7238 | <context context-type="linenumber">31</context> | ||
7239 | </context-group> | ||
7240 | </trans-unit><trans-unit id="6595008830732269870" datatype="html"> | ||
7241 | <source>Not found</source><target state="new">Not found</target> | ||
7242 | <context-group purpose="location"> | ||
7243 | <context context-type="sourcefile">../app/+page-not-found/page-not-found-routing.module.ts</context> | ||
7244 | <context context-type="linenumber">13</context> | ||
7245 | </context-group> | ||
7246 | </trans-unit> | ||
6981 | <trans-unit id="5032453707232754344"> | 7247 | <trans-unit id="5032453707232754344"> |
6982 | <source>Playlist <x id="PH"/> created.</source> | 7248 | <source>Playlist <x id="PH"/> created.</source> |
6983 | <target>Afspeellijst | 7249 | <target>Afspeellijst |
@@ -6995,7 +7261,31 @@ Account aanmaken</target> | |||
6995 | <source>Update playlist</source> | 7261 | <source>Update playlist</source> |
6996 | <target state="new">Update playlist</target> | 7262 | <target state="new">Update playlist</target> |
6997 | 7263 | ||
6998 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-video-playlists/my-account-video-playlist-elements.component.ts</context><context context-type="linenumber">48</context></context-group></trans-unit> | 7264 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">82</context></context-group></trans-unit><trans-unit id="3410331549417637431" datatype="html"> |
7265 | <source>Account video imports</source><target state="new">Account video imports</target> | ||
7266 | <context-group purpose="location"> | ||
7267 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7268 | <context context-type="linenumber">105</context> | ||
7269 | </context-group> | ||
7270 | </trans-unit><trans-unit id="4434998055872154420" datatype="html"> | ||
7271 | <source>Account subscriptions</source><target state="new">Account subscriptions</target> | ||
7272 | <context-group purpose="location"> | ||
7273 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7274 | <context context-type="linenumber">114</context> | ||
7275 | </context-group> | ||
7276 | </trans-unit><trans-unit id="6019411775996586321" datatype="html"> | ||
7277 | <source>Videos history</source><target state="new">Videos history</target> | ||
7278 | <context-group purpose="location"> | ||
7279 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7280 | <context context-type="linenumber">150</context> | ||
7281 | </context-group> | ||
7282 | </trans-unit><trans-unit id="5851560788527570644" datatype="html"> | ||
7283 | <source>Notifications</source><target state="new">Notifications</target> | ||
7284 | <context-group purpose="location"> | ||
7285 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7286 | <context context-type="linenumber">163</context> | ||
7287 | </context-group> | ||
7288 | </trans-unit> | ||
6999 | <trans-unit id="104404386496394770" datatype="html"> | 7289 | <trans-unit id="104404386496394770" datatype="html"> |
7000 | <source>Delete playlist</source> | 7290 | <source>Delete playlist</source> |
7001 | <target state="new">Delete playlist</target> | 7291 | <target state="new">Delete playlist</target> |
@@ -7149,7 +7439,19 @@ Account aanmaken</target> | |||
7149 | <x id="PH"/>. | 7439 | <x id="PH"/>. |
7150 | </target> | 7440 | </target> |
7151 | 7441 | ||
7152 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit> | 7442 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit><trans-unit id="8231550792139699065" datatype="html"> |
7443 | <source>Verify account email</source><target state="new">Verify account email</target> | ||
7444 | <context-group purpose="location"> | ||
7445 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7446 | <context context-type="linenumber">17</context> | ||
7447 | </context-group> | ||
7448 | </trans-unit><trans-unit id="4997281272800290390" datatype="html"> | ||
7449 | <source>Verify account ask send email</source><target state="new">Verify account ask send email</target> | ||
7450 | <context-group purpose="location"> | ||
7451 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7452 | <context context-type="linenumber">26</context> | ||
7453 | </context-group> | ||
7454 | </trans-unit> | ||
7153 | <trans-unit id="4180693983967989981"> | 7455 | <trans-unit id="4180693983967989981"> |
7154 | <source>Unable to find user id or verification string.</source> | 7456 | <source>Unable to find user id or verification string.</source> |
7155 | <target>Niet in staat om gebruikersid of verificatiestring te vinden.</target> | 7457 | <target>Niet in staat om gebruikersid of verificatiestring te vinden.</target> |
@@ -7274,27 +7576,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7274 | <source>any language</source> | 7576 | <source>any language</source> |
7275 | <target state="new">any language</target> | 7577 | <target state="new">any language</target> |
7276 | 7578 | ||
7277 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">202</context></context-group></trans-unit> | 7579 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">229</context></context-group></trans-unit> |
7278 | <trans-unit id="5633144232269377096" datatype="html"> | 7580 | <trans-unit id="5633144232269377096" datatype="html"> |
7279 | <source>hide</source> | 7581 | <source>hide</source> |
7280 | <target state="new">hide</target> | 7582 | <target state="new">hide</target> |
7281 | 7583 | ||
7282 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">118</context></context-group></trans-unit> | 7584 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> |
7283 | <trans-unit id="8603861867909474404" datatype="html"> | 7585 | <trans-unit id="8603861867909474404" datatype="html"> |
7284 | <source>blur</source> | 7586 | <source>blur</source> |
7285 | <target state="new">blur</target> | 7587 | <target state="new">blur</target> |
7286 | 7588 | ||
7287 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> | 7589 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> |
7288 | <trans-unit id="4534458451100881847" datatype="html"> | 7590 | <trans-unit id="4534458451100881847" datatype="html"> |
7289 | <source>display</source> | 7591 | <source>display</source> |
7290 | <target state="new">display</target> | 7592 | <target state="new">display</target> |
7291 | 7593 | ||
7292 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> | 7594 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">127</context></context-group></trans-unit> |
7293 | <trans-unit id="4467323362722952678" datatype="html"> | 7595 | <trans-unit id="4467323362722952678" datatype="html"> |
7294 | <source>Unknown</source> | 7596 | <source>Unknown</source> |
7295 | <target state="new">Unknown</target> | 7597 | <target state="new">Unknown</target> |
7296 | 7598 | ||
7297 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">190</context></context-group></trans-unit> | 7599 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">193</context></context-group></trans-unit> |
7298 | <trans-unit id="8781423666414310853"> | 7600 | <trans-unit id="8781423666414310853"> |
7299 | <source>Your password has been successfully reset!</source> | 7601 | <source>Your password has been successfully reset!</source> |
7300 | <target>Jouw wachtwoord is succesvol gereset!</target> | 7602 | <target>Jouw wachtwoord is succesvol gereset!</target> |
@@ -8412,27 +8714,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8412 | <source>Emphasis</source> | 8714 | <source>Emphasis</source> |
8413 | <target>Nadruk</target> | 8715 | <target>Nadruk</target> |
8414 | 8716 | ||
8415 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">77</context></context-group></trans-unit> | 8717 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> |
8416 | <trans-unit id="7565716024468232322"> | 8718 | <trans-unit id="7565716024468232322"> |
8417 | <source>Links</source> | 8719 | <source>Links</source> |
8418 | <target>Links</target> | 8720 | <target>Links</target> |
8419 | 8721 | ||
8420 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">78</context></context-group></trans-unit> | 8722 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> |
8421 | <trans-unit id="7838476952710404110"> | 8723 | <trans-unit id="7838476952710404110"> |
8422 | <source>New lines</source> | 8724 | <source>New lines</source> |
8423 | <target>Nieuwe lijnen</target> | 8725 | <target>Nieuwe lijnen</target> |
8424 | 8726 | ||
8425 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 8727 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">83</context></context-group></trans-unit> |
8426 | <trans-unit id="8756167649220050929"> | 8728 | <trans-unit id="8756167649220050929"> |
8427 | <source>Lists</source> | 8729 | <source>Lists</source> |
8428 | <target>Lijsten</target> | 8730 | <target>Lijsten</target> |
8429 | 8731 | ||
8430 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">80</context></context-group></trans-unit> | 8732 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">84</context></context-group></trans-unit> |
8431 | <trans-unit id="414887388288176527"> | 8733 | <trans-unit id="414887388288176527"> |
8432 | <source>Images</source> | 8734 | <source>Images</source> |
8433 | <target>Afbeeldingen</target> | 8735 | <target>Afbeeldingen</target> |
8434 | 8736 | ||
8435 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> | 8737 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">85</context></context-group></trans-unit> |
8436 | <trans-unit id="5708680277917691451"> | 8738 | <trans-unit id="5708680277917691451"> |
8437 | <source> | 8739 | <source> |
8438 | <x id="PH"/> users banned. | 8740 | <x id="PH"/> users banned. |
@@ -8828,7 +9130,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8828 | <source>Moderator</source> | 9130 | <source>Moderator</source> |
8829 | <target>Beheerder</target> | 9131 | <target>Beheerder</target> |
8830 | 9132 | ||
8831 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">386</context></context-group></trans-unit> | 9133 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">384</context></context-group></trans-unit> |
8832 | <trans-unit id="3723085768598852106"> | 9134 | <trans-unit id="3723085768598852106"> |
8833 | <source>Video removed from | 9135 | <source>Video removed from |
8834 | <x id="PH"/> | 9136 | <x id="PH"/> |
@@ -8901,7 +9203,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8901 | <source>Do you really want to delete this comment?</source> | 9203 | <source>Do you really want to delete this comment?</source> |
8902 | <target state="new">Do you really want to delete this comment?</target> | 9204 | <target state="new">Do you really want to delete this comment?</target> |
8903 | 9205 | ||
8904 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">434</context></context-group></trans-unit> | 9206 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">166</context></context-group></trans-unit> |
8905 | <trans-unit id="7837272126865175984" datatype="html"> | 9207 | <trans-unit id="7837272126865175984" datatype="html"> |
8906 | <source>Comment deleted.</source> | 9208 | <source>Comment deleted.</source> |
8907 | <target state="new">Comment deleted.</target> | 9209 | <target state="new">Comment deleted.</target> |
@@ -9013,9 +9315,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9013 | 9315 | ||
9014 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> | 9316 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> |
9015 | <source>Report</source><target state="new">Report</target> | 9317 | <source>Report</source><target state="new">Report</target> |
9318 | |||
9319 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="4814285799071780083" datatype="html"> | ||
9320 | <source>Remove</source><target state="new">Remove</target> | ||
9016 | <context-group purpose="location"> | 9321 | <context-group purpose="location"> |
9017 | <context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> | 9322 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> |
9018 | <context context-type="linenumber">286</context> | 9323 | <context context-type="linenumber">179</context> |
9324 | </context-group> | ||
9325 | </trans-unit><trans-unit id="6871668720687277843" datatype="html"> | ||
9326 | <source>Remove & re-draft</source><target state="new">Remove & re-draft</target> | ||
9327 | <context-group purpose="location"> | ||
9328 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> | ||
9329 | <context context-type="linenumber">187</context> | ||
9019 | </context-group> | 9330 | </context-group> |
9020 | </trans-unit> | 9331 | </trans-unit> |
9021 | <trans-unit id="4903651219400691248" datatype="html"> | 9332 | <trans-unit id="4903651219400691248" datatype="html"> |
@@ -9119,22 +9430,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9119 | <source>Only I can see this video</source> | 9430 | <source>Only I can see this video</source> |
9120 | <target>Ik kan deze video alleen zien</target> | 9431 | <target>Ik kan deze video alleen zien</target> |
9121 | 9432 | ||
9122 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">340</context></context-group></trans-unit> | 9433 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">341</context></context-group></trans-unit> |
9123 | <trans-unit id="6767380569816110388" datatype="html"> | 9434 | <trans-unit id="6767380569816110388" datatype="html"> |
9124 | <source>Only shareable via a private link</source> | 9435 | <source>Only shareable via a private link</source> |
9125 | <target state="new">Only shareable via a private link</target> | 9436 | <target state="new">Only shareable via a private link</target> |
9126 | 9437 | ||
9127 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">344</context></context-group></trans-unit> | 9438 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">345</context></context-group></trans-unit> |
9128 | <trans-unit id="6828965264297239528"> | 9439 | <trans-unit id="6828965264297239528"> |
9129 | <source>Anyone can see this video</source> | 9440 | <source>Anyone can see this video</source> |
9130 | <target>Iedereen kan deze video zien</target> | 9441 | <target>Iedereen kan deze video zien</target> |
9131 | 9442 | ||
9132 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">348</context></context-group></trans-unit> | 9443 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">349</context></context-group></trans-unit> |
9133 | <trans-unit id="1425933035739773115" datatype="html"> | 9444 | <trans-unit id="1425933035739773115" datatype="html"> |
9134 | <source>Only users of this instance can see this video</source> | 9445 | <source>Only users of this instance can see this video</source> |
9135 | <target state="new">Only users of this instance can see this video</target> | 9446 | <target state="new">Only users of this instance can see this video</target> |
9136 | 9447 | ||
9137 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">352</context></context-group></trans-unit> | 9448 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">353</context></context-group></trans-unit> |
9138 | <trans-unit id="5210096066382592800"> | 9449 | <trans-unit id="5210096066382592800"> |
9139 | <source>Video to import updated.</source> | 9450 | <source>Video to import updated.</source> |
9140 | <target>Video naar import bijgewerkt.</target> | 9451 | <target>Video naar import bijgewerkt.</target> |
@@ -9215,7 +9526,7 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9215 | <target state="new">Report comment</target> | 9526 | <target state="new">Report comment</target> |
9216 | 9527 | ||
9217 | 9528 | ||
9218 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 9529 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/report-modals/comment-report.component.ts</context><context context-type="linenumber">51</context></context-group></trans-unit> |
9219 | 9530 | ||
9220 | 9531 | ||
9221 | <trans-unit id="6775540171466219199" datatype="html"> | 9532 | <trans-unit id="6775540171466219199" datatype="html"> |
@@ -9379,6 +9690,36 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9379 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> | 9690 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> |
9380 | <context context-type="linenumber">36</context> | 9691 | <context context-type="linenumber">36</context> |
9381 | </context-group> | 9692 | </context-group> |
9693 | </trans-unit><trans-unit id="4668975178372693951" datatype="html"> | ||
9694 | <source>Discover videos</source><target state="new">Discover videos</target> | ||
9695 | <context-group purpose="location"> | ||
9696 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9697 | <context context-type="linenumber">23</context> | ||
9698 | </context-group> | ||
9699 | </trans-unit><trans-unit id="8067135025051844577" datatype="html"> | ||
9700 | <source>Trending videos</source><target state="new">Trending videos</target> | ||
9701 | <context-group purpose="location"> | ||
9702 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9703 | <context context-type="linenumber">32</context> | ||
9704 | </context-group> | ||
9705 | </trans-unit><trans-unit id="664221386829541948" datatype="html"> | ||
9706 | <source>Recently added videos</source><target state="new">Recently added videos</target> | ||
9707 | <context-group purpose="location"> | ||
9708 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9709 | <context context-type="linenumber">58</context> | ||
9710 | </context-group> | ||
9711 | </trans-unit><trans-unit id="8212906256415538361" datatype="html"> | ||
9712 | <source>Upload a video</source><target state="new">Upload a video</target> | ||
9713 | <context-group purpose="location"> | ||
9714 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9715 | <context context-type="linenumber">97</context> | ||
9716 | </context-group> | ||
9717 | </trans-unit><trans-unit id="7590784934397800835" datatype="html"> | ||
9718 | <source>Edit a video</source><target state="new">Edit a video</target> | ||
9719 | <context-group purpose="location"> | ||
9720 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9721 | <context context-type="linenumber">106</context> | ||
9722 | </context-group> | ||
9382 | </trans-unit> | 9723 | </trans-unit> |
9383 | </body> | 9724 | </body> |
9384 | </file> | 9725 | </file> |
diff --git a/client/src/locale/angular.oc.xlf b/client/src/locale/angular.oc.xlf index f0e1f9d7e..361c46caf 100644 --- a/client/src/locale/angular.oc.xlf +++ b/client/src/locale/angular.oc.xlf | |||
@@ -299,7 +299,7 @@ | |||
299 | <target>Opcions</target> | 299 | <target>Opcions</target> |
300 | 300 | ||
301 | 301 | ||
302 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 302 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">48</context></context-group></trans-unit> |
303 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d"> | 303 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d"> |
304 | <source>Start at</source> | 304 | <source>Start at</source> |
305 | <target>Debuta a</target> | 305 | <target>Debuta a</target> |
@@ -431,7 +431,7 @@ | |||
431 | Anullar | 431 | Anullar |
432 | </target> | 432 | </target> |
433 | 433 | ||
434 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> | 434 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit> |
435 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd"> | 435 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd"> |
436 | <source>Download</source> | 436 | <source>Download</source> |
437 | <target>Telecargar</target> | 437 | <target>Telecargar</target> |
@@ -550,7 +550,7 @@ | |||
550 | 550 | ||
551 | 551 | ||
552 | 552 | ||
553 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 553 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
554 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc"> | 554 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc"> |
555 | <source>Edit starts/stops at</source> | 555 | <source>Edit starts/stops at</source> |
556 | <target>Modificar la debuta/fin</target> | 556 | <target>Modificar la debuta/fin</target> |
@@ -590,7 +590,7 @@ | |||
590 | 590 | ||
591 | 591 | ||
592 | 592 | ||
593 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> | 593 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
594 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> | 594 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> |
595 | <source>Edit</source> | 595 | <source>Edit</source> |
596 | <target>Modificar</target> | 596 | <target>Modificar</target> |
@@ -615,17 +615,10 @@ | |||
615 | <target>Apercebut complèt</target> | 615 | <target>Apercebut complèt</target> |
616 | 616 | ||
617 | <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></trans-unit> | 617 | <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></trans-unit> |
618 | <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f"> | 618 | <trans-unit id="8644431249513874405" datatype="html"> |
619 | <source>Get help</source> | ||
620 | <target>Obténer d’ajuda</target> | ||
621 | |||
622 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit><trans-unit id="8644431249513874405" datatype="html"> | ||
623 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> | 619 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> |
624 | <context-group purpose="location"> | 620 | |
625 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 621 | <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></trans-unit> |
626 | <context context-type="linenumber">71</context> | ||
627 | </context-group> | ||
628 | </trans-unit> | ||
629 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> | 622 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> |
630 | <source>Recommended</source> | 623 | <source>Recommended</source> |
631 | <target state="translated">Recomandadas</target> | 624 | <target state="translated">Recomandadas</target> |
@@ -665,7 +658,7 @@ | |||
665 | <source>PROFILE SETTINGS</source> | 658 | <source>PROFILE SETTINGS</source> |
666 | <target state="new">PROFILE SETTINGS</target> | 659 | <target state="new">PROFILE SETTINGS</target> |
667 | 660 | ||
668 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 661 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">12</context></context-group></trans-unit> |
669 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3"> | 662 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3"> |
670 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> | 663 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> |
671 | <target> | 664 | <target> |
@@ -831,11 +824,8 @@ | |||
831 | 824 | ||
832 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> | 825 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> |
833 | <source>User</source><target state="new">User</target> | 826 | <source>User</source><target state="new">User</target> |
834 | <context-group purpose="location"> | 827 | |
835 | <context context-type="sourcefile">../app/core/users/user.service.ts</context> | 828 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit> |
836 | <context context-type="linenumber">384</context> | ||
837 | </context-group> | ||
838 | </trans-unit> | ||
839 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0"> | 829 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0"> |
840 | <source>Ban</source> | 830 | <source>Ban</source> |
841 | <target>Fòrabandir</target> | 831 | <target>Fòrabandir</target> |
@@ -1306,89 +1296,89 @@ The link will expire within 1 hour.</target> | |||
1306 | <source>Account settings</source> | 1296 | <source>Account settings</source> |
1307 | <target state="translated">Paramètres del compte</target> | 1297 | <target state="translated">Paramètres del compte</target> |
1308 | 1298 | ||
1309 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 1299 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
1310 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> | 1300 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> |
1311 | <source>Channels settings</source> | 1301 | <source>Channels settings</source> |
1312 | <target state="translated">Paramètres dels canals</target> | 1302 | <target state="translated">Paramètres dels canals</target> |
1313 | 1303 | ||
1314 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 1304 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> |
1315 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> | 1305 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> |
1316 | <source>Interface:</source> | 1306 | <source>Interface:</source> |
1317 | <target state="new">Interface:</target> | 1307 | <target state="new">Interface:</target> |
1318 | 1308 | ||
1319 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 1309 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1320 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> | 1310 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> |
1321 | <source>Videos:</source> | 1311 | <source>Videos:</source> |
1322 | <target state="new">Videos:</target> | 1312 | <target state="new">Videos:</target> |
1323 | 1313 | ||
1324 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 1314 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> |
1325 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> | 1315 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> |
1326 | <source>Sensitive:</source> | 1316 | <source>Sensitive:</source> |
1327 | <target state="new">Sensitive:</target> | 1317 | <target state="new">Sensitive:</target> |
1328 | 1318 | ||
1329 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 1319 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">54</context></context-group></trans-unit> |
1330 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1320 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> |
1331 | <source>Interface: <x id="INTERPOLATION"/></source> | 1321 | <source>Interface: <x id="INTERPOLATION"/></source> |
1332 | <target state="translated">Interfàcia : | 1322 | <target state="translated">Interfàcia : |
1333 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> | 1323 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> |
1334 | </target> | 1324 | </target> |
1335 | 1325 | ||
1336 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">156</context></context-group></trans-unit> | 1326 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> |
1337 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1327 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1338 | <source>Help share videos</source> | 1328 | <source>Help share videos</source> |
1339 | <target state="translated">Ajudatz a partejar de vidèos</target> | 1329 | <target state="translated">Ajudatz a partejar de vidèos</target> |
1340 | 1330 | ||
1341 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> | 1331 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
1342 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> | 1332 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> |
1343 | <source>More account settings</source> | 1333 | <source>More account settings</source> |
1344 | <target state="translated">Mai de paramètres de compte</target> | 1334 | <target state="translated">Mai de paramètres de compte</target> |
1345 | 1335 | ||
1346 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> | 1336 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> |
1347 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> | 1337 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> |
1348 | <source>Keyboard shortcuts</source> | 1338 | <source>Keyboard shortcuts</source> |
1349 | <target state="translated">Acorchis clavièr</target> | 1339 | <target state="translated">Acorchis clavièr</target> |
1350 | 1340 | ||
1351 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 1341 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">72</context></context-group></trans-unit> |
1352 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> | 1342 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> |
1353 | <source>Help</source> | 1343 | <source>Help</source> |
1354 | <target state="translated">Ajuda</target> | 1344 | <target state="translated">Ajuda</target> |
1355 | 1345 | ||
1356 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1346 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1357 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> | 1347 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> |
1358 | <source>Get help using PeerTube</source> | 1348 | <source>Get help using PeerTube</source> |
1359 | <target state="translated">Obtenètz d’ajudar per utilizar PeerTube</target> | 1349 | <target state="translated">Obtenètz d’ajudar per utilizar PeerTube</target> |
1360 | 1350 | ||
1361 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">161</context></context-group></trans-unit> | 1351 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">167</context></context-group></trans-unit> |
1362 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> | 1352 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> |
1363 | <source>Shortcuts</source> | 1353 | <source>Shortcuts</source> |
1364 | <target state="translated">Acorchis</target> | 1354 | <target state="translated">Acorchis</target> |
1365 | 1355 | ||
1366 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1356 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1367 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> | 1357 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> |
1368 | <source>powered by PeerTube</source> | 1358 | <source>powered by PeerTube</source> |
1369 | <target state="new">powered by PeerTube</target> | 1359 | <target state="new">powered by PeerTube</target> |
1370 | 1360 | ||
1371 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | 1361 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">177</context></context-group></trans-unit> |
1372 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> | 1362 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> |
1373 | <source>powered by PeerTube - CopyLeft 2015-2020</source> | 1363 | <source>powered by PeerTube - CopyLeft 2015-2020</source> |
1374 | <target state="translated">propulsat per PeerTube - CopyLeft 2015-2020</target> | 1364 | <target state="translated">propulsat per PeerTube - CopyLeft 2015-2020</target> |
1375 | 1365 | ||
1376 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> | 1366 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">176</context></context-group></trans-unit> |
1377 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344"> | 1367 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344"> |
1378 | <source>Log out</source> | 1368 | <source>Log out</source> |
1379 | <target>Desconnexion</target> | 1369 | <target>Desconnexion</target> |
1380 | 1370 | ||
1381 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">70</context></context-group></trans-unit> | 1371 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit> |
1382 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> | 1372 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> |
1383 | <source>Create an account</source> | 1373 | <source>Create an account</source> |
1384 | <target>Crear un compte</target> | 1374 | <target>Crear un compte</target> |
1385 | 1375 | ||
1386 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">78</context></context-group></trans-unit> | 1376 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
1387 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> | 1377 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> |
1388 | <source>MY LIBRARY</source> | 1378 | <source>MY LIBRARY</source> |
1389 | <target state="translated">MA BIBLIOTÈCA</target> | 1379 | <target state="translated">MA BIBLIOTÈCA</target> |
1390 | 1380 | ||
1391 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 1381 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">88</context></context-group></trans-unit> |
1392 | <trans-unit id="6371572688505952303"> | 1382 | <trans-unit id="6371572688505952303"> |
1393 | <source>My library</source> | 1383 | <source>My library</source> |
1394 | <target>Ma bibliotèca</target> | 1384 | <target>Ma bibliotèca</target> |
@@ -1428,22 +1418,22 @@ The link will expire within 1 hour.</target> | |||
1428 | <source>Videos</source> | 1418 | <source>Videos</source> |
1429 | <target>Vidèos</target> | 1419 | <target>Vidèos</target> |
1430 | 1420 | ||
1431 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">86</context></context-group></trans-unit> | 1421 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">92</context></context-group></trans-unit> |
1432 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> | 1422 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> |
1433 | <source>Playlists</source> | 1423 | <source>Playlists</source> |
1434 | <target>Lista de lectura</target> | 1424 | <target>Lista de lectura</target> |
1435 | 1425 | ||
1436 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">91</context></context-group></trans-unit> | 1426 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">97</context></context-group></trans-unit> |
1437 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2"> | 1427 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2"> |
1438 | <source>Subscriptions</source> | 1428 | <source>Subscriptions</source> |
1439 | <target>Abonaments</target> | 1429 | <target>Abonaments</target> |
1440 | 1430 | ||
1441 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 1431 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">102</context></context-group></trans-unit> |
1442 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8"> | 1432 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8"> |
1443 | <source>History</source> | 1433 | <source>History</source> |
1444 | <target>Istoric</target> | 1434 | <target>Istoric</target> |
1445 | 1435 | ||
1446 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit> | 1436 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">107</context></context-group></trans-unit> |
1447 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> | 1437 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> |
1448 | <source>VIDEOS</source> | 1438 | <source>VIDEOS</source> |
1449 | <target state="translated">VIDÈOS</target> | 1439 | <target state="translated">VIDÈOS</target> |
@@ -1455,27 +1445,27 @@ The link will expire within 1 hour.</target> | |||
1455 | <target>Descobrir</target> | 1445 | <target>Descobrir</target> |
1456 | 1446 | ||
1457 | 1447 | ||
1458 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">111</context></context-group></trans-unit> | 1448 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">117</context></context-group></trans-unit> |
1459 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> | 1449 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> |
1460 | <source>Trending</source> | 1450 | <source>Trending</source> |
1461 | <target>Tendéncias</target> | 1451 | <target>Tendéncias</target> |
1462 | 1452 | ||
1463 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">116</context></context-group></trans-unit> | 1453 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">122</context></context-group></trans-unit> |
1464 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac"> | 1454 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac"> |
1465 | <source>Most liked</source> | 1455 | <source>Most liked</source> |
1466 | <target>Mai aimadas</target> | 1456 | <target>Mai aimadas</target> |
1467 | 1457 | ||
1468 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">121</context></context-group></trans-unit> | 1458 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">127</context></context-group></trans-unit> |
1469 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> | 1459 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> |
1470 | <source>Recently added</source> | 1460 | <source>Recently added</source> |
1471 | <target>Apondons recents</target> | 1461 | <target>Apondons recents</target> |
1472 | 1462 | ||
1473 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">126</context></context-group></trans-unit> | 1463 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">132</context></context-group></trans-unit> |
1474 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> | 1464 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> |
1475 | <source>Administration</source> | 1465 | <source>Administration</source> |
1476 | <target>Administracion</target> | 1466 | <target>Administracion</target> |
1477 | 1467 | ||
1478 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">140</context></context-group></trans-unit> | 1468 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">146</context></context-group></trans-unit> |
1479 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> | 1469 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> |
1480 | <source>About</source> | 1470 | <source>About</source> |
1481 | <target>A prepaus</target> | 1471 | <target>A prepaus</target> |
@@ -1486,7 +1476,7 @@ The link will expire within 1 hour.</target> | |||
1486 | <source>Contact</source> | 1476 | <source>Contact</source> |
1487 | <target state="translated">Contacte</target> | 1477 | <target state="translated">Contacte</target> |
1488 | 1478 | ||
1489 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">160</context></context-group></trans-unit> | 1479 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">166</context></context-group></trans-unit> |
1490 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771"> | 1480 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771"> |
1491 | <source>View your notifications</source> | 1481 | <source>View your notifications</source> |
1492 | <target>Veire vòstras notificacions</target> | 1482 | <target>Veire vòstras notificacions</target> |
@@ -1513,7 +1503,7 @@ The link will expire within 1 hour.</target> | |||
1513 | <source>See all your notifications</source> | 1503 | <source>See all your notifications</source> |
1514 | <target>Veire totas vòstras notificacions</target> | 1504 | <target>Veire totas vòstras notificacions</target> |
1515 | 1505 | ||
1516 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 1506 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">40</context></context-group></trans-unit> |
1517 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> | 1507 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> |
1518 | <source>Search videos, channels…</source> | 1508 | <source>Search videos, channels…</source> |
1519 | <target state="translated">Recercar de vidèos, de canals…</target> | 1509 | <target state="translated">Recercar de vidèos, de canals…</target> |
@@ -1839,22 +1829,22 @@ The link will expire within 1 hour.</target> | |||
1839 | <source>FAQ</source> | 1829 | <source>FAQ</source> |
1840 | <target state="translated">FAQ</target> | 1830 | <target state="translated">FAQ</target> |
1841 | 1831 | ||
1842 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">163</context></context-group></trans-unit> | 1832 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
1843 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> | 1833 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> |
1844 | <source>Frequently asked questions about PeerTube</source> | 1834 | <source>Frequently asked questions about PeerTube</source> |
1845 | <target state="translated">Fièra a las questions tocant PeerTube</target> | 1835 | <target state="translated">Fièra a las questions tocant PeerTube</target> |
1846 | 1836 | ||
1847 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1837 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1848 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> | 1838 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> |
1849 | <source>API</source> | 1839 | <source>API</source> |
1850 | <target state="translated">API</target> | 1840 | <target state="translated">API</target> |
1851 | 1841 | ||
1852 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1842 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1853 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> | 1843 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> |
1854 | <source>API documentation</source> | 1844 | <source>API documentation</source> |
1855 | <target state="translated">Documentacion d’API</target> | 1845 | <target state="translated">Documentacion d’API</target> |
1856 | 1846 | ||
1857 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 1847 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
1858 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5"> | 1848 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5"> |
1859 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> | 1849 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> |
1860 | <target>Publicacion programada ( | 1850 | <target>Publicacion programada ( |
@@ -2228,7 +2218,13 @@ The link will expire within 1 hour.</target> | |||
2228 | <source>Less customization</source> | 2218 | <source>Less customization</source> |
2229 | <target state="translated">Mens de personalizacions</target> | 2219 | <target state="translated">Mens de personalizacions</target> |
2230 | 2220 | ||
2231 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit> | 2221 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit><trans-unit id="2454050363478003966" datatype="html"> |
2222 | <source>Login</source><target state="new">Login</target> | ||
2223 | <context-group purpose="location"> | ||
2224 | <context context-type="sourcefile">../app/+login/login-routing.module.ts</context> | ||
2225 | <context context-type="linenumber">14</context> | ||
2226 | </context-group> | ||
2227 | </trans-unit> | ||
2232 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e"> | 2228 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e"> |
2233 | <source>Autoplay</source> | 2229 | <source>Autoplay</source> |
2234 | <target>Lectura automatica</target> | 2230 | <target>Lectura automatica</target> |
@@ -2487,7 +2483,7 @@ The link will expire within 1 hour.</target> | |||
2487 | <source>No comments.</source> | 2483 | <source>No comments.</source> |
2488 | <target>Cap de comentari.</target> | 2484 | <target>Cap de comentari.</target> |
2489 | 2485 | ||
2490 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 2486 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> |
2491 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> | 2487 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> |
2492 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> | 2488 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> |
2493 | <target state="new"> | 2489 | <target state="new"> |
@@ -2497,7 +2493,7 @@ The link will expire within 1 hour.</target> | |||
2497 | 2493 | ||
2498 | </target> | 2494 | </target> |
2499 | 2495 | ||
2500 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">79</context></context-group></trans-unit> | 2496 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
2501 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> | 2497 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> |
2502 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> | 2498 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> |
2503 | <target state="new"> | 2499 | <target state="new"> |
@@ -2506,48 +2502,116 @@ The link will expire within 1 hour.</target> | |||
2506 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> | 2502 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> |
2507 | </target> | 2503 | </target> |
2508 | 2504 | ||
2509 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 2505 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">87</context></context-group></trans-unit> |
2510 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> | 2506 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> |
2511 | <source>View <x id="INTERPOLATION"/> replies</source> | 2507 | <source>View <x id="INTERPOLATION"/> replies</source> |
2512 | <target state="new">View | 2508 | <target state="new">View |
2513 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies | 2509 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies |
2514 | </target> | 2510 | </target> |
2515 | 2511 | ||
2516 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">85</context></context-group></trans-unit> | 2512 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">90</context></context-group></trans-unit> |
2517 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828"> | 2513 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828"> |
2518 | <source>Comments are disabled.</source> | 2514 | <source>Comments are disabled.</source> |
2519 | <target> | 2515 | <target> |
2520 | Los comentaris son desactivats. | 2516 | Los comentaris son desactivats. |
2521 | </target> | 2517 | </target> |
2522 | 2518 | ||
2523 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit><trans-unit id="3691787517663044217" datatype="html"> | 2519 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit><trans-unit id="3691787517663044217" datatype="html"> |
2524 | <source> The deletion will be sent to remote instances so they can reflect the change.</source><target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> | 2520 | <source> The deletion will be sent to remote instances so they can reflect the change.</source><target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> |
2521 | |||
2522 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">169</context></context-group></trans-unit><trans-unit id="7321800851971795962" datatype="html"> | ||
2523 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source><target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> | ||
2524 | |||
2525 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="5964038603724691720" datatype="html"> | ||
2526 | <source>Delete and re-draft</source><target state="new">Delete and re-draft</target> | ||
2525 | <context-group purpose="location"> | 2527 | <context-group purpose="location"> |
2526 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | 2528 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> |
2527 | <context context-type="linenumber">163</context> | 2529 | <context context-type="linenumber">197</context> |
2528 | </context-group> | 2530 | </context-group> |
2529 | </trans-unit><trans-unit id="7321800851971795962" datatype="html"> | 2531 | </trans-unit><trans-unit id="7163633882758007711" datatype="html"> |
2530 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source><target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> | 2532 | <source>Do you really want to delete and re-draft this comment?</source><target state="new">Do you really want to delete and re-draft this comment?</target> |
2531 | <context-group purpose="location"> | 2533 | <context-group purpose="location"> |
2532 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | 2534 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> |
2533 | <context context-type="linenumber">165</context> | 2535 | <context context-type="linenumber">197</context> |
2534 | </context-group> | 2536 | </context-group> |
2535 | </trans-unit> | 2537 | </trans-unit> |
2536 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e"> | 2538 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e"> |
2537 | <source>Add comment...</source> | 2539 | <source>Add comment...</source> |
2538 | <target>Comentar...</target> | 2540 | <target>Comentar...</target> |
2539 | 2541 | ||
2540 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | 2542 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit><trans-unit id="4e5254dedf0c12ce7e7c2197384fceebe3b29a2b" datatype="html"> |
2541 | <trans-unit id="8956c0f4c6974289fc63f1ab6b54f5b32ed65eeb" datatype="html"> | 2543 | <source>Markdown compatible</source><target state="new">Markdown compatible</target> |
2542 | <source>Reply</source> | 2544 | <context-group purpose="location"> |
2543 | <target state="translated">Respondre</target> | 2545 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> |
2544 | 2546 | <context context-type="linenumber">13</context> | |
2545 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 2547 | </context-group> |
2548 | </trans-unit><trans-unit id="4739ffad85f09defefdb6e51b45f43b2ef7c4388" datatype="html"> | ||
2549 | <source>Markdown compatible that supports:</source><target state="new">Markdown compatible that supports:</target> | ||
2550 | <context-group purpose="location"> | ||
2551 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2552 | <context context-type="linenumber">15</context> | ||
2553 | </context-group> | ||
2554 | </trans-unit><trans-unit id="9a53b17a021bb0677c156fd893461797fc497a10" datatype="html"> | ||
2555 | <source>Auto generated links</source><target state="new">Auto generated links</target> | ||
2556 | <context-group purpose="location"> | ||
2557 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2558 | <context context-type="linenumber">18</context> | ||
2559 | </context-group> | ||
2560 | </trans-unit><trans-unit id="664f99b8919d6dd2faa1c1f7c378aa86d1be5e8a" datatype="html"> | ||
2561 | <source>Break lines</source><target state="new">Break lines</target> | ||
2562 | <context-group purpose="location"> | ||
2563 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2564 | <context context-type="linenumber">19</context> | ||
2565 | </context-group> | ||
2566 | </trans-unit><trans-unit id="b15e7bec5c7833d2d9634946ccbed68967b1bee1" datatype="html"> | ||
2567 | <source>Lists</source><target state="new">Lists</target> | ||
2568 | <context-group purpose="location"> | ||
2569 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2570 | <context context-type="linenumber">20</context> | ||
2571 | </context-group> | ||
2572 | </trans-unit><trans-unit id="ab4426b60f13c00b61d6b714d390dc629f314980" datatype="html"> | ||
2573 | <source>Emphasis</source><target state="new">Emphasis</target> | ||
2574 | <context-group purpose="location"> | ||
2575 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2576 | <context context-type="linenumber">22</context> | ||
2577 | </context-group> | ||
2578 | </trans-unit><trans-unit id="4e13b179501d3d32721037e03b4c04acb9857c5f" datatype="html"> | ||
2579 | <source>bold</source><target state="new">bold</target> | ||
2580 | <context-group purpose="location"> | ||
2581 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2582 | <context context-type="linenumber">23</context> | ||
2583 | </context-group> | ||
2584 | </trans-unit><trans-unit id="3c12190421fbb2756e6bbead923df9ec5de8ede2" datatype="html"> | ||
2585 | <source>italic</source><target state="new">italic</target> | ||
2586 | <context-group purpose="location"> | ||
2587 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2588 | <context context-type="linenumber">23</context> | ||
2589 | </context-group> | ||
2590 | </trans-unit><trans-unit id="adb4bbdcb961b8aac8298d6cac554d9b25636b7a" datatype="html"> | ||
2591 | <source>Emoji shortcuts</source><target state="new">Emoji shortcuts</target> | ||
2592 | <context-group purpose="location"> | ||
2593 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2594 | <context context-type="linenumber">26</context> | ||
2595 | </context-group> | ||
2596 | </trans-unit><trans-unit id="b9809a21a8eb3c9db2a0282c5dd94bc221575c96" datatype="html"> | ||
2597 | <source>Emoji markup</source><target state="new">Emoji markup</target> | ||
2598 | <context-group purpose="location"> | ||
2599 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2600 | <context context-type="linenumber">30</context> | ||
2601 | </context-group> | ||
2602 | </trans-unit><trans-unit id="f37feb427aaa551edd1f22616be6464bc0d492de" datatype="html"> | ||
2603 | <source>See complete list</source><target state="new">See complete list</target> | ||
2604 | <context-group purpose="location"> | ||
2605 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2606 | <context context-type="linenumber">32</context> | ||
2607 | </context-group> | ||
2608 | </trans-unit> | ||
2609 | |||
2546 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135"> | 2610 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135"> |
2547 | <source>You are one step away from commenting</source> | 2611 | <source>You are one step away from commenting</source> |
2548 | <target>Sètz a una etapa abans de comentar</target> | 2612 | <target>Sètz a una etapa abans de comentar</target> |
2549 | 2613 | ||
2550 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 2614 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
2551 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> | 2615 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> |
2552 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> | 2616 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> |
2553 | <target state="new"> | 2617 | <target state="new"> |
@@ -2556,19 +2620,37 @@ The link will expire within 1 hour.</target> | |||
2556 | from within the software's interface. | 2620 | from within the software's interface. |
2557 | </target> | 2621 | </target> |
2558 | 2622 | ||
2559 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 2623 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
2560 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb"> | 2624 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb"> |
2561 | <source>If you have an account on Mastodon or Pleroma, you can open it directly in their interface:</source> | 2625 | <source>If you have an account on Mastodon or Pleroma, you can open it directly in their interface:</source> |
2562 | <target> | 2626 | <target> |
2563 | S’avètz un compte sus Mastodon o Pleroma, podètz la dobrir dirèctament dins lor interfàcia : | 2627 | S’avètz un compte sus Mastodon o Pleroma, podètz la dobrir dirèctament dins lor interfàcia : |
2564 | </target> | 2628 | </target> |
2565 | 2629 | ||
2566 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">41</context></context-group></trans-unit> | 2630 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">65</context></context-group></trans-unit> |
2567 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> | 2631 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> |
2568 | <source>Login to comment</source> | 2632 | <source>Login to comment</source> |
2569 | <target state="translated">Connectatz-vos per comentar</target> | 2633 | <target state="translated">Connectatz-vos per comentar</target> |
2570 | 2634 | ||
2571 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">52</context></context-group></trans-unit> | 2635 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit><trans-unit id="974170f455ff5a9034d5737e84b4194c0046fc6b" datatype="html"> |
2636 | <source>Markdown Emoji List</source><target state="new">Markdown Emoji List</target> | ||
2637 | <context-group purpose="location"> | ||
2638 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2639 | <context context-type="linenumber">84</context> | ||
2640 | </context-group> | ||
2641 | </trans-unit><trans-unit id="2662644497259948010" datatype="html"> | ||
2642 | <source>Comment</source><target state="new">Comment</target> | ||
2643 | <context-group purpose="location"> | ||
2644 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2645 | <context context-type="linenumber">58</context> | ||
2646 | </context-group> | ||
2647 | </trans-unit><trans-unit id="4502286564339177240" datatype="html"> | ||
2648 | <source>Reply</source><target state="new">Reply</target> | ||
2649 | <context-group purpose="location"> | ||
2650 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2651 | <context context-type="linenumber">60</context> | ||
2652 | </context-group> | ||
2653 | </trans-unit> | ||
2572 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285"> | 2654 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285"> |
2573 | <source>Highlighted comment</source> | 2655 | <source>Highlighted comment</source> |
2574 | <target>Comentari notable</target> | 2656 | <target>Comentari notable</target> |
@@ -2583,7 +2665,7 @@ The link will expire within 1 hour.</target> | |||
2583 | <source>This comment has been deleted</source> | 2665 | <source>This comment has been deleted</source> |
2584 | <target state="translated">Aqueste comentari es estat escafat</target> | 2666 | <target state="translated">Aqueste comentari es estat escafat</target> |
2585 | 2667 | ||
2586 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">62</context></context-group></trans-unit> | 2668 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">61</context></context-group></trans-unit> |
2587 | <trans-unit id="9031514421077169181" datatype="html"> | 2669 | <trans-unit id="9031514421077169181" datatype="html"> |
2588 | <source>Video redundancies</source> | 2670 | <source>Video redundancies</source> |
2589 | <target state="translated">Redondància de las vidèos</target> | 2671 | <target state="translated">Redondància de las vidèos</target> |
@@ -3432,7 +3514,25 @@ The link will expire within 1 hour.</target> | |||
3432 | <target state="new">No account found.</target> | 3514 | <target state="new">No account found.</target> |
3433 | 3515 | ||
3434 | 3516 | ||
3435 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit> | 3517 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit><trans-unit id="2338185419645468935" datatype="html"> |
3518 | <source>List installed plugins</source><target state="new">List installed plugins</target> | ||
3519 | <context-group purpose="location"> | ||
3520 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3521 | <context context-type="linenumber">28</context> | ||
3522 | </context-group> | ||
3523 | </trans-unit><trans-unit id="8897412584195581488" datatype="html"> | ||
3524 | <source>Search plugins</source><target state="new">Search plugins</target> | ||
3525 | <context-group purpose="location"> | ||
3526 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3527 | <context context-type="linenumber">37</context> | ||
3528 | </context-group> | ||
3529 | </trans-unit><trans-unit id="4994333937800672218" datatype="html"> | ||
3530 | <source>Show plugin</source><target state="new">Show plugin</target> | ||
3531 | <context-group purpose="location"> | ||
3532 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3533 | <context context-type="linenumber">46</context> | ||
3534 | </context-group> | ||
3535 | </trans-unit> | ||
3436 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> | 3536 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> |
3437 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> | 3537 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> |
3438 | <target state="new">Showing | 3538 | <target state="new">Showing |
@@ -4156,7 +4256,7 @@ The link will expire within 1 hour.</target> | |||
4156 | <source>Administrator</source> | 4256 | <source>Administrator</source> |
4157 | <target>Administrator</target> | 4257 | <target>Administrator</target> |
4158 | 4258 | ||
4159 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">385</context></context-group></trans-unit> | 4259 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">383</context></context-group></trans-unit> |
4160 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587"> | 4260 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587"> |
4161 | <source>Admin email</source> | 4261 | <source>Admin email</source> |
4162 | <target>Adreça de l’admin</target> | 4262 | <target>Adreça de l’admin</target> |
@@ -4412,27 +4512,27 @@ The link will expire within 1 hour.</target> | |||
4412 | <source>VIDEO SETTINGS</source> | 4512 | <source>VIDEO SETTINGS</source> |
4413 | <target state="translated">PARAMÈTRES VIDÈOS</target> | 4513 | <target state="translated">PARAMÈTRES VIDÈOS</target> |
4414 | 4514 | ||
4415 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit> | 4515 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
4416 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> | 4516 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> |
4417 | <source>NOTIFICATIONS</source> | 4517 | <source>NOTIFICATIONS</source> |
4418 | <target state="translated">NOTIFICACIONS</target> | 4518 | <target state="translated">NOTIFICACIONS</target> |
4419 | 4519 | ||
4420 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 4520 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">37</context></context-group></trans-unit> |
4421 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> | 4521 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> |
4422 | <source>INTERFACE</source> | 4522 | <source>INTERFACE</source> |
4423 | <target state="translated">INTERFÀCIA</target> | 4523 | <target state="translated">INTERFÀCIA</target> |
4424 | 4524 | ||
4425 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 4525 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit> |
4426 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> | 4526 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> |
4427 | <source>PASSWORD</source> | 4527 | <source>PASSWORD</source> |
4428 | <target state="translated">SENHAL</target> | 4528 | <target state="translated">SENHAL</target> |
4429 | 4529 | ||
4430 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">59</context></context-group></trans-unit> | 4530 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">57</context></context-group></trans-unit> |
4431 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> | 4531 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> |
4432 | <source>EMAIL</source> | 4532 | <source>EMAIL</source> |
4433 | <target state="translated">EMAIL</target> | 4533 | <target state="translated">EMAIL</target> |
4434 | 4534 | ||
4435 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">69</context></context-group></trans-unit> | 4535 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">67</context></context-group></trans-unit> |
4436 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> | 4536 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> |
4437 | <source>DANGER ZONE</source> | 4537 | <source>DANGER ZONE</source> |
4438 | <target state="translated">ZÒNA PERILHOSA</target> | 4538 | <target state="translated">ZÒNA PERILHOSA</target> |
@@ -4680,7 +4780,31 @@ The link will expire within 1 hour.</target> | |||
4680 | <source>No ownership change request found.</source> | 4780 | <source>No ownership change request found.</source> |
4681 | <target state="new">No ownership change request found.</target> | 4781 | <target state="new">No ownership change request found.</target> |
4682 | 4782 | ||
4683 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit> | 4783 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit><trans-unit id="4247400351982331798" datatype="html"> |
4784 | <source>Account settings</source><target state="new">Account settings</target> | ||
4785 | <context-group purpose="location"> | ||
4786 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4787 | <context context-type="linenumber">37</context> | ||
4788 | </context-group> | ||
4789 | </trans-unit><trans-unit id="154062590416726309" datatype="html"> | ||
4790 | <source>Account playlists</source><target state="new">Account playlists</target> | ||
4791 | <context-group purpose="location"> | ||
4792 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4793 | <context context-type="linenumber">55</context> | ||
4794 | </context-group> | ||
4795 | </trans-unit><trans-unit id="6550287183367517925" datatype="html"> | ||
4796 | <source>Create new playlist</source><target state="new">Create new playlist</target> | ||
4797 | <context-group purpose="location"> | ||
4798 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4799 | <context context-type="linenumber">64</context> | ||
4800 | </context-group> | ||
4801 | </trans-unit><trans-unit id="2864486939135008600" datatype="html"> | ||
4802 | <source>Playlist elements</source><target state="new">Playlist elements</target> | ||
4803 | <context-group purpose="location"> | ||
4804 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4805 | <context context-type="linenumber">73</context> | ||
4806 | </context-group> | ||
4807 | </trans-unit> | ||
4684 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> | 4808 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> |
4685 | <source>My imports</source> | 4809 | <source>My imports</source> |
4686 | <target state="new">My imports</target> | 4810 | <target state="new">My imports</target> |
@@ -4951,7 +5075,25 @@ The link will expire within 1 hour.</target> | |||
4951 | <source>An error occurred.</source> | 5075 | <source>An error occurred.</source> |
4952 | <target>Una error s’es producha.</target> | 5076 | <target>Una error s’es producha.</target> |
4953 | 5077 | ||
4954 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 5078 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit><trans-unit id="9128669621822125729" datatype="html"> |
5079 | <source>Video channel videos</source><target state="new">Video channel videos</target> | ||
5080 | <context-group purpose="location"> | ||
5081 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5082 | <context context-type="linenumber">25</context> | ||
5083 | </context-group> | ||
5084 | </trans-unit><trans-unit id="3193822049276963401" datatype="html"> | ||
5085 | <source>Video channel playlists</source><target state="new">Video channel playlists</target> | ||
5086 | <context-group purpose="location"> | ||
5087 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5088 | <context context-type="linenumber">38</context> | ||
5089 | </context-group> | ||
5090 | </trans-unit><trans-unit id="4723526509708949088" datatype="html"> | ||
5091 | <source>About video channel</source><target state="new">About video channel</target> | ||
5092 | <context-group purpose="location"> | ||
5093 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5094 | <context context-type="linenumber">47</context> | ||
5095 | </context-group> | ||
5096 | </trans-unit> | ||
4955 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97"> | 5097 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97"> |
4956 | <source>Request email for account verification</source> | 5098 | <source>Request email for account verification</source> |
4957 | <target> | 5099 | <target> |
@@ -5068,7 +5210,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5068 | <source>Stats</source> | 5210 | <source>Stats</source> |
5069 | <target>Estatisticas</target> | 5211 | <target>Estatisticas</target> |
5070 | 5212 | ||
5071 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 5213 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
5072 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc"> | 5214 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc"> |
5073 | <source>Joined <x id="INTERPOLATION"/></source> | 5215 | <source>Joined <x id="INTERPOLATION"/></source> |
5074 | <target>Arribat lo | 5216 | <target>Arribat lo |
@@ -5499,7 +5641,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5499 | <source>This instance does not have instances followings.</source> | 5641 | <source>This instance does not have instances followings.</source> |
5500 | <target state="new">This instance does not have instances followings.</target> | 5642 | <target state="new">This instance does not have instances followings.</target> |
5501 | 5643 | ||
5502 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit> | 5644 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit><trans-unit id="4195286790385468087" datatype="html"> |
5645 | <source>About this instance</source><target state="new">About this instance</target> | ||
5646 | <context-group purpose="location"> | ||
5647 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5648 | <context context-type="linenumber">26</context> | ||
5649 | </context-group> | ||
5650 | </trans-unit><trans-unit id="8773846522957677259" datatype="html"> | ||
5651 | <source>About PeerTube</source><target state="new">About PeerTube</target> | ||
5652 | <context-group purpose="location"> | ||
5653 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5654 | <context context-type="linenumber">38</context> | ||
5655 | </context-group> | ||
5656 | </trans-unit><trans-unit id="5782088737558028158" datatype="html"> | ||
5657 | <source>About follows</source><target state="new">About follows</target> | ||
5658 | <context-group purpose="location"> | ||
5659 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5660 | <context context-type="linenumber">47</context> | ||
5661 | </context-group> | ||
5662 | </trans-unit> | ||
5503 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> | 5663 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> |
5504 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> | 5664 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> |
5505 | <target state="new">Developed with ❤ by | 5665 | <target state="new">Developed with ❤ by |
@@ -5669,6 +5829,12 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5669 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 5829 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> |
5670 | <context context-type="linenumber">1</context> | 5830 | <context context-type="linenumber">1</context> |
5671 | </context-group> | 5831 | </context-group> |
5832 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
5833 | <source>Get help</source><target state="new">Get help</target> | ||
5834 | <context-group purpose="location"> | ||
5835 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | ||
5836 | <context context-type="linenumber">16</context> | ||
5837 | </context-group> | ||
5672 | </trans-unit> | 5838 | </trans-unit> |
5673 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1"> | 5839 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1"> |
5674 | <source>Create my account</source> | 5840 | <source>Create my account</source> |
@@ -5787,7 +5953,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5787 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/> of this instance | 5953 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/> of this instance |
5788 | </target> | 5954 | </target> |
5789 | 5955 | ||
5790 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 5956 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit><trans-unit id="3301086086650990787" datatype="html"> |
5957 | <source>Register</source><target state="new">Register</target> | ||
5958 | <context-group purpose="location"> | ||
5959 | <context context-type="sourcefile">../app/+signup/+register/register-routing.module.ts</context> | ||
5960 | <context context-type="linenumber">14</context> | ||
5961 | </context-group> | ||
5962 | </trans-unit> | ||
5791 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c"> | 5963 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c"> |
5792 | <source>Sorry, we couldn't find the page you were looking for.</source> | 5964 | <source>Sorry, we couldn't find the page you were looking for.</source> |
5793 | <target> | 5965 | <target> |
@@ -5810,7 +5982,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5810 | <target>Cap de descripcion</target> | 5982 | <target>Cap de descripcion</target> |
5811 | 5983 | ||
5812 | 5984 | ||
5813 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit> | 5985 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit><trans-unit id="819067926858619041" datatype="html"> |
5986 | <source>Account videos</source><target state="new">Account videos</target> | ||
5987 | <context-group purpose="location"> | ||
5988 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
5989 | <context context-type="linenumber">29</context> | ||
5990 | </context-group> | ||
5991 | </trans-unit><trans-unit id="6823616469362610020" datatype="html"> | ||
5992 | <source>Account video channels</source><target state="new">Account video channels</target> | ||
5993 | <context-group purpose="location"> | ||
5994 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
5995 | <context context-type="linenumber">42</context> | ||
5996 | </context-group> | ||
5997 | </trans-unit><trans-unit id="7678273613459026643" datatype="html"> | ||
5998 | <source>About account</source><target state="new">About account</target> | ||
5999 | <context-group purpose="location"> | ||
6000 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6001 | <context context-type="linenumber">51</context> | ||
6002 | </context-group> | ||
6003 | </trans-unit> | ||
5814 | <trans-unit id="3755500631176893489"> | 6004 | <trans-unit id="3755500631176893489"> |
5815 | <source>Published <x id="PH"/> videos</source> | 6005 | <source>Published <x id="PH"/> videos</source> |
5816 | <target>Publiquèt | 6006 | <target>Publiquèt |
@@ -5927,7 +6117,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5927 | <source>Configuration updated.</source> | 6117 | <source>Configuration updated.</source> |
5928 | <target>Configuracion actualizada.</target> | 6118 | <target>Configuracion actualizada.</target> |
5929 | 6119 | ||
5930 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit> | 6120 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit><trans-unit id="6284468333579755406" datatype="html"> |
6121 | <source>Edit custom configuration</source><target state="new">Edit custom configuration</target> | ||
6122 | <context-group purpose="location"> | ||
6123 | <context context-type="sourcefile">../app/+admin/config/config.routes.ts</context> | ||
6124 | <context context-type="linenumber">26</context> | ||
6125 | </context-group> | ||
6126 | </trans-unit> | ||
5931 | 6127 | ||
5932 | 6128 | ||
5933 | <trans-unit id="6549061957433635758" datatype="html"> | 6129 | <trans-unit id="6549061957433635758" datatype="html"> |
@@ -6406,7 +6602,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6406 | <x id="PH"/> actualizat. | 6602 | <x id="PH"/> actualizat. |
6407 | </target> | 6603 | </target> |
6408 | 6604 | ||
6409 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 6605 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit><trans-unit id="3229595422546554334" datatype="html"> |
6606 | <source>Jobs</source><target state="new">Jobs</target> | ||
6607 | <context-group purpose="location"> | ||
6608 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6609 | <context context-type="linenumber">26</context> | ||
6610 | </context-group> | ||
6611 | </trans-unit><trans-unit id="4804785061014590286" datatype="html"> | ||
6612 | <source>Logs</source><target state="new">Logs</target> | ||
6613 | <context-group purpose="location"> | ||
6614 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6615 | <context context-type="linenumber">37</context> | ||
6616 | </context-group> | ||
6617 | </trans-unit> | ||
6410 | <trans-unit id="3150704904301058778"> | 6618 | <trans-unit id="3150704904301058778"> |
6411 | <source>The plugin index is not available. Please retry later.</source> | 6619 | <source>The plugin index is not available. Please retry later.</source> |
6412 | <target>L’indèx de las extensions es pas disponible. Ensajatz mai tard.</target> | 6620 | <target>L’indèx de las extensions es pas disponible. Ensajatz mai tard.</target> |
@@ -6520,6 +6728,18 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6520 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> | 6728 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> |
6521 | <context context-type="linenumber">86</context> | 6729 | <context context-type="linenumber">86</context> |
6522 | </context-group> | 6730 | </context-group> |
6731 | </trans-unit><trans-unit id="2903648076838460070" datatype="html"> | ||
6732 | <source>Videos blocked</source><target state="new">Videos blocked</target> | ||
6733 | <context-group purpose="location"> | ||
6734 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6735 | <context context-type="linenumber">67</context> | ||
6736 | </context-group> | ||
6737 | </trans-unit><trans-unit id="7805059636749367886" datatype="html"> | ||
6738 | <source>Muted instances</source><target state="new">Muted instances</target> | ||
6739 | <context-group purpose="location"> | ||
6740 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6741 | <context context-type="linenumber">89</context> | ||
6742 | </context-group> | ||
6523 | </trans-unit> | 6743 | </trans-unit> |
6524 | <trans-unit id="5974506725502681113"> | 6744 | <trans-unit id="5974506725502681113"> |
6525 | <source>Password changed for user <x id="PH"/>.</source> | 6745 | <source>Password changed for user <x id="PH"/>.</source> |
@@ -6532,7 +6752,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6532 | <source>Update user password</source> | 6752 | <source>Update user password</source> |
6533 | <target>Actualizar lo senhal de l’utilizaire</target> | 6753 | <target>Actualizar lo senhal de l’utilizaire</target> |
6534 | 6754 | ||
6535 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit> | 6755 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit><trans-unit id="177544274549739411" datatype="html"> |
6756 | <source>Following list</source><target state="new">Following list</target> | ||
6757 | <context-group purpose="location"> | ||
6758 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6759 | <context context-type="linenumber">28</context> | ||
6760 | </context-group> | ||
6761 | </trans-unit><trans-unit id="8092429110007204784" datatype="html"> | ||
6762 | <source>Followers list</source><target state="new">Followers list</target> | ||
6763 | <context-group purpose="location"> | ||
6764 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6765 | <context context-type="linenumber">37</context> | ||
6766 | </context-group> | ||
6767 | </trans-unit> | ||
6536 | <trans-unit id="780323526182667308" datatype="html"> | 6768 | <trans-unit id="780323526182667308" datatype="html"> |
6537 | <source>User <x id="PH"/> updated.</source> | 6769 | <source>User <x id="PH"/> updated.</source> |
6538 | <target state="new">User | 6770 | <target state="new">User |
@@ -6551,7 +6783,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6551 | <x id="PH"/>. | 6783 | <x id="PH"/>. |
6552 | </target> | 6784 | </target> |
6553 | 6785 | ||
6554 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="8564701209009684429" datatype="html"> | 6786 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="7483807629538115183" datatype="html"> |
6787 | <source>Users list</source><target state="new">Users list</target> | ||
6788 | <context-group purpose="location"> | ||
6789 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6790 | <context context-type="linenumber">27</context> | ||
6791 | </context-group> | ||
6792 | </trans-unit><trans-unit id="1525334987774465166" datatype="html"> | ||
6793 | <source>Create a user</source><target state="new">Create a user</target> | ||
6794 | <context-group purpose="location"> | ||
6795 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6796 | <context context-type="linenumber">36</context> | ||
6797 | </context-group> | ||
6798 | </trans-unit><trans-unit id="5552039423287890133" datatype="html"> | ||
6799 | <source>Update a user</source><target state="new">Update a user</target> | ||
6800 | <context-group purpose="location"> | ||
6801 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6802 | <context context-type="linenumber">48</context> | ||
6803 | </context-group> | ||
6804 | </trans-unit><trans-unit id="8564701209009684429" datatype="html"> | ||
6555 | <source>Federation</source><target state="new">Federation</target> | 6805 | <source>Federation</source><target state="new">Federation</target> |
6556 | <context-group purpose="location"> | 6806 | <context-group purpose="location"> |
6557 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> | 6807 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> |
@@ -6905,7 +7155,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6905 | <source>Views for the day</source> | 7155 | <source>Views for the day</source> |
6906 | <target state="new">Views for the day</target> | 7156 | <target state="new">Views for the day</target> |
6907 | 7157 | ||
6908 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit> | 7158 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit><trans-unit id="4707367314920217630" datatype="html"> |
7159 | <source>Create new video channel</source><target state="new">Create new video channel</target> | ||
7160 | <context-group purpose="location"> | ||
7161 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7162 | <context context-type="linenumber">22</context> | ||
7163 | </context-group> | ||
7164 | </trans-unit><trans-unit id="6059091237492573541" datatype="html"> | ||
7165 | <source>Update video channel</source><target state="new">Update video channel</target> | ||
7166 | <context-group purpose="location"> | ||
7167 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7168 | <context context-type="linenumber">31</context> | ||
7169 | </context-group> | ||
7170 | </trans-unit><trans-unit id="6595008830732269870" datatype="html"> | ||
7171 | <source>Not found</source><target state="new">Not found</target> | ||
7172 | <context-group purpose="location"> | ||
7173 | <context context-type="sourcefile">../app/+page-not-found/page-not-found-routing.module.ts</context> | ||
7174 | <context context-type="linenumber">13</context> | ||
7175 | </context-group> | ||
7176 | </trans-unit> | ||
6909 | <trans-unit id="5032453707232754344"> | 7177 | <trans-unit id="5032453707232754344"> |
6910 | <source>Playlist <x id="PH"/> created.</source> | 7178 | <source>Playlist <x id="PH"/> created.</source> |
6911 | <target>Lista de lectura | 7179 | <target>Lista de lectura |
@@ -6923,7 +7191,31 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6923 | <source>Update playlist</source> | 7191 | <source>Update playlist</source> |
6924 | <target state="new">Update playlist</target> | 7192 | <target state="new">Update playlist</target> |
6925 | 7193 | ||
6926 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-video-playlists/my-account-video-playlist-elements.component.ts</context><context context-type="linenumber">48</context></context-group></trans-unit> | 7194 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">82</context></context-group></trans-unit><trans-unit id="3410331549417637431" datatype="html"> |
7195 | <source>Account video imports</source><target state="new">Account video imports</target> | ||
7196 | <context-group purpose="location"> | ||
7197 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7198 | <context context-type="linenumber">105</context> | ||
7199 | </context-group> | ||
7200 | </trans-unit><trans-unit id="4434998055872154420" datatype="html"> | ||
7201 | <source>Account subscriptions</source><target state="new">Account subscriptions</target> | ||
7202 | <context-group purpose="location"> | ||
7203 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7204 | <context context-type="linenumber">114</context> | ||
7205 | </context-group> | ||
7206 | </trans-unit><trans-unit id="6019411775996586321" datatype="html"> | ||
7207 | <source>Videos history</source><target state="new">Videos history</target> | ||
7208 | <context-group purpose="location"> | ||
7209 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7210 | <context context-type="linenumber">150</context> | ||
7211 | </context-group> | ||
7212 | </trans-unit><trans-unit id="5851560788527570644" datatype="html"> | ||
7213 | <source>Notifications</source><target state="new">Notifications</target> | ||
7214 | <context-group purpose="location"> | ||
7215 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7216 | <context context-type="linenumber">163</context> | ||
7217 | </context-group> | ||
7218 | </trans-unit> | ||
6927 | <trans-unit id="104404386496394770" datatype="html"> | 7219 | <trans-unit id="104404386496394770" datatype="html"> |
6928 | <source>Delete playlist</source> | 7220 | <source>Delete playlist</source> |
6929 | <target state="new">Delete playlist</target> | 7221 | <target state="new">Delete playlist</target> |
@@ -7077,7 +7369,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7077 | <x id="PH"/>. | 7369 | <x id="PH"/>. |
7078 | </target> | 7370 | </target> |
7079 | 7371 | ||
7080 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit> | 7372 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit><trans-unit id="8231550792139699065" datatype="html"> |
7373 | <source>Verify account email</source><target state="new">Verify account email</target> | ||
7374 | <context-group purpose="location"> | ||
7375 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7376 | <context context-type="linenumber">17</context> | ||
7377 | </context-group> | ||
7378 | </trans-unit><trans-unit id="4997281272800290390" datatype="html"> | ||
7379 | <source>Verify account ask send email</source><target state="new">Verify account ask send email</target> | ||
7380 | <context-group purpose="location"> | ||
7381 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7382 | <context context-type="linenumber">26</context> | ||
7383 | </context-group> | ||
7384 | </trans-unit> | ||
7081 | <trans-unit id="4180693983967989981"> | 7385 | <trans-unit id="4180693983967989981"> |
7082 | <source>Unable to find user id or verification string.</source> | 7386 | <source>Unable to find user id or verification string.</source> |
7083 | <target>Impossible de trobar l’id de l’utilizaire o la cadena de verificacion.</target> | 7387 | <target>Impossible de trobar l’id de l’utilizaire o la cadena de verificacion.</target> |
@@ -7202,27 +7506,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7202 | <source>any language</source> | 7506 | <source>any language</source> |
7203 | <target state="translated">tota lenga</target> | 7507 | <target state="translated">tota lenga</target> |
7204 | 7508 | ||
7205 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">202</context></context-group></trans-unit> | 7509 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">229</context></context-group></trans-unit> |
7206 | <trans-unit id="5633144232269377096" datatype="html"> | 7510 | <trans-unit id="5633144232269377096" datatype="html"> |
7207 | <source>hide</source> | 7511 | <source>hide</source> |
7208 | <target state="translated">amagar</target> | 7512 | <target state="translated">amagar</target> |
7209 | 7513 | ||
7210 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">118</context></context-group></trans-unit> | 7514 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> |
7211 | <trans-unit id="8603861867909474404" datatype="html"> | 7515 | <trans-unit id="8603861867909474404" datatype="html"> |
7212 | <source>blur</source> | 7516 | <source>blur</source> |
7213 | <target state="new">blur</target> | 7517 | <target state="new">blur</target> |
7214 | 7518 | ||
7215 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> | 7519 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> |
7216 | <trans-unit id="4534458451100881847" datatype="html"> | 7520 | <trans-unit id="4534458451100881847" datatype="html"> |
7217 | <source>display</source> | 7521 | <source>display</source> |
7218 | <target state="translated">mostrar</target> | 7522 | <target state="translated">mostrar</target> |
7219 | 7523 | ||
7220 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> | 7524 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">127</context></context-group></trans-unit> |
7221 | <trans-unit id="4467323362722952678" datatype="html"> | 7525 | <trans-unit id="4467323362722952678" datatype="html"> |
7222 | <source>Unknown</source> | 7526 | <source>Unknown</source> |
7223 | <target state="new">Unknown</target> | 7527 | <target state="new">Unknown</target> |
7224 | 7528 | ||
7225 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">190</context></context-group></trans-unit> | 7529 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">193</context></context-group></trans-unit> |
7226 | <trans-unit id="8781423666414310853"> | 7530 | <trans-unit id="8781423666414310853"> |
7227 | <source>Your password has been successfully reset!</source> | 7531 | <source>Your password has been successfully reset!</source> |
7228 | <target>Vòstre senhal es estat corrèctament reïnicializat !</target> | 7532 | <target>Vòstre senhal es estat corrèctament reïnicializat !</target> |
@@ -8340,27 +8644,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8340 | <source>Emphasis</source> | 8644 | <source>Emphasis</source> |
8341 | <target>Emfasi</target> | 8645 | <target>Emfasi</target> |
8342 | 8646 | ||
8343 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">77</context></context-group></trans-unit> | 8647 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> |
8344 | <trans-unit id="7565716024468232322"> | 8648 | <trans-unit id="7565716024468232322"> |
8345 | <source>Links</source> | 8649 | <source>Links</source> |
8346 | <target>Ligams</target> | 8650 | <target>Ligams</target> |
8347 | 8651 | ||
8348 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">78</context></context-group></trans-unit> | 8652 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> |
8349 | <trans-unit id="7838476952710404110"> | 8653 | <trans-unit id="7838476952710404110"> |
8350 | <source>New lines</source> | 8654 | <source>New lines</source> |
8351 | <target>Novèlas linhas</target> | 8655 | <target>Novèlas linhas</target> |
8352 | 8656 | ||
8353 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 8657 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">83</context></context-group></trans-unit> |
8354 | <trans-unit id="8756167649220050929"> | 8658 | <trans-unit id="8756167649220050929"> |
8355 | <source>Lists</source> | 8659 | <source>Lists</source> |
8356 | <target>Listas</target> | 8660 | <target>Listas</target> |
8357 | 8661 | ||
8358 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">80</context></context-group></trans-unit> | 8662 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">84</context></context-group></trans-unit> |
8359 | <trans-unit id="414887388288176527"> | 8663 | <trans-unit id="414887388288176527"> |
8360 | <source>Images</source> | 8664 | <source>Images</source> |
8361 | <target>Imatges</target> | 8665 | <target>Imatges</target> |
8362 | 8666 | ||
8363 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> | 8667 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">85</context></context-group></trans-unit> |
8364 | <trans-unit id="5708680277917691451"> | 8668 | <trans-unit id="5708680277917691451"> |
8365 | <source> | 8669 | <source> |
8366 | <x id="PH"/> users banned. | 8670 | <x id="PH"/> users banned. |
@@ -8756,7 +9060,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8756 | <source>Moderator</source> | 9060 | <source>Moderator</source> |
8757 | <target>Moderator</target> | 9061 | <target>Moderator</target> |
8758 | 9062 | ||
8759 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">386</context></context-group></trans-unit> | 9063 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">384</context></context-group></trans-unit> |
8760 | <trans-unit id="3723085768598852106"> | 9064 | <trans-unit id="3723085768598852106"> |
8761 | <source>Video removed from | 9065 | <source>Video removed from |
8762 | <x id="PH"/> | 9066 | <x id="PH"/> |
@@ -8829,7 +9133,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8829 | <source>Do you really want to delete this comment?</source> | 9133 | <source>Do you really want to delete this comment?</source> |
8830 | <target state="new">Do you really want to delete this comment?</target> | 9134 | <target state="new">Do you really want to delete this comment?</target> |
8831 | 9135 | ||
8832 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">434</context></context-group></trans-unit> | 9136 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">166</context></context-group></trans-unit> |
8833 | <trans-unit id="7837272126865175984" datatype="html"> | 9137 | <trans-unit id="7837272126865175984" datatype="html"> |
8834 | <source>Comment deleted.</source> | 9138 | <source>Comment deleted.</source> |
8835 | <target state="new">Comment deleted.</target> | 9139 | <target state="new">Comment deleted.</target> |
@@ -8941,9 +9245,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8941 | 9245 | ||
8942 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> | 9246 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> |
8943 | <source>Report</source><target state="new">Report</target> | 9247 | <source>Report</source><target state="new">Report</target> |
9248 | |||
9249 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="4814285799071780083" datatype="html"> | ||
9250 | <source>Remove</source><target state="new">Remove</target> | ||
8944 | <context-group purpose="location"> | 9251 | <context-group purpose="location"> |
8945 | <context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> | 9252 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> |
8946 | <context context-type="linenumber">286</context> | 9253 | <context context-type="linenumber">179</context> |
9254 | </context-group> | ||
9255 | </trans-unit><trans-unit id="6871668720687277843" datatype="html"> | ||
9256 | <source>Remove & re-draft</source><target state="new">Remove & re-draft</target> | ||
9257 | <context-group purpose="location"> | ||
9258 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> | ||
9259 | <context context-type="linenumber">187</context> | ||
8947 | </context-group> | 9260 | </context-group> |
8948 | </trans-unit> | 9261 | </trans-unit> |
8949 | <trans-unit id="4903651219400691248" datatype="html"> | 9262 | <trans-unit id="4903651219400691248" datatype="html"> |
@@ -9047,22 +9360,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9047 | <source>Only I can see this video</source> | 9360 | <source>Only I can see this video</source> |
9048 | <target>Pas que ieu pòdi veire aquesta vidèo</target> | 9361 | <target>Pas que ieu pòdi veire aquesta vidèo</target> |
9049 | 9362 | ||
9050 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">340</context></context-group></trans-unit> | 9363 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">341</context></context-group></trans-unit> |
9051 | <trans-unit id="6767380569816110388" datatype="html"> | 9364 | <trans-unit id="6767380569816110388" datatype="html"> |
9052 | <source>Only shareable via a private link</source> | 9365 | <source>Only shareable via a private link</source> |
9053 | <target state="new">Only shareable via a private link</target> | 9366 | <target state="new">Only shareable via a private link</target> |
9054 | 9367 | ||
9055 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">344</context></context-group></trans-unit> | 9368 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">345</context></context-group></trans-unit> |
9056 | <trans-unit id="6828965264297239528"> | 9369 | <trans-unit id="6828965264297239528"> |
9057 | <source>Anyone can see this video</source> | 9370 | <source>Anyone can see this video</source> |
9058 | <target>Tot lo monde pòt veire aquesta vidèo</target> | 9371 | <target>Tot lo monde pòt veire aquesta vidèo</target> |
9059 | 9372 | ||
9060 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">348</context></context-group></trans-unit> | 9373 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">349</context></context-group></trans-unit> |
9061 | <trans-unit id="1425933035739773115" datatype="html"> | 9374 | <trans-unit id="1425933035739773115" datatype="html"> |
9062 | <source>Only users of this instance can see this video</source> | 9375 | <source>Only users of this instance can see this video</source> |
9063 | <target state="translated">Pas que los utilizaires d’aquesta instància pòdon veire aquesta vidèo</target> | 9376 | <target state="translated">Pas que los utilizaires d’aquesta instància pòdon veire aquesta vidèo</target> |
9064 | 9377 | ||
9065 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">352</context></context-group></trans-unit> | 9378 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">353</context></context-group></trans-unit> |
9066 | <trans-unit id="5210096066382592800"> | 9379 | <trans-unit id="5210096066382592800"> |
9067 | <source>Video to import updated.</source> | 9380 | <source>Video to import updated.</source> |
9068 | <target>Vidèo d’importar actualizada.</target> | 9381 | <target>Vidèo d’importar actualizada.</target> |
@@ -9142,7 +9455,7 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9142 | <target state="new">Report comment</target> | 9455 | <target state="new">Report comment</target> |
9143 | 9456 | ||
9144 | 9457 | ||
9145 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 9458 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/report-modals/comment-report.component.ts</context><context context-type="linenumber">51</context></context-group></trans-unit> |
9146 | 9459 | ||
9147 | 9460 | ||
9148 | <trans-unit id="6775540171466219199" datatype="html"> | 9461 | <trans-unit id="6775540171466219199" datatype="html"> |
@@ -9306,6 +9619,36 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9306 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> | 9619 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> |
9307 | <context context-type="linenumber">36</context> | 9620 | <context context-type="linenumber">36</context> |
9308 | </context-group> | 9621 | </context-group> |
9622 | </trans-unit><trans-unit id="4668975178372693951" datatype="html"> | ||
9623 | <source>Discover videos</source><target state="new">Discover videos</target> | ||
9624 | <context-group purpose="location"> | ||
9625 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9626 | <context context-type="linenumber">23</context> | ||
9627 | </context-group> | ||
9628 | </trans-unit><trans-unit id="8067135025051844577" datatype="html"> | ||
9629 | <source>Trending videos</source><target state="new">Trending videos</target> | ||
9630 | <context-group purpose="location"> | ||
9631 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9632 | <context context-type="linenumber">32</context> | ||
9633 | </context-group> | ||
9634 | </trans-unit><trans-unit id="664221386829541948" datatype="html"> | ||
9635 | <source>Recently added videos</source><target state="new">Recently added videos</target> | ||
9636 | <context-group purpose="location"> | ||
9637 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9638 | <context context-type="linenumber">58</context> | ||
9639 | </context-group> | ||
9640 | </trans-unit><trans-unit id="8212906256415538361" datatype="html"> | ||
9641 | <source>Upload a video</source><target state="new">Upload a video</target> | ||
9642 | <context-group purpose="location"> | ||
9643 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9644 | <context context-type="linenumber">97</context> | ||
9645 | </context-group> | ||
9646 | </trans-unit><trans-unit id="7590784934397800835" datatype="html"> | ||
9647 | <source>Edit a video</source><target state="new">Edit a video</target> | ||
9648 | <context-group purpose="location"> | ||
9649 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9650 | <context context-type="linenumber">106</context> | ||
9651 | </context-group> | ||
9309 | </trans-unit> | 9652 | </trans-unit> |
9310 | </body> | 9653 | </body> |
9311 | </file> | 9654 | </file> |
diff --git a/client/src/locale/angular.pl-PL.xlf b/client/src/locale/angular.pl-PL.xlf index 4d7b78d02..378556c5f 100644 --- a/client/src/locale/angular.pl-PL.xlf +++ b/client/src/locale/angular.pl-PL.xlf | |||
@@ -295,7 +295,7 @@ | |||
295 | <target state="translated">Opcje</target> | 295 | <target state="translated">Opcje</target> |
296 | 296 | ||
297 | 297 | ||
298 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 298 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">48</context></context-group></trans-unit> |
299 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d" datatype="html"> | 299 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d" datatype="html"> |
300 | <source>Start at</source> | 300 | <source>Start at</source> |
301 | <target state="translated">Zacznij na</target> | 301 | <target state="translated">Zacznij na</target> |
@@ -427,7 +427,7 @@ | |||
427 | Anuluj | 427 | Anuluj |
428 | </target> | 428 | </target> |
429 | 429 | ||
430 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> | 430 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit> |
431 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd"> | 431 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd"> |
432 | <source>Download</source> | 432 | <source>Download</source> |
433 | <target>Pobierz</target> | 433 | <target>Pobierz</target> |
@@ -544,7 +544,7 @@ | |||
544 | 544 | ||
545 | 545 | ||
546 | 546 | ||
547 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 547 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
548 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc" datatype="html"> | 548 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc" datatype="html"> |
549 | <source>Edit starts/stops at</source> | 549 | <source>Edit starts/stops at</source> |
550 | <target state="translated">Edycja zaczyna się/kończy na</target> | 550 | <target state="translated">Edycja zaczyna się/kończy na</target> |
@@ -584,7 +584,7 @@ | |||
584 | 584 | ||
585 | 585 | ||
586 | 586 | ||
587 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> | 587 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
588 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> | 588 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> |
589 | <source>Edit</source> | 589 | <source>Edit</source> |
590 | <target>Edytuj</target> | 590 | <target>Edytuj</target> |
@@ -609,17 +609,10 @@ | |||
609 | <target>Pełny podgląd</target> | 609 | <target>Pełny podgląd</target> |
610 | 610 | ||
611 | <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></trans-unit> | 611 | <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></trans-unit> |
612 | <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f"> | 612 | <trans-unit id="8644431249513874405" datatype="html"> |
613 | <source>Get help</source> | ||
614 | <target>Uzyskaj pomoc</target> | ||
615 | |||
616 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit><trans-unit id="8644431249513874405" datatype="html"> | ||
617 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> | 613 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> |
618 | <context-group purpose="location"> | 614 | |
619 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 615 | <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></trans-unit> |
620 | <context context-type="linenumber">71</context> | ||
621 | </context-group> | ||
622 | </trans-unit> | ||
623 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> | 616 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> |
624 | <source>Recommended</source> | 617 | <source>Recommended</source> |
625 | <target state="translated">Rekomendowane</target> | 618 | <target state="translated">Rekomendowane</target> |
@@ -659,7 +652,7 @@ | |||
659 | <source>PROFILE SETTINGS</source> | 652 | <source>PROFILE SETTINGS</source> |
660 | <target state="new">PROFILE SETTINGS</target> | 653 | <target state="new">PROFILE SETTINGS</target> |
661 | 654 | ||
662 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 655 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">12</context></context-group></trans-unit> |
663 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3" datatype="html"> | 656 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3" datatype="html"> |
664 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> | 657 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> |
665 | <target state="translated"> | 658 | <target state="translated"> |
@@ -824,11 +817,8 @@ | |||
824 | 817 | ||
825 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> | 818 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> |
826 | <source>User</source><target state="new">User</target> | 819 | <source>User</source><target state="new">User</target> |
827 | <context-group purpose="location"> | 820 | |
828 | <context context-type="sourcefile">../app/core/users/user.service.ts</context> | 821 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit> |
829 | <context context-type="linenumber">384</context> | ||
830 | </context-group> | ||
831 | </trans-unit> | ||
832 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0"> | 822 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0"> |
833 | <source>Ban</source> | 823 | <source>Ban</source> |
834 | <target state="translated">Zbanuj</target> | 824 | <target state="translated">Zbanuj</target> |
@@ -1299,89 +1289,89 @@ The link will expire within 1 hour.</target> | |||
1299 | <source>Account settings</source> | 1289 | <source>Account settings</source> |
1300 | <target state="translated">Ustawienia konta</target> | 1290 | <target state="translated">Ustawienia konta</target> |
1301 | 1291 | ||
1302 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 1292 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
1303 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> | 1293 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> |
1304 | <source>Channels settings</source> | 1294 | <source>Channels settings</source> |
1305 | <target state="translated">Ustawienia kont</target> | 1295 | <target state="translated">Ustawienia kont</target> |
1306 | 1296 | ||
1307 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 1297 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> |
1308 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> | 1298 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> |
1309 | <source>Interface:</source> | 1299 | <source>Interface:</source> |
1310 | <target state="new">Interface:</target> | 1300 | <target state="new">Interface:</target> |
1311 | 1301 | ||
1312 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 1302 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1313 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> | 1303 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> |
1314 | <source>Videos:</source> | 1304 | <source>Videos:</source> |
1315 | <target state="new">Videos:</target> | 1305 | <target state="new">Videos:</target> |
1316 | 1306 | ||
1317 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 1307 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> |
1318 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> | 1308 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> |
1319 | <source>Sensitive:</source> | 1309 | <source>Sensitive:</source> |
1320 | <target state="new">Sensitive:</target> | 1310 | <target state="new">Sensitive:</target> |
1321 | 1311 | ||
1322 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 1312 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">54</context></context-group></trans-unit> |
1323 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1313 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> |
1324 | <source>Interface: <x id="INTERPOLATION"/></source> | 1314 | <source>Interface: <x id="INTERPOLATION"/></source> |
1325 | <target state="translated">Interfejs: | 1315 | <target state="translated">Interfejs: |
1326 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> | 1316 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> |
1327 | </target> | 1317 | </target> |
1328 | 1318 | ||
1329 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">156</context></context-group></trans-unit> | 1319 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> |
1330 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1320 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1331 | <source>Help share videos</source> | 1321 | <source>Help share videos</source> |
1332 | <target state="translated">Pomóż udostępniać filmy</target> | 1322 | <target state="translated">Pomóż udostępniać filmy</target> |
1333 | 1323 | ||
1334 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> | 1324 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
1335 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> | 1325 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> |
1336 | <source>More account settings</source> | 1326 | <source>More account settings</source> |
1337 | <target state="translated">Więcej ustawień konta</target> | 1327 | <target state="translated">Więcej ustawień konta</target> |
1338 | 1328 | ||
1339 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> | 1329 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> |
1340 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> | 1330 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> |
1341 | <source>Keyboard shortcuts</source> | 1331 | <source>Keyboard shortcuts</source> |
1342 | <target state="translated">Skróty klawiszowe</target> | 1332 | <target state="translated">Skróty klawiszowe</target> |
1343 | 1333 | ||
1344 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 1334 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">72</context></context-group></trans-unit> |
1345 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> | 1335 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> |
1346 | <source>Help</source> | 1336 | <source>Help</source> |
1347 | <target state="translated">Pomoc</target> | 1337 | <target state="translated">Pomoc</target> |
1348 | 1338 | ||
1349 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1339 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1350 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> | 1340 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> |
1351 | <source>Get help using PeerTube</source> | 1341 | <source>Get help using PeerTube</source> |
1352 | <target state="translated">Pomoc w korzystaniu z PeerTube</target> | 1342 | <target state="translated">Pomoc w korzystaniu z PeerTube</target> |
1353 | 1343 | ||
1354 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">161</context></context-group></trans-unit> | 1344 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">167</context></context-group></trans-unit> |
1355 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> | 1345 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> |
1356 | <source>Shortcuts</source> | 1346 | <source>Shortcuts</source> |
1357 | <target state="translated">Skróty</target> | 1347 | <target state="translated">Skróty</target> |
1358 | 1348 | ||
1359 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1349 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1360 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> | 1350 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> |
1361 | <source>powered by PeerTube</source> | 1351 | <source>powered by PeerTube</source> |
1362 | <target state="new">powered by PeerTube</target> | 1352 | <target state="new">powered by PeerTube</target> |
1363 | 1353 | ||
1364 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | 1354 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">177</context></context-group></trans-unit> |
1365 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> | 1355 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> |
1366 | <source>powered by PeerTube - CopyLeft 2015-2020</source> | 1356 | <source>powered by PeerTube - CopyLeft 2015-2020</source> |
1367 | <target state="translated">napędzane przez PeerTube - CopyLeft 2015-2020</target> | 1357 | <target state="translated">napędzane przez PeerTube - CopyLeft 2015-2020</target> |
1368 | 1358 | ||
1369 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> | 1359 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">176</context></context-group></trans-unit> |
1370 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344" datatype="html"> | 1360 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344" datatype="html"> |
1371 | <source>Log out</source> | 1361 | <source>Log out</source> |
1372 | <target state="translated">Wyloguj się</target> | 1362 | <target state="translated">Wyloguj się</target> |
1373 | 1363 | ||
1374 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">70</context></context-group></trans-unit> | 1364 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit> |
1375 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> | 1365 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> |
1376 | <source>Create an account</source> | 1366 | <source>Create an account</source> |
1377 | <target>Utwórz konto</target> | 1367 | <target>Utwórz konto</target> |
1378 | 1368 | ||
1379 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">78</context></context-group></trans-unit> | 1369 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
1380 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> | 1370 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> |
1381 | <source>MY LIBRARY</source> | 1371 | <source>MY LIBRARY</source> |
1382 | <target state="translated">MOJA BIBLIOTEKA</target> | 1372 | <target state="translated">MOJA BIBLIOTEKA</target> |
1383 | 1373 | ||
1384 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 1374 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">88</context></context-group></trans-unit> |
1385 | <trans-unit id="6371572688505952303"> | 1375 | <trans-unit id="6371572688505952303"> |
1386 | <source>My library</source> | 1376 | <source>My library</source> |
1387 | <target>Moja biblioteka</target> | 1377 | <target>Moja biblioteka</target> |
@@ -1421,22 +1411,22 @@ The link will expire within 1 hour.</target> | |||
1421 | <source>Videos</source> | 1411 | <source>Videos</source> |
1422 | <target>Filmy</target> | 1412 | <target>Filmy</target> |
1423 | 1413 | ||
1424 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">86</context></context-group></trans-unit> | 1414 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">92</context></context-group></trans-unit> |
1425 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> | 1415 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> |
1426 | <source>Playlists</source> | 1416 | <source>Playlists</source> |
1427 | <target state="translated">Playlisty</target> | 1417 | <target state="translated">Playlisty</target> |
1428 | 1418 | ||
1429 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">91</context></context-group></trans-unit> | 1419 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">97</context></context-group></trans-unit> |
1430 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2"> | 1420 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2"> |
1431 | <source>Subscriptions</source> | 1421 | <source>Subscriptions</source> |
1432 | <target>Subskrybcje</target> | 1422 | <target>Subskrybcje</target> |
1433 | 1423 | ||
1434 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 1424 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">102</context></context-group></trans-unit> |
1435 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8" datatype="html"> | 1425 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8" datatype="html"> |
1436 | <source>History</source> | 1426 | <source>History</source> |
1437 | <target state="translated">Historia</target> | 1427 | <target state="translated">Historia</target> |
1438 | 1428 | ||
1439 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit> | 1429 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">107</context></context-group></trans-unit> |
1440 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> | 1430 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> |
1441 | <source>VIDEOS</source> | 1431 | <source>VIDEOS</source> |
1442 | <target state="translated">FILMY</target> | 1432 | <target state="translated">FILMY</target> |
@@ -1448,27 +1438,27 @@ The link will expire within 1 hour.</target> | |||
1448 | <target state="translated">Odkryj</target> | 1438 | <target state="translated">Odkryj</target> |
1449 | 1439 | ||
1450 | 1440 | ||
1451 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">111</context></context-group></trans-unit> | 1441 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">117</context></context-group></trans-unit> |
1452 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> | 1442 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> |
1453 | <source>Trending</source> | 1443 | <source>Trending</source> |
1454 | <target>Na czasie</target> | 1444 | <target>Na czasie</target> |
1455 | 1445 | ||
1456 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">116</context></context-group></trans-unit> | 1446 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">122</context></context-group></trans-unit> |
1457 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> | 1447 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> |
1458 | <source>Most liked</source> | 1448 | <source>Most liked</source> |
1459 | <target state="translated">Najbardziej lubiane</target> | 1449 | <target state="translated">Najbardziej lubiane</target> |
1460 | 1450 | ||
1461 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">121</context></context-group></trans-unit> | 1451 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">127</context></context-group></trans-unit> |
1462 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> | 1452 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> |
1463 | <source>Recently added</source> | 1453 | <source>Recently added</source> |
1464 | <target>Ostatnio dodane</target> | 1454 | <target>Ostatnio dodane</target> |
1465 | 1455 | ||
1466 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">126</context></context-group></trans-unit> | 1456 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">132</context></context-group></trans-unit> |
1467 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> | 1457 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> |
1468 | <source>Administration</source> | 1458 | <source>Administration</source> |
1469 | <target>Administracja</target> | 1459 | <target>Administracja</target> |
1470 | 1460 | ||
1471 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">140</context></context-group></trans-unit> | 1461 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">146</context></context-group></trans-unit> |
1472 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> | 1462 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> |
1473 | <source>About</source> | 1463 | <source>About</source> |
1474 | <target>O nas</target> | 1464 | <target>O nas</target> |
@@ -1479,7 +1469,7 @@ The link will expire within 1 hour.</target> | |||
1479 | <source>Contact</source> | 1469 | <source>Contact</source> |
1480 | <target state="translated">Kontakt</target> | 1470 | <target state="translated">Kontakt</target> |
1481 | 1471 | ||
1482 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">160</context></context-group></trans-unit> | 1472 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">166</context></context-group></trans-unit> |
1483 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771" datatype="html"> | 1473 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771" datatype="html"> |
1484 | <source>View your notifications</source> | 1474 | <source>View your notifications</source> |
1485 | <target state="translated">Zobacz powiadomienia</target> | 1475 | <target state="translated">Zobacz powiadomienia</target> |
@@ -1506,7 +1496,7 @@ The link will expire within 1 hour.</target> | |||
1506 | <source>See all your notifications</source> | 1496 | <source>See all your notifications</source> |
1507 | <target state="translated">Zobacz wszystkie powiadomienia</target> | 1497 | <target state="translated">Zobacz wszystkie powiadomienia</target> |
1508 | 1498 | ||
1509 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 1499 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">40</context></context-group></trans-unit> |
1510 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> | 1500 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> |
1511 | <source>Search videos, channels…</source> | 1501 | <source>Search videos, channels…</source> |
1512 | <target state="translated">Szukaj filmów, kanałów…</target> | 1502 | <target state="translated">Szukaj filmów, kanałów…</target> |
@@ -1830,22 +1820,22 @@ The link will expire within 1 hour.</target> | |||
1830 | <source>FAQ</source> | 1820 | <source>FAQ</source> |
1831 | <target state="translated">Często zadawane pytania</target> | 1821 | <target state="translated">Często zadawane pytania</target> |
1832 | 1822 | ||
1833 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">163</context></context-group></trans-unit> | 1823 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
1834 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> | 1824 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> |
1835 | <source>Frequently asked questions about PeerTube</source> | 1825 | <source>Frequently asked questions about PeerTube</source> |
1836 | <target state="translated">Najczęściej zadawane pytania na temat PeerTube</target> | 1826 | <target state="translated">Najczęściej zadawane pytania na temat PeerTube</target> |
1837 | 1827 | ||
1838 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1828 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1839 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> | 1829 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> |
1840 | <source>API</source> | 1830 | <source>API</source> |
1841 | <target state="new">API</target> | 1831 | <target state="new">API</target> |
1842 | 1832 | ||
1843 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1833 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1844 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> | 1834 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> |
1845 | <source>API documentation</source> | 1835 | <source>API documentation</source> |
1846 | <target state="translated">Dokumentacja API</target> | 1836 | <target state="translated">Dokumentacja API</target> |
1847 | 1837 | ||
1848 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 1838 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
1849 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5"> | 1839 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5"> |
1850 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> | 1840 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> |
1851 | <target>Zaplanuj publikację ( | 1841 | <target>Zaplanuj publikację ( |
@@ -2201,7 +2191,13 @@ The link will expire within 1 hour.</target> | |||
2201 | <source>Less customization</source> | 2191 | <source>Less customization</source> |
2202 | <target state="translated">Mniej opcji</target> | 2192 | <target state="translated">Mniej opcji</target> |
2203 | 2193 | ||
2204 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit> | 2194 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit><trans-unit id="2454050363478003966" datatype="html"> |
2195 | <source>Login</source><target state="new">Login</target> | ||
2196 | <context-group purpose="location"> | ||
2197 | <context context-type="sourcefile">../app/+login/login-routing.module.ts</context> | ||
2198 | <context context-type="linenumber">14</context> | ||
2199 | </context-group> | ||
2200 | </trans-unit> | ||
2205 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e" datatype="html"> | 2201 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e" datatype="html"> |
2206 | <source>Autoplay</source> | 2202 | <source>Autoplay</source> |
2207 | <target state="translated">Automatyczne odtwarzanie</target> | 2203 | <target state="translated">Automatyczne odtwarzanie</target> |
@@ -2454,7 +2450,7 @@ The link will expire within 1 hour.</target> | |||
2454 | <source>No comments.</source> | 2450 | <source>No comments.</source> |
2455 | <target>Brak komentarzy.</target> | 2451 | <target>Brak komentarzy.</target> |
2456 | 2452 | ||
2457 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 2453 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> |
2458 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> | 2454 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> |
2459 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> | 2455 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> |
2460 | <target state="translated">Wyświetl | 2456 | <target state="translated">Wyświetl |
@@ -2462,7 +2458,7 @@ The link will expire within 1 hour.</target> | |||
2462 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'autora' }}"/> i innych | 2458 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'autora' }}"/> i innych |
2463 | </target> | 2459 | </target> |
2464 | 2460 | ||
2465 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">79</context></context-group></trans-unit> | 2461 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
2466 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> | 2462 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> |
2467 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> | 2463 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> |
2468 | <target state="translated">Wyświetl | 2464 | <target state="translated">Wyświetl |
@@ -2470,51 +2466,131 @@ The link will expire within 1 hour.</target> | |||
2470 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'autora' }}"/> | 2466 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'autora' }}"/> |
2471 | </target> | 2467 | </target> |
2472 | 2468 | ||
2473 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 2469 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">87</context></context-group></trans-unit> |
2474 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> | 2470 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> |
2475 | <source>View <x id="INTERPOLATION"/> replies</source> | 2471 | <source>View <x id="INTERPOLATION"/> replies</source> |
2476 | <target state="translated">Wyświetl | 2472 | <target state="translated">Wyświetl |
2477 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> komentarzy | 2473 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> komentarzy |
2478 | </target> | 2474 | </target> |
2479 | 2475 | ||
2480 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">85</context></context-group></trans-unit> | 2476 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">90</context></context-group></trans-unit> |
2481 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828"> | 2477 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828"> |
2482 | <source>Comments are disabled.</source> | 2478 | <source>Comments are disabled.</source> |
2483 | <target> | 2479 | <target> |
2484 | Komentarze są wyłączone. | 2480 | Komentarze są wyłączone. |
2485 | </target> | 2481 | </target> |
2486 | 2482 | ||
2487 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 2483 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit> |
2488 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e"> | 2484 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e"> |
2489 | <source>Add comment...</source> | 2485 | <source>Add comment...</source> |
2490 | <target>Dodaj komentarz…</target> | 2486 | <target>Dodaj komentarz…</target> |
2491 | 2487 | ||
2492 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | 2488 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit><trans-unit id="4e5254dedf0c12ce7e7c2197384fceebe3b29a2b" datatype="html"> |
2493 | <trans-unit id="8956c0f4c6974289fc63f1ab6b54f5b32ed65eeb" datatype="html"> | 2489 | <source>Markdown compatible</source><target state="new">Markdown compatible</target> |
2494 | <source>Reply</source> | 2490 | <context-group purpose="location"> |
2495 | <target state="translated">Napisz komentarz</target> | 2491 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> |
2496 | 2492 | <context context-type="linenumber">13</context> | |
2497 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 2493 | </context-group> |
2494 | </trans-unit><trans-unit id="4739ffad85f09defefdb6e51b45f43b2ef7c4388" datatype="html"> | ||
2495 | <source>Markdown compatible that supports:</source><target state="new">Markdown compatible that supports:</target> | ||
2496 | <context-group purpose="location"> | ||
2497 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2498 | <context context-type="linenumber">15</context> | ||
2499 | </context-group> | ||
2500 | </trans-unit><trans-unit id="9a53b17a021bb0677c156fd893461797fc497a10" datatype="html"> | ||
2501 | <source>Auto generated links</source><target state="new">Auto generated links</target> | ||
2502 | <context-group purpose="location"> | ||
2503 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2504 | <context context-type="linenumber">18</context> | ||
2505 | </context-group> | ||
2506 | </trans-unit><trans-unit id="664f99b8919d6dd2faa1c1f7c378aa86d1be5e8a" datatype="html"> | ||
2507 | <source>Break lines</source><target state="new">Break lines</target> | ||
2508 | <context-group purpose="location"> | ||
2509 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2510 | <context context-type="linenumber">19</context> | ||
2511 | </context-group> | ||
2512 | </trans-unit><trans-unit id="b15e7bec5c7833d2d9634946ccbed68967b1bee1" datatype="html"> | ||
2513 | <source>Lists</source><target state="new">Lists</target> | ||
2514 | <context-group purpose="location"> | ||
2515 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2516 | <context context-type="linenumber">20</context> | ||
2517 | </context-group> | ||
2518 | </trans-unit><trans-unit id="ab4426b60f13c00b61d6b714d390dc629f314980" datatype="html"> | ||
2519 | <source>Emphasis</source><target state="new">Emphasis</target> | ||
2520 | <context-group purpose="location"> | ||
2521 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2522 | <context context-type="linenumber">22</context> | ||
2523 | </context-group> | ||
2524 | </trans-unit><trans-unit id="4e13b179501d3d32721037e03b4c04acb9857c5f" datatype="html"> | ||
2525 | <source>bold</source><target state="new">bold</target> | ||
2526 | <context-group purpose="location"> | ||
2527 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2528 | <context context-type="linenumber">23</context> | ||
2529 | </context-group> | ||
2530 | </trans-unit><trans-unit id="3c12190421fbb2756e6bbead923df9ec5de8ede2" datatype="html"> | ||
2531 | <source>italic</source><target state="new">italic</target> | ||
2532 | <context-group purpose="location"> | ||
2533 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2534 | <context context-type="linenumber">23</context> | ||
2535 | </context-group> | ||
2536 | </trans-unit><trans-unit id="adb4bbdcb961b8aac8298d6cac554d9b25636b7a" datatype="html"> | ||
2537 | <source>Emoji shortcuts</source><target state="new">Emoji shortcuts</target> | ||
2538 | <context-group purpose="location"> | ||
2539 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2540 | <context context-type="linenumber">26</context> | ||
2541 | </context-group> | ||
2542 | </trans-unit><trans-unit id="b9809a21a8eb3c9db2a0282c5dd94bc221575c96" datatype="html"> | ||
2543 | <source>Emoji markup</source><target state="new">Emoji markup</target> | ||
2544 | <context-group purpose="location"> | ||
2545 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2546 | <context context-type="linenumber">30</context> | ||
2547 | </context-group> | ||
2548 | </trans-unit><trans-unit id="f37feb427aaa551edd1f22616be6464bc0d492de" datatype="html"> | ||
2549 | <source>See complete list</source><target state="new">See complete list</target> | ||
2550 | <context-group purpose="location"> | ||
2551 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2552 | <context context-type="linenumber">32</context> | ||
2553 | </context-group> | ||
2554 | </trans-unit> | ||
2555 | |||
2498 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135" datatype="html"> | 2556 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135" datatype="html"> |
2499 | <source>You are one step away from commenting</source> | 2557 | <source>You are one step away from commenting</source> |
2500 | <target state="translated">Jesteś o krok od skomentowania</target> | 2558 | <target state="translated">Jesteś o krok od skomentowania</target> |
2501 | 2559 | ||
2502 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 2560 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
2503 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> | 2561 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> |
2504 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> | 2562 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> |
2505 | <target state="translated">Możesz komentować używając każdego konta instancji zgodnych z ActivityPub. Na większości z nich możesz znaleźć film wpisując adres URL w wyszukiwarkę, a następnie skomentować używając ich wewnętrznego interfejsu.</target> | 2563 | <target state="translated">Możesz komentować używając każdego konta instancji zgodnych z ActivityPub. Na większości z nich możesz znaleźć film wpisując adres URL w wyszukiwarkę, a następnie skomentować używając ich wewnętrznego interfejsu.</target> |
2506 | 2564 | ||
2507 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 2565 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
2508 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb" datatype="html"> | 2566 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb" datatype="html"> |
2509 | <source>If you have an account on Mastodon or Pleroma, you can open it directly in their interface:</source> | 2567 | <source>If you have an account on Mastodon or Pleroma, you can open it directly in their interface:</source> |
2510 | <target state="translated">Jeżeli masz konto na Mastodonie lub Pleromie, możesz otworzyć go bezpośrednio z poziomu ich interfejsu:</target> | 2568 | <target state="translated">Jeżeli masz konto na Mastodonie lub Pleromie, możesz otworzyć go bezpośrednio z poziomu ich interfejsu:</target> |
2511 | 2569 | ||
2512 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">41</context></context-group></trans-unit> | 2570 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">65</context></context-group></trans-unit> |
2513 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> | 2571 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> |
2514 | <source>Login to comment</source> | 2572 | <source>Login to comment</source> |
2515 | <target state="translated">Zaloguj się aby skomentować</target> | 2573 | <target state="translated">Zaloguj się aby skomentować</target> |
2516 | 2574 | ||
2517 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">52</context></context-group></trans-unit> | 2575 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit><trans-unit id="974170f455ff5a9034d5737e84b4194c0046fc6b" datatype="html"> |
2576 | <source>Markdown Emoji List</source><target state="new">Markdown Emoji List</target> | ||
2577 | <context-group purpose="location"> | ||
2578 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2579 | <context context-type="linenumber">84</context> | ||
2580 | </context-group> | ||
2581 | </trans-unit><trans-unit id="2662644497259948010" datatype="html"> | ||
2582 | <source>Comment</source><target state="new">Comment</target> | ||
2583 | <context-group purpose="location"> | ||
2584 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2585 | <context context-type="linenumber">58</context> | ||
2586 | </context-group> | ||
2587 | </trans-unit><trans-unit id="4502286564339177240" datatype="html"> | ||
2588 | <source>Reply</source><target state="new">Reply</target> | ||
2589 | <context-group purpose="location"> | ||
2590 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2591 | <context context-type="linenumber">60</context> | ||
2592 | </context-group> | ||
2593 | </trans-unit> | ||
2518 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285"> | 2594 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285"> |
2519 | <source>Highlighted comment</source> | 2595 | <source>Highlighted comment</source> |
2520 | <target>Wyróżniony komentarz</target> | 2596 | <target>Wyróżniony komentarz</target> |
@@ -2529,7 +2605,7 @@ The link will expire within 1 hour.</target> | |||
2529 | <source>This comment has been deleted</source> | 2605 | <source>This comment has been deleted</source> |
2530 | <target state="translated">Ten komentarz został usunięty</target> | 2606 | <target state="translated">Ten komentarz został usunięty</target> |
2531 | 2607 | ||
2532 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">62</context></context-group></trans-unit> | 2608 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">61</context></context-group></trans-unit> |
2533 | <trans-unit id="9031514421077169181" datatype="html"> | 2609 | <trans-unit id="9031514421077169181" datatype="html"> |
2534 | <source>Video redundancies</source> | 2610 | <source>Video redundancies</source> |
2535 | <target state="translated">Redundancje filmów</target> | 2611 | <target state="translated">Redundancje filmów</target> |
@@ -3374,7 +3450,25 @@ The link will expire within 1 hour.</target> | |||
3374 | <target state="new">No account found.</target> | 3450 | <target state="new">No account found.</target> |
3375 | 3451 | ||
3376 | 3452 | ||
3377 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit> | 3453 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit><trans-unit id="2338185419645468935" datatype="html"> |
3454 | <source>List installed plugins</source><target state="new">List installed plugins</target> | ||
3455 | <context-group purpose="location"> | ||
3456 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3457 | <context context-type="linenumber">28</context> | ||
3458 | </context-group> | ||
3459 | </trans-unit><trans-unit id="8897412584195581488" datatype="html"> | ||
3460 | <source>Search plugins</source><target state="new">Search plugins</target> | ||
3461 | <context-group purpose="location"> | ||
3462 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3463 | <context context-type="linenumber">37</context> | ||
3464 | </context-group> | ||
3465 | </trans-unit><trans-unit id="4994333937800672218" datatype="html"> | ||
3466 | <source>Show plugin</source><target state="new">Show plugin</target> | ||
3467 | <context-group purpose="location"> | ||
3468 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3469 | <context context-type="linenumber">46</context> | ||
3470 | </context-group> | ||
3471 | </trans-unit> | ||
3378 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> | 3472 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> |
3379 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> | 3473 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> |
3380 | <target state="new">Showing | 3474 | <target state="new">Showing |
@@ -4094,7 +4188,7 @@ The link will expire within 1 hour.</target> | |||
4094 | <source>Administrator</source> | 4188 | <source>Administrator</source> |
4095 | <target>Administrator</target> | 4189 | <target>Administrator</target> |
4096 | 4190 | ||
4097 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">385</context></context-group></trans-unit> | 4191 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">383</context></context-group></trans-unit> |
4098 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587"> | 4192 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587"> |
4099 | <source>Admin email</source> | 4193 | <source>Admin email</source> |
4100 | <target>E-mail administratora</target> | 4194 | <target>E-mail administratora</target> |
@@ -4350,27 +4444,27 @@ The link will expire within 1 hour.</target> | |||
4350 | <source>VIDEO SETTINGS</source> | 4444 | <source>VIDEO SETTINGS</source> |
4351 | <target state="new">VIDEO SETTINGS</target> | 4445 | <target state="new">VIDEO SETTINGS</target> |
4352 | 4446 | ||
4353 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit> | 4447 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
4354 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> | 4448 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> |
4355 | <source>NOTIFICATIONS</source> | 4449 | <source>NOTIFICATIONS</source> |
4356 | <target state="new">NOTIFICATIONS</target> | 4450 | <target state="new">NOTIFICATIONS</target> |
4357 | 4451 | ||
4358 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 4452 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">37</context></context-group></trans-unit> |
4359 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> | 4453 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> |
4360 | <source>INTERFACE</source> | 4454 | <source>INTERFACE</source> |
4361 | <target state="new">INTERFACE</target> | 4455 | <target state="new">INTERFACE</target> |
4362 | 4456 | ||
4363 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 4457 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit> |
4364 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> | 4458 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> |
4365 | <source>PASSWORD</source> | 4459 | <source>PASSWORD</source> |
4366 | <target state="new">PASSWORD</target> | 4460 | <target state="new">PASSWORD</target> |
4367 | 4461 | ||
4368 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">59</context></context-group></trans-unit> | 4462 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">57</context></context-group></trans-unit> |
4369 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> | 4463 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> |
4370 | <source>EMAIL</source> | 4464 | <source>EMAIL</source> |
4371 | <target state="new">EMAIL</target> | 4465 | <target state="new">EMAIL</target> |
4372 | 4466 | ||
4373 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">69</context></context-group></trans-unit> | 4467 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">67</context></context-group></trans-unit> |
4374 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> | 4468 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> |
4375 | <source>DANGER ZONE</source> | 4469 | <source>DANGER ZONE</source> |
4376 | <target state="new">DANGER ZONE</target> | 4470 | <target state="new">DANGER ZONE</target> |
@@ -4614,7 +4708,31 @@ The link will expire within 1 hour.</target> | |||
4614 | <source>No ownership change request found.</source> | 4708 | <source>No ownership change request found.</source> |
4615 | <target state="new">No ownership change request found.</target> | 4709 | <target state="new">No ownership change request found.</target> |
4616 | 4710 | ||
4617 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit> | 4711 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit><trans-unit id="4247400351982331798" datatype="html"> |
4712 | <source>Account settings</source><target state="new">Account settings</target> | ||
4713 | <context-group purpose="location"> | ||
4714 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4715 | <context context-type="linenumber">37</context> | ||
4716 | </context-group> | ||
4717 | </trans-unit><trans-unit id="154062590416726309" datatype="html"> | ||
4718 | <source>Account playlists</source><target state="new">Account playlists</target> | ||
4719 | <context-group purpose="location"> | ||
4720 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4721 | <context context-type="linenumber">55</context> | ||
4722 | </context-group> | ||
4723 | </trans-unit><trans-unit id="6550287183367517925" datatype="html"> | ||
4724 | <source>Create new playlist</source><target state="new">Create new playlist</target> | ||
4725 | <context-group purpose="location"> | ||
4726 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4727 | <context context-type="linenumber">64</context> | ||
4728 | </context-group> | ||
4729 | </trans-unit><trans-unit id="2864486939135008600" datatype="html"> | ||
4730 | <source>Playlist elements</source><target state="new">Playlist elements</target> | ||
4731 | <context-group purpose="location"> | ||
4732 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4733 | <context context-type="linenumber">73</context> | ||
4734 | </context-group> | ||
4735 | </trans-unit> | ||
4618 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> | 4736 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> |
4619 | <source>My imports</source> | 4737 | <source>My imports</source> |
4620 | <target state="new">My imports</target> | 4738 | <target state="new">My imports</target> |
@@ -4875,7 +4993,25 @@ The link will expire within 1 hour.</target> | |||
4875 | <source>An error occurred.</source> | 4993 | <source>An error occurred.</source> |
4876 | <target state="translated">Wystąpił błąd.</target> | 4994 | <target state="translated">Wystąpił błąd.</target> |
4877 | 4995 | ||
4878 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 4996 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit><trans-unit id="9128669621822125729" datatype="html"> |
4997 | <source>Video channel videos</source><target state="new">Video channel videos</target> | ||
4998 | <context-group purpose="location"> | ||
4999 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5000 | <context context-type="linenumber">25</context> | ||
5001 | </context-group> | ||
5002 | </trans-unit><trans-unit id="3193822049276963401" datatype="html"> | ||
5003 | <source>Video channel playlists</source><target state="new">Video channel playlists</target> | ||
5004 | <context-group purpose="location"> | ||
5005 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5006 | <context context-type="linenumber">38</context> | ||
5007 | </context-group> | ||
5008 | </trans-unit><trans-unit id="4723526509708949088" datatype="html"> | ||
5009 | <source>About video channel</source><target state="new">About video channel</target> | ||
5010 | <context-group purpose="location"> | ||
5011 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5012 | <context context-type="linenumber">47</context> | ||
5013 | </context-group> | ||
5014 | </trans-unit> | ||
4879 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97" datatype="html"> | 5015 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97" datatype="html"> |
4880 | <source>Request email for account verification</source> | 5016 | <source>Request email for account verification</source> |
4881 | <target state="translated">Wyślij e-mail do weryfikacji konta</target> | 5017 | <target state="translated">Wyślij e-mail do weryfikacji konta</target> |
@@ -4992,7 +5128,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
4992 | <source>Stats</source> | 5128 | <source>Stats</source> |
4993 | <target>Statystyki</target> | 5129 | <target>Statystyki</target> |
4994 | 5130 | ||
4995 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 5131 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
4996 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc"> | 5132 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc"> |
4997 | <source>Joined <x id="INTERPOLATION"/></source> | 5133 | <source>Joined <x id="INTERPOLATION"/></source> |
4998 | <target>Dołączył(a) | 5134 | <target>Dołączył(a) |
@@ -5374,7 +5510,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5374 | <source>This instance does not have instances followings.</source> | 5510 | <source>This instance does not have instances followings.</source> |
5375 | <target state="translated">Ta instancja nie obserwuje innych instancji.</target> | 5511 | <target state="translated">Ta instancja nie obserwuje innych instancji.</target> |
5376 | 5512 | ||
5377 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit> | 5513 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit><trans-unit id="4195286790385468087" datatype="html"> |
5514 | <source>About this instance</source><target state="new">About this instance</target> | ||
5515 | <context-group purpose="location"> | ||
5516 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5517 | <context context-type="linenumber">26</context> | ||
5518 | </context-group> | ||
5519 | </trans-unit><trans-unit id="8773846522957677259" datatype="html"> | ||
5520 | <source>About PeerTube</source><target state="new">About PeerTube</target> | ||
5521 | <context-group purpose="location"> | ||
5522 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5523 | <context context-type="linenumber">38</context> | ||
5524 | </context-group> | ||
5525 | </trans-unit><trans-unit id="5782088737558028158" datatype="html"> | ||
5526 | <source>About follows</source><target state="new">About follows</target> | ||
5527 | <context-group purpose="location"> | ||
5528 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5529 | <context context-type="linenumber">47</context> | ||
5530 | </context-group> | ||
5531 | </trans-unit> | ||
5378 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> | 5532 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> |
5379 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> | 5533 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> |
5380 | <target state="translated">Stworzone z ❤ przez | 5534 | <target state="translated">Stworzone z ❤ przez |
@@ -5544,6 +5698,12 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5544 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 5698 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> |
5545 | <context context-type="linenumber">1</context> | 5699 | <context context-type="linenumber">1</context> |
5546 | </context-group> | 5700 | </context-group> |
5701 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
5702 | <source>Get help</source><target state="new">Get help</target> | ||
5703 | <context-group purpose="location"> | ||
5704 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | ||
5705 | <context context-type="linenumber">16</context> | ||
5706 | </context-group> | ||
5547 | </trans-unit> | 5707 | </trans-unit> |
5548 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1" datatype="html"> | 5708 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1" datatype="html"> |
5549 | <source>Create my account</source> | 5709 | <source>Create my account</source> |
@@ -5651,7 +5811,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5651 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/> tej instancji | 5811 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/> tej instancji |
5652 | </target> | 5812 | </target> |
5653 | 5813 | ||
5654 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 5814 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit><trans-unit id="3301086086650990787" datatype="html"> |
5815 | <source>Register</source><target state="new">Register</target> | ||
5816 | <context-group purpose="location"> | ||
5817 | <context context-type="sourcefile">../app/+signup/+register/register-routing.module.ts</context> | ||
5818 | <context context-type="linenumber">14</context> | ||
5819 | </context-group> | ||
5820 | </trans-unit> | ||
5655 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> | 5821 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> |
5656 | <source>Sorry, we couldn't find the page you were looking for.</source> | 5822 | <source>Sorry, we couldn't find the page you were looking for.</source> |
5657 | <target state="translated">Przepraszamy, ale nie mogliśmy znaleźć strony, której szukasz.</target> | 5823 | <target state="translated">Przepraszamy, ale nie mogliśmy znaleźć strony, której szukasz.</target> |
@@ -5672,7 +5838,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5672 | <target>Brak opisu</target> | 5838 | <target>Brak opisu</target> |
5673 | 5839 | ||
5674 | 5840 | ||
5675 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit> | 5841 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit><trans-unit id="819067926858619041" datatype="html"> |
5842 | <source>Account videos</source><target state="new">Account videos</target> | ||
5843 | <context-group purpose="location"> | ||
5844 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
5845 | <context context-type="linenumber">29</context> | ||
5846 | </context-group> | ||
5847 | </trans-unit><trans-unit id="6823616469362610020" datatype="html"> | ||
5848 | <source>Account video channels</source><target state="new">Account video channels</target> | ||
5849 | <context-group purpose="location"> | ||
5850 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
5851 | <context context-type="linenumber">42</context> | ||
5852 | </context-group> | ||
5853 | </trans-unit><trans-unit id="7678273613459026643" datatype="html"> | ||
5854 | <source>About account</source><target state="new">About account</target> | ||
5855 | <context-group purpose="location"> | ||
5856 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
5857 | <context context-type="linenumber">51</context> | ||
5858 | </context-group> | ||
5859 | </trans-unit> | ||
5676 | <trans-unit id="3755500631176893489" datatype="html"> | 5860 | <trans-unit id="3755500631176893489" datatype="html"> |
5677 | <source>Published <x id="PH"/> videos</source> | 5861 | <source>Published <x id="PH"/> videos</source> |
5678 | <target state="translated">Opublikował(-a) | 5862 | <target state="translated">Opublikował(-a) |
@@ -5789,7 +5973,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5789 | <source>Configuration updated.</source> | 5973 | <source>Configuration updated.</source> |
5790 | <target>Zaktualizowano konfigurację.</target> | 5974 | <target>Zaktualizowano konfigurację.</target> |
5791 | 5975 | ||
5792 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit> | 5976 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit><trans-unit id="6284468333579755406" datatype="html"> |
5977 | <source>Edit custom configuration</source><target state="new">Edit custom configuration</target> | ||
5978 | <context-group purpose="location"> | ||
5979 | <context context-type="sourcefile">../app/+admin/config/config.routes.ts</context> | ||
5980 | <context context-type="linenumber">26</context> | ||
5981 | </context-group> | ||
5982 | </trans-unit> | ||
5793 | 5983 | ||
5794 | 5984 | ||
5795 | <trans-unit id="6549061957433635758" datatype="html"> | 5985 | <trans-unit id="6549061957433635758" datatype="html"> |
@@ -6268,7 +6458,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6268 | <x id="PH"/>. | 6458 | <x id="PH"/>. |
6269 | </target> | 6459 | </target> |
6270 | 6460 | ||
6271 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 6461 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit><trans-unit id="3229595422546554334" datatype="html"> |
6462 | <source>Jobs</source><target state="new">Jobs</target> | ||
6463 | <context-group purpose="location"> | ||
6464 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6465 | <context context-type="linenumber">26</context> | ||
6466 | </context-group> | ||
6467 | </trans-unit><trans-unit id="4804785061014590286" datatype="html"> | ||
6468 | <source>Logs</source><target state="new">Logs</target> | ||
6469 | <context-group purpose="location"> | ||
6470 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6471 | <context context-type="linenumber">37</context> | ||
6472 | </context-group> | ||
6473 | </trans-unit> | ||
6272 | <trans-unit id="3150704904301058778" datatype="html"> | 6474 | <trans-unit id="3150704904301058778" datatype="html"> |
6273 | <source>The plugin index is not available. Please retry later.</source> | 6475 | <source>The plugin index is not available. Please retry later.</source> |
6274 | <target state="translated">Indeks wtyczki nie jest dostępny. Spróbuj ponownie później.</target> | 6476 | <target state="translated">Indeks wtyczki nie jest dostępny. Spróbuj ponownie później.</target> |
@@ -6382,6 +6584,18 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6382 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> | 6584 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> |
6383 | <context context-type="linenumber">86</context> | 6585 | <context context-type="linenumber">86</context> |
6384 | </context-group> | 6586 | </context-group> |
6587 | </trans-unit><trans-unit id="2903648076838460070" datatype="html"> | ||
6588 | <source>Videos blocked</source><target state="new">Videos blocked</target> | ||
6589 | <context-group purpose="location"> | ||
6590 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6591 | <context context-type="linenumber">67</context> | ||
6592 | </context-group> | ||
6593 | </trans-unit><trans-unit id="7805059636749367886" datatype="html"> | ||
6594 | <source>Muted instances</source><target state="new">Muted instances</target> | ||
6595 | <context-group purpose="location"> | ||
6596 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6597 | <context context-type="linenumber">89</context> | ||
6598 | </context-group> | ||
6385 | </trans-unit> | 6599 | </trans-unit> |
6386 | <trans-unit id="5974506725502681113" datatype="html"> | 6600 | <trans-unit id="5974506725502681113" datatype="html"> |
6387 | <source>Password changed for user <x id="PH"/>.</source> | 6601 | <source>Password changed for user <x id="PH"/>.</source> |
@@ -6394,7 +6608,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6394 | <source>Update user password</source> | 6608 | <source>Update user password</source> |
6395 | <target state="translated">Zaktualizuj hasło użytkownika</target> | 6609 | <target state="translated">Zaktualizuj hasło użytkownika</target> |
6396 | 6610 | ||
6397 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit> | 6611 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit><trans-unit id="177544274549739411" datatype="html"> |
6612 | <source>Following list</source><target state="new">Following list</target> | ||
6613 | <context-group purpose="location"> | ||
6614 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6615 | <context context-type="linenumber">28</context> | ||
6616 | </context-group> | ||
6617 | </trans-unit><trans-unit id="8092429110007204784" datatype="html"> | ||
6618 | <source>Followers list</source><target state="new">Followers list</target> | ||
6619 | <context-group purpose="location"> | ||
6620 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6621 | <context context-type="linenumber">37</context> | ||
6622 | </context-group> | ||
6623 | </trans-unit> | ||
6398 | <trans-unit id="780323526182667308" datatype="html"> | 6624 | <trans-unit id="780323526182667308" datatype="html"> |
6399 | <source>User <x id="PH"/> updated.</source> | 6625 | <source>User <x id="PH"/> updated.</source> |
6400 | <target state="new">User | 6626 | <target state="new">User |
@@ -6413,7 +6639,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6413 | <x id="PH"/>. | 6639 | <x id="PH"/>. |
6414 | </target> | 6640 | </target> |
6415 | 6641 | ||
6416 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="8564701209009684429" datatype="html"> | 6642 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="7483807629538115183" datatype="html"> |
6643 | <source>Users list</source><target state="new">Users list</target> | ||
6644 | <context-group purpose="location"> | ||
6645 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6646 | <context context-type="linenumber">27</context> | ||
6647 | </context-group> | ||
6648 | </trans-unit><trans-unit id="1525334987774465166" datatype="html"> | ||
6649 | <source>Create a user</source><target state="new">Create a user</target> | ||
6650 | <context-group purpose="location"> | ||
6651 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6652 | <context context-type="linenumber">36</context> | ||
6653 | </context-group> | ||
6654 | </trans-unit><trans-unit id="5552039423287890133" datatype="html"> | ||
6655 | <source>Update a user</source><target state="new">Update a user</target> | ||
6656 | <context-group purpose="location"> | ||
6657 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6658 | <context context-type="linenumber">48</context> | ||
6659 | </context-group> | ||
6660 | </trans-unit><trans-unit id="8564701209009684429" datatype="html"> | ||
6417 | <source>Federation</source><target state="new">Federation</target> | 6661 | <source>Federation</source><target state="new">Federation</target> |
6418 | <context-group purpose="location"> | 6662 | <context-group purpose="location"> |
6419 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> | 6663 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> |
@@ -6767,7 +7011,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6767 | <source>Views for the day</source> | 7011 | <source>Views for the day</source> |
6768 | <target state="new">Views for the day</target> | 7012 | <target state="new">Views for the day</target> |
6769 | 7013 | ||
6770 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit> | 7014 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit><trans-unit id="4707367314920217630" datatype="html"> |
7015 | <source>Create new video channel</source><target state="new">Create new video channel</target> | ||
7016 | <context-group purpose="location"> | ||
7017 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7018 | <context context-type="linenumber">22</context> | ||
7019 | </context-group> | ||
7020 | </trans-unit><trans-unit id="6059091237492573541" datatype="html"> | ||
7021 | <source>Update video channel</source><target state="new">Update video channel</target> | ||
7022 | <context-group purpose="location"> | ||
7023 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7024 | <context context-type="linenumber">31</context> | ||
7025 | </context-group> | ||
7026 | </trans-unit><trans-unit id="6595008830732269870" datatype="html"> | ||
7027 | <source>Not found</source><target state="new">Not found</target> | ||
7028 | <context-group purpose="location"> | ||
7029 | <context context-type="sourcefile">../app/+page-not-found/page-not-found-routing.module.ts</context> | ||
7030 | <context context-type="linenumber">13</context> | ||
7031 | </context-group> | ||
7032 | </trans-unit> | ||
6771 | <trans-unit id="5032453707232754344" datatype="html"> | 7033 | <trans-unit id="5032453707232754344" datatype="html"> |
6772 | <source>Playlist <x id="PH"/> created.</source> | 7034 | <source>Playlist <x id="PH"/> created.</source> |
6773 | <target state="translated">Utworzono playlistę | 7035 | <target state="translated">Utworzono playlistę |
@@ -6785,7 +7047,31 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6785 | <source>Update playlist</source> | 7047 | <source>Update playlist</source> |
6786 | <target state="new">Update playlist</target> | 7048 | <target state="new">Update playlist</target> |
6787 | 7049 | ||
6788 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-video-playlists/my-account-video-playlist-elements.component.ts</context><context context-type="linenumber">48</context></context-group></trans-unit> | 7050 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">82</context></context-group></trans-unit><trans-unit id="3410331549417637431" datatype="html"> |
7051 | <source>Account video imports</source><target state="new">Account video imports</target> | ||
7052 | <context-group purpose="location"> | ||
7053 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7054 | <context context-type="linenumber">105</context> | ||
7055 | </context-group> | ||
7056 | </trans-unit><trans-unit id="4434998055872154420" datatype="html"> | ||
7057 | <source>Account subscriptions</source><target state="new">Account subscriptions</target> | ||
7058 | <context-group purpose="location"> | ||
7059 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7060 | <context context-type="linenumber">114</context> | ||
7061 | </context-group> | ||
7062 | </trans-unit><trans-unit id="6019411775996586321" datatype="html"> | ||
7063 | <source>Videos history</source><target state="new">Videos history</target> | ||
7064 | <context-group purpose="location"> | ||
7065 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7066 | <context context-type="linenumber">150</context> | ||
7067 | </context-group> | ||
7068 | </trans-unit><trans-unit id="5851560788527570644" datatype="html"> | ||
7069 | <source>Notifications</source><target state="new">Notifications</target> | ||
7070 | <context-group purpose="location"> | ||
7071 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7072 | <context context-type="linenumber">163</context> | ||
7073 | </context-group> | ||
7074 | </trans-unit> | ||
6789 | <trans-unit id="104404386496394770" datatype="html"> | 7075 | <trans-unit id="104404386496394770" datatype="html"> |
6790 | <source>Delete playlist</source> | 7076 | <source>Delete playlist</source> |
6791 | <target state="new">Delete playlist</target> | 7077 | <target state="new">Delete playlist</target> |
@@ -6939,7 +7225,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6939 | <x id="PH"/>. | 7225 | <x id="PH"/>. |
6940 | </target> | 7226 | </target> |
6941 | 7227 | ||
6942 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit> | 7228 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit><trans-unit id="8231550792139699065" datatype="html"> |
7229 | <source>Verify account email</source><target state="new">Verify account email</target> | ||
7230 | <context-group purpose="location"> | ||
7231 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7232 | <context context-type="linenumber">17</context> | ||
7233 | </context-group> | ||
7234 | </trans-unit><trans-unit id="4997281272800290390" datatype="html"> | ||
7235 | <source>Verify account ask send email</source><target state="new">Verify account ask send email</target> | ||
7236 | <context-group purpose="location"> | ||
7237 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7238 | <context context-type="linenumber">26</context> | ||
7239 | </context-group> | ||
7240 | </trans-unit> | ||
6943 | <trans-unit id="4180693983967989981"> | 7241 | <trans-unit id="4180693983967989981"> |
6944 | <source>Unable to find user id or verification string.</source> | 7242 | <source>Unable to find user id or verification string.</source> |
6945 | <target>Nie można znaleźć ID użytkownika lub kodu weryfikującego.</target> | 7243 | <target>Nie można znaleźć ID użytkownika lub kodu weryfikującego.</target> |
@@ -7064,27 +7362,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7064 | <source>any language</source> | 7362 | <source>any language</source> |
7065 | <target state="translated">jakikolwiek język</target> | 7363 | <target state="translated">jakikolwiek język</target> |
7066 | 7364 | ||
7067 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">202</context></context-group></trans-unit> | 7365 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">229</context></context-group></trans-unit> |
7068 | <trans-unit id="5633144232269377096" datatype="html"> | 7366 | <trans-unit id="5633144232269377096" datatype="html"> |
7069 | <source>hide</source> | 7367 | <source>hide</source> |
7070 | <target state="translated">ukryj</target> | 7368 | <target state="translated">ukryj</target> |
7071 | 7369 | ||
7072 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">118</context></context-group></trans-unit> | 7370 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> |
7073 | <trans-unit id="8603861867909474404" datatype="html"> | 7371 | <trans-unit id="8603861867909474404" datatype="html"> |
7074 | <source>blur</source> | 7372 | <source>blur</source> |
7075 | <target state="translated">rozmazanie</target> | 7373 | <target state="translated">rozmazanie</target> |
7076 | 7374 | ||
7077 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> | 7375 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> |
7078 | <trans-unit id="4534458451100881847" datatype="html"> | 7376 | <trans-unit id="4534458451100881847" datatype="html"> |
7079 | <source>display</source> | 7377 | <source>display</source> |
7080 | <target state="translated">wyświetl</target> | 7378 | <target state="translated">wyświetl</target> |
7081 | 7379 | ||
7082 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> | 7380 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">127</context></context-group></trans-unit> |
7083 | <trans-unit id="4467323362722952678" datatype="html"> | 7381 | <trans-unit id="4467323362722952678" datatype="html"> |
7084 | <source>Unknown</source> | 7382 | <source>Unknown</source> |
7085 | <target state="new">Unknown</target> | 7383 | <target state="new">Unknown</target> |
7086 | 7384 | ||
7087 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">190</context></context-group></trans-unit> | 7385 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">193</context></context-group></trans-unit> |
7088 | <trans-unit id="8781423666414310853"> | 7386 | <trans-unit id="8781423666414310853"> |
7089 | <source>Your password has been successfully reset!</source> | 7387 | <source>Your password has been successfully reset!</source> |
7090 | <target>Pomyślnie zresetowano hasło!</target> | 7388 | <target>Pomyślnie zresetowano hasło!</target> |
@@ -8202,27 +8500,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8202 | <source>Emphasis</source> | 8500 | <source>Emphasis</source> |
8203 | <target>Wyróżnienia</target> | 8501 | <target>Wyróżnienia</target> |
8204 | 8502 | ||
8205 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">77</context></context-group></trans-unit> | 8503 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> |
8206 | <trans-unit id="7565716024468232322"> | 8504 | <trans-unit id="7565716024468232322"> |
8207 | <source>Links</source> | 8505 | <source>Links</source> |
8208 | <target>Odnośniki</target> | 8506 | <target>Odnośniki</target> |
8209 | 8507 | ||
8210 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">78</context></context-group></trans-unit> | 8508 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> |
8211 | <trans-unit id="7838476952710404110"> | 8509 | <trans-unit id="7838476952710404110"> |
8212 | <source>New lines</source> | 8510 | <source>New lines</source> |
8213 | <target>Nowe linie</target> | 8511 | <target>Nowe linie</target> |
8214 | 8512 | ||
8215 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 8513 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">83</context></context-group></trans-unit> |
8216 | <trans-unit id="8756167649220050929"> | 8514 | <trans-unit id="8756167649220050929"> |
8217 | <source>Lists</source> | 8515 | <source>Lists</source> |
8218 | <target>Listy</target> | 8516 | <target>Listy</target> |
8219 | 8517 | ||
8220 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">80</context></context-group></trans-unit> | 8518 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">84</context></context-group></trans-unit> |
8221 | <trans-unit id="414887388288176527"> | 8519 | <trans-unit id="414887388288176527"> |
8222 | <source>Images</source> | 8520 | <source>Images</source> |
8223 | <target>Obrazy</target> | 8521 | <target>Obrazy</target> |
8224 | 8522 | ||
8225 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> | 8523 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">85</context></context-group></trans-unit> |
8226 | <trans-unit id="5708680277917691451" datatype="html"> | 8524 | <trans-unit id="5708680277917691451" datatype="html"> |
8227 | <source> | 8525 | <source> |
8228 | <x id="PH"/> users banned. | 8526 | <x id="PH"/> users banned. |
@@ -8618,7 +8916,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8618 | <source>Moderator</source> | 8916 | <source>Moderator</source> |
8619 | <target state="translated">Moderator</target> | 8917 | <target state="translated">Moderator</target> |
8620 | 8918 | ||
8621 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">386</context></context-group></trans-unit> | 8919 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">384</context></context-group></trans-unit> |
8622 | <trans-unit id="3723085768598852106" datatype="html"> | 8920 | <trans-unit id="3723085768598852106" datatype="html"> |
8623 | <source>Video removed from | 8921 | <source>Video removed from |
8624 | <x id="PH"/> | 8922 | <x id="PH"/> |
@@ -8691,7 +8989,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8691 | <source>Do you really want to delete this comment?</source> | 8989 | <source>Do you really want to delete this comment?</source> |
8692 | <target state="new">Do you really want to delete this comment?</target> | 8990 | <target state="new">Do you really want to delete this comment?</target> |
8693 | 8991 | ||
8694 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">434</context></context-group></trans-unit> | 8992 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">166</context></context-group></trans-unit> |
8695 | <trans-unit id="7837272126865175984" datatype="html"> | 8993 | <trans-unit id="7837272126865175984" datatype="html"> |
8696 | <source>Comment deleted.</source> | 8994 | <source>Comment deleted.</source> |
8697 | <target state="new">Comment deleted.</target> | 8995 | <target state="new">Comment deleted.</target> |
@@ -8803,9 +9101,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8803 | 9101 | ||
8804 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> | 9102 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> |
8805 | <source>Report</source><target state="new">Report</target> | 9103 | <source>Report</source><target state="new">Report</target> |
9104 | |||
9105 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="4814285799071780083" datatype="html"> | ||
9106 | <source>Remove</source><target state="new">Remove</target> | ||
8806 | <context-group purpose="location"> | 9107 | <context-group purpose="location"> |
8807 | <context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> | 9108 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> |
8808 | <context context-type="linenumber">286</context> | 9109 | <context context-type="linenumber">179</context> |
9110 | </context-group> | ||
9111 | </trans-unit><trans-unit id="6871668720687277843" datatype="html"> | ||
9112 | <source>Remove & re-draft</source><target state="new">Remove & re-draft</target> | ||
9113 | <context-group purpose="location"> | ||
9114 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> | ||
9115 | <context context-type="linenumber">187</context> | ||
8809 | </context-group> | 9116 | </context-group> |
8810 | </trans-unit> | 9117 | </trans-unit> |
8811 | <trans-unit id="4903651219400691248" datatype="html"> | 9118 | <trans-unit id="4903651219400691248" datatype="html"> |
@@ -8909,22 +9216,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8909 | <source>Only I can see this video</source> | 9216 | <source>Only I can see this video</source> |
8910 | <target>Tylko ja mogę zobaczyć ten film</target> | 9217 | <target>Tylko ja mogę zobaczyć ten film</target> |
8911 | 9218 | ||
8912 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">340</context></context-group></trans-unit> | 9219 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">341</context></context-group></trans-unit> |
8913 | <trans-unit id="6767380569816110388" datatype="html"> | 9220 | <trans-unit id="6767380569816110388" datatype="html"> |
8914 | <source>Only shareable via a private link</source> | 9221 | <source>Only shareable via a private link</source> |
8915 | <target state="new">Only shareable via a private link</target> | 9222 | <target state="new">Only shareable via a private link</target> |
8916 | 9223 | ||
8917 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">344</context></context-group></trans-unit> | 9224 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">345</context></context-group></trans-unit> |
8918 | <trans-unit id="6828965264297239528"> | 9225 | <trans-unit id="6828965264297239528"> |
8919 | <source>Anyone can see this video</source> | 9226 | <source>Anyone can see this video</source> |
8920 | <target>Każdy może zobaczyć ten film</target> | 9227 | <target>Każdy może zobaczyć ten film</target> |
8921 | 9228 | ||
8922 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">348</context></context-group></trans-unit> | 9229 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">349</context></context-group></trans-unit> |
8923 | <trans-unit id="1425933035739773115" datatype="html"> | 9230 | <trans-unit id="1425933035739773115" datatype="html"> |
8924 | <source>Only users of this instance can see this video</source> | 9231 | <source>Only users of this instance can see this video</source> |
8925 | <target state="translated">Tylko użytkownicy tej instancji mogą zobaczyć ten film</target> | 9232 | <target state="translated">Tylko użytkownicy tej instancji mogą zobaczyć ten film</target> |
8926 | 9233 | ||
8927 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">352</context></context-group></trans-unit> | 9234 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">353</context></context-group></trans-unit> |
8928 | <trans-unit id="5210096066382592800" datatype="html"> | 9235 | <trans-unit id="5210096066382592800" datatype="html"> |
8929 | <source>Video to import updated.</source> | 9236 | <source>Video to import updated.</source> |
8930 | <target state="translated">Film do zaimportowania zaktualizowany.</target> | 9237 | <target state="translated">Film do zaimportowania zaktualizowany.</target> |
@@ -9004,16 +9311,25 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9004 | <target state="new">Report comment</target> | 9311 | <target state="new">Report comment</target> |
9005 | 9312 | ||
9006 | 9313 | ||
9007 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 9314 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/report-modals/comment-report.component.ts</context><context context-type="linenumber">51</context></context-group></trans-unit> |
9008 | <trans-unit id="3691787517663044217" datatype="html"> | 9315 | <trans-unit id="3691787517663044217" datatype="html"> |
9009 | <source> The deletion will be sent to remote instances so they can reflect the change.</source> | 9316 | <source> The deletion will be sent to remote instances so they can reflect the change.</source> |
9010 | <target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> | 9317 | <target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> |
9011 | 9318 | ||
9012 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">163</context></context-group></trans-unit><trans-unit id="7321800851971795962" datatype="html"> | 9319 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">169</context></context-group></trans-unit><trans-unit id="7321800851971795962" datatype="html"> |
9013 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source><target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> | 9320 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source><target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> |
9321 | |||
9322 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="5964038603724691720" datatype="html"> | ||
9323 | <source>Delete and re-draft</source><target state="new">Delete and re-draft</target> | ||
9014 | <context-group purpose="location"> | 9324 | <context-group purpose="location"> |
9015 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | 9325 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> |
9016 | <context context-type="linenumber">165</context> | 9326 | <context context-type="linenumber">197</context> |
9327 | </context-group> | ||
9328 | </trans-unit><trans-unit id="7163633882758007711" datatype="html"> | ||
9329 | <source>Do you really want to delete and re-draft this comment?</source><target state="new">Do you really want to delete and re-draft this comment?</target> | ||
9330 | <context-group purpose="location"> | ||
9331 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | ||
9332 | <context context-type="linenumber">197</context> | ||
9017 | </context-group> | 9333 | </context-group> |
9018 | </trans-unit> | 9334 | </trans-unit> |
9019 | 9335 | ||
@@ -9178,6 +9494,36 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9178 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> | 9494 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> |
9179 | <context context-type="linenumber">36</context> | 9495 | <context context-type="linenumber">36</context> |
9180 | </context-group> | 9496 | </context-group> |
9497 | </trans-unit><trans-unit id="4668975178372693951" datatype="html"> | ||
9498 | <source>Discover videos</source><target state="new">Discover videos</target> | ||
9499 | <context-group purpose="location"> | ||
9500 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9501 | <context context-type="linenumber">23</context> | ||
9502 | </context-group> | ||
9503 | </trans-unit><trans-unit id="8067135025051844577" datatype="html"> | ||
9504 | <source>Trending videos</source><target state="new">Trending videos</target> | ||
9505 | <context-group purpose="location"> | ||
9506 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9507 | <context context-type="linenumber">32</context> | ||
9508 | </context-group> | ||
9509 | </trans-unit><trans-unit id="664221386829541948" datatype="html"> | ||
9510 | <source>Recently added videos</source><target state="new">Recently added videos</target> | ||
9511 | <context-group purpose="location"> | ||
9512 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9513 | <context context-type="linenumber">58</context> | ||
9514 | </context-group> | ||
9515 | </trans-unit><trans-unit id="8212906256415538361" datatype="html"> | ||
9516 | <source>Upload a video</source><target state="new">Upload a video</target> | ||
9517 | <context-group purpose="location"> | ||
9518 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9519 | <context context-type="linenumber">97</context> | ||
9520 | </context-group> | ||
9521 | </trans-unit><trans-unit id="7590784934397800835" datatype="html"> | ||
9522 | <source>Edit a video</source><target state="new">Edit a video</target> | ||
9523 | <context-group purpose="location"> | ||
9524 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9525 | <context context-type="linenumber">106</context> | ||
9526 | </context-group> | ||
9181 | </trans-unit> | 9527 | </trans-unit> |
9182 | </body> | 9528 | </body> |
9183 | </file> | 9529 | </file> |
diff --git a/client/src/locale/angular.pt-PT.xlf b/client/src/locale/angular.pt-PT.xlf index 3e9268295..5cf8d0729 100644 --- a/client/src/locale/angular.pt-PT.xlf +++ b/client/src/locale/angular.pt-PT.xlf | |||
@@ -306,7 +306,7 @@ | |||
306 | <target>Opções</target> | 306 | <target>Opções</target> |
307 | 307 | ||
308 | 308 | ||
309 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 309 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">48</context></context-group></trans-unit> |
310 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d"> | 310 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d"> |
311 | <source>Start at</source> | 311 | <source>Start at</source> |
312 | <target state="translated">Iniciar às</target> | 312 | <target state="translated">Iniciar às</target> |
@@ -438,7 +438,7 @@ | |||
438 | Cancelar | 438 | Cancelar |
439 | </target> | 439 | </target> |
440 | 440 | ||
441 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> | 441 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit> |
442 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd"> | 442 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd"> |
443 | <source>Download</source> | 443 | <source>Download</source> |
444 | <target>Transferir</target> | 444 | <target>Transferir</target> |
@@ -557,7 +557,7 @@ | |||
557 | 557 | ||
558 | 558 | ||
559 | 559 | ||
560 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 560 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
561 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc"> | 561 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc"> |
562 | <source>Edit starts/stops at</source> | 562 | <source>Edit starts/stops at</source> |
563 | <target state="translated">Editar iniciar/parar às</target> | 563 | <target state="translated">Editar iniciar/parar às</target> |
@@ -597,7 +597,7 @@ | |||
597 | 597 | ||
598 | 598 | ||
599 | 599 | ||
600 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> | 600 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
601 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> | 601 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> |
602 | <source>Edit</source> | 602 | <source>Edit</source> |
603 | <target>Editar</target> | 603 | <target>Editar</target> |
@@ -622,17 +622,10 @@ | |||
622 | <target>Pré-visualização completa</target> | 622 | <target>Pré-visualização completa</target> |
623 | 623 | ||
624 | <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></trans-unit> | 624 | <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></trans-unit> |
625 | <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f"> | 625 | <trans-unit id="8644431249513874405" datatype="html"> |
626 | <source>Get help</source> | ||
627 | <target>Obter ajuda</target> | ||
628 | |||
629 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit><trans-unit id="8644431249513874405" datatype="html"> | ||
630 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> | 626 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> |
631 | <context-group purpose="location"> | 627 | |
632 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 628 | <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></trans-unit> |
633 | <context context-type="linenumber">71</context> | ||
634 | </context-group> | ||
635 | </trans-unit> | ||
636 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> | 629 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> |
637 | <source>Recommended</source> | 630 | <source>Recommended</source> |
638 | <target state="translated">Recomendado</target> | 631 | <target state="translated">Recomendado</target> |
@@ -672,7 +665,7 @@ | |||
672 | <source>PROFILE SETTINGS</source> | 665 | <source>PROFILE SETTINGS</source> |
673 | <target state="new">PROFILE SETTINGS</target> | 666 | <target state="new">PROFILE SETTINGS</target> |
674 | 667 | ||
675 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 668 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">12</context></context-group></trans-unit> |
676 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3"> | 669 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3"> |
677 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> | 670 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> |
678 | <target state="new"> | 671 | <target state="new"> |
@@ -843,11 +836,8 @@ | |||
843 | 836 | ||
844 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> | 837 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> |
845 | <source>User</source><target state="new">User</target> | 838 | <source>User</source><target state="new">User</target> |
846 | <context-group purpose="location"> | 839 | |
847 | <context context-type="sourcefile">../app/core/users/user.service.ts</context> | 840 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit> |
848 | <context context-type="linenumber">384</context> | ||
849 | </context-group> | ||
850 | </trans-unit> | ||
851 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0"> | 841 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0"> |
852 | <source>Ban</source> | 842 | <source>Ban</source> |
853 | <target>Banir</target> | 843 | <target>Banir</target> |
@@ -1313,89 +1303,89 @@ The link will expire within 1 hour.</target> | |||
1313 | <source>Account settings</source> | 1303 | <source>Account settings</source> |
1314 | <target state="translated">Definições da conta</target> | 1304 | <target state="translated">Definições da conta</target> |
1315 | 1305 | ||
1316 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 1306 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
1317 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> | 1307 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> |
1318 | <source>Channels settings</source> | 1308 | <source>Channels settings</source> |
1319 | <target state="translated">Definições do canal</target> | 1309 | <target state="translated">Definições do canal</target> |
1320 | 1310 | ||
1321 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 1311 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> |
1322 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> | 1312 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> |
1323 | <source>Interface:</source> | 1313 | <source>Interface:</source> |
1324 | <target state="new">Interface:</target> | 1314 | <target state="new">Interface:</target> |
1325 | 1315 | ||
1326 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 1316 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1327 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> | 1317 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> |
1328 | <source>Videos:</source> | 1318 | <source>Videos:</source> |
1329 | <target state="new">Videos:</target> | 1319 | <target state="new">Videos:</target> |
1330 | 1320 | ||
1331 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 1321 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> |
1332 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> | 1322 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> |
1333 | <source>Sensitive:</source> | 1323 | <source>Sensitive:</source> |
1334 | <target state="new">Sensitive:</target> | 1324 | <target state="new">Sensitive:</target> |
1335 | 1325 | ||
1336 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 1326 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">54</context></context-group></trans-unit> |
1337 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1327 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> |
1338 | <source>Interface: <x id="INTERPOLATION"/></source> | 1328 | <source>Interface: <x id="INTERPOLATION"/></source> |
1339 | <target state="new">Interface: | 1329 | <target state="new">Interface: |
1340 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> | 1330 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> |
1341 | </target> | 1331 | </target> |
1342 | 1332 | ||
1343 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">156</context></context-group></trans-unit> | 1333 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> |
1344 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1334 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1345 | <source>Help share videos</source> | 1335 | <source>Help share videos</source> |
1346 | <target state="translated">Ajude a partilhar vídeos</target> | 1336 | <target state="translated">Ajude a partilhar vídeos</target> |
1347 | 1337 | ||
1348 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> | 1338 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
1349 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> | 1339 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> |
1350 | <source>More account settings</source> | 1340 | <source>More account settings</source> |
1351 | <target state="translated">Mais definições de conta</target> | 1341 | <target state="translated">Mais definições de conta</target> |
1352 | 1342 | ||
1353 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> | 1343 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> |
1354 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> | 1344 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> |
1355 | <source>Keyboard shortcuts</source> | 1345 | <source>Keyboard shortcuts</source> |
1356 | <target state="translated">Atalhos de teclado</target> | 1346 | <target state="translated">Atalhos de teclado</target> |
1357 | 1347 | ||
1358 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 1348 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">72</context></context-group></trans-unit> |
1359 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> | 1349 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> |
1360 | <source>Help</source> | 1350 | <source>Help</source> |
1361 | <target state="translated">Ajuda</target> | 1351 | <target state="translated">Ajuda</target> |
1362 | 1352 | ||
1363 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1353 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1364 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> | 1354 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> |
1365 | <source>Get help using PeerTube</source> | 1355 | <source>Get help using PeerTube</source> |
1366 | <target state="translated">Obtenha ajuda para usar o PeerTube</target> | 1356 | <target state="translated">Obtenha ajuda para usar o PeerTube</target> |
1367 | 1357 | ||
1368 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">161</context></context-group></trans-unit> | 1358 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">167</context></context-group></trans-unit> |
1369 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> | 1359 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> |
1370 | <source>Shortcuts</source> | 1360 | <source>Shortcuts</source> |
1371 | <target state="translated">Atalhos</target> | 1361 | <target state="translated">Atalhos</target> |
1372 | 1362 | ||
1373 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1363 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1374 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> | 1364 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> |
1375 | <source>powered by PeerTube</source> | 1365 | <source>powered by PeerTube</source> |
1376 | <target state="new">powered by PeerTube</target> | 1366 | <target state="new">powered by PeerTube</target> |
1377 | 1367 | ||
1378 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | 1368 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">177</context></context-group></trans-unit> |
1379 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> | 1369 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> |
1380 | <source>powered by PeerTube - CopyLeft 2015-2020</source> | 1370 | <source>powered by PeerTube - CopyLeft 2015-2020</source> |
1381 | <target state="translated">graças ao PeerTube - CopyLeft 2015-2020</target> | 1371 | <target state="translated">graças ao PeerTube - CopyLeft 2015-2020</target> |
1382 | 1372 | ||
1383 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> | 1373 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">176</context></context-group></trans-unit> |
1384 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344" datatype="html"> | 1374 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344" datatype="html"> |
1385 | <source>Log out</source> | 1375 | <source>Log out</source> |
1386 | <target state="translated">Terminar sessão</target> | 1376 | <target state="translated">Terminar sessão</target> |
1387 | 1377 | ||
1388 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">70</context></context-group></trans-unit> | 1378 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit> |
1389 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> | 1379 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> |
1390 | <source>Create an account</source> | 1380 | <source>Create an account</source> |
1391 | <target>Criar uma conta</target> | 1381 | <target>Criar uma conta</target> |
1392 | 1382 | ||
1393 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">78</context></context-group></trans-unit> | 1383 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
1394 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> | 1384 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> |
1395 | <source>MY LIBRARY</source> | 1385 | <source>MY LIBRARY</source> |
1396 | <target state="new">MY LIBRARY</target> | 1386 | <target state="new">MY LIBRARY</target> |
1397 | 1387 | ||
1398 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 1388 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">88</context></context-group></trans-unit> |
1399 | <trans-unit id="6371572688505952303"> | 1389 | <trans-unit id="6371572688505952303"> |
1400 | <source>My library</source> | 1390 | <source>My library</source> |
1401 | <target>Minha biblioteca</target> | 1391 | <target>Minha biblioteca</target> |
@@ -1435,22 +1425,22 @@ The link will expire within 1 hour.</target> | |||
1435 | <source>Videos</source> | 1425 | <source>Videos</source> |
1436 | <target>Vídeos</target> | 1426 | <target>Vídeos</target> |
1437 | 1427 | ||
1438 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">86</context></context-group></trans-unit> | 1428 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">92</context></context-group></trans-unit> |
1439 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> | 1429 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> |
1440 | <source>Playlists</source> | 1430 | <source>Playlists</source> |
1441 | <target state="translated">Listas de reprodução</target> | 1431 | <target state="translated">Listas de reprodução</target> |
1442 | 1432 | ||
1443 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">91</context></context-group></trans-unit> | 1433 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">97</context></context-group></trans-unit> |
1444 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2"> | 1434 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2"> |
1445 | <source>Subscriptions</source> | 1435 | <source>Subscriptions</source> |
1446 | <target>Subscrições</target> | 1436 | <target>Subscrições</target> |
1447 | 1437 | ||
1448 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 1438 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">102</context></context-group></trans-unit> |
1449 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8" datatype="html"> | 1439 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8" datatype="html"> |
1450 | <source>History</source> | 1440 | <source>History</source> |
1451 | <target state="translated">Histórico</target> | 1441 | <target state="translated">Histórico</target> |
1452 | 1442 | ||
1453 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit> | 1443 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">107</context></context-group></trans-unit> |
1454 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> | 1444 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> |
1455 | <source>VIDEOS</source> | 1445 | <source>VIDEOS</source> |
1456 | <target state="new">VIDEOS</target> | 1446 | <target state="new">VIDEOS</target> |
@@ -1462,27 +1452,27 @@ The link will expire within 1 hour.</target> | |||
1462 | <target state="translated">Descobrir</target> | 1452 | <target state="translated">Descobrir</target> |
1463 | 1453 | ||
1464 | 1454 | ||
1465 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">111</context></context-group></trans-unit> | 1455 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">117</context></context-group></trans-unit> |
1466 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> | 1456 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> |
1467 | <source>Trending</source> | 1457 | <source>Trending</source> |
1468 | <target>Tendências</target> | 1458 | <target>Tendências</target> |
1469 | 1459 | ||
1470 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">116</context></context-group></trans-unit> | 1460 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">122</context></context-group></trans-unit> |
1471 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> | 1461 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> |
1472 | <source>Most liked</source> | 1462 | <source>Most liked</source> |
1473 | <target state="new">Most liked</target> | 1463 | <target state="new">Most liked</target> |
1474 | 1464 | ||
1475 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">121</context></context-group></trans-unit> | 1465 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">127</context></context-group></trans-unit> |
1476 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> | 1466 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> |
1477 | <source>Recently added</source> | 1467 | <source>Recently added</source> |
1478 | <target>Adicionado recentemente</target> | 1468 | <target>Adicionado recentemente</target> |
1479 | 1469 | ||
1480 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">126</context></context-group></trans-unit> | 1470 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">132</context></context-group></trans-unit> |
1481 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> | 1471 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> |
1482 | <source>Administration</source> | 1472 | <source>Administration</source> |
1483 | <target>Administração</target> | 1473 | <target>Administração</target> |
1484 | 1474 | ||
1485 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">140</context></context-group></trans-unit> | 1475 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">146</context></context-group></trans-unit> |
1486 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> | 1476 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> |
1487 | <source>About</source> | 1477 | <source>About</source> |
1488 | <target>Sobre</target> | 1478 | <target>Sobre</target> |
@@ -1493,7 +1483,7 @@ The link will expire within 1 hour.</target> | |||
1493 | <source>Contact</source> | 1483 | <source>Contact</source> |
1494 | <target state="new">Contact</target> | 1484 | <target state="new">Contact</target> |
1495 | 1485 | ||
1496 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">160</context></context-group></trans-unit> | 1486 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">166</context></context-group></trans-unit> |
1497 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771"> | 1487 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771"> |
1498 | <source>View your notifications</source> | 1488 | <source>View your notifications</source> |
1499 | <target state="translated">Ver as suas notificações</target> | 1489 | <target state="translated">Ver as suas notificações</target> |
@@ -1520,7 +1510,7 @@ The link will expire within 1 hour.</target> | |||
1520 | <source>See all your notifications</source> | 1510 | <source>See all your notifications</source> |
1521 | <target state="translated">Ver todas as suas notificações</target> | 1511 | <target state="translated">Ver todas as suas notificações</target> |
1522 | 1512 | ||
1523 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 1513 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">40</context></context-group></trans-unit> |
1524 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> | 1514 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> |
1525 | <source>Search videos, channels…</source> | 1515 | <source>Search videos, channels…</source> |
1526 | <target state="translated">Procurar por vídeos, canais…</target> | 1516 | <target state="translated">Procurar por vídeos, canais…</target> |
@@ -1850,22 +1840,22 @@ The link will expire within 1 hour.</target> | |||
1850 | <source>FAQ</source> | 1840 | <source>FAQ</source> |
1851 | <target state="new">FAQ</target> | 1841 | <target state="new">FAQ</target> |
1852 | 1842 | ||
1853 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">163</context></context-group></trans-unit> | 1843 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
1854 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> | 1844 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> |
1855 | <source>Frequently asked questions about PeerTube</source> | 1845 | <source>Frequently asked questions about PeerTube</source> |
1856 | <target state="translated">Perguntas frequentes sobre PeerTube</target> | 1846 | <target state="translated">Perguntas frequentes sobre PeerTube</target> |
1857 | 1847 | ||
1858 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1848 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1859 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> | 1849 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> |
1860 | <source>API</source> | 1850 | <source>API</source> |
1861 | <target state="new">API</target> | 1851 | <target state="new">API</target> |
1862 | 1852 | ||
1863 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1853 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1864 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> | 1854 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> |
1865 | <source>API documentation</source> | 1855 | <source>API documentation</source> |
1866 | <target state="new">API documentation</target> | 1856 | <target state="new">API documentation</target> |
1867 | 1857 | ||
1868 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 1858 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
1869 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5"> | 1859 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5"> |
1870 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> | 1860 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> |
1871 | <target>Agendar publicação ( | 1861 | <target>Agendar publicação ( |
@@ -2252,7 +2242,13 @@ The link will expire within 1 hour.</target> | |||
2252 | Less customization | 2242 | Less customization |
2253 | </target> | 2243 | </target> |
2254 | 2244 | ||
2255 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit> | 2245 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit><trans-unit id="2454050363478003966" datatype="html"> |
2246 | <source>Login</source><target state="new">Login</target> | ||
2247 | <context-group purpose="location"> | ||
2248 | <context context-type="sourcefile">../app/+login/login-routing.module.ts</context> | ||
2249 | <context context-type="linenumber">14</context> | ||
2250 | </context-group> | ||
2251 | </trans-unit> | ||
2256 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e" datatype="html"> | 2252 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e" datatype="html"> |
2257 | <source>Autoplay</source> | 2253 | <source>Autoplay</source> |
2258 | <target state="new">Autoplay</target> | 2254 | <target state="new">Autoplay</target> |
@@ -2515,7 +2511,7 @@ The link will expire within 1 hour.</target> | |||
2515 | <source>No comments.</source> | 2511 | <source>No comments.</source> |
2516 | <target>Nenhum comentário.</target> | 2512 | <target>Nenhum comentário.</target> |
2517 | 2513 | ||
2518 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 2514 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> |
2519 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> | 2515 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> |
2520 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> | 2516 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> |
2521 | <target state="new"> | 2517 | <target state="new"> |
@@ -2525,7 +2521,7 @@ The link will expire within 1 hour.</target> | |||
2525 | 2521 | ||
2526 | </target> | 2522 | </target> |
2527 | 2523 | ||
2528 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">79</context></context-group></trans-unit> | 2524 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
2529 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> | 2525 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> |
2530 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> | 2526 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> |
2531 | <target state="new"> | 2527 | <target state="new"> |
@@ -2534,67 +2530,151 @@ The link will expire within 1 hour.</target> | |||
2534 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> | 2530 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> |
2535 | </target> | 2531 | </target> |
2536 | 2532 | ||
2537 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 2533 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">87</context></context-group></trans-unit> |
2538 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> | 2534 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> |
2539 | <source>View <x id="INTERPOLATION"/> replies</source> | 2535 | <source>View <x id="INTERPOLATION"/> replies</source> |
2540 | <target state="new">View | 2536 | <target state="new">View |
2541 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies | 2537 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies |
2542 | </target> | 2538 | </target> |
2543 | 2539 | ||
2544 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">85</context></context-group></trans-unit> | 2540 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">90</context></context-group></trans-unit> |
2545 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828"> | 2541 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828"> |
2546 | <source>Comments are disabled.</source> | 2542 | <source>Comments are disabled.</source> |
2547 | <target> | 2543 | <target> |
2548 | Comentários estão desabilitados. | 2544 | Comentários estão desabilitados. |
2549 | </target> | 2545 | </target> |
2550 | 2546 | ||
2551 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit><trans-unit id="3691787517663044217" datatype="html"> | 2547 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit><trans-unit id="3691787517663044217" datatype="html"> |
2552 | <source> The deletion will be sent to remote instances so they can reflect the change.</source><target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> | 2548 | <source> The deletion will be sent to remote instances so they can reflect the change.</source><target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> |
2549 | |||
2550 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">169</context></context-group></trans-unit><trans-unit id="7321800851971795962" datatype="html"> | ||
2551 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source><target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> | ||
2552 | |||
2553 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="5964038603724691720" datatype="html"> | ||
2554 | <source>Delete and re-draft</source><target state="new">Delete and re-draft</target> | ||
2553 | <context-group purpose="location"> | 2555 | <context-group purpose="location"> |
2554 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | 2556 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> |
2555 | <context context-type="linenumber">163</context> | 2557 | <context context-type="linenumber">197</context> |
2556 | </context-group> | 2558 | </context-group> |
2557 | </trans-unit><trans-unit id="7321800851971795962" datatype="html"> | 2559 | </trans-unit><trans-unit id="7163633882758007711" datatype="html"> |
2558 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source><target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> | 2560 | <source>Do you really want to delete and re-draft this comment?</source><target state="new">Do you really want to delete and re-draft this comment?</target> |
2559 | <context-group purpose="location"> | 2561 | <context-group purpose="location"> |
2560 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | 2562 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> |
2561 | <context context-type="linenumber">165</context> | 2563 | <context context-type="linenumber">197</context> |
2562 | </context-group> | 2564 | </context-group> |
2563 | </trans-unit> | 2565 | </trans-unit> |
2564 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e"> | 2566 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e"> |
2565 | <source>Add comment...</source> | 2567 | <source>Add comment...</source> |
2566 | <target>Adicionar comentário...</target> | 2568 | <target>Adicionar comentário...</target> |
2567 | 2569 | ||
2568 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | 2570 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit><trans-unit id="4e5254dedf0c12ce7e7c2197384fceebe3b29a2b" datatype="html"> |
2569 | <trans-unit id="8956c0f4c6974289fc63f1ab6b54f5b32ed65eeb" datatype="html"> | 2571 | <source>Markdown compatible</source><target state="new">Markdown compatible</target> |
2570 | <source>Reply</source> | 2572 | <context-group purpose="location"> |
2571 | <target state="new"> | 2573 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> |
2572 | Reply | 2574 | <context context-type="linenumber">13</context> |
2573 | </target> | 2575 | </context-group> |
2574 | 2576 | </trans-unit><trans-unit id="4739ffad85f09defefdb6e51b45f43b2ef7c4388" datatype="html"> | |
2575 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 2577 | <source>Markdown compatible that supports:</source><target state="new">Markdown compatible that supports:</target> |
2578 | <context-group purpose="location"> | ||
2579 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2580 | <context context-type="linenumber">15</context> | ||
2581 | </context-group> | ||
2582 | </trans-unit><trans-unit id="9a53b17a021bb0677c156fd893461797fc497a10" datatype="html"> | ||
2583 | <source>Auto generated links</source><target state="new">Auto generated links</target> | ||
2584 | <context-group purpose="location"> | ||
2585 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2586 | <context context-type="linenumber">18</context> | ||
2587 | </context-group> | ||
2588 | </trans-unit><trans-unit id="664f99b8919d6dd2faa1c1f7c378aa86d1be5e8a" datatype="html"> | ||
2589 | <source>Break lines</source><target state="new">Break lines</target> | ||
2590 | <context-group purpose="location"> | ||
2591 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2592 | <context context-type="linenumber">19</context> | ||
2593 | </context-group> | ||
2594 | </trans-unit><trans-unit id="b15e7bec5c7833d2d9634946ccbed68967b1bee1" datatype="html"> | ||
2595 | <source>Lists</source><target state="new">Lists</target> | ||
2596 | <context-group purpose="location"> | ||
2597 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2598 | <context context-type="linenumber">20</context> | ||
2599 | </context-group> | ||
2600 | </trans-unit><trans-unit id="ab4426b60f13c00b61d6b714d390dc629f314980" datatype="html"> | ||
2601 | <source>Emphasis</source><target state="new">Emphasis</target> | ||
2602 | <context-group purpose="location"> | ||
2603 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2604 | <context context-type="linenumber">22</context> | ||
2605 | </context-group> | ||
2606 | </trans-unit><trans-unit id="4e13b179501d3d32721037e03b4c04acb9857c5f" datatype="html"> | ||
2607 | <source>bold</source><target state="new">bold</target> | ||
2608 | <context-group purpose="location"> | ||
2609 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2610 | <context context-type="linenumber">23</context> | ||
2611 | </context-group> | ||
2612 | </trans-unit><trans-unit id="3c12190421fbb2756e6bbead923df9ec5de8ede2" datatype="html"> | ||
2613 | <source>italic</source><target state="new">italic</target> | ||
2614 | <context-group purpose="location"> | ||
2615 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2616 | <context context-type="linenumber">23</context> | ||
2617 | </context-group> | ||
2618 | </trans-unit><trans-unit id="adb4bbdcb961b8aac8298d6cac554d9b25636b7a" datatype="html"> | ||
2619 | <source>Emoji shortcuts</source><target state="new">Emoji shortcuts</target> | ||
2620 | <context-group purpose="location"> | ||
2621 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2622 | <context context-type="linenumber">26</context> | ||
2623 | </context-group> | ||
2624 | </trans-unit><trans-unit id="b9809a21a8eb3c9db2a0282c5dd94bc221575c96" datatype="html"> | ||
2625 | <source>Emoji markup</source><target state="new">Emoji markup</target> | ||
2626 | <context-group purpose="location"> | ||
2627 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2628 | <context context-type="linenumber">30</context> | ||
2629 | </context-group> | ||
2630 | </trans-unit><trans-unit id="f37feb427aaa551edd1f22616be6464bc0d492de" datatype="html"> | ||
2631 | <source>See complete list</source><target state="new">See complete list</target> | ||
2632 | <context-group purpose="location"> | ||
2633 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2634 | <context context-type="linenumber">32</context> | ||
2635 | </context-group> | ||
2636 | </trans-unit> | ||
2637 | |||
2576 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135"> | 2638 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135"> |
2577 | <source>You are one step away from commenting</source> | 2639 | <source>You are one step away from commenting</source> |
2578 | <target state="new">You are one step away from commenting</target> | 2640 | <target state="new">You are one step away from commenting</target> |
2579 | 2641 | ||
2580 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 2642 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
2581 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> | 2643 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> |
2582 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> | 2644 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> |
2583 | <target state="translated">Pode comentar usando uma conta de ActivityPub de qualquer instância compatível. Na maioria das plataformas, você pode encontrar o vídeo escrevendo o seu URL na barra de procura e depois pode comentar apartir da interface de software.</target> | 2645 | <target state="translated">Pode comentar usando uma conta de ActivityPub de qualquer instância compatível. Na maioria das plataformas, você pode encontrar o vídeo escrevendo o seu URL na barra de procura e depois pode comentar apartir da interface de software.</target> |
2584 | 2646 | ||
2585 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 2647 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
2586 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb"> | 2648 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb"> |
2587 | <source>If you have an account on Mastodon or Pleroma, you can open it directly in their interface:</source> | 2649 | <source>If you have an account on Mastodon or Pleroma, you can open it directly in their interface:</source> |
2588 | <target state="new"> | 2650 | <target state="new"> |
2589 | If you have an account on Mastodon or Pleroma, you can open it directly in their interface: | 2651 | If you have an account on Mastodon or Pleroma, you can open it directly in their interface: |
2590 | </target> | 2652 | </target> |
2591 | 2653 | ||
2592 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">41</context></context-group></trans-unit> | 2654 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">65</context></context-group></trans-unit> |
2593 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> | 2655 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> |
2594 | <source>Login to comment</source> | 2656 | <source>Login to comment</source> |
2595 | <target state="translated">Autentique-se para comentar</target> | 2657 | <target state="translated">Autentique-se para comentar</target> |
2596 | 2658 | ||
2597 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">52</context></context-group></trans-unit> | 2659 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit><trans-unit id="974170f455ff5a9034d5737e84b4194c0046fc6b" datatype="html"> |
2660 | <source>Markdown Emoji List</source><target state="new">Markdown Emoji List</target> | ||
2661 | <context-group purpose="location"> | ||
2662 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2663 | <context context-type="linenumber">84</context> | ||
2664 | </context-group> | ||
2665 | </trans-unit><trans-unit id="2662644497259948010" datatype="html"> | ||
2666 | <source>Comment</source><target state="new">Comment</target> | ||
2667 | <context-group purpose="location"> | ||
2668 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2669 | <context context-type="linenumber">58</context> | ||
2670 | </context-group> | ||
2671 | </trans-unit><trans-unit id="4502286564339177240" datatype="html"> | ||
2672 | <source>Reply</source><target state="new">Reply</target> | ||
2673 | <context-group purpose="location"> | ||
2674 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2675 | <context context-type="linenumber">60</context> | ||
2676 | </context-group> | ||
2677 | </trans-unit> | ||
2598 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285"> | 2678 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285"> |
2599 | <source>Highlighted comment</source> | 2679 | <source>Highlighted comment</source> |
2600 | <target>Comentário realçado</target> | 2680 | <target>Comentário realçado</target> |
@@ -2609,7 +2689,7 @@ The link will expire within 1 hour.</target> | |||
2609 | <source>This comment has been deleted</source> | 2689 | <source>This comment has been deleted</source> |
2610 | <target state="new">This comment has been deleted</target> | 2690 | <target state="new">This comment has been deleted</target> |
2611 | 2691 | ||
2612 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">62</context></context-group></trans-unit> | 2692 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">61</context></context-group></trans-unit> |
2613 | <trans-unit id="9031514421077169181" datatype="html"> | 2693 | <trans-unit id="9031514421077169181" datatype="html"> |
2614 | <source>Video redundancies</source> | 2694 | <source>Video redundancies</source> |
2615 | <target state="new">Video redundancies</target> | 2695 | <target state="new">Video redundancies</target> |
@@ -3451,7 +3531,25 @@ The link will expire within 1 hour.</target> | |||
3451 | <target state="translated">Não encontrou qualquer conta.</target> | 3531 | <target state="translated">Não encontrou qualquer conta.</target> |
3452 | 3532 | ||
3453 | 3533 | ||
3454 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit> | 3534 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit><trans-unit id="2338185419645468935" datatype="html"> |
3535 | <source>List installed plugins</source><target state="new">List installed plugins</target> | ||
3536 | <context-group purpose="location"> | ||
3537 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3538 | <context context-type="linenumber">28</context> | ||
3539 | </context-group> | ||
3540 | </trans-unit><trans-unit id="8897412584195581488" datatype="html"> | ||
3541 | <source>Search plugins</source><target state="new">Search plugins</target> | ||
3542 | <context-group purpose="location"> | ||
3543 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3544 | <context context-type="linenumber">37</context> | ||
3545 | </context-group> | ||
3546 | </trans-unit><trans-unit id="4994333937800672218" datatype="html"> | ||
3547 | <source>Show plugin</source><target state="new">Show plugin</target> | ||
3548 | <context-group purpose="location"> | ||
3549 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3550 | <context context-type="linenumber">46</context> | ||
3551 | </context-group> | ||
3552 | </trans-unit> | ||
3455 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> | 3553 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> |
3456 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> | 3554 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> |
3457 | <target state="translated"> | 3555 | <target state="translated"> |
@@ -4176,7 +4274,7 @@ The link will expire within 1 hour.</target> | |||
4176 | <source>Administrator</source> | 4274 | <source>Administrator</source> |
4177 | <target>Administrador</target> | 4275 | <target>Administrador</target> |
4178 | 4276 | ||
4179 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">385</context></context-group></trans-unit> | 4277 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">383</context></context-group></trans-unit> |
4180 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587"> | 4278 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587"> |
4181 | <source>Admin email</source> | 4279 | <source>Admin email</source> |
4182 | <target>Email de administrador</target> | 4280 | <target>Email de administrador</target> |
@@ -4432,27 +4530,27 @@ The link will expire within 1 hour.</target> | |||
4432 | <source>VIDEO SETTINGS</source> | 4530 | <source>VIDEO SETTINGS</source> |
4433 | <target state="new">VIDEO SETTINGS</target> | 4531 | <target state="new">VIDEO SETTINGS</target> |
4434 | 4532 | ||
4435 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit> | 4533 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
4436 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> | 4534 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> |
4437 | <source>NOTIFICATIONS</source> | 4535 | <source>NOTIFICATIONS</source> |
4438 | <target state="new">NOTIFICATIONS</target> | 4536 | <target state="new">NOTIFICATIONS</target> |
4439 | 4537 | ||
4440 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 4538 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">37</context></context-group></trans-unit> |
4441 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> | 4539 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> |
4442 | <source>INTERFACE</source> | 4540 | <source>INTERFACE</source> |
4443 | <target state="new">INTERFACE</target> | 4541 | <target state="new">INTERFACE</target> |
4444 | 4542 | ||
4445 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 4543 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit> |
4446 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> | 4544 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> |
4447 | <source>PASSWORD</source> | 4545 | <source>PASSWORD</source> |
4448 | <target state="new">PASSWORD</target> | 4546 | <target state="new">PASSWORD</target> |
4449 | 4547 | ||
4450 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">59</context></context-group></trans-unit> | 4548 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">57</context></context-group></trans-unit> |
4451 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> | 4549 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> |
4452 | <source>EMAIL</source> | 4550 | <source>EMAIL</source> |
4453 | <target state="new">EMAIL</target> | 4551 | <target state="new">EMAIL</target> |
4454 | 4552 | ||
4455 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">69</context></context-group></trans-unit> | 4553 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">67</context></context-group></trans-unit> |
4456 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> | 4554 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> |
4457 | <source>DANGER ZONE</source> | 4555 | <source>DANGER ZONE</source> |
4458 | <target state="new">DANGER ZONE</target> | 4556 | <target state="new">DANGER ZONE</target> |
@@ -4702,7 +4800,31 @@ The link will expire within 1 hour.</target> | |||
4702 | <source>No ownership change request found.</source> | 4800 | <source>No ownership change request found.</source> |
4703 | <target state="new">No ownership change request found.</target> | 4801 | <target state="new">No ownership change request found.</target> |
4704 | 4802 | ||
4705 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit> | 4803 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit><trans-unit id="4247400351982331798" datatype="html"> |
4804 | <source>Account settings</source><target state="new">Account settings</target> | ||
4805 | <context-group purpose="location"> | ||
4806 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4807 | <context context-type="linenumber">37</context> | ||
4808 | </context-group> | ||
4809 | </trans-unit><trans-unit id="154062590416726309" datatype="html"> | ||
4810 | <source>Account playlists</source><target state="new">Account playlists</target> | ||
4811 | <context-group purpose="location"> | ||
4812 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4813 | <context context-type="linenumber">55</context> | ||
4814 | </context-group> | ||
4815 | </trans-unit><trans-unit id="6550287183367517925" datatype="html"> | ||
4816 | <source>Create new playlist</source><target state="new">Create new playlist</target> | ||
4817 | <context-group purpose="location"> | ||
4818 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4819 | <context context-type="linenumber">64</context> | ||
4820 | </context-group> | ||
4821 | </trans-unit><trans-unit id="2864486939135008600" datatype="html"> | ||
4822 | <source>Playlist elements</source><target state="new">Playlist elements</target> | ||
4823 | <context-group purpose="location"> | ||
4824 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4825 | <context context-type="linenumber">73</context> | ||
4826 | </context-group> | ||
4827 | </trans-unit> | ||
4706 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> | 4828 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> |
4707 | <source>My imports</source> | 4829 | <source>My imports</source> |
4708 | <target state="new">My imports</target> | 4830 | <target state="new">My imports</target> |
@@ -4973,7 +5095,25 @@ The link will expire within 1 hour.</target> | |||
4973 | <source>An error occurred.</source> | 5095 | <source>An error occurred.</source> |
4974 | <target state="new">An error occurred.</target> | 5096 | <target state="new">An error occurred.</target> |
4975 | 5097 | ||
4976 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 5098 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit><trans-unit id="9128669621822125729" datatype="html"> |
5099 | <source>Video channel videos</source><target state="new">Video channel videos</target> | ||
5100 | <context-group purpose="location"> | ||
5101 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5102 | <context context-type="linenumber">25</context> | ||
5103 | </context-group> | ||
5104 | </trans-unit><trans-unit id="3193822049276963401" datatype="html"> | ||
5105 | <source>Video channel playlists</source><target state="new">Video channel playlists</target> | ||
5106 | <context-group purpose="location"> | ||
5107 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5108 | <context context-type="linenumber">38</context> | ||
5109 | </context-group> | ||
5110 | </trans-unit><trans-unit id="4723526509708949088" datatype="html"> | ||
5111 | <source>About video channel</source><target state="new">About video channel</target> | ||
5112 | <context-group purpose="location"> | ||
5113 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5114 | <context context-type="linenumber">47</context> | ||
5115 | </context-group> | ||
5116 | </trans-unit> | ||
4977 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97"> | 5117 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97"> |
4978 | <source>Request email for account verification</source> | 5118 | <source>Request email for account verification</source> |
4979 | <target> | 5119 | <target> |
@@ -5092,7 +5232,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5092 | <source>Stats</source> | 5232 | <source>Stats</source> |
5093 | <target>Estatísticas</target> | 5233 | <target>Estatísticas</target> |
5094 | 5234 | ||
5095 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 5235 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
5096 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc"> | 5236 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc"> |
5097 | <source>Joined <x id="INTERPOLATION"/></source> | 5237 | <source>Joined <x id="INTERPOLATION"/></source> |
5098 | <target>Ingressou | 5238 | <target>Ingressou |
@@ -5531,7 +5671,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5531 | <source>This instance does not have instances followings.</source> | 5671 | <source>This instance does not have instances followings.</source> |
5532 | <target state="new">This instance does not have instances followings.</target> | 5672 | <target state="new">This instance does not have instances followings.</target> |
5533 | 5673 | ||
5534 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit> | 5674 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit><trans-unit id="4195286790385468087" datatype="html"> |
5675 | <source>About this instance</source><target state="new">About this instance</target> | ||
5676 | <context-group purpose="location"> | ||
5677 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5678 | <context context-type="linenumber">26</context> | ||
5679 | </context-group> | ||
5680 | </trans-unit><trans-unit id="8773846522957677259" datatype="html"> | ||
5681 | <source>About PeerTube</source><target state="new">About PeerTube</target> | ||
5682 | <context-group purpose="location"> | ||
5683 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5684 | <context context-type="linenumber">38</context> | ||
5685 | </context-group> | ||
5686 | </trans-unit><trans-unit id="5782088737558028158" datatype="html"> | ||
5687 | <source>About follows</source><target state="new">About follows</target> | ||
5688 | <context-group purpose="location"> | ||
5689 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5690 | <context context-type="linenumber">47</context> | ||
5691 | </context-group> | ||
5692 | </trans-unit> | ||
5535 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> | 5693 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> |
5536 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> | 5694 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> |
5537 | <target state="new">Developed with ❤ by | 5695 | <target state="new">Developed with ❤ by |
@@ -5701,6 +5859,12 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5701 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 5859 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> |
5702 | <context context-type="linenumber">1</context> | 5860 | <context context-type="linenumber">1</context> |
5703 | </context-group> | 5861 | </context-group> |
5862 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
5863 | <source>Get help</source><target state="new">Get help</target> | ||
5864 | <context-group purpose="location"> | ||
5865 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | ||
5866 | <context context-type="linenumber">16</context> | ||
5867 | </context-group> | ||
5704 | </trans-unit> | 5868 | </trans-unit> |
5705 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1" datatype="html"> | 5869 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1" datatype="html"> |
5706 | <source>Create my account</source> | 5870 | <source>Create my account</source> |
@@ -5825,7 +5989,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5825 | 5989 | ||
5826 | </target> | 5990 | </target> |
5827 | 5991 | ||
5828 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 5992 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit><trans-unit id="3301086086650990787" datatype="html"> |
5993 | <source>Register</source><target state="new">Register</target> | ||
5994 | <context-group purpose="location"> | ||
5995 | <context context-type="sourcefile">../app/+signup/+register/register-routing.module.ts</context> | ||
5996 | <context context-type="linenumber">14</context> | ||
5997 | </context-group> | ||
5998 | </trans-unit> | ||
5829 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> | 5999 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> |
5830 | <source>Sorry, we couldn't find the page you were looking for.</source> | 6000 | <source>Sorry, we couldn't find the page you were looking for.</source> |
5831 | <target state="new"> | 6001 | <target state="new"> |
@@ -5848,7 +6018,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5848 | <target>Nenhuma descrição</target> | 6018 | <target>Nenhuma descrição</target> |
5849 | 6019 | ||
5850 | 6020 | ||
5851 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit> | 6021 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit><trans-unit id="819067926858619041" datatype="html"> |
6022 | <source>Account videos</source><target state="new">Account videos</target> | ||
6023 | <context-group purpose="location"> | ||
6024 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6025 | <context context-type="linenumber">29</context> | ||
6026 | </context-group> | ||
6027 | </trans-unit><trans-unit id="6823616469362610020" datatype="html"> | ||
6028 | <source>Account video channels</source><target state="new">Account video channels</target> | ||
6029 | <context-group purpose="location"> | ||
6030 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6031 | <context context-type="linenumber">42</context> | ||
6032 | </context-group> | ||
6033 | </trans-unit><trans-unit id="7678273613459026643" datatype="html"> | ||
6034 | <source>About account</source><target state="new">About account</target> | ||
6035 | <context-group purpose="location"> | ||
6036 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6037 | <context context-type="linenumber">51</context> | ||
6038 | </context-group> | ||
6039 | </trans-unit> | ||
5852 | <trans-unit id="3755500631176893489" datatype="html"> | 6040 | <trans-unit id="3755500631176893489" datatype="html"> |
5853 | <source>Published <x id="PH"/> videos</source> | 6041 | <source>Published <x id="PH"/> videos</source> |
5854 | <target state="new">Published | 6042 | <target state="new">Published |
@@ -5965,7 +6153,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5965 | <source>Configuration updated.</source> | 6153 | <source>Configuration updated.</source> |
5966 | <target>Configuração atualizada.</target> | 6154 | <target>Configuração atualizada.</target> |
5967 | 6155 | ||
5968 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit> | 6156 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit><trans-unit id="6284468333579755406" datatype="html"> |
6157 | <source>Edit custom configuration</source><target state="new">Edit custom configuration</target> | ||
6158 | <context-group purpose="location"> | ||
6159 | <context context-type="sourcefile">../app/+admin/config/config.routes.ts</context> | ||
6160 | <context context-type="linenumber">26</context> | ||
6161 | </context-group> | ||
6162 | </trans-unit> | ||
5969 | 6163 | ||
5970 | 6164 | ||
5971 | <trans-unit id="6549061957433635758" datatype="html"> | 6165 | <trans-unit id="6549061957433635758" datatype="html"> |
@@ -6444,7 +6638,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6444 | <x id="PH"/> updated. | 6638 | <x id="PH"/> updated. |
6445 | </target> | 6639 | </target> |
6446 | 6640 | ||
6447 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 6641 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit><trans-unit id="3229595422546554334" datatype="html"> |
6642 | <source>Jobs</source><target state="new">Jobs</target> | ||
6643 | <context-group purpose="location"> | ||
6644 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6645 | <context context-type="linenumber">26</context> | ||
6646 | </context-group> | ||
6647 | </trans-unit><trans-unit id="4804785061014590286" datatype="html"> | ||
6648 | <source>Logs</source><target state="new">Logs</target> | ||
6649 | <context-group purpose="location"> | ||
6650 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6651 | <context context-type="linenumber">37</context> | ||
6652 | </context-group> | ||
6653 | </trans-unit> | ||
6448 | <trans-unit id="3150704904301058778" datatype="html"> | 6654 | <trans-unit id="3150704904301058778" datatype="html"> |
6449 | <source>The plugin index is not available. Please retry later.</source> | 6655 | <source>The plugin index is not available. Please retry later.</source> |
6450 | <target state="new">The plugin index is not available. Please retry later.</target> | 6656 | <target state="new">The plugin index is not available. Please retry later.</target> |
@@ -6558,6 +6764,18 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6558 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> | 6764 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> |
6559 | <context context-type="linenumber">86</context> | 6765 | <context context-type="linenumber">86</context> |
6560 | </context-group> | 6766 | </context-group> |
6767 | </trans-unit><trans-unit id="2903648076838460070" datatype="html"> | ||
6768 | <source>Videos blocked</source><target state="new">Videos blocked</target> | ||
6769 | <context-group purpose="location"> | ||
6770 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6771 | <context context-type="linenumber">67</context> | ||
6772 | </context-group> | ||
6773 | </trans-unit><trans-unit id="7805059636749367886" datatype="html"> | ||
6774 | <source>Muted instances</source><target state="new">Muted instances</target> | ||
6775 | <context-group purpose="location"> | ||
6776 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6777 | <context context-type="linenumber">89</context> | ||
6778 | </context-group> | ||
6561 | </trans-unit> | 6779 | </trans-unit> |
6562 | <trans-unit id="5974506725502681113" datatype="html"> | 6780 | <trans-unit id="5974506725502681113" datatype="html"> |
6563 | <source>Password changed for user <x id="PH"/>.</source> | 6781 | <source>Password changed for user <x id="PH"/>.</source> |
@@ -6570,7 +6788,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6570 | <source>Update user password</source> | 6788 | <source>Update user password</source> |
6571 | <target state="new">Update user password</target> | 6789 | <target state="new">Update user password</target> |
6572 | 6790 | ||
6573 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit> | 6791 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit><trans-unit id="177544274549739411" datatype="html"> |
6792 | <source>Following list</source><target state="new">Following list</target> | ||
6793 | <context-group purpose="location"> | ||
6794 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6795 | <context context-type="linenumber">28</context> | ||
6796 | </context-group> | ||
6797 | </trans-unit><trans-unit id="8092429110007204784" datatype="html"> | ||
6798 | <source>Followers list</source><target state="new">Followers list</target> | ||
6799 | <context-group purpose="location"> | ||
6800 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6801 | <context context-type="linenumber">37</context> | ||
6802 | </context-group> | ||
6803 | </trans-unit> | ||
6574 | <trans-unit id="780323526182667308" datatype="html"> | 6804 | <trans-unit id="780323526182667308" datatype="html"> |
6575 | <source>User <x id="PH"/> updated.</source> | 6805 | <source>User <x id="PH"/> updated.</source> |
6576 | <target state="new">User | 6806 | <target state="new">User |
@@ -6589,7 +6819,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6589 | <x id="PH"/>. | 6819 | <x id="PH"/>. |
6590 | </target> | 6820 | </target> |
6591 | 6821 | ||
6592 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="8564701209009684429" datatype="html"> | 6822 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="7483807629538115183" datatype="html"> |
6823 | <source>Users list</source><target state="new">Users list</target> | ||
6824 | <context-group purpose="location"> | ||
6825 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6826 | <context context-type="linenumber">27</context> | ||
6827 | </context-group> | ||
6828 | </trans-unit><trans-unit id="1525334987774465166" datatype="html"> | ||
6829 | <source>Create a user</source><target state="new">Create a user</target> | ||
6830 | <context-group purpose="location"> | ||
6831 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6832 | <context context-type="linenumber">36</context> | ||
6833 | </context-group> | ||
6834 | </trans-unit><trans-unit id="5552039423287890133" datatype="html"> | ||
6835 | <source>Update a user</source><target state="new">Update a user</target> | ||
6836 | <context-group purpose="location"> | ||
6837 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6838 | <context context-type="linenumber">48</context> | ||
6839 | </context-group> | ||
6840 | </trans-unit><trans-unit id="8564701209009684429" datatype="html"> | ||
6593 | <source>Federation</source><target state="new">Federation</target> | 6841 | <source>Federation</source><target state="new">Federation</target> |
6594 | <context-group purpose="location"> | 6842 | <context-group purpose="location"> |
6595 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> | 6843 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> |
@@ -6943,7 +7191,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6943 | <source>Views for the day</source> | 7191 | <source>Views for the day</source> |
6944 | <target state="new">Views for the day</target> | 7192 | <target state="new">Views for the day</target> |
6945 | 7193 | ||
6946 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit> | 7194 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit><trans-unit id="4707367314920217630" datatype="html"> |
7195 | <source>Create new video channel</source><target state="new">Create new video channel</target> | ||
7196 | <context-group purpose="location"> | ||
7197 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7198 | <context context-type="linenumber">22</context> | ||
7199 | </context-group> | ||
7200 | </trans-unit><trans-unit id="6059091237492573541" datatype="html"> | ||
7201 | <source>Update video channel</source><target state="new">Update video channel</target> | ||
7202 | <context-group purpose="location"> | ||
7203 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7204 | <context context-type="linenumber">31</context> | ||
7205 | </context-group> | ||
7206 | </trans-unit><trans-unit id="6595008830732269870" datatype="html"> | ||
7207 | <source>Not found</source><target state="new">Not found</target> | ||
7208 | <context-group purpose="location"> | ||
7209 | <context context-type="sourcefile">../app/+page-not-found/page-not-found-routing.module.ts</context> | ||
7210 | <context context-type="linenumber">13</context> | ||
7211 | </context-group> | ||
7212 | </trans-unit> | ||
6947 | <trans-unit id="5032453707232754344" datatype="html"> | 7213 | <trans-unit id="5032453707232754344" datatype="html"> |
6948 | <source>Playlist <x id="PH"/> created.</source> | 7214 | <source>Playlist <x id="PH"/> created.</source> |
6949 | <target state="new">Playlist | 7215 | <target state="new">Playlist |
@@ -6961,7 +7227,31 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6961 | <source>Update playlist</source> | 7227 | <source>Update playlist</source> |
6962 | <target state="new">Update playlist</target> | 7228 | <target state="new">Update playlist</target> |
6963 | 7229 | ||
6964 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-video-playlists/my-account-video-playlist-elements.component.ts</context><context context-type="linenumber">48</context></context-group></trans-unit> | 7230 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">82</context></context-group></trans-unit><trans-unit id="3410331549417637431" datatype="html"> |
7231 | <source>Account video imports</source><target state="new">Account video imports</target> | ||
7232 | <context-group purpose="location"> | ||
7233 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7234 | <context context-type="linenumber">105</context> | ||
7235 | </context-group> | ||
7236 | </trans-unit><trans-unit id="4434998055872154420" datatype="html"> | ||
7237 | <source>Account subscriptions</source><target state="new">Account subscriptions</target> | ||
7238 | <context-group purpose="location"> | ||
7239 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7240 | <context context-type="linenumber">114</context> | ||
7241 | </context-group> | ||
7242 | </trans-unit><trans-unit id="6019411775996586321" datatype="html"> | ||
7243 | <source>Videos history</source><target state="new">Videos history</target> | ||
7244 | <context-group purpose="location"> | ||
7245 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7246 | <context context-type="linenumber">150</context> | ||
7247 | </context-group> | ||
7248 | </trans-unit><trans-unit id="5851560788527570644" datatype="html"> | ||
7249 | <source>Notifications</source><target state="new">Notifications</target> | ||
7250 | <context-group purpose="location"> | ||
7251 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7252 | <context context-type="linenumber">163</context> | ||
7253 | </context-group> | ||
7254 | </trans-unit> | ||
6965 | <trans-unit id="104404386496394770" datatype="html"> | 7255 | <trans-unit id="104404386496394770" datatype="html"> |
6966 | <source>Delete playlist</source> | 7256 | <source>Delete playlist</source> |
6967 | <target state="new">Delete playlist</target> | 7257 | <target state="new">Delete playlist</target> |
@@ -7115,7 +7405,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7115 | <x id="PH"/>. | 7405 | <x id="PH"/>. |
7116 | </target> | 7406 | </target> |
7117 | 7407 | ||
7118 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit> | 7408 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit><trans-unit id="8231550792139699065" datatype="html"> |
7409 | <source>Verify account email</source><target state="new">Verify account email</target> | ||
7410 | <context-group purpose="location"> | ||
7411 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7412 | <context context-type="linenumber">17</context> | ||
7413 | </context-group> | ||
7414 | </trans-unit><trans-unit id="4997281272800290390" datatype="html"> | ||
7415 | <source>Verify account ask send email</source><target state="new">Verify account ask send email</target> | ||
7416 | <context-group purpose="location"> | ||
7417 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7418 | <context context-type="linenumber">26</context> | ||
7419 | </context-group> | ||
7420 | </trans-unit> | ||
7119 | <trans-unit id="4180693983967989981"> | 7421 | <trans-unit id="4180693983967989981"> |
7120 | <source>Unable to find user id or verification string.</source> | 7422 | <source>Unable to find user id or verification string.</source> |
7121 | <target>Não foi possível localizar o id de usuário ou string de verificação.</target> | 7423 | <target>Não foi possível localizar o id de usuário ou string de verificação.</target> |
@@ -7240,27 +7542,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7240 | <source>any language</source> | 7542 | <source>any language</source> |
7241 | <target state="new">any language</target> | 7543 | <target state="new">any language</target> |
7242 | 7544 | ||
7243 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">202</context></context-group></trans-unit> | 7545 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">229</context></context-group></trans-unit> |
7244 | <trans-unit id="5633144232269377096" datatype="html"> | 7546 | <trans-unit id="5633144232269377096" datatype="html"> |
7245 | <source>hide</source> | 7547 | <source>hide</source> |
7246 | <target state="new">hide</target> | 7548 | <target state="new">hide</target> |
7247 | 7549 | ||
7248 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">118</context></context-group></trans-unit> | 7550 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> |
7249 | <trans-unit id="8603861867909474404" datatype="html"> | 7551 | <trans-unit id="8603861867909474404" datatype="html"> |
7250 | <source>blur</source> | 7552 | <source>blur</source> |
7251 | <target state="new">blur</target> | 7553 | <target state="new">blur</target> |
7252 | 7554 | ||
7253 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> | 7555 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> |
7254 | <trans-unit id="4534458451100881847" datatype="html"> | 7556 | <trans-unit id="4534458451100881847" datatype="html"> |
7255 | <source>display</source> | 7557 | <source>display</source> |
7256 | <target state="new">display</target> | 7558 | <target state="new">display</target> |
7257 | 7559 | ||
7258 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> | 7560 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">127</context></context-group></trans-unit> |
7259 | <trans-unit id="4467323362722952678" datatype="html"> | 7561 | <trans-unit id="4467323362722952678" datatype="html"> |
7260 | <source>Unknown</source> | 7562 | <source>Unknown</source> |
7261 | <target state="new">Unknown</target> | 7563 | <target state="new">Unknown</target> |
7262 | 7564 | ||
7263 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">190</context></context-group></trans-unit> | 7565 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">193</context></context-group></trans-unit> |
7264 | <trans-unit id="8781423666414310853"> | 7566 | <trans-unit id="8781423666414310853"> |
7265 | <source>Your password has been successfully reset!</source> | 7567 | <source>Your password has been successfully reset!</source> |
7266 | <target>Sua senha foi redefinida com sucesso!</target> | 7568 | <target>Sua senha foi redefinida com sucesso!</target> |
@@ -8378,27 +8680,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8378 | <source>Emphasis</source> | 8680 | <source>Emphasis</source> |
8379 | <target>Ênfase</target> | 8681 | <target>Ênfase</target> |
8380 | 8682 | ||
8381 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">77</context></context-group></trans-unit> | 8683 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> |
8382 | <trans-unit id="7565716024468232322"> | 8684 | <trans-unit id="7565716024468232322"> |
8383 | <source>Links</source> | 8685 | <source>Links</source> |
8384 | <target>Links</target> | 8686 | <target>Links</target> |
8385 | 8687 | ||
8386 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">78</context></context-group></trans-unit> | 8688 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> |
8387 | <trans-unit id="7838476952710404110"> | 8689 | <trans-unit id="7838476952710404110"> |
8388 | <source>New lines</source> | 8690 | <source>New lines</source> |
8389 | <target>Novas linhas</target> | 8691 | <target>Novas linhas</target> |
8390 | 8692 | ||
8391 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 8693 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">83</context></context-group></trans-unit> |
8392 | <trans-unit id="8756167649220050929"> | 8694 | <trans-unit id="8756167649220050929"> |
8393 | <source>Lists</source> | 8695 | <source>Lists</source> |
8394 | <target>Listas</target> | 8696 | <target>Listas</target> |
8395 | 8697 | ||
8396 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">80</context></context-group></trans-unit> | 8698 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">84</context></context-group></trans-unit> |
8397 | <trans-unit id="414887388288176527"> | 8699 | <trans-unit id="414887388288176527"> |
8398 | <source>Images</source> | 8700 | <source>Images</source> |
8399 | <target>Imagens</target> | 8701 | <target>Imagens</target> |
8400 | 8702 | ||
8401 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> | 8703 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">85</context></context-group></trans-unit> |
8402 | <trans-unit id="5708680277917691451"> | 8704 | <trans-unit id="5708680277917691451"> |
8403 | <source> | 8705 | <source> |
8404 | <x id="PH"/> users banned. | 8706 | <x id="PH"/> users banned. |
@@ -8794,7 +9096,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8794 | <source>Moderator</source> | 9096 | <source>Moderator</source> |
8795 | <target state="new">Moderator</target> | 9097 | <target state="new">Moderator</target> |
8796 | 9098 | ||
8797 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">386</context></context-group></trans-unit> | 9099 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">384</context></context-group></trans-unit> |
8798 | <trans-unit id="3723085768598852106" datatype="html"> | 9100 | <trans-unit id="3723085768598852106" datatype="html"> |
8799 | <source>Video removed from | 9101 | <source>Video removed from |
8800 | <x id="PH"/> | 9102 | <x id="PH"/> |
@@ -8867,7 +9169,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8867 | <source>Do you really want to delete this comment?</source> | 9169 | <source>Do you really want to delete this comment?</source> |
8868 | <target state="new">Do you really want to delete this comment?</target> | 9170 | <target state="new">Do you really want to delete this comment?</target> |
8869 | 9171 | ||
8870 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">434</context></context-group></trans-unit> | 9172 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">166</context></context-group></trans-unit> |
8871 | <trans-unit id="7837272126865175984" datatype="html"> | 9173 | <trans-unit id="7837272126865175984" datatype="html"> |
8872 | <source>Comment deleted.</source> | 9174 | <source>Comment deleted.</source> |
8873 | <target state="new">Comment deleted.</target> | 9175 | <target state="new">Comment deleted.</target> |
@@ -8979,9 +9281,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8979 | 9281 | ||
8980 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> | 9282 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> |
8981 | <source>Report</source><target state="new">Report</target> | 9283 | <source>Report</source><target state="new">Report</target> |
9284 | |||
9285 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="4814285799071780083" datatype="html"> | ||
9286 | <source>Remove</source><target state="new">Remove</target> | ||
8982 | <context-group purpose="location"> | 9287 | <context-group purpose="location"> |
8983 | <context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> | 9288 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> |
8984 | <context context-type="linenumber">286</context> | 9289 | <context context-type="linenumber">179</context> |
9290 | </context-group> | ||
9291 | </trans-unit><trans-unit id="6871668720687277843" datatype="html"> | ||
9292 | <source>Remove & re-draft</source><target state="new">Remove & re-draft</target> | ||
9293 | <context-group purpose="location"> | ||
9294 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> | ||
9295 | <context context-type="linenumber">187</context> | ||
8985 | </context-group> | 9296 | </context-group> |
8986 | </trans-unit> | 9297 | </trans-unit> |
8987 | <trans-unit id="4903651219400691248" datatype="html"> | 9298 | <trans-unit id="4903651219400691248" datatype="html"> |
@@ -9085,22 +9396,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9085 | <source>Only I can see this video</source> | 9396 | <source>Only I can see this video</source> |
9086 | <target>Apenas eu posso ver este vídeo</target> | 9397 | <target>Apenas eu posso ver este vídeo</target> |
9087 | 9398 | ||
9088 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">340</context></context-group></trans-unit> | 9399 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">341</context></context-group></trans-unit> |
9089 | <trans-unit id="6767380569816110388" datatype="html"> | 9400 | <trans-unit id="6767380569816110388" datatype="html"> |
9090 | <source>Only shareable via a private link</source> | 9401 | <source>Only shareable via a private link</source> |
9091 | <target state="new">Only shareable via a private link</target> | 9402 | <target state="new">Only shareable via a private link</target> |
9092 | 9403 | ||
9093 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">344</context></context-group></trans-unit> | 9404 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">345</context></context-group></trans-unit> |
9094 | <trans-unit id="6828965264297239528"> | 9405 | <trans-unit id="6828965264297239528"> |
9095 | <source>Anyone can see this video</source> | 9406 | <source>Anyone can see this video</source> |
9096 | <target>Qualquer um pode ver este vídeo</target> | 9407 | <target>Qualquer um pode ver este vídeo</target> |
9097 | 9408 | ||
9098 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">348</context></context-group></trans-unit> | 9409 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">349</context></context-group></trans-unit> |
9099 | <trans-unit id="1425933035739773115" datatype="html"> | 9410 | <trans-unit id="1425933035739773115" datatype="html"> |
9100 | <source>Only users of this instance can see this video</source> | 9411 | <source>Only users of this instance can see this video</source> |
9101 | <target state="new">Only users of this instance can see this video</target> | 9412 | <target state="new">Only users of this instance can see this video</target> |
9102 | 9413 | ||
9103 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">352</context></context-group></trans-unit> | 9414 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">353</context></context-group></trans-unit> |
9104 | <trans-unit id="5210096066382592800"> | 9415 | <trans-unit id="5210096066382592800"> |
9105 | <source>Video to import updated.</source> | 9416 | <source>Video to import updated.</source> |
9106 | <target>Vídeo para importar atualizado.</target> | 9417 | <target>Vídeo para importar atualizado.</target> |
@@ -9180,7 +9491,7 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9180 | <target state="new">Report comment</target> | 9491 | <target state="new">Report comment</target> |
9181 | 9492 | ||
9182 | 9493 | ||
9183 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 9494 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/report-modals/comment-report.component.ts</context><context context-type="linenumber">51</context></context-group></trans-unit> |
9184 | 9495 | ||
9185 | 9496 | ||
9186 | <trans-unit id="6775540171466219199" datatype="html"> | 9497 | <trans-unit id="6775540171466219199" datatype="html"> |
@@ -9344,6 +9655,36 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9344 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> | 9655 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> |
9345 | <context context-type="linenumber">36</context> | 9656 | <context context-type="linenumber">36</context> |
9346 | </context-group> | 9657 | </context-group> |
9658 | </trans-unit><trans-unit id="4668975178372693951" datatype="html"> | ||
9659 | <source>Discover videos</source><target state="new">Discover videos</target> | ||
9660 | <context-group purpose="location"> | ||
9661 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9662 | <context context-type="linenumber">23</context> | ||
9663 | </context-group> | ||
9664 | </trans-unit><trans-unit id="8067135025051844577" datatype="html"> | ||
9665 | <source>Trending videos</source><target state="new">Trending videos</target> | ||
9666 | <context-group purpose="location"> | ||
9667 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9668 | <context context-type="linenumber">32</context> | ||
9669 | </context-group> | ||
9670 | </trans-unit><trans-unit id="664221386829541948" datatype="html"> | ||
9671 | <source>Recently added videos</source><target state="new">Recently added videos</target> | ||
9672 | <context-group purpose="location"> | ||
9673 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9674 | <context context-type="linenumber">58</context> | ||
9675 | </context-group> | ||
9676 | </trans-unit><trans-unit id="8212906256415538361" datatype="html"> | ||
9677 | <source>Upload a video</source><target state="new">Upload a video</target> | ||
9678 | <context-group purpose="location"> | ||
9679 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9680 | <context context-type="linenumber">97</context> | ||
9681 | </context-group> | ||
9682 | </trans-unit><trans-unit id="7590784934397800835" datatype="html"> | ||
9683 | <source>Edit a video</source><target state="new">Edit a video</target> | ||
9684 | <context-group purpose="location"> | ||
9685 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9686 | <context context-type="linenumber">106</context> | ||
9687 | </context-group> | ||
9347 | </trans-unit> | 9688 | </trans-unit> |
9348 | </body> | 9689 | </body> |
9349 | </file> | 9690 | </file> |
diff --git a/client/src/locale/angular.ru-RU.xlf b/client/src/locale/angular.ru-RU.xlf index 99ed3e096..43c196193 100644 --- a/client/src/locale/angular.ru-RU.xlf +++ b/client/src/locale/angular.ru-RU.xlf | |||
@@ -295,7 +295,7 @@ | |||
295 | <target>Настройки</target> | 295 | <target>Настройки</target> |
296 | 296 | ||
297 | 297 | ||
298 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 298 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">48</context></context-group></trans-unit> |
299 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d"> | 299 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d"> |
300 | <source>Start at</source> | 300 | <source>Start at</source> |
301 | <target>Начало в</target> | 301 | <target>Начало в</target> |
@@ -427,7 +427,7 @@ | |||
427 | Отмена | 427 | Отмена |
428 | </target> | 428 | </target> |
429 | 429 | ||
430 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> | 430 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit> |
431 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd"> | 431 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd"> |
432 | <source>Download</source> | 432 | <source>Download</source> |
433 | <target>Скачать</target> | 433 | <target>Скачать</target> |
@@ -544,7 +544,7 @@ | |||
544 | 544 | ||
545 | 545 | ||
546 | 546 | ||
547 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 547 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
548 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc"> | 548 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc"> |
549 | <source>Edit starts/stops at</source> | 549 | <source>Edit starts/stops at</source> |
550 | <target>Редактировать начало/конец в</target> | 550 | <target>Редактировать начало/конец в</target> |
@@ -584,7 +584,7 @@ | |||
584 | 584 | ||
585 | 585 | ||
586 | 586 | ||
587 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> | 587 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
588 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> | 588 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> |
589 | <source>Edit</source> | 589 | <source>Edit</source> |
590 | <target>Редактировать</target> | 590 | <target>Редактировать</target> |
@@ -609,17 +609,10 @@ | |||
609 | <target>Предпросмотр</target> | 609 | <target>Предпросмотр</target> |
610 | 610 | ||
611 | <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></trans-unit> | 611 | <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></trans-unit> |
612 | <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f"> | 612 | <trans-unit id="8644431249513874405" datatype="html"> |
613 | <source>Get help</source> | ||
614 | <target>Помощь</target> | ||
615 | |||
616 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit><trans-unit id="8644431249513874405" datatype="html"> | ||
617 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> | 613 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> |
618 | <context-group purpose="location"> | 614 | |
619 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 615 | <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></trans-unit> |
620 | <context context-type="linenumber">71</context> | ||
621 | </context-group> | ||
622 | </trans-unit> | ||
623 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> | 616 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> |
624 | <source>Recommended</source> | 617 | <source>Recommended</source> |
625 | <target state="translated">Рекомендуется</target> | 618 | <target state="translated">Рекомендуется</target> |
@@ -659,7 +652,7 @@ | |||
659 | <source>PROFILE SETTINGS</source> | 652 | <source>PROFILE SETTINGS</source> |
660 | <target state="new">PROFILE SETTINGS</target> | 653 | <target state="new">PROFILE SETTINGS</target> |
661 | 654 | ||
662 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 655 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">12</context></context-group></trans-unit> |
663 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3"> | 656 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3"> |
664 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> | 657 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> |
665 | <target> | 658 | <target> |
@@ -825,11 +818,8 @@ | |||
825 | 818 | ||
826 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> | 819 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> |
827 | <source>User</source><target state="new">User</target> | 820 | <source>User</source><target state="new">User</target> |
828 | <context-group purpose="location"> | 821 | |
829 | <context context-type="sourcefile">../app/core/users/user.service.ts</context> | 822 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit> |
830 | <context context-type="linenumber">384</context> | ||
831 | </context-group> | ||
832 | </trans-unit> | ||
833 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0"> | 823 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0"> |
834 | <source>Ban</source> | 824 | <source>Ban</source> |
835 | <target>Заблокировано</target> | 825 | <target>Заблокировано</target> |
@@ -1310,89 +1300,89 @@ The link will expire within 1 hour.</target> | |||
1310 | <source>Account settings</source> | 1300 | <source>Account settings</source> |
1311 | <target state="translated">Настройка учетных записей</target> | 1301 | <target state="translated">Настройка учетных записей</target> |
1312 | 1302 | ||
1313 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 1303 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
1314 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> | 1304 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> |
1315 | <source>Channels settings</source> | 1305 | <source>Channels settings</source> |
1316 | <target state="translated">Настройка канала</target> | 1306 | <target state="translated">Настройка канала</target> |
1317 | 1307 | ||
1318 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 1308 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> |
1319 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> | 1309 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> |
1320 | <source>Interface:</source> | 1310 | <source>Interface:</source> |
1321 | <target state="new">Interface:</target> | 1311 | <target state="new">Interface:</target> |
1322 | 1312 | ||
1323 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 1313 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1324 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> | 1314 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> |
1325 | <source>Videos:</source> | 1315 | <source>Videos:</source> |
1326 | <target state="new">Videos:</target> | 1316 | <target state="new">Videos:</target> |
1327 | 1317 | ||
1328 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 1318 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> |
1329 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> | 1319 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> |
1330 | <source>Sensitive:</source> | 1320 | <source>Sensitive:</source> |
1331 | <target state="new">Sensitive:</target> | 1321 | <target state="new">Sensitive:</target> |
1332 | 1322 | ||
1333 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 1323 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">54</context></context-group></trans-unit> |
1334 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1324 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> |
1335 | <source>Interface: <x id="INTERPOLATION"/></source> | 1325 | <source>Interface: <x id="INTERPOLATION"/></source> |
1336 | <target state="translated">Интерфейс: | 1326 | <target state="translated">Интерфейс: |
1337 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> | 1327 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> |
1338 | </target> | 1328 | </target> |
1339 | 1329 | ||
1340 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">156</context></context-group></trans-unit> | 1330 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> |
1341 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1331 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1342 | <source>Help share videos</source> | 1332 | <source>Help share videos</source> |
1343 | <target state="translated">Помогите поделиться видео</target> | 1333 | <target state="translated">Помогите поделиться видео</target> |
1344 | 1334 | ||
1345 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> | 1335 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
1346 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> | 1336 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> |
1347 | <source>More account settings</source> | 1337 | <source>More account settings</source> |
1348 | <target state="translated">Дополнительные настройки учетной записи</target> | 1338 | <target state="translated">Дополнительные настройки учетной записи</target> |
1349 | 1339 | ||
1350 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> | 1340 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> |
1351 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> | 1341 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> |
1352 | <source>Keyboard shortcuts</source> | 1342 | <source>Keyboard shortcuts</source> |
1353 | <target state="translated">Сочетания клавиш</target> | 1343 | <target state="translated">Сочетания клавиш</target> |
1354 | 1344 | ||
1355 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 1345 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">72</context></context-group></trans-unit> |
1356 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> | 1346 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> |
1357 | <source>Help</source> | 1347 | <source>Help</source> |
1358 | <target state="translated">Помощь</target> | 1348 | <target state="translated">Помощь</target> |
1359 | 1349 | ||
1360 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1350 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1361 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> | 1351 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> |
1362 | <source>Get help using PeerTube</source> | 1352 | <source>Get help using PeerTube</source> |
1363 | <target state="translated">Получить помощь с помощью PeerTube</target> | 1353 | <target state="translated">Получить помощь с помощью PeerTube</target> |
1364 | 1354 | ||
1365 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">161</context></context-group></trans-unit> | 1355 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">167</context></context-group></trans-unit> |
1366 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> | 1356 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> |
1367 | <source>Shortcuts</source> | 1357 | <source>Shortcuts</source> |
1368 | <target state="translated">Ярлык</target> | 1358 | <target state="translated">Ярлык</target> |
1369 | 1359 | ||
1370 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1360 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1371 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> | 1361 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> |
1372 | <source>powered by PeerTube</source> | 1362 | <source>powered by PeerTube</source> |
1373 | <target state="new">powered by PeerTube</target> | 1363 | <target state="new">powered by PeerTube</target> |
1374 | 1364 | ||
1375 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | 1365 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">177</context></context-group></trans-unit> |
1376 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> | 1366 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> |
1377 | <source>powered by PeerTube - CopyLeft 2015-2020</source> | 1367 | <source>powered by PeerTube - CopyLeft 2015-2020</source> |
1378 | <target state="translated">разработано PeerTube - CopyLeft 2015-2020</target> | 1368 | <target state="translated">разработано PeerTube - CopyLeft 2015-2020</target> |
1379 | 1369 | ||
1380 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> | 1370 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">176</context></context-group></trans-unit> |
1381 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344"> | 1371 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344"> |
1382 | <source>Log out</source> | 1372 | <source>Log out</source> |
1383 | <target>Выйти</target> | 1373 | <target>Выйти</target> |
1384 | 1374 | ||
1385 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">70</context></context-group></trans-unit> | 1375 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit> |
1386 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> | 1376 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> |
1387 | <source>Create an account</source> | 1377 | <source>Create an account</source> |
1388 | <target>Создать учетную запись</target> | 1378 | <target>Создать учетную запись</target> |
1389 | 1379 | ||
1390 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">78</context></context-group></trans-unit> | 1380 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
1391 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> | 1381 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> |
1392 | <source>MY LIBRARY</source> | 1382 | <source>MY LIBRARY</source> |
1393 | <target state="translated">МОЯ БИБЛИОТЕКА</target> | 1383 | <target state="translated">МОЯ БИБЛИОТЕКА</target> |
1394 | 1384 | ||
1395 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 1385 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">88</context></context-group></trans-unit> |
1396 | <trans-unit id="6371572688505952303"> | 1386 | <trans-unit id="6371572688505952303"> |
1397 | <source>My library</source> | 1387 | <source>My library</source> |
1398 | <target>Моя библиотека</target> | 1388 | <target>Моя библиотека</target> |
@@ -1432,22 +1422,22 @@ The link will expire within 1 hour.</target> | |||
1432 | <source>Videos</source> | 1422 | <source>Videos</source> |
1433 | <target>Видео</target> | 1423 | <target>Видео</target> |
1434 | 1424 | ||
1435 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">86</context></context-group></trans-unit> | 1425 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">92</context></context-group></trans-unit> |
1436 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> | 1426 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> |
1437 | <source>Playlists</source> | 1427 | <source>Playlists</source> |
1438 | <target>Плейлисты</target> | 1428 | <target>Плейлисты</target> |
1439 | 1429 | ||
1440 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">91</context></context-group></trans-unit> | 1430 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">97</context></context-group></trans-unit> |
1441 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2"> | 1431 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2"> |
1442 | <source>Subscriptions</source> | 1432 | <source>Subscriptions</source> |
1443 | <target>Подписки</target> | 1433 | <target>Подписки</target> |
1444 | 1434 | ||
1445 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 1435 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">102</context></context-group></trans-unit> |
1446 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8"> | 1436 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8"> |
1447 | <source>History</source> | 1437 | <source>History</source> |
1448 | <target>История</target> | 1438 | <target>История</target> |
1449 | 1439 | ||
1450 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit> | 1440 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">107</context></context-group></trans-unit> |
1451 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> | 1441 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> |
1452 | <source>VIDEOS</source> | 1442 | <source>VIDEOS</source> |
1453 | <target state="translated">ВИДЕО</target> | 1443 | <target state="translated">ВИДЕО</target> |
@@ -1459,27 +1449,27 @@ The link will expire within 1 hour.</target> | |||
1459 | <target state="translated">Обзор</target> | 1449 | <target state="translated">Обзор</target> |
1460 | 1450 | ||
1461 | 1451 | ||
1462 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">111</context></context-group></trans-unit> | 1452 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">117</context></context-group></trans-unit> |
1463 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> | 1453 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> |
1464 | <source>Trending</source> | 1454 | <source>Trending</source> |
1465 | <target>В тренде</target> | 1455 | <target>В тренде</target> |
1466 | 1456 | ||
1467 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">116</context></context-group></trans-unit> | 1457 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">122</context></context-group></trans-unit> |
1468 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> | 1458 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> |
1469 | <source>Most liked</source> | 1459 | <source>Most liked</source> |
1470 | <target state="translated">Понравившиеся</target> | 1460 | <target state="translated">Понравившиеся</target> |
1471 | 1461 | ||
1472 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">121</context></context-group></trans-unit> | 1462 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">127</context></context-group></trans-unit> |
1473 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> | 1463 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> |
1474 | <source>Recently added</source> | 1464 | <source>Recently added</source> |
1475 | <target>Недавние видео</target> | 1465 | <target>Недавние видео</target> |
1476 | 1466 | ||
1477 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">126</context></context-group></trans-unit> | 1467 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">132</context></context-group></trans-unit> |
1478 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> | 1468 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> |
1479 | <source>Administration</source> | 1469 | <source>Administration</source> |
1480 | <target>Администрация</target> | 1470 | <target>Администрация</target> |
1481 | 1471 | ||
1482 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">140</context></context-group></trans-unit> | 1472 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">146</context></context-group></trans-unit> |
1483 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> | 1473 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> |
1484 | <source>About</source> | 1474 | <source>About</source> |
1485 | <target>Описание</target> | 1475 | <target>Описание</target> |
@@ -1490,7 +1480,7 @@ The link will expire within 1 hour.</target> | |||
1490 | <source>Contact</source> | 1480 | <source>Contact</source> |
1491 | <target state="translated">Контакт</target> | 1481 | <target state="translated">Контакт</target> |
1492 | 1482 | ||
1493 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">160</context></context-group></trans-unit> | 1483 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">166</context></context-group></trans-unit> |
1494 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771"> | 1484 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771"> |
1495 | <source>View your notifications</source> | 1485 | <source>View your notifications</source> |
1496 | <target>Показать уведомления</target> | 1486 | <target>Показать уведомления</target> |
@@ -1517,7 +1507,7 @@ The link will expire within 1 hour.</target> | |||
1517 | <source>See all your notifications</source> | 1507 | <source>See all your notifications</source> |
1518 | <target>Показать все уведомления</target> | 1508 | <target>Показать все уведомления</target> |
1519 | 1509 | ||
1520 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 1510 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">40</context></context-group></trans-unit> |
1521 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> | 1511 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> |
1522 | <source>Search videos, channels…</source> | 1512 | <source>Search videos, channels…</source> |
1523 | <target state="translated">Поиск видео, каналов…</target> | 1513 | <target state="translated">Поиск видео, каналов…</target> |
@@ -1843,22 +1833,22 @@ The link will expire within 1 hour.</target> | |||
1843 | <source>FAQ</source> | 1833 | <source>FAQ</source> |
1844 | <target state="translated">ЧАСТО ЗАДАВАЕМЫЕ ВОПРОСЫ</target> | 1834 | <target state="translated">ЧАСТО ЗАДАВАЕМЫЕ ВОПРОСЫ</target> |
1845 | 1835 | ||
1846 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">163</context></context-group></trans-unit> | 1836 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
1847 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> | 1837 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> |
1848 | <source>Frequently asked questions about PeerTube</source> | 1838 | <source>Frequently asked questions about PeerTube</source> |
1849 | <target state="translated">Часто задаваемые вопросы о PeerTube</target> | 1839 | <target state="translated">Часто задаваемые вопросы о PeerTube</target> |
1850 | 1840 | ||
1851 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1841 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1852 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> | 1842 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> |
1853 | <source>API</source> | 1843 | <source>API</source> |
1854 | <target state="new">API</target> | 1844 | <target state="new">API</target> |
1855 | 1845 | ||
1856 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1846 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1857 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> | 1847 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> |
1858 | <source>API documentation</source> | 1848 | <source>API documentation</source> |
1859 | <target state="translated">API документация</target> | 1849 | <target state="translated">API документация</target> |
1860 | 1850 | ||
1861 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 1851 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
1862 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5"> | 1852 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5"> |
1863 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> | 1853 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> |
1864 | <target>Запланированная публикация ( | 1854 | <target>Запланированная публикация ( |
@@ -2220,7 +2210,13 @@ The link will expire within 1 hour.</target> | |||
2220 | <source>Less customization</source> | 2210 | <source>Less customization</source> |
2221 | <target state="translated">Меньше настроек</target> | 2211 | <target state="translated">Меньше настроек</target> |
2222 | 2212 | ||
2223 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit> | 2213 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit><trans-unit id="2454050363478003966" datatype="html"> |
2214 | <source>Login</source><target state="new">Login</target> | ||
2215 | <context-group purpose="location"> | ||
2216 | <context context-type="sourcefile">../app/+login/login-routing.module.ts</context> | ||
2217 | <context context-type="linenumber">14</context> | ||
2218 | </context-group> | ||
2219 | </trans-unit> | ||
2224 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e" datatype="html"> | 2220 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e" datatype="html"> |
2225 | <source>Autoplay</source> | 2221 | <source>Autoplay</source> |
2226 | <target state="translated">Автовоспроизведение</target> | 2222 | <target state="translated">Автовоспроизведение</target> |
@@ -2475,7 +2471,7 @@ The link will expire within 1 hour.</target> | |||
2475 | <source>No comments.</source> | 2471 | <source>No comments.</source> |
2476 | <target>Нет комментариев.</target> | 2472 | <target>Нет комментариев.</target> |
2477 | 2473 | ||
2478 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 2474 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> |
2479 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> | 2475 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> |
2480 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> | 2476 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> |
2481 | <target state="translated">Просмотрено | 2477 | <target state="translated">Просмотрено |
@@ -2483,7 +2479,7 @@ The link will expire within 1 hour.</target> | |||
2483 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> and others | 2479 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> and others |
2484 | </target> | 2480 | </target> |
2485 | 2481 | ||
2486 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">79</context></context-group></trans-unit> | 2482 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
2487 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> | 2483 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> |
2488 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> | 2484 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> |
2489 | <target state="translated">Просмотрено | 2485 | <target state="translated">Просмотрено |
@@ -2491,48 +2487,116 @@ The link will expire within 1 hour.</target> | |||
2491 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> | 2487 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> |
2492 | </target> | 2488 | </target> |
2493 | 2489 | ||
2494 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 2490 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">87</context></context-group></trans-unit> |
2495 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> | 2491 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> |
2496 | <source>View <x id="INTERPOLATION"/> replies</source> | 2492 | <source>View <x id="INTERPOLATION"/> replies</source> |
2497 | <target state="translated">Просмотрено | 2493 | <target state="translated">Просмотрено |
2498 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies | 2494 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies |
2499 | </target> | 2495 | </target> |
2500 | 2496 | ||
2501 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">85</context></context-group></trans-unit> | 2497 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">90</context></context-group></trans-unit> |
2502 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828"> | 2498 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828"> |
2503 | <source>Comments are disabled.</source> | 2499 | <source>Comments are disabled.</source> |
2504 | <target> | 2500 | <target> |
2505 | Комментарии отключены. | 2501 | Комментарии отключены. |
2506 | </target> | 2502 | </target> |
2507 | 2503 | ||
2508 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit><trans-unit id="3691787517663044217" datatype="html"> | 2504 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit><trans-unit id="3691787517663044217" datatype="html"> |
2509 | <source> The deletion will be sent to remote instances so they can reflect the change.</source><target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> | 2505 | <source> The deletion will be sent to remote instances so they can reflect the change.</source><target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> |
2506 | |||
2507 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">169</context></context-group></trans-unit><trans-unit id="7321800851971795962" datatype="html"> | ||
2508 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source><target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> | ||
2509 | |||
2510 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="5964038603724691720" datatype="html"> | ||
2511 | <source>Delete and re-draft</source><target state="new">Delete and re-draft</target> | ||
2510 | <context-group purpose="location"> | 2512 | <context-group purpose="location"> |
2511 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | 2513 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> |
2512 | <context context-type="linenumber">163</context> | 2514 | <context context-type="linenumber">197</context> |
2513 | </context-group> | 2515 | </context-group> |
2514 | </trans-unit><trans-unit id="7321800851971795962" datatype="html"> | 2516 | </trans-unit><trans-unit id="7163633882758007711" datatype="html"> |
2515 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source><target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> | 2517 | <source>Do you really want to delete and re-draft this comment?</source><target state="new">Do you really want to delete and re-draft this comment?</target> |
2516 | <context-group purpose="location"> | 2518 | <context-group purpose="location"> |
2517 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | 2519 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> |
2518 | <context context-type="linenumber">165</context> | 2520 | <context context-type="linenumber">197</context> |
2519 | </context-group> | 2521 | </context-group> |
2520 | </trans-unit> | 2522 | </trans-unit> |
2521 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e"> | 2523 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e"> |
2522 | <source>Add comment...</source> | 2524 | <source>Add comment...</source> |
2523 | <target>Добавить комментарий...</target> | 2525 | <target>Добавить комментарий...</target> |
2524 | 2526 | ||
2525 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | 2527 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit><trans-unit id="4e5254dedf0c12ce7e7c2197384fceebe3b29a2b" datatype="html"> |
2526 | <trans-unit id="8956c0f4c6974289fc63f1ab6b54f5b32ed65eeb" datatype="html"> | 2528 | <source>Markdown compatible</source><target state="new">Markdown compatible</target> |
2527 | <source>Reply</source> | 2529 | <context-group purpose="location"> |
2528 | <target state="translated">Повторить</target> | 2530 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> |
2529 | 2531 | <context context-type="linenumber">13</context> | |
2530 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 2532 | </context-group> |
2533 | </trans-unit><trans-unit id="4739ffad85f09defefdb6e51b45f43b2ef7c4388" datatype="html"> | ||
2534 | <source>Markdown compatible that supports:</source><target state="new">Markdown compatible that supports:</target> | ||
2535 | <context-group purpose="location"> | ||
2536 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2537 | <context context-type="linenumber">15</context> | ||
2538 | </context-group> | ||
2539 | </trans-unit><trans-unit id="9a53b17a021bb0677c156fd893461797fc497a10" datatype="html"> | ||
2540 | <source>Auto generated links</source><target state="new">Auto generated links</target> | ||
2541 | <context-group purpose="location"> | ||
2542 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2543 | <context context-type="linenumber">18</context> | ||
2544 | </context-group> | ||
2545 | </trans-unit><trans-unit id="664f99b8919d6dd2faa1c1f7c378aa86d1be5e8a" datatype="html"> | ||
2546 | <source>Break lines</source><target state="new">Break lines</target> | ||
2547 | <context-group purpose="location"> | ||
2548 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2549 | <context context-type="linenumber">19</context> | ||
2550 | </context-group> | ||
2551 | </trans-unit><trans-unit id="b15e7bec5c7833d2d9634946ccbed68967b1bee1" datatype="html"> | ||
2552 | <source>Lists</source><target state="new">Lists</target> | ||
2553 | <context-group purpose="location"> | ||
2554 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2555 | <context context-type="linenumber">20</context> | ||
2556 | </context-group> | ||
2557 | </trans-unit><trans-unit id="ab4426b60f13c00b61d6b714d390dc629f314980" datatype="html"> | ||
2558 | <source>Emphasis</source><target state="new">Emphasis</target> | ||
2559 | <context-group purpose="location"> | ||
2560 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2561 | <context context-type="linenumber">22</context> | ||
2562 | </context-group> | ||
2563 | </trans-unit><trans-unit id="4e13b179501d3d32721037e03b4c04acb9857c5f" datatype="html"> | ||
2564 | <source>bold</source><target state="new">bold</target> | ||
2565 | <context-group purpose="location"> | ||
2566 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2567 | <context context-type="linenumber">23</context> | ||
2568 | </context-group> | ||
2569 | </trans-unit><trans-unit id="3c12190421fbb2756e6bbead923df9ec5de8ede2" datatype="html"> | ||
2570 | <source>italic</source><target state="new">italic</target> | ||
2571 | <context-group purpose="location"> | ||
2572 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2573 | <context context-type="linenumber">23</context> | ||
2574 | </context-group> | ||
2575 | </trans-unit><trans-unit id="adb4bbdcb961b8aac8298d6cac554d9b25636b7a" datatype="html"> | ||
2576 | <source>Emoji shortcuts</source><target state="new">Emoji shortcuts</target> | ||
2577 | <context-group purpose="location"> | ||
2578 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2579 | <context context-type="linenumber">26</context> | ||
2580 | </context-group> | ||
2581 | </trans-unit><trans-unit id="b9809a21a8eb3c9db2a0282c5dd94bc221575c96" datatype="html"> | ||
2582 | <source>Emoji markup</source><target state="new">Emoji markup</target> | ||
2583 | <context-group purpose="location"> | ||
2584 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2585 | <context context-type="linenumber">30</context> | ||
2586 | </context-group> | ||
2587 | </trans-unit><trans-unit id="f37feb427aaa551edd1f22616be6464bc0d492de" datatype="html"> | ||
2588 | <source>See complete list</source><target state="new">See complete list</target> | ||
2589 | <context-group purpose="location"> | ||
2590 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2591 | <context context-type="linenumber">32</context> | ||
2592 | </context-group> | ||
2593 | </trans-unit> | ||
2594 | |||
2531 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135"> | 2595 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135"> |
2532 | <source>You are one step away from commenting</source> | 2596 | <source>You are one step away from commenting</source> |
2533 | <target>Вы всего в одном шаге от комментариев</target> | 2597 | <target>Вы всего в одном шаге от комментариев</target> |
2534 | 2598 | ||
2535 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 2599 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
2536 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> | 2600 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> |
2537 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> | 2601 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> |
2538 | <target state="new"> | 2602 | <target state="new"> |
@@ -2541,19 +2605,37 @@ The link will expire within 1 hour.</target> | |||
2541 | from within the software's interface. | 2605 | from within the software's interface. |
2542 | </target> | 2606 | </target> |
2543 | 2607 | ||
2544 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 2608 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
2545 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb"> | 2609 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb"> |
2546 | <source>If you have an account on Mastodon or Pleroma, you can open it directly in their interface:</source> | 2610 | <source>If you have an account on Mastodon or Pleroma, you can open it directly in their interface:</source> |
2547 | <target> | 2611 | <target> |
2548 | Если у вас есть аккаунт на Mastodon или Pleroma, вы можете открыть это непосредственно в их интерфейсе: | 2612 | Если у вас есть аккаунт на Mastodon или Pleroma, вы можете открыть это непосредственно в их интерфейсе: |
2549 | </target> | 2613 | </target> |
2550 | 2614 | ||
2551 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">41</context></context-group></trans-unit> | 2615 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">65</context></context-group></trans-unit> |
2552 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> | 2616 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> |
2553 | <source>Login to comment</source> | 2617 | <source>Login to comment</source> |
2554 | <target state="new">Login to comment</target> | 2618 | <target state="new">Login to comment</target> |
2555 | 2619 | ||
2556 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">52</context></context-group></trans-unit> | 2620 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit><trans-unit id="974170f455ff5a9034d5737e84b4194c0046fc6b" datatype="html"> |
2621 | <source>Markdown Emoji List</source><target state="new">Markdown Emoji List</target> | ||
2622 | <context-group purpose="location"> | ||
2623 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2624 | <context context-type="linenumber">84</context> | ||
2625 | </context-group> | ||
2626 | </trans-unit><trans-unit id="2662644497259948010" datatype="html"> | ||
2627 | <source>Comment</source><target state="new">Comment</target> | ||
2628 | <context-group purpose="location"> | ||
2629 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2630 | <context context-type="linenumber">58</context> | ||
2631 | </context-group> | ||
2632 | </trans-unit><trans-unit id="4502286564339177240" datatype="html"> | ||
2633 | <source>Reply</source><target state="new">Reply</target> | ||
2634 | <context-group purpose="location"> | ||
2635 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2636 | <context context-type="linenumber">60</context> | ||
2637 | </context-group> | ||
2638 | </trans-unit> | ||
2557 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285"> | 2639 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285"> |
2558 | <source>Highlighted comment</source> | 2640 | <source>Highlighted comment</source> |
2559 | <target>Выделенный комментарий</target> | 2641 | <target>Выделенный комментарий</target> |
@@ -2568,7 +2650,7 @@ The link will expire within 1 hour.</target> | |||
2568 | <source>This comment has been deleted</source> | 2650 | <source>This comment has been deleted</source> |
2569 | <target state="translated">Этот комментарий был удален</target> | 2651 | <target state="translated">Этот комментарий был удален</target> |
2570 | 2652 | ||
2571 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">62</context></context-group></trans-unit> | 2653 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">61</context></context-group></trans-unit> |
2572 | <trans-unit id="9031514421077169181" datatype="html"> | 2654 | <trans-unit id="9031514421077169181" datatype="html"> |
2573 | <source>Video redundancies</source> | 2655 | <source>Video redundancies</source> |
2574 | <target state="translated">Видео повторы</target> | 2656 | <target state="translated">Видео повторы</target> |
@@ -3415,7 +3497,25 @@ The link will expire within 1 hour.</target> | |||
3415 | <target state="new">No account found.</target> | 3497 | <target state="new">No account found.</target> |
3416 | 3498 | ||
3417 | 3499 | ||
3418 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit> | 3500 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit><trans-unit id="2338185419645468935" datatype="html"> |
3501 | <source>List installed plugins</source><target state="new">List installed plugins</target> | ||
3502 | <context-group purpose="location"> | ||
3503 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3504 | <context context-type="linenumber">28</context> | ||
3505 | </context-group> | ||
3506 | </trans-unit><trans-unit id="8897412584195581488" datatype="html"> | ||
3507 | <source>Search plugins</source><target state="new">Search plugins</target> | ||
3508 | <context-group purpose="location"> | ||
3509 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3510 | <context context-type="linenumber">37</context> | ||
3511 | </context-group> | ||
3512 | </trans-unit><trans-unit id="4994333937800672218" datatype="html"> | ||
3513 | <source>Show plugin</source><target state="new">Show plugin</target> | ||
3514 | <context-group purpose="location"> | ||
3515 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3516 | <context context-type="linenumber">46</context> | ||
3517 | </context-group> | ||
3518 | </trans-unit> | ||
3419 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> | 3519 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> |
3420 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> | 3520 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> |
3421 | <target state="new">Showing | 3521 | <target state="new">Showing |
@@ -4134,7 +4234,7 @@ The link will expire within 1 hour.</target> | |||
4134 | <source>Administrator</source> | 4234 | <source>Administrator</source> |
4135 | <target>Администратор</target> | 4235 | <target>Администратор</target> |
4136 | 4236 | ||
4137 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">385</context></context-group></trans-unit> | 4237 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">383</context></context-group></trans-unit> |
4138 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587"> | 4238 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587"> |
4139 | <source>Admin email</source> | 4239 | <source>Admin email</source> |
4140 | <target>Электронная почта администратора</target> | 4240 | <target>Электронная почта администратора</target> |
@@ -4390,27 +4490,27 @@ The link will expire within 1 hour.</target> | |||
4390 | <source>VIDEO SETTINGS</source> | 4490 | <source>VIDEO SETTINGS</source> |
4391 | <target state="translated">НАСТРОЙКИ ВИДЕО</target> | 4491 | <target state="translated">НАСТРОЙКИ ВИДЕО</target> |
4392 | 4492 | ||
4393 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit> | 4493 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
4394 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> | 4494 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> |
4395 | <source>NOTIFICATIONS</source> | 4495 | <source>NOTIFICATIONS</source> |
4396 | <target state="translated">УВЕДОМЛЕНИЯ</target> | 4496 | <target state="translated">УВЕДОМЛЕНИЯ</target> |
4397 | 4497 | ||
4398 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 4498 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">37</context></context-group></trans-unit> |
4399 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> | 4499 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> |
4400 | <source>INTERFACE</source> | 4500 | <source>INTERFACE</source> |
4401 | <target state="translated">ИНТЕРФЕЙС</target> | 4501 | <target state="translated">ИНТЕРФЕЙС</target> |
4402 | 4502 | ||
4403 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 4503 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit> |
4404 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> | 4504 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> |
4405 | <source>PASSWORD</source> | 4505 | <source>PASSWORD</source> |
4406 | <target state="translated">ПАРОЛЬ</target> | 4506 | <target state="translated">ПАРОЛЬ</target> |
4407 | 4507 | ||
4408 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">59</context></context-group></trans-unit> | 4508 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">57</context></context-group></trans-unit> |
4409 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> | 4509 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> |
4410 | <source>EMAIL</source> | 4510 | <source>EMAIL</source> |
4411 | <target state="translated">ЭЛЕКТРОННАЯ ПОЧТА</target> | 4511 | <target state="translated">ЭЛЕКТРОННАЯ ПОЧТА</target> |
4412 | 4512 | ||
4413 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">69</context></context-group></trans-unit> | 4513 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">67</context></context-group></trans-unit> |
4414 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> | 4514 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> |
4415 | <source>DANGER ZONE</source> | 4515 | <source>DANGER ZONE</source> |
4416 | <target state="translated">ОПАСНАЯ ЗОНА</target> | 4516 | <target state="translated">ОПАСНАЯ ЗОНА</target> |
@@ -4658,7 +4758,31 @@ The link will expire within 1 hour.</target> | |||
4658 | <source>No ownership change request found.</source> | 4758 | <source>No ownership change request found.</source> |
4659 | <target state="new">No ownership change request found.</target> | 4759 | <target state="new">No ownership change request found.</target> |
4660 | 4760 | ||
4661 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit> | 4761 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit><trans-unit id="4247400351982331798" datatype="html"> |
4762 | <source>Account settings</source><target state="new">Account settings</target> | ||
4763 | <context-group purpose="location"> | ||
4764 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4765 | <context context-type="linenumber">37</context> | ||
4766 | </context-group> | ||
4767 | </trans-unit><trans-unit id="154062590416726309" datatype="html"> | ||
4768 | <source>Account playlists</source><target state="new">Account playlists</target> | ||
4769 | <context-group purpose="location"> | ||
4770 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4771 | <context context-type="linenumber">55</context> | ||
4772 | </context-group> | ||
4773 | </trans-unit><trans-unit id="6550287183367517925" datatype="html"> | ||
4774 | <source>Create new playlist</source><target state="new">Create new playlist</target> | ||
4775 | <context-group purpose="location"> | ||
4776 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4777 | <context context-type="linenumber">64</context> | ||
4778 | </context-group> | ||
4779 | </trans-unit><trans-unit id="2864486939135008600" datatype="html"> | ||
4780 | <source>Playlist elements</source><target state="new">Playlist elements</target> | ||
4781 | <context-group purpose="location"> | ||
4782 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4783 | <context context-type="linenumber">73</context> | ||
4784 | </context-group> | ||
4785 | </trans-unit> | ||
4662 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> | 4786 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> |
4663 | <source>My imports</source> | 4787 | <source>My imports</source> |
4664 | <target state="new">My imports</target> | 4788 | <target state="new">My imports</target> |
@@ -4925,7 +5049,25 @@ The link will expire within 1 hour.</target> | |||
4925 | <source>An error occurred.</source> | 5049 | <source>An error occurred.</source> |
4926 | <target state="translated">Произошла ошибка.</target> | 5050 | <target state="translated">Произошла ошибка.</target> |
4927 | 5051 | ||
4928 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 5052 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit><trans-unit id="9128669621822125729" datatype="html"> |
5053 | <source>Video channel videos</source><target state="new">Video channel videos</target> | ||
5054 | <context-group purpose="location"> | ||
5055 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5056 | <context context-type="linenumber">25</context> | ||
5057 | </context-group> | ||
5058 | </trans-unit><trans-unit id="3193822049276963401" datatype="html"> | ||
5059 | <source>Video channel playlists</source><target state="new">Video channel playlists</target> | ||
5060 | <context-group purpose="location"> | ||
5061 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5062 | <context context-type="linenumber">38</context> | ||
5063 | </context-group> | ||
5064 | </trans-unit><trans-unit id="4723526509708949088" datatype="html"> | ||
5065 | <source>About video channel</source><target state="new">About video channel</target> | ||
5066 | <context-group purpose="location"> | ||
5067 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5068 | <context context-type="linenumber">47</context> | ||
5069 | </context-group> | ||
5070 | </trans-unit> | ||
4929 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97"> | 5071 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97"> |
4930 | <source>Request email for account verification</source> | 5072 | <source>Request email for account verification</source> |
4931 | <target> | 5073 | <target> |
@@ -5042,7 +5184,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5042 | <source>Stats</source> | 5184 | <source>Stats</source> |
5043 | <target>Статистика</target> | 5185 | <target>Статистика</target> |
5044 | 5186 | ||
5045 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 5187 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
5046 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc"> | 5188 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc"> |
5047 | <source>Joined <x id="INTERPOLATION"/></source> | 5189 | <source>Joined <x id="INTERPOLATION"/></source> |
5048 | <target>Присоединился | 5190 | <target>Присоединился |
@@ -5448,7 +5590,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5448 | <source>This instance does not have instances followings.</source> | 5590 | <source>This instance does not have instances followings.</source> |
5449 | <target state="translated">Этот экземпляр не является подписчиком других экземпляров.</target> | 5591 | <target state="translated">Этот экземпляр не является подписчиком других экземпляров.</target> |
5450 | 5592 | ||
5451 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit> | 5593 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit><trans-unit id="4195286790385468087" datatype="html"> |
5594 | <source>About this instance</source><target state="new">About this instance</target> | ||
5595 | <context-group purpose="location"> | ||
5596 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5597 | <context context-type="linenumber">26</context> | ||
5598 | </context-group> | ||
5599 | </trans-unit><trans-unit id="8773846522957677259" datatype="html"> | ||
5600 | <source>About PeerTube</source><target state="new">About PeerTube</target> | ||
5601 | <context-group purpose="location"> | ||
5602 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5603 | <context context-type="linenumber">38</context> | ||
5604 | </context-group> | ||
5605 | </trans-unit><trans-unit id="5782088737558028158" datatype="html"> | ||
5606 | <source>About follows</source><target state="new">About follows</target> | ||
5607 | <context-group purpose="location"> | ||
5608 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5609 | <context context-type="linenumber">47</context> | ||
5610 | </context-group> | ||
5611 | </trans-unit> | ||
5452 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> | 5612 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> |
5453 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> | 5613 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> |
5454 | <target state="new">Developed with ❤ by | 5614 | <target state="new">Developed with ❤ by |
@@ -5618,6 +5778,12 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5618 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 5778 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> |
5619 | <context context-type="linenumber">1</context> | 5779 | <context context-type="linenumber">1</context> |
5620 | </context-group> | 5780 | </context-group> |
5781 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
5782 | <source>Get help</source><target state="new">Get help</target> | ||
5783 | <context-group purpose="location"> | ||
5784 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | ||
5785 | <context context-type="linenumber">16</context> | ||
5786 | </context-group> | ||
5621 | </trans-unit> | 5787 | </trans-unit> |
5622 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1" datatype="html"> | 5788 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1" datatype="html"> |
5623 | <source>Create my account</source> | 5789 | <source>Create my account</source> |
@@ -5727,7 +5893,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5727 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/> этого экземпляра | 5893 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/> этого экземпляра |
5728 | </target> | 5894 | </target> |
5729 | 5895 | ||
5730 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 5896 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit><trans-unit id="3301086086650990787" datatype="html"> |
5897 | <source>Register</source><target state="new">Register</target> | ||
5898 | <context-group purpose="location"> | ||
5899 | <context context-type="sourcefile">../app/+signup/+register/register-routing.module.ts</context> | ||
5900 | <context context-type="linenumber">14</context> | ||
5901 | </context-group> | ||
5902 | </trans-unit> | ||
5731 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> | 5903 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> |
5732 | <source>Sorry, we couldn't find the page you were looking for.</source> | 5904 | <source>Sorry, we couldn't find the page you were looking for.</source> |
5733 | <target state="translated">К сожалению, мы не смогли найти страницу, которую вы искали.</target> | 5905 | <target state="translated">К сожалению, мы не смогли найти страницу, которую вы искали.</target> |
@@ -5748,7 +5920,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5748 | <target>Нет описания</target> | 5920 | <target>Нет описания</target> |
5749 | 5921 | ||
5750 | 5922 | ||
5751 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit> | 5923 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit><trans-unit id="819067926858619041" datatype="html"> |
5924 | <source>Account videos</source><target state="new">Account videos</target> | ||
5925 | <context-group purpose="location"> | ||
5926 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
5927 | <context context-type="linenumber">29</context> | ||
5928 | </context-group> | ||
5929 | </trans-unit><trans-unit id="6823616469362610020" datatype="html"> | ||
5930 | <source>Account video channels</source><target state="new">Account video channels</target> | ||
5931 | <context-group purpose="location"> | ||
5932 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
5933 | <context context-type="linenumber">42</context> | ||
5934 | </context-group> | ||
5935 | </trans-unit><trans-unit id="7678273613459026643" datatype="html"> | ||
5936 | <source>About account</source><target state="new">About account</target> | ||
5937 | <context-group purpose="location"> | ||
5938 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
5939 | <context context-type="linenumber">51</context> | ||
5940 | </context-group> | ||
5941 | </trans-unit> | ||
5752 | <trans-unit id="3755500631176893489" datatype="html"> | 5942 | <trans-unit id="3755500631176893489" datatype="html"> |
5753 | <source>Published <x id="PH"/> videos</source> | 5943 | <source>Published <x id="PH"/> videos</source> |
5754 | <target state="translated">Опубликовано | 5944 | <target state="translated">Опубликовано |
@@ -5865,7 +6055,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5865 | <source>Configuration updated.</source> | 6055 | <source>Configuration updated.</source> |
5866 | <target>Конфигурация обновлена.</target> | 6056 | <target>Конфигурация обновлена.</target> |
5867 | 6057 | ||
5868 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit> | 6058 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit><trans-unit id="6284468333579755406" datatype="html"> |
6059 | <source>Edit custom configuration</source><target state="new">Edit custom configuration</target> | ||
6060 | <context-group purpose="location"> | ||
6061 | <context context-type="sourcefile">../app/+admin/config/config.routes.ts</context> | ||
6062 | <context context-type="linenumber">26</context> | ||
6063 | </context-group> | ||
6064 | </trans-unit> | ||
5869 | 6065 | ||
5870 | 6066 | ||
5871 | <trans-unit id="6549061957433635758" datatype="html"> | 6067 | <trans-unit id="6549061957433635758" datatype="html"> |
@@ -6344,7 +6540,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6344 | <x id="PH"/> обновлено. | 6540 | <x id="PH"/> обновлено. |
6345 | </target> | 6541 | </target> |
6346 | 6542 | ||
6347 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 6543 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit><trans-unit id="3229595422546554334" datatype="html"> |
6544 | <source>Jobs</source><target state="new">Jobs</target> | ||
6545 | <context-group purpose="location"> | ||
6546 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6547 | <context context-type="linenumber">26</context> | ||
6548 | </context-group> | ||
6549 | </trans-unit><trans-unit id="4804785061014590286" datatype="html"> | ||
6550 | <source>Logs</source><target state="new">Logs</target> | ||
6551 | <context-group purpose="location"> | ||
6552 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6553 | <context context-type="linenumber">37</context> | ||
6554 | </context-group> | ||
6555 | </trans-unit> | ||
6348 | <trans-unit id="3150704904301058778" datatype="html"> | 6556 | <trans-unit id="3150704904301058778" datatype="html"> |
6349 | <source>The plugin index is not available. Please retry later.</source> | 6557 | <source>The plugin index is not available. Please retry later.</source> |
6350 | <target state="translated">Индекс плагина недоступен. Пожалуйста, повторите попытку позже.</target> | 6558 | <target state="translated">Индекс плагина недоступен. Пожалуйста, повторите попытку позже.</target> |
@@ -6458,6 +6666,18 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6458 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> | 6666 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> |
6459 | <context context-type="linenumber">86</context> | 6667 | <context context-type="linenumber">86</context> |
6460 | </context-group> | 6668 | </context-group> |
6669 | </trans-unit><trans-unit id="2903648076838460070" datatype="html"> | ||
6670 | <source>Videos blocked</source><target state="new">Videos blocked</target> | ||
6671 | <context-group purpose="location"> | ||
6672 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6673 | <context context-type="linenumber">67</context> | ||
6674 | </context-group> | ||
6675 | </trans-unit><trans-unit id="7805059636749367886" datatype="html"> | ||
6676 | <source>Muted instances</source><target state="new">Muted instances</target> | ||
6677 | <context-group purpose="location"> | ||
6678 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6679 | <context context-type="linenumber">89</context> | ||
6680 | </context-group> | ||
6461 | </trans-unit> | 6681 | </trans-unit> |
6462 | <trans-unit id="5974506725502681113"> | 6682 | <trans-unit id="5974506725502681113"> |
6463 | <source>Password changed for user <x id="PH"/>.</source> | 6683 | <source>Password changed for user <x id="PH"/>.</source> |
@@ -6470,7 +6690,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6470 | <source>Update user password</source> | 6690 | <source>Update user password</source> |
6471 | <target>Изменить пароль пользователя</target> | 6691 | <target>Изменить пароль пользователя</target> |
6472 | 6692 | ||
6473 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit> | 6693 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit><trans-unit id="177544274549739411" datatype="html"> |
6694 | <source>Following list</source><target state="new">Following list</target> | ||
6695 | <context-group purpose="location"> | ||
6696 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6697 | <context context-type="linenumber">28</context> | ||
6698 | </context-group> | ||
6699 | </trans-unit><trans-unit id="8092429110007204784" datatype="html"> | ||
6700 | <source>Followers list</source><target state="new">Followers list</target> | ||
6701 | <context-group purpose="location"> | ||
6702 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6703 | <context context-type="linenumber">37</context> | ||
6704 | </context-group> | ||
6705 | </trans-unit> | ||
6474 | <trans-unit id="780323526182667308" datatype="html"> | 6706 | <trans-unit id="780323526182667308" datatype="html"> |
6475 | <source>User <x id="PH"/> updated.</source> | 6707 | <source>User <x id="PH"/> updated.</source> |
6476 | <target state="new">User | 6708 | <target state="new">User |
@@ -6489,7 +6721,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6489 | <x id="PH"/>. | 6721 | <x id="PH"/>. |
6490 | </target> | 6722 | </target> |
6491 | 6723 | ||
6492 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="8564701209009684429" datatype="html"> | 6724 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="7483807629538115183" datatype="html"> |
6725 | <source>Users list</source><target state="new">Users list</target> | ||
6726 | <context-group purpose="location"> | ||
6727 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6728 | <context context-type="linenumber">27</context> | ||
6729 | </context-group> | ||
6730 | </trans-unit><trans-unit id="1525334987774465166" datatype="html"> | ||
6731 | <source>Create a user</source><target state="new">Create a user</target> | ||
6732 | <context-group purpose="location"> | ||
6733 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6734 | <context context-type="linenumber">36</context> | ||
6735 | </context-group> | ||
6736 | </trans-unit><trans-unit id="5552039423287890133" datatype="html"> | ||
6737 | <source>Update a user</source><target state="new">Update a user</target> | ||
6738 | <context-group purpose="location"> | ||
6739 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6740 | <context context-type="linenumber">48</context> | ||
6741 | </context-group> | ||
6742 | </trans-unit><trans-unit id="8564701209009684429" datatype="html"> | ||
6493 | <source>Federation</source><target state="new">Federation</target> | 6743 | <source>Federation</source><target state="new">Federation</target> |
6494 | <context-group purpose="location"> | 6744 | <context-group purpose="location"> |
6495 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> | 6745 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> |
@@ -6843,7 +7093,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6843 | <source>Views for the day</source> | 7093 | <source>Views for the day</source> |
6844 | <target state="new">Views for the day</target> | 7094 | <target state="new">Views for the day</target> |
6845 | 7095 | ||
6846 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit> | 7096 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit><trans-unit id="4707367314920217630" datatype="html"> |
7097 | <source>Create new video channel</source><target state="new">Create new video channel</target> | ||
7098 | <context-group purpose="location"> | ||
7099 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7100 | <context context-type="linenumber">22</context> | ||
7101 | </context-group> | ||
7102 | </trans-unit><trans-unit id="6059091237492573541" datatype="html"> | ||
7103 | <source>Update video channel</source><target state="new">Update video channel</target> | ||
7104 | <context-group purpose="location"> | ||
7105 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7106 | <context context-type="linenumber">31</context> | ||
7107 | </context-group> | ||
7108 | </trans-unit><trans-unit id="6595008830732269870" datatype="html"> | ||
7109 | <source>Not found</source><target state="new">Not found</target> | ||
7110 | <context-group purpose="location"> | ||
7111 | <context context-type="sourcefile">../app/+page-not-found/page-not-found-routing.module.ts</context> | ||
7112 | <context context-type="linenumber">13</context> | ||
7113 | </context-group> | ||
7114 | </trans-unit> | ||
6847 | <trans-unit id="5032453707232754344"> | 7115 | <trans-unit id="5032453707232754344"> |
6848 | <source>Playlist <x id="PH"/> created.</source> | 7116 | <source>Playlist <x id="PH"/> created.</source> |
6849 | <target>Плейлист | 7117 | <target>Плейлист |
@@ -6861,7 +7129,31 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6861 | <source>Update playlist</source> | 7129 | <source>Update playlist</source> |
6862 | <target state="new">Update playlist</target> | 7130 | <target state="new">Update playlist</target> |
6863 | 7131 | ||
6864 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-video-playlists/my-account-video-playlist-elements.component.ts</context><context context-type="linenumber">48</context></context-group></trans-unit> | 7132 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">82</context></context-group></trans-unit><trans-unit id="3410331549417637431" datatype="html"> |
7133 | <source>Account video imports</source><target state="new">Account video imports</target> | ||
7134 | <context-group purpose="location"> | ||
7135 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7136 | <context context-type="linenumber">105</context> | ||
7137 | </context-group> | ||
7138 | </trans-unit><trans-unit id="4434998055872154420" datatype="html"> | ||
7139 | <source>Account subscriptions</source><target state="new">Account subscriptions</target> | ||
7140 | <context-group purpose="location"> | ||
7141 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7142 | <context context-type="linenumber">114</context> | ||
7143 | </context-group> | ||
7144 | </trans-unit><trans-unit id="6019411775996586321" datatype="html"> | ||
7145 | <source>Videos history</source><target state="new">Videos history</target> | ||
7146 | <context-group purpose="location"> | ||
7147 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7148 | <context context-type="linenumber">150</context> | ||
7149 | </context-group> | ||
7150 | </trans-unit><trans-unit id="5851560788527570644" datatype="html"> | ||
7151 | <source>Notifications</source><target state="new">Notifications</target> | ||
7152 | <context-group purpose="location"> | ||
7153 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7154 | <context context-type="linenumber">163</context> | ||
7155 | </context-group> | ||
7156 | </trans-unit> | ||
6865 | <trans-unit id="104404386496394770" datatype="html"> | 7157 | <trans-unit id="104404386496394770" datatype="html"> |
6866 | <source>Delete playlist</source> | 7158 | <source>Delete playlist</source> |
6867 | <target state="new">Delete playlist</target> | 7159 | <target state="new">Delete playlist</target> |
@@ -7015,7 +7307,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7015 | <x id="PH"/>. | 7307 | <x id="PH"/>. |
7016 | </target> | 7308 | </target> |
7017 | 7309 | ||
7018 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit> | 7310 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit><trans-unit id="8231550792139699065" datatype="html"> |
7311 | <source>Verify account email</source><target state="new">Verify account email</target> | ||
7312 | <context-group purpose="location"> | ||
7313 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7314 | <context context-type="linenumber">17</context> | ||
7315 | </context-group> | ||
7316 | </trans-unit><trans-unit id="4997281272800290390" datatype="html"> | ||
7317 | <source>Verify account ask send email</source><target state="new">Verify account ask send email</target> | ||
7318 | <context-group purpose="location"> | ||
7319 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7320 | <context context-type="linenumber">26</context> | ||
7321 | </context-group> | ||
7322 | </trans-unit> | ||
7019 | <trans-unit id="4180693983967989981"> | 7323 | <trans-unit id="4180693983967989981"> |
7020 | <source>Unable to find user id or verification string.</source> | 7324 | <source>Unable to find user id or verification string.</source> |
7021 | <target>Невозможно найти ID пользователя или проверочную строку.</target> | 7325 | <target>Невозможно найти ID пользователя или проверочную строку.</target> |
@@ -7140,27 +7444,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7140 | <source>any language</source> | 7444 | <source>any language</source> |
7141 | <target state="translated">любой язык</target> | 7445 | <target state="translated">любой язык</target> |
7142 | 7446 | ||
7143 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">202</context></context-group></trans-unit> | 7447 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">229</context></context-group></trans-unit> |
7144 | <trans-unit id="5633144232269377096" datatype="html"> | 7448 | <trans-unit id="5633144232269377096" datatype="html"> |
7145 | <source>hide</source> | 7449 | <source>hide</source> |
7146 | <target state="translated">скрыть</target> | 7450 | <target state="translated">скрыть</target> |
7147 | 7451 | ||
7148 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">118</context></context-group></trans-unit> | 7452 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> |
7149 | <trans-unit id="8603861867909474404" datatype="html"> | 7453 | <trans-unit id="8603861867909474404" datatype="html"> |
7150 | <source>blur</source> | 7454 | <source>blur</source> |
7151 | <target state="translated">размытие</target> | 7455 | <target state="translated">размытие</target> |
7152 | 7456 | ||
7153 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> | 7457 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> |
7154 | <trans-unit id="4534458451100881847" datatype="html"> | 7458 | <trans-unit id="4534458451100881847" datatype="html"> |
7155 | <source>display</source> | 7459 | <source>display</source> |
7156 | <target state="translated">отображение</target> | 7460 | <target state="translated">отображение</target> |
7157 | 7461 | ||
7158 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> | 7462 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">127</context></context-group></trans-unit> |
7159 | <trans-unit id="4467323362722952678" datatype="html"> | 7463 | <trans-unit id="4467323362722952678" datatype="html"> |
7160 | <source>Unknown</source> | 7464 | <source>Unknown</source> |
7161 | <target state="new">Unknown</target> | 7465 | <target state="new">Unknown</target> |
7162 | 7466 | ||
7163 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">190</context></context-group></trans-unit> | 7467 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">193</context></context-group></trans-unit> |
7164 | <trans-unit id="8781423666414310853"> | 7468 | <trans-unit id="8781423666414310853"> |
7165 | <source>Your password has been successfully reset!</source> | 7469 | <source>Your password has been successfully reset!</source> |
7166 | <target>Ваш пароль был успешно сброшен!</target> | 7470 | <target>Ваш пароль был успешно сброшен!</target> |
@@ -8278,27 +8582,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8278 | <source>Emphasis</source> | 8582 | <source>Emphasis</source> |
8279 | <target>Подчёркивание</target> | 8583 | <target>Подчёркивание</target> |
8280 | 8584 | ||
8281 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">77</context></context-group></trans-unit> | 8585 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> |
8282 | <trans-unit id="7565716024468232322"> | 8586 | <trans-unit id="7565716024468232322"> |
8283 | <source>Links</source> | 8587 | <source>Links</source> |
8284 | <target>Ссылки</target> | 8588 | <target>Ссылки</target> |
8285 | 8589 | ||
8286 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">78</context></context-group></trans-unit> | 8590 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> |
8287 | <trans-unit id="7838476952710404110"> | 8591 | <trans-unit id="7838476952710404110"> |
8288 | <source>New lines</source> | 8592 | <source>New lines</source> |
8289 | <target>Новые строки</target> | 8593 | <target>Новые строки</target> |
8290 | 8594 | ||
8291 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 8595 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">83</context></context-group></trans-unit> |
8292 | <trans-unit id="8756167649220050929"> | 8596 | <trans-unit id="8756167649220050929"> |
8293 | <source>Lists</source> | 8597 | <source>Lists</source> |
8294 | <target>Списки</target> | 8598 | <target>Списки</target> |
8295 | 8599 | ||
8296 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">80</context></context-group></trans-unit> | 8600 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">84</context></context-group></trans-unit> |
8297 | <trans-unit id="414887388288176527"> | 8601 | <trans-unit id="414887388288176527"> |
8298 | <source>Images</source> | 8602 | <source>Images</source> |
8299 | <target>Изображения</target> | 8603 | <target>Изображения</target> |
8300 | 8604 | ||
8301 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> | 8605 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">85</context></context-group></trans-unit> |
8302 | <trans-unit id="5708680277917691451" datatype="html"> | 8606 | <trans-unit id="5708680277917691451" datatype="html"> |
8303 | <source> | 8607 | <source> |
8304 | <x id="PH"/> users banned. | 8608 | <x id="PH"/> users banned. |
@@ -8694,7 +8998,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8694 | <source>Moderator</source> | 8998 | <source>Moderator</source> |
8695 | <target>Модератор</target> | 8999 | <target>Модератор</target> |
8696 | 9000 | ||
8697 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">386</context></context-group></trans-unit> | 9001 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">384</context></context-group></trans-unit> |
8698 | <trans-unit id="3723085768598852106"> | 9002 | <trans-unit id="3723085768598852106"> |
8699 | <source>Video removed from | 9003 | <source>Video removed from |
8700 | <x id="PH"/> | 9004 | <x id="PH"/> |
@@ -8767,7 +9071,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8767 | <source>Do you really want to delete this comment?</source> | 9071 | <source>Do you really want to delete this comment?</source> |
8768 | <target state="new">Do you really want to delete this comment?</target> | 9072 | <target state="new">Do you really want to delete this comment?</target> |
8769 | 9073 | ||
8770 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">434</context></context-group></trans-unit> | 9074 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">166</context></context-group></trans-unit> |
8771 | <trans-unit id="7837272126865175984" datatype="html"> | 9075 | <trans-unit id="7837272126865175984" datatype="html"> |
8772 | <source>Comment deleted.</source> | 9076 | <source>Comment deleted.</source> |
8773 | <target state="new">Comment deleted.</target> | 9077 | <target state="new">Comment deleted.</target> |
@@ -8879,9 +9183,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8879 | 9183 | ||
8880 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> | 9184 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> |
8881 | <source>Report</source><target state="new">Report</target> | 9185 | <source>Report</source><target state="new">Report</target> |
9186 | |||
9187 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="4814285799071780083" datatype="html"> | ||
9188 | <source>Remove</source><target state="new">Remove</target> | ||
8882 | <context-group purpose="location"> | 9189 | <context-group purpose="location"> |
8883 | <context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> | 9190 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> |
8884 | <context context-type="linenumber">286</context> | 9191 | <context context-type="linenumber">179</context> |
9192 | </context-group> | ||
9193 | </trans-unit><trans-unit id="6871668720687277843" datatype="html"> | ||
9194 | <source>Remove & re-draft</source><target state="new">Remove & re-draft</target> | ||
9195 | <context-group purpose="location"> | ||
9196 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> | ||
9197 | <context context-type="linenumber">187</context> | ||
8885 | </context-group> | 9198 | </context-group> |
8886 | </trans-unit> | 9199 | </trans-unit> |
8887 | <trans-unit id="4903651219400691248" datatype="html"> | 9200 | <trans-unit id="4903651219400691248" datatype="html"> |
@@ -8985,22 +9298,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8985 | <source>Only I can see this video</source> | 9298 | <source>Only I can see this video</source> |
8986 | <target>Только я могу видеть это видео</target> | 9299 | <target>Только я могу видеть это видео</target> |
8987 | 9300 | ||
8988 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">340</context></context-group></trans-unit> | 9301 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">341</context></context-group></trans-unit> |
8989 | <trans-unit id="6767380569816110388" datatype="html"> | 9302 | <trans-unit id="6767380569816110388" datatype="html"> |
8990 | <source>Only shareable via a private link</source> | 9303 | <source>Only shareable via a private link</source> |
8991 | <target state="new">Only shareable via a private link</target> | 9304 | <target state="new">Only shareable via a private link</target> |
8992 | 9305 | ||
8993 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">344</context></context-group></trans-unit> | 9306 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">345</context></context-group></trans-unit> |
8994 | <trans-unit id="6828965264297239528"> | 9307 | <trans-unit id="6828965264297239528"> |
8995 | <source>Anyone can see this video</source> | 9308 | <source>Anyone can see this video</source> |
8996 | <target>Все могут видеть это видео</target> | 9309 | <target>Все могут видеть это видео</target> |
8997 | 9310 | ||
8998 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">348</context></context-group></trans-unit> | 9311 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">349</context></context-group></trans-unit> |
8999 | <trans-unit id="1425933035739773115" datatype="html"> | 9312 | <trans-unit id="1425933035739773115" datatype="html"> |
9000 | <source>Only users of this instance can see this video</source> | 9313 | <source>Only users of this instance can see this video</source> |
9001 | <target state="new">Only users of this instance can see this video</target> | 9314 | <target state="new">Only users of this instance can see this video</target> |
9002 | 9315 | ||
9003 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">352</context></context-group></trans-unit> | 9316 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">353</context></context-group></trans-unit> |
9004 | <trans-unit id="5210096066382592800"> | 9317 | <trans-unit id="5210096066382592800"> |
9005 | <source>Video to import updated.</source> | 9318 | <source>Video to import updated.</source> |
9006 | <target>Видео для импорта обновлено.</target> | 9319 | <target>Видео для импорта обновлено.</target> |
@@ -9080,7 +9393,7 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9080 | <target state="new">Report comment</target> | 9393 | <target state="new">Report comment</target> |
9081 | 9394 | ||
9082 | 9395 | ||
9083 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 9396 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/report-modals/comment-report.component.ts</context><context context-type="linenumber">51</context></context-group></trans-unit> |
9084 | 9397 | ||
9085 | 9398 | ||
9086 | <trans-unit id="6775540171466219199" datatype="html"> | 9399 | <trans-unit id="6775540171466219199" datatype="html"> |
@@ -9244,6 +9557,36 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9244 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> | 9557 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> |
9245 | <context context-type="linenumber">36</context> | 9558 | <context context-type="linenumber">36</context> |
9246 | </context-group> | 9559 | </context-group> |
9560 | </trans-unit><trans-unit id="4668975178372693951" datatype="html"> | ||
9561 | <source>Discover videos</source><target state="new">Discover videos</target> | ||
9562 | <context-group purpose="location"> | ||
9563 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9564 | <context context-type="linenumber">23</context> | ||
9565 | </context-group> | ||
9566 | </trans-unit><trans-unit id="8067135025051844577" datatype="html"> | ||
9567 | <source>Trending videos</source><target state="new">Trending videos</target> | ||
9568 | <context-group purpose="location"> | ||
9569 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9570 | <context context-type="linenumber">32</context> | ||
9571 | </context-group> | ||
9572 | </trans-unit><trans-unit id="664221386829541948" datatype="html"> | ||
9573 | <source>Recently added videos</source><target state="new">Recently added videos</target> | ||
9574 | <context-group purpose="location"> | ||
9575 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9576 | <context context-type="linenumber">58</context> | ||
9577 | </context-group> | ||
9578 | </trans-unit><trans-unit id="8212906256415538361" datatype="html"> | ||
9579 | <source>Upload a video</source><target state="new">Upload a video</target> | ||
9580 | <context-group purpose="location"> | ||
9581 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9582 | <context context-type="linenumber">97</context> | ||
9583 | </context-group> | ||
9584 | </trans-unit><trans-unit id="7590784934397800835" datatype="html"> | ||
9585 | <source>Edit a video</source><target state="new">Edit a video</target> | ||
9586 | <context-group purpose="location"> | ||
9587 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9588 | <context context-type="linenumber">106</context> | ||
9589 | </context-group> | ||
9247 | </trans-unit> | 9590 | </trans-unit> |
9248 | </body> | 9591 | </body> |
9249 | </file> | 9592 | </file> |
diff --git a/client/src/locale/angular.sk-SK.xlf b/client/src/locale/angular.sk-SK.xlf index 855a89ef2..f1ec4a68e 100644 --- a/client/src/locale/angular.sk-SK.xlf +++ b/client/src/locale/angular.sk-SK.xlf | |||
@@ -318,7 +318,7 @@ | |||
318 | <target state="new">Options</target> | 318 | <target state="new">Options</target> |
319 | 319 | ||
320 | 320 | ||
321 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 321 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">48</context></context-group></trans-unit> |
322 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d" datatype="html"> | 322 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d" datatype="html"> |
323 | <source>Start at</source> | 323 | <source>Start at</source> |
324 | <target state="new">Start at</target> | 324 | <target state="new">Start at</target> |
@@ -452,7 +452,7 @@ | |||
452 | Cancel | 452 | Cancel |
453 | </target> | 453 | </target> |
454 | 454 | ||
455 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> | 455 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit> |
456 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd" datatype="html"> | 456 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd" datatype="html"> |
457 | <source>Download</source> | 457 | <source>Download</source> |
458 | <target state="new">Download</target> | 458 | <target state="new">Download</target> |
@@ -575,7 +575,7 @@ | |||
575 | 575 | ||
576 | 576 | ||
577 | 577 | ||
578 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 578 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
579 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc" datatype="html"> | 579 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc" datatype="html"> |
580 | <source>Edit starts/stops at</source> | 580 | <source>Edit starts/stops at</source> |
581 | <target state="new">Edit starts/stops at</target> | 581 | <target state="new">Edit starts/stops at</target> |
@@ -615,7 +615,7 @@ | |||
615 | 615 | ||
616 | 616 | ||
617 | 617 | ||
618 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> | 618 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
619 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c" datatype="html"> | 619 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c" datatype="html"> |
620 | <source>Edit</source> | 620 | <source>Edit</source> |
621 | <target state="new">Edit</target> | 621 | <target state="new">Edit</target> |
@@ -640,17 +640,10 @@ | |||
640 | <target state="new">Complete preview</target> | 640 | <target state="new">Complete preview</target> |
641 | 641 | ||
642 | <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></trans-unit> | 642 | <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></trans-unit> |
643 | <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f" datatype="html"> | 643 | <trans-unit id="8644431249513874405" datatype="html"> |
644 | <source>Get help</source> | ||
645 | <target state="new">Get help</target> | ||
646 | |||
647 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit><trans-unit id="8644431249513874405" datatype="html"> | ||
648 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> | 644 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> |
649 | <context-group purpose="location"> | 645 | |
650 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 646 | <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></trans-unit> |
651 | <context context-type="linenumber">71</context> | ||
652 | </context-group> | ||
653 | </trans-unit> | ||
654 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> | 647 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> |
655 | <source>Recommended</source> | 648 | <source>Recommended</source> |
656 | <target state="new">Recommended</target> | 649 | <target state="new">Recommended</target> |
@@ -690,7 +683,7 @@ | |||
690 | <source>PROFILE SETTINGS</source> | 683 | <source>PROFILE SETTINGS</source> |
691 | <target state="new">PROFILE SETTINGS</target> | 684 | <target state="new">PROFILE SETTINGS</target> |
692 | 685 | ||
693 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 686 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">12</context></context-group></trans-unit> |
694 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3" datatype="html"> | 687 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3" datatype="html"> |
695 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> | 688 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> |
696 | <target state="new"> | 689 | <target state="new"> |
@@ -862,11 +855,8 @@ | |||
862 | 855 | ||
863 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> | 856 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> |
864 | <source>User</source><target state="new">User</target> | 857 | <source>User</source><target state="new">User</target> |
865 | <context-group purpose="location"> | 858 | |
866 | <context context-type="sourcefile">../app/core/users/user.service.ts</context> | 859 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit> |
867 | <context context-type="linenumber">384</context> | ||
868 | </context-group> | ||
869 | </trans-unit> | ||
870 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0" datatype="html"> | 860 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0" datatype="html"> |
871 | <source>Ban</source> | 861 | <source>Ban</source> |
872 | <target state="new">Ban</target> | 862 | <target state="new">Ban</target> |
@@ -1374,89 +1364,89 @@ The link will expire within 1 hour.</target> | |||
1374 | <source>Account settings</source> | 1364 | <source>Account settings</source> |
1375 | <target state="new">Account settings</target> | 1365 | <target state="new">Account settings</target> |
1376 | 1366 | ||
1377 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 1367 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
1378 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> | 1368 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> |
1379 | <source>Channels settings</source> | 1369 | <source>Channels settings</source> |
1380 | <target state="new">Channels settings</target> | 1370 | <target state="new">Channels settings</target> |
1381 | 1371 | ||
1382 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 1372 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> |
1383 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> | 1373 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> |
1384 | <source>Interface:</source> | 1374 | <source>Interface:</source> |
1385 | <target state="new">Interface:</target> | 1375 | <target state="new">Interface:</target> |
1386 | 1376 | ||
1387 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 1377 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1388 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> | 1378 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> |
1389 | <source>Videos:</source> | 1379 | <source>Videos:</source> |
1390 | <target state="new">Videos:</target> | 1380 | <target state="new">Videos:</target> |
1391 | 1381 | ||
1392 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 1382 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> |
1393 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> | 1383 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> |
1394 | <source>Sensitive:</source> | 1384 | <source>Sensitive:</source> |
1395 | <target state="new">Sensitive:</target> | 1385 | <target state="new">Sensitive:</target> |
1396 | 1386 | ||
1397 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 1387 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">54</context></context-group></trans-unit> |
1398 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1388 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> |
1399 | <source>Interface: <x id="INTERPOLATION"/></source> | 1389 | <source>Interface: <x id="INTERPOLATION"/></source> |
1400 | <target state="new">Interface: | 1390 | <target state="new">Interface: |
1401 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> | 1391 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> |
1402 | </target> | 1392 | </target> |
1403 | 1393 | ||
1404 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">156</context></context-group></trans-unit> | 1394 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> |
1405 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1395 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1406 | <source>Help share videos</source> | 1396 | <source>Help share videos</source> |
1407 | <target state="new">Help share videos</target> | 1397 | <target state="new">Help share videos</target> |
1408 | 1398 | ||
1409 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> | 1399 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
1410 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> | 1400 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> |
1411 | <source>More account settings</source> | 1401 | <source>More account settings</source> |
1412 | <target state="new">More account settings</target> | 1402 | <target state="new">More account settings</target> |
1413 | 1403 | ||
1414 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> | 1404 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> |
1415 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> | 1405 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> |
1416 | <source>Keyboard shortcuts</source> | 1406 | <source>Keyboard shortcuts</source> |
1417 | <target state="new">Keyboard shortcuts</target> | 1407 | <target state="new">Keyboard shortcuts</target> |
1418 | 1408 | ||
1419 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 1409 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">72</context></context-group></trans-unit> |
1420 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> | 1410 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> |
1421 | <source>Help</source> | 1411 | <source>Help</source> |
1422 | <target state="new">Help</target> | 1412 | <target state="new">Help</target> |
1423 | 1413 | ||
1424 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1414 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1425 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> | 1415 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> |
1426 | <source>Get help using PeerTube</source> | 1416 | <source>Get help using PeerTube</source> |
1427 | <target state="new">Get help using PeerTube</target> | 1417 | <target state="new">Get help using PeerTube</target> |
1428 | 1418 | ||
1429 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">161</context></context-group></trans-unit> | 1419 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">167</context></context-group></trans-unit> |
1430 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> | 1420 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> |
1431 | <source>Shortcuts</source> | 1421 | <source>Shortcuts</source> |
1432 | <target state="new">Shortcuts</target> | 1422 | <target state="new">Shortcuts</target> |
1433 | 1423 | ||
1434 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1424 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1435 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> | 1425 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> |
1436 | <source>powered by PeerTube</source> | 1426 | <source>powered by PeerTube</source> |
1437 | <target state="new">powered by PeerTube</target> | 1427 | <target state="new">powered by PeerTube</target> |
1438 | 1428 | ||
1439 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | 1429 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">177</context></context-group></trans-unit> |
1440 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> | 1430 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> |
1441 | <source>powered by PeerTube - CopyLeft 2015-2020</source> | 1431 | <source>powered by PeerTube - CopyLeft 2015-2020</source> |
1442 | <target state="new">powered by PeerTube - CopyLeft 2015-2020</target> | 1432 | <target state="new">powered by PeerTube - CopyLeft 2015-2020</target> |
1443 | 1433 | ||
1444 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> | 1434 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">176</context></context-group></trans-unit> |
1445 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344" datatype="html"> | 1435 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344" datatype="html"> |
1446 | <source>Log out</source> | 1436 | <source>Log out</source> |
1447 | <target state="new">Log out</target> | 1437 | <target state="new">Log out</target> |
1448 | 1438 | ||
1449 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">70</context></context-group></trans-unit> | 1439 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit> |
1450 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87" datatype="html"> | 1440 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87" datatype="html"> |
1451 | <source>Create an account</source> | 1441 | <source>Create an account</source> |
1452 | <target state="new">Create an account</target> | 1442 | <target state="new">Create an account</target> |
1453 | 1443 | ||
1454 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">78</context></context-group></trans-unit> | 1444 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
1455 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> | 1445 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> |
1456 | <source>MY LIBRARY</source> | 1446 | <source>MY LIBRARY</source> |
1457 | <target state="new">MY LIBRARY</target> | 1447 | <target state="new">MY LIBRARY</target> |
1458 | 1448 | ||
1459 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 1449 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">88</context></context-group></trans-unit> |
1460 | <trans-unit id="6371572688505952303" datatype="html"> | 1450 | <trans-unit id="6371572688505952303" datatype="html"> |
1461 | <source>My library</source> | 1451 | <source>My library</source> |
1462 | <target state="new">My library</target> | 1452 | <target state="new">My library</target> |
@@ -1496,22 +1486,22 @@ The link will expire within 1 hour.</target> | |||
1496 | <source>Videos</source> | 1486 | <source>Videos</source> |
1497 | <target state="new">Videos</target> | 1487 | <target state="new">Videos</target> |
1498 | 1488 | ||
1499 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">86</context></context-group></trans-unit> | 1489 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">92</context></context-group></trans-unit> |
1500 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> | 1490 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> |
1501 | <source>Playlists</source> | 1491 | <source>Playlists</source> |
1502 | <target state="new">Playlists</target> | 1492 | <target state="new">Playlists</target> |
1503 | 1493 | ||
1504 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">91</context></context-group></trans-unit> | 1494 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">97</context></context-group></trans-unit> |
1505 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2" datatype="html"> | 1495 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2" datatype="html"> |
1506 | <source>Subscriptions</source> | 1496 | <source>Subscriptions</source> |
1507 | <target state="new">Subscriptions</target> | 1497 | <target state="new">Subscriptions</target> |
1508 | 1498 | ||
1509 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 1499 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">102</context></context-group></trans-unit> |
1510 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8" datatype="html"> | 1500 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8" datatype="html"> |
1511 | <source>History</source> | 1501 | <source>History</source> |
1512 | <target state="new">History</target> | 1502 | <target state="new">History</target> |
1513 | 1503 | ||
1514 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit> | 1504 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">107</context></context-group></trans-unit> |
1515 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> | 1505 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> |
1516 | <source>VIDEOS</source> | 1506 | <source>VIDEOS</source> |
1517 | <target state="new">VIDEOS</target> | 1507 | <target state="new">VIDEOS</target> |
@@ -1523,27 +1513,27 @@ The link will expire within 1 hour.</target> | |||
1523 | <target state="new">Discover</target> | 1513 | <target state="new">Discover</target> |
1524 | 1514 | ||
1525 | 1515 | ||
1526 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">111</context></context-group></trans-unit> | 1516 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">117</context></context-group></trans-unit> |
1527 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807" datatype="html"> | 1517 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807" datatype="html"> |
1528 | <source>Trending</source> | 1518 | <source>Trending</source> |
1529 | <target state="new">Trending</target> | 1519 | <target state="new">Trending</target> |
1530 | 1520 | ||
1531 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">116</context></context-group></trans-unit> | 1521 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">122</context></context-group></trans-unit> |
1532 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> | 1522 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> |
1533 | <source>Most liked</source> | 1523 | <source>Most liked</source> |
1534 | <target state="new">Most liked</target> | 1524 | <target state="new">Most liked</target> |
1535 | 1525 | ||
1536 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">121</context></context-group></trans-unit> | 1526 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">127</context></context-group></trans-unit> |
1537 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1" datatype="html"> | 1527 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1" datatype="html"> |
1538 | <source>Recently added</source> | 1528 | <source>Recently added</source> |
1539 | <target state="new">Recently added</target> | 1529 | <target state="new">Recently added</target> |
1540 | 1530 | ||
1541 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">126</context></context-group></trans-unit> | 1531 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">132</context></context-group></trans-unit> |
1542 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919" datatype="html"> | 1532 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919" datatype="html"> |
1543 | <source>Administration</source> | 1533 | <source>Administration</source> |
1544 | <target state="new">Administration</target> | 1534 | <target state="new">Administration</target> |
1545 | 1535 | ||
1546 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">140</context></context-group></trans-unit> | 1536 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">146</context></context-group></trans-unit> |
1547 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a" datatype="html"> | 1537 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a" datatype="html"> |
1548 | <source>About</source> | 1538 | <source>About</source> |
1549 | <target state="new">About</target> | 1539 | <target state="new">About</target> |
@@ -1554,7 +1544,7 @@ The link will expire within 1 hour.</target> | |||
1554 | <source>Contact</source> | 1544 | <source>Contact</source> |
1555 | <target state="new">Contact</target> | 1545 | <target state="new">Contact</target> |
1556 | 1546 | ||
1557 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">160</context></context-group></trans-unit> | 1547 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">166</context></context-group></trans-unit> |
1558 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771" datatype="html"> | 1548 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771" datatype="html"> |
1559 | <source>View your notifications</source> | 1549 | <source>View your notifications</source> |
1560 | <target state="new">View your notifications</target> | 1550 | <target state="new">View your notifications</target> |
@@ -1581,7 +1571,7 @@ The link will expire within 1 hour.</target> | |||
1581 | <source>See all your notifications</source> | 1571 | <source>See all your notifications</source> |
1582 | <target state="new">See all your notifications</target> | 1572 | <target state="new">See all your notifications</target> |
1583 | 1573 | ||
1584 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 1574 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">40</context></context-group></trans-unit> |
1585 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> | 1575 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> |
1586 | <source>Search videos, channels…</source> | 1576 | <source>Search videos, channels…</source> |
1587 | <target state="new">Search videos, channels…</target> | 1577 | <target state="new">Search videos, channels…</target> |
@@ -1925,22 +1915,22 @@ The link will expire within 1 hour.</target> | |||
1925 | <source>FAQ</source> | 1915 | <source>FAQ</source> |
1926 | <target state="new">FAQ</target> | 1916 | <target state="new">FAQ</target> |
1927 | 1917 | ||
1928 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">163</context></context-group></trans-unit> | 1918 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
1929 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> | 1919 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> |
1930 | <source>Frequently asked questions about PeerTube</source> | 1920 | <source>Frequently asked questions about PeerTube</source> |
1931 | <target state="new">Frequently asked questions about PeerTube</target> | 1921 | <target state="new">Frequently asked questions about PeerTube</target> |
1932 | 1922 | ||
1933 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1923 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1934 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> | 1924 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> |
1935 | <source>API</source> | 1925 | <source>API</source> |
1936 | <target state="new">API</target> | 1926 | <target state="new">API</target> |
1937 | 1927 | ||
1938 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1928 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1939 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> | 1929 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> |
1940 | <source>API documentation</source> | 1930 | <source>API documentation</source> |
1941 | <target state="new">API documentation</target> | 1931 | <target state="new">API documentation</target> |
1942 | 1932 | ||
1943 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 1933 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
1944 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5" datatype="html"> | 1934 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5" datatype="html"> |
1945 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> | 1935 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> |
1946 | <target state="new">Schedule publication ( | 1936 | <target state="new">Schedule publication ( |
@@ -2341,7 +2331,13 @@ The link will expire within 1 hour.</target> | |||
2341 | Less customization | 2331 | Less customization |
2342 | </target> | 2332 | </target> |
2343 | 2333 | ||
2344 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit> | 2334 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit><trans-unit id="2454050363478003966" datatype="html"> |
2335 | <source>Login</source><target state="new">Login</target> | ||
2336 | <context-group purpose="location"> | ||
2337 | <context context-type="sourcefile">../app/+login/login-routing.module.ts</context> | ||
2338 | <context context-type="linenumber">14</context> | ||
2339 | </context-group> | ||
2340 | </trans-unit> | ||
2345 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e" datatype="html"> | 2341 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e" datatype="html"> |
2346 | <source>Autoplay</source> | 2342 | <source>Autoplay</source> |
2347 | <target state="new">Autoplay</target> | 2343 | <target state="new">Autoplay</target> |
@@ -2616,7 +2612,7 @@ The link will expire within 1 hour.</target> | |||
2616 | <source>No comments.</source> | 2612 | <source>No comments.</source> |
2617 | <target state="new">No comments.</target> | 2613 | <target state="new">No comments.</target> |
2618 | 2614 | ||
2619 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 2615 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> |
2620 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> | 2616 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> |
2621 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> | 2617 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> |
2622 | <target state="new"> | 2618 | <target state="new"> |
@@ -2626,7 +2622,7 @@ The link will expire within 1 hour.</target> | |||
2626 | 2622 | ||
2627 | </target> | 2623 | </target> |
2628 | 2624 | ||
2629 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">79</context></context-group></trans-unit> | 2625 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
2630 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> | 2626 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> |
2631 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> | 2627 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> |
2632 | <target state="new"> | 2628 | <target state="new"> |
@@ -2635,14 +2631,14 @@ The link will expire within 1 hour.</target> | |||
2635 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> | 2631 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> |
2636 | </target> | 2632 | </target> |
2637 | 2633 | ||
2638 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 2634 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">87</context></context-group></trans-unit> |
2639 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> | 2635 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> |
2640 | <source>View <x id="INTERPOLATION"/> replies</source> | 2636 | <source>View <x id="INTERPOLATION"/> replies</source> |
2641 | <target state="new">View | 2637 | <target state="new">View |
2642 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies | 2638 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies |
2643 | </target> | 2639 | </target> |
2644 | 2640 | ||
2645 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">85</context></context-group></trans-unit> | 2641 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">90</context></context-group></trans-unit> |
2646 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828" datatype="html"> | 2642 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828" datatype="html"> |
2647 | <source> | 2643 | <source> |
2648 | Comments are disabled. | 2644 | Comments are disabled. |
@@ -2651,26 +2647,84 @@ The link will expire within 1 hour.</target> | |||
2651 | Comments are disabled. | 2647 | Comments are disabled. |
2652 | </target> | 2648 | </target> |
2653 | 2649 | ||
2654 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 2650 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit> |
2655 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e" datatype="html"> | 2651 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e" datatype="html"> |
2656 | <source>Add comment...</source> | 2652 | <source>Add comment...</source> |
2657 | <target state="new">Add comment...</target> | 2653 | <target state="new">Add comment...</target> |
2658 | 2654 | ||
2659 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | 2655 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit><trans-unit id="4e5254dedf0c12ce7e7c2197384fceebe3b29a2b" datatype="html"> |
2660 | <trans-unit id="8956c0f4c6974289fc63f1ab6b54f5b32ed65eeb" datatype="html"> | 2656 | <source>Markdown compatible</source><target state="new">Markdown compatible</target> |
2661 | <source> | 2657 | <context-group purpose="location"> |
2662 | Reply | 2658 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> |
2663 | </source> | 2659 | <context context-type="linenumber">13</context> |
2664 | <target state="new"> | 2660 | </context-group> |
2665 | Reply | 2661 | </trans-unit><trans-unit id="4739ffad85f09defefdb6e51b45f43b2ef7c4388" datatype="html"> |
2666 | </target> | 2662 | <source>Markdown compatible that supports:</source><target state="new">Markdown compatible that supports:</target> |
2667 | 2663 | <context-group purpose="location"> | |
2668 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 2664 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> |
2665 | <context context-type="linenumber">15</context> | ||
2666 | </context-group> | ||
2667 | </trans-unit><trans-unit id="9a53b17a021bb0677c156fd893461797fc497a10" datatype="html"> | ||
2668 | <source>Auto generated links</source><target state="new">Auto generated links</target> | ||
2669 | <context-group purpose="location"> | ||
2670 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2671 | <context context-type="linenumber">18</context> | ||
2672 | </context-group> | ||
2673 | </trans-unit><trans-unit id="664f99b8919d6dd2faa1c1f7c378aa86d1be5e8a" datatype="html"> | ||
2674 | <source>Break lines</source><target state="new">Break lines</target> | ||
2675 | <context-group purpose="location"> | ||
2676 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2677 | <context context-type="linenumber">19</context> | ||
2678 | </context-group> | ||
2679 | </trans-unit><trans-unit id="b15e7bec5c7833d2d9634946ccbed68967b1bee1" datatype="html"> | ||
2680 | <source>Lists</source><target state="new">Lists</target> | ||
2681 | <context-group purpose="location"> | ||
2682 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2683 | <context context-type="linenumber">20</context> | ||
2684 | </context-group> | ||
2685 | </trans-unit><trans-unit id="ab4426b60f13c00b61d6b714d390dc629f314980" datatype="html"> | ||
2686 | <source>Emphasis</source><target state="new">Emphasis</target> | ||
2687 | <context-group purpose="location"> | ||
2688 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2689 | <context context-type="linenumber">22</context> | ||
2690 | </context-group> | ||
2691 | </trans-unit><trans-unit id="4e13b179501d3d32721037e03b4c04acb9857c5f" datatype="html"> | ||
2692 | <source>bold</source><target state="new">bold</target> | ||
2693 | <context-group purpose="location"> | ||
2694 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2695 | <context context-type="linenumber">23</context> | ||
2696 | </context-group> | ||
2697 | </trans-unit><trans-unit id="3c12190421fbb2756e6bbead923df9ec5de8ede2" datatype="html"> | ||
2698 | <source>italic</source><target state="new">italic</target> | ||
2699 | <context-group purpose="location"> | ||
2700 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2701 | <context context-type="linenumber">23</context> | ||
2702 | </context-group> | ||
2703 | </trans-unit><trans-unit id="adb4bbdcb961b8aac8298d6cac554d9b25636b7a" datatype="html"> | ||
2704 | <source>Emoji shortcuts</source><target state="new">Emoji shortcuts</target> | ||
2705 | <context-group purpose="location"> | ||
2706 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2707 | <context context-type="linenumber">26</context> | ||
2708 | </context-group> | ||
2709 | </trans-unit><trans-unit id="b9809a21a8eb3c9db2a0282c5dd94bc221575c96" datatype="html"> | ||
2710 | <source>Emoji markup</source><target state="new">Emoji markup</target> | ||
2711 | <context-group purpose="location"> | ||
2712 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2713 | <context context-type="linenumber">30</context> | ||
2714 | </context-group> | ||
2715 | </trans-unit><trans-unit id="f37feb427aaa551edd1f22616be6464bc0d492de" datatype="html"> | ||
2716 | <source>See complete list</source><target state="new">See complete list</target> | ||
2717 | <context-group purpose="location"> | ||
2718 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2719 | <context context-type="linenumber">32</context> | ||
2720 | </context-group> | ||
2721 | </trans-unit> | ||
2722 | |||
2669 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135" datatype="html"> | 2723 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135" datatype="html"> |
2670 | <source>You are one step away from commenting</source> | 2724 | <source>You are one step away from commenting</source> |
2671 | <target state="new">You are one step away from commenting</target> | 2725 | <target state="new">You are one step away from commenting</target> |
2672 | 2726 | ||
2673 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 2727 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
2674 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> | 2728 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> |
2675 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> | 2729 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> |
2676 | <target state="new"> | 2730 | <target state="new"> |
@@ -2679,7 +2733,7 @@ The link will expire within 1 hour.</target> | |||
2679 | from within the software's interface. | 2733 | from within the software's interface. |
2680 | </target> | 2734 | </target> |
2681 | 2735 | ||
2682 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 2736 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
2683 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb" datatype="html"> | 2737 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb" datatype="html"> |
2684 | <source> | 2738 | <source> |
2685 | If you have an account on Mastodon or Pleroma, you can open it directly in their interface: | 2739 | If you have an account on Mastodon or Pleroma, you can open it directly in their interface: |
@@ -2688,12 +2742,30 @@ The link will expire within 1 hour.</target> | |||
2688 | If you have an account on Mastodon or Pleroma, you can open it directly in their interface: | 2742 | If you have an account on Mastodon or Pleroma, you can open it directly in their interface: |
2689 | </target> | 2743 | </target> |
2690 | 2744 | ||
2691 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">41</context></context-group></trans-unit> | 2745 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">65</context></context-group></trans-unit> |
2692 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> | 2746 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> |
2693 | <source>Login to comment</source> | 2747 | <source>Login to comment</source> |
2694 | <target state="new">Login to comment</target> | 2748 | <target state="new">Login to comment</target> |
2695 | 2749 | ||
2696 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">52</context></context-group></trans-unit> | 2750 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit><trans-unit id="974170f455ff5a9034d5737e84b4194c0046fc6b" datatype="html"> |
2751 | <source>Markdown Emoji List</source><target state="new">Markdown Emoji List</target> | ||
2752 | <context-group purpose="location"> | ||
2753 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2754 | <context context-type="linenumber">84</context> | ||
2755 | </context-group> | ||
2756 | </trans-unit><trans-unit id="2662644497259948010" datatype="html"> | ||
2757 | <source>Comment</source><target state="new">Comment</target> | ||
2758 | <context-group purpose="location"> | ||
2759 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2760 | <context context-type="linenumber">58</context> | ||
2761 | </context-group> | ||
2762 | </trans-unit><trans-unit id="4502286564339177240" datatype="html"> | ||
2763 | <source>Reply</source><target state="new">Reply</target> | ||
2764 | <context-group purpose="location"> | ||
2765 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2766 | <context context-type="linenumber">60</context> | ||
2767 | </context-group> | ||
2768 | </trans-unit> | ||
2697 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285" datatype="html"> | 2769 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285" datatype="html"> |
2698 | <source>Highlighted comment</source> | 2770 | <source>Highlighted comment</source> |
2699 | <target state="new">Highlighted comment</target> | 2771 | <target state="new">Highlighted comment</target> |
@@ -2708,7 +2780,7 @@ The link will expire within 1 hour.</target> | |||
2708 | <source>This comment has been deleted</source> | 2780 | <source>This comment has been deleted</source> |
2709 | <target state="new">This comment has been deleted</target> | 2781 | <target state="new">This comment has been deleted</target> |
2710 | 2782 | ||
2711 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">62</context></context-group></trans-unit> | 2783 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">61</context></context-group></trans-unit> |
2712 | <trans-unit id="9031514421077169181" datatype="html"> | 2784 | <trans-unit id="9031514421077169181" datatype="html"> |
2713 | <source>Video redundancies</source> | 2785 | <source>Video redundancies</source> |
2714 | <target state="new">Video redundancies</target> | 2786 | <target state="new">Video redundancies</target> |
@@ -3565,7 +3637,25 @@ The link will expire within 1 hour.</target> | |||
3565 | <target state="new">No account found.</target> | 3637 | <target state="new">No account found.</target> |
3566 | 3638 | ||
3567 | 3639 | ||
3568 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit> | 3640 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit><trans-unit id="2338185419645468935" datatype="html"> |
3641 | <source>List installed plugins</source><target state="new">List installed plugins</target> | ||
3642 | <context-group purpose="location"> | ||
3643 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3644 | <context context-type="linenumber">28</context> | ||
3645 | </context-group> | ||
3646 | </trans-unit><trans-unit id="8897412584195581488" datatype="html"> | ||
3647 | <source>Search plugins</source><target state="new">Search plugins</target> | ||
3648 | <context-group purpose="location"> | ||
3649 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3650 | <context context-type="linenumber">37</context> | ||
3651 | </context-group> | ||
3652 | </trans-unit><trans-unit id="4994333937800672218" datatype="html"> | ||
3653 | <source>Show plugin</source><target state="new">Show plugin</target> | ||
3654 | <context-group purpose="location"> | ||
3655 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3656 | <context context-type="linenumber">46</context> | ||
3657 | </context-group> | ||
3658 | </trans-unit> | ||
3569 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> | 3659 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> |
3570 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> | 3660 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> |
3571 | <target state="new">Showing | 3661 | <target state="new">Showing |
@@ -4296,7 +4386,7 @@ The link will expire within 1 hour.</target> | |||
4296 | <source>Administrator</source> | 4386 | <source>Administrator</source> |
4297 | <target state="new">Administrator</target> | 4387 | <target state="new">Administrator</target> |
4298 | 4388 | ||
4299 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">385</context></context-group></trans-unit> | 4389 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">383</context></context-group></trans-unit> |
4300 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587" datatype="html"> | 4390 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587" datatype="html"> |
4301 | <source>Admin email</source> | 4391 | <source>Admin email</source> |
4302 | <target state="new">Admin email</target> | 4392 | <target state="new">Admin email</target> |
@@ -4558,27 +4648,27 @@ The link will expire within 1 hour.</target> | |||
4558 | <source>VIDEO SETTINGS</source> | 4648 | <source>VIDEO SETTINGS</source> |
4559 | <target state="new">VIDEO SETTINGS</target> | 4649 | <target state="new">VIDEO SETTINGS</target> |
4560 | 4650 | ||
4561 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit> | 4651 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
4562 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> | 4652 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> |
4563 | <source>NOTIFICATIONS</source> | 4653 | <source>NOTIFICATIONS</source> |
4564 | <target state="new">NOTIFICATIONS</target> | 4654 | <target state="new">NOTIFICATIONS</target> |
4565 | 4655 | ||
4566 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 4656 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">37</context></context-group></trans-unit> |
4567 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> | 4657 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> |
4568 | <source>INTERFACE</source> | 4658 | <source>INTERFACE</source> |
4569 | <target state="new">INTERFACE</target> | 4659 | <target state="new">INTERFACE</target> |
4570 | 4660 | ||
4571 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 4661 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit> |
4572 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> | 4662 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> |
4573 | <source>PASSWORD</source> | 4663 | <source>PASSWORD</source> |
4574 | <target state="new">PASSWORD</target> | 4664 | <target state="new">PASSWORD</target> |
4575 | 4665 | ||
4576 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">59</context></context-group></trans-unit> | 4666 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">57</context></context-group></trans-unit> |
4577 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> | 4667 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> |
4578 | <source>EMAIL</source> | 4668 | <source>EMAIL</source> |
4579 | <target state="new">EMAIL</target> | 4669 | <target state="new">EMAIL</target> |
4580 | 4670 | ||
4581 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">69</context></context-group></trans-unit> | 4671 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">67</context></context-group></trans-unit> |
4582 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> | 4672 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> |
4583 | <source>DANGER ZONE</source> | 4673 | <source>DANGER ZONE</source> |
4584 | <target state="new">DANGER ZONE</target> | 4674 | <target state="new">DANGER ZONE</target> |
@@ -4828,7 +4918,31 @@ The link will expire within 1 hour.</target> | |||
4828 | <source>No ownership change request found.</source> | 4918 | <source>No ownership change request found.</source> |
4829 | <target state="new">No ownership change request found.</target> | 4919 | <target state="new">No ownership change request found.</target> |
4830 | 4920 | ||
4831 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit> | 4921 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit><trans-unit id="4247400351982331798" datatype="html"> |
4922 | <source>Account settings</source><target state="new">Account settings</target> | ||
4923 | <context-group purpose="location"> | ||
4924 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4925 | <context context-type="linenumber">37</context> | ||
4926 | </context-group> | ||
4927 | </trans-unit><trans-unit id="154062590416726309" datatype="html"> | ||
4928 | <source>Account playlists</source><target state="new">Account playlists</target> | ||
4929 | <context-group purpose="location"> | ||
4930 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4931 | <context context-type="linenumber">55</context> | ||
4932 | </context-group> | ||
4933 | </trans-unit><trans-unit id="6550287183367517925" datatype="html"> | ||
4934 | <source>Create new playlist</source><target state="new">Create new playlist</target> | ||
4935 | <context-group purpose="location"> | ||
4936 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4937 | <context context-type="linenumber">64</context> | ||
4938 | </context-group> | ||
4939 | </trans-unit><trans-unit id="2864486939135008600" datatype="html"> | ||
4940 | <source>Playlist elements</source><target state="new">Playlist elements</target> | ||
4941 | <context-group purpose="location"> | ||
4942 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4943 | <context context-type="linenumber">73</context> | ||
4944 | </context-group> | ||
4945 | </trans-unit> | ||
4832 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> | 4946 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> |
4833 | <source>My imports</source> | 4947 | <source>My imports</source> |
4834 | <target state="new">My imports</target> | 4948 | <target state="new">My imports</target> |
@@ -5103,7 +5217,25 @@ The link will expire within 1 hour.</target> | |||
5103 | <source>An error occurred.</source> | 5217 | <source>An error occurred.</source> |
5104 | <target state="new">An error occurred.</target> | 5218 | <target state="new">An error occurred.</target> |
5105 | 5219 | ||
5106 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 5220 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit><trans-unit id="9128669621822125729" datatype="html"> |
5221 | <source>Video channel videos</source><target state="new">Video channel videos</target> | ||
5222 | <context-group purpose="location"> | ||
5223 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5224 | <context context-type="linenumber">25</context> | ||
5225 | </context-group> | ||
5226 | </trans-unit><trans-unit id="3193822049276963401" datatype="html"> | ||
5227 | <source>Video channel playlists</source><target state="new">Video channel playlists</target> | ||
5228 | <context-group purpose="location"> | ||
5229 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5230 | <context context-type="linenumber">38</context> | ||
5231 | </context-group> | ||
5232 | </trans-unit><trans-unit id="4723526509708949088" datatype="html"> | ||
5233 | <source>About video channel</source><target state="new">About video channel</target> | ||
5234 | <context-group purpose="location"> | ||
5235 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5236 | <context context-type="linenumber">47</context> | ||
5237 | </context-group> | ||
5238 | </trans-unit> | ||
5107 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97" datatype="html"> | 5239 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97" datatype="html"> |
5108 | <source> | 5240 | <source> |
5109 | Request email for account verification | 5241 | Request email for account verification |
@@ -5226,7 +5358,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5226 | <source>Stats</source> | 5358 | <source>Stats</source> |
5227 | <target state="new">Stats</target> | 5359 | <target state="new">Stats</target> |
5228 | 5360 | ||
5229 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 5361 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
5230 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc" datatype="html"> | 5362 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc" datatype="html"> |
5231 | <source>Joined <x id="INTERPOLATION"/></source> | 5363 | <source>Joined <x id="INTERPOLATION"/></source> |
5232 | <target state="new">Joined | 5364 | <target state="new">Joined |
@@ -5679,7 +5811,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5679 | <source>This instance does not have instances followings.</source> | 5811 | <source>This instance does not have instances followings.</source> |
5680 | <target state="new">This instance does not have instances followings.</target> | 5812 | <target state="new">This instance does not have instances followings.</target> |
5681 | 5813 | ||
5682 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit> | 5814 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit><trans-unit id="4195286790385468087" datatype="html"> |
5815 | <source>About this instance</source><target state="new">About this instance</target> | ||
5816 | <context-group purpose="location"> | ||
5817 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5818 | <context context-type="linenumber">26</context> | ||
5819 | </context-group> | ||
5820 | </trans-unit><trans-unit id="8773846522957677259" datatype="html"> | ||
5821 | <source>About PeerTube</source><target state="new">About PeerTube</target> | ||
5822 | <context-group purpose="location"> | ||
5823 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5824 | <context context-type="linenumber">38</context> | ||
5825 | </context-group> | ||
5826 | </trans-unit><trans-unit id="5782088737558028158" datatype="html"> | ||
5827 | <source>About follows</source><target state="new">About follows</target> | ||
5828 | <context-group purpose="location"> | ||
5829 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5830 | <context context-type="linenumber">47</context> | ||
5831 | </context-group> | ||
5832 | </trans-unit> | ||
5683 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> | 5833 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> |
5684 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> | 5834 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> |
5685 | <target state="new">Developed with ❤ by | 5835 | <target state="new">Developed with ❤ by |
@@ -5851,6 +6001,12 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5851 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 6001 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> |
5852 | <context context-type="linenumber">1</context> | 6002 | <context context-type="linenumber">1</context> |
5853 | </context-group> | 6003 | </context-group> |
6004 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
6005 | <source>Get help</source><target state="new">Get help</target> | ||
6006 | <context-group purpose="location"> | ||
6007 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | ||
6008 | <context context-type="linenumber">16</context> | ||
6009 | </context-group> | ||
5854 | </trans-unit> | 6010 | </trans-unit> |
5855 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1" datatype="html"> | 6011 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1" datatype="html"> |
5856 | <source> | 6012 | <source> |
@@ -5985,7 +6141,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5985 | 6141 | ||
5986 | </target> | 6142 | </target> |
5987 | 6143 | ||
5988 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 6144 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit><trans-unit id="3301086086650990787" datatype="html"> |
6145 | <source>Register</source><target state="new">Register</target> | ||
6146 | <context-group purpose="location"> | ||
6147 | <context context-type="sourcefile">../app/+signup/+register/register-routing.module.ts</context> | ||
6148 | <context context-type="linenumber">14</context> | ||
6149 | </context-group> | ||
6150 | </trans-unit> | ||
5989 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> | 6151 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> |
5990 | <source> | 6152 | <source> |
5991 | Sorry, we couldn't find the page you were looking for. | 6153 | Sorry, we couldn't find the page you were looking for. |
@@ -6010,7 +6172,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6010 | <target state="new">No description</target> | 6172 | <target state="new">No description</target> |
6011 | 6173 | ||
6012 | 6174 | ||
6013 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit> | 6175 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit><trans-unit id="819067926858619041" datatype="html"> |
6176 | <source>Account videos</source><target state="new">Account videos</target> | ||
6177 | <context-group purpose="location"> | ||
6178 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6179 | <context context-type="linenumber">29</context> | ||
6180 | </context-group> | ||
6181 | </trans-unit><trans-unit id="6823616469362610020" datatype="html"> | ||
6182 | <source>Account video channels</source><target state="new">Account video channels</target> | ||
6183 | <context-group purpose="location"> | ||
6184 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6185 | <context context-type="linenumber">42</context> | ||
6186 | </context-group> | ||
6187 | </trans-unit><trans-unit id="7678273613459026643" datatype="html"> | ||
6188 | <source>About account</source><target state="new">About account</target> | ||
6189 | <context-group purpose="location"> | ||
6190 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6191 | <context context-type="linenumber">51</context> | ||
6192 | </context-group> | ||
6193 | </trans-unit> | ||
6014 | <trans-unit id="3755500631176893489" datatype="html"> | 6194 | <trans-unit id="3755500631176893489" datatype="html"> |
6015 | <source>Published <x id="PH"/> videos</source> | 6195 | <source>Published <x id="PH"/> videos</source> |
6016 | <target state="new">Published | 6196 | <target state="new">Published |
@@ -6127,7 +6307,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6127 | <source>Configuration updated.</source> | 6307 | <source>Configuration updated.</source> |
6128 | <target state="new">Configuration updated.</target> | 6308 | <target state="new">Configuration updated.</target> |
6129 | 6309 | ||
6130 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit> | 6310 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit><trans-unit id="6284468333579755406" datatype="html"> |
6311 | <source>Edit custom configuration</source><target state="new">Edit custom configuration</target> | ||
6312 | <context-group purpose="location"> | ||
6313 | <context context-type="sourcefile">../app/+admin/config/config.routes.ts</context> | ||
6314 | <context context-type="linenumber">26</context> | ||
6315 | </context-group> | ||
6316 | </trans-unit> | ||
6131 | 6317 | ||
6132 | 6318 | ||
6133 | <trans-unit id="6549061957433635758" datatype="html"> | 6319 | <trans-unit id="6549061957433635758" datatype="html"> |
@@ -6606,7 +6792,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6606 | <x id="PH"/> updated. | 6792 | <x id="PH"/> updated. |
6607 | </target> | 6793 | </target> |
6608 | 6794 | ||
6609 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 6795 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit><trans-unit id="3229595422546554334" datatype="html"> |
6796 | <source>Jobs</source><target state="new">Jobs</target> | ||
6797 | <context-group purpose="location"> | ||
6798 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6799 | <context context-type="linenumber">26</context> | ||
6800 | </context-group> | ||
6801 | </trans-unit><trans-unit id="4804785061014590286" datatype="html"> | ||
6802 | <source>Logs</source><target state="new">Logs</target> | ||
6803 | <context-group purpose="location"> | ||
6804 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6805 | <context context-type="linenumber">37</context> | ||
6806 | </context-group> | ||
6807 | </trans-unit> | ||
6610 | <trans-unit id="3150704904301058778" datatype="html"> | 6808 | <trans-unit id="3150704904301058778" datatype="html"> |
6611 | <source>The plugin index is not available. Please retry later.</source> | 6809 | <source>The plugin index is not available. Please retry later.</source> |
6612 | <target state="new">The plugin index is not available. Please retry later.</target> | 6810 | <target state="new">The plugin index is not available. Please retry later.</target> |
@@ -6720,6 +6918,18 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6720 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> | 6918 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> |
6721 | <context context-type="linenumber">86</context> | 6919 | <context context-type="linenumber">86</context> |
6722 | </context-group> | 6920 | </context-group> |
6921 | </trans-unit><trans-unit id="2903648076838460070" datatype="html"> | ||
6922 | <source>Videos blocked</source><target state="new">Videos blocked</target> | ||
6923 | <context-group purpose="location"> | ||
6924 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6925 | <context context-type="linenumber">67</context> | ||
6926 | </context-group> | ||
6927 | </trans-unit><trans-unit id="7805059636749367886" datatype="html"> | ||
6928 | <source>Muted instances</source><target state="new">Muted instances</target> | ||
6929 | <context-group purpose="location"> | ||
6930 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6931 | <context context-type="linenumber">89</context> | ||
6932 | </context-group> | ||
6723 | </trans-unit> | 6933 | </trans-unit> |
6724 | <trans-unit id="5974506725502681113" datatype="html"> | 6934 | <trans-unit id="5974506725502681113" datatype="html"> |
6725 | <source>Password changed for user <x id="PH"/>.</source> | 6935 | <source>Password changed for user <x id="PH"/>.</source> |
@@ -6732,7 +6942,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6732 | <source>Update user password</source> | 6942 | <source>Update user password</source> |
6733 | <target state="new">Update user password</target> | 6943 | <target state="new">Update user password</target> |
6734 | 6944 | ||
6735 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit> | 6945 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit><trans-unit id="177544274549739411" datatype="html"> |
6946 | <source>Following list</source><target state="new">Following list</target> | ||
6947 | <context-group purpose="location"> | ||
6948 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6949 | <context context-type="linenumber">28</context> | ||
6950 | </context-group> | ||
6951 | </trans-unit><trans-unit id="8092429110007204784" datatype="html"> | ||
6952 | <source>Followers list</source><target state="new">Followers list</target> | ||
6953 | <context-group purpose="location"> | ||
6954 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6955 | <context context-type="linenumber">37</context> | ||
6956 | </context-group> | ||
6957 | </trans-unit> | ||
6736 | <trans-unit id="780323526182667308" datatype="html"> | 6958 | <trans-unit id="780323526182667308" datatype="html"> |
6737 | <source>User <x id="PH"/> updated.</source> | 6959 | <source>User <x id="PH"/> updated.</source> |
6738 | <target state="new">User | 6960 | <target state="new">User |
@@ -6751,7 +6973,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6751 | <x id="PH"/>. | 6973 | <x id="PH"/>. |
6752 | </target> | 6974 | </target> |
6753 | 6975 | ||
6754 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="8564701209009684429" datatype="html"> | 6976 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="7483807629538115183" datatype="html"> |
6977 | <source>Users list</source><target state="new">Users list</target> | ||
6978 | <context-group purpose="location"> | ||
6979 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6980 | <context context-type="linenumber">27</context> | ||
6981 | </context-group> | ||
6982 | </trans-unit><trans-unit id="1525334987774465166" datatype="html"> | ||
6983 | <source>Create a user</source><target state="new">Create a user</target> | ||
6984 | <context-group purpose="location"> | ||
6985 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6986 | <context context-type="linenumber">36</context> | ||
6987 | </context-group> | ||
6988 | </trans-unit><trans-unit id="5552039423287890133" datatype="html"> | ||
6989 | <source>Update a user</source><target state="new">Update a user</target> | ||
6990 | <context-group purpose="location"> | ||
6991 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6992 | <context context-type="linenumber">48</context> | ||
6993 | </context-group> | ||
6994 | </trans-unit><trans-unit id="8564701209009684429" datatype="html"> | ||
6755 | <source>Federation</source><target state="new">Federation</target> | 6995 | <source>Federation</source><target state="new">Federation</target> |
6756 | <context-group purpose="location"> | 6996 | <context-group purpose="location"> |
6757 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> | 6997 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> |
@@ -7105,7 +7345,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7105 | <source>Views for the day</source> | 7345 | <source>Views for the day</source> |
7106 | <target state="new">Views for the day</target> | 7346 | <target state="new">Views for the day</target> |
7107 | 7347 | ||
7108 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit> | 7348 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit><trans-unit id="4707367314920217630" datatype="html"> |
7349 | <source>Create new video channel</source><target state="new">Create new video channel</target> | ||
7350 | <context-group purpose="location"> | ||
7351 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7352 | <context context-type="linenumber">22</context> | ||
7353 | </context-group> | ||
7354 | </trans-unit><trans-unit id="6059091237492573541" datatype="html"> | ||
7355 | <source>Update video channel</source><target state="new">Update video channel</target> | ||
7356 | <context-group purpose="location"> | ||
7357 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7358 | <context context-type="linenumber">31</context> | ||
7359 | </context-group> | ||
7360 | </trans-unit><trans-unit id="6595008830732269870" datatype="html"> | ||
7361 | <source>Not found</source><target state="new">Not found</target> | ||
7362 | <context-group purpose="location"> | ||
7363 | <context context-type="sourcefile">../app/+page-not-found/page-not-found-routing.module.ts</context> | ||
7364 | <context context-type="linenumber">13</context> | ||
7365 | </context-group> | ||
7366 | </trans-unit> | ||
7109 | <trans-unit id="5032453707232754344" datatype="html"> | 7367 | <trans-unit id="5032453707232754344" datatype="html"> |
7110 | <source>Playlist <x id="PH"/> created.</source> | 7368 | <source>Playlist <x id="PH"/> created.</source> |
7111 | <target state="new">Playlist | 7369 | <target state="new">Playlist |
@@ -7123,7 +7381,31 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7123 | <source>Update playlist</source> | 7381 | <source>Update playlist</source> |
7124 | <target state="new">Update playlist</target> | 7382 | <target state="new">Update playlist</target> |
7125 | 7383 | ||
7126 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-video-playlists/my-account-video-playlist-elements.component.ts</context><context context-type="linenumber">48</context></context-group></trans-unit> | 7384 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">82</context></context-group></trans-unit><trans-unit id="3410331549417637431" datatype="html"> |
7385 | <source>Account video imports</source><target state="new">Account video imports</target> | ||
7386 | <context-group purpose="location"> | ||
7387 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7388 | <context context-type="linenumber">105</context> | ||
7389 | </context-group> | ||
7390 | </trans-unit><trans-unit id="4434998055872154420" datatype="html"> | ||
7391 | <source>Account subscriptions</source><target state="new">Account subscriptions</target> | ||
7392 | <context-group purpose="location"> | ||
7393 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7394 | <context context-type="linenumber">114</context> | ||
7395 | </context-group> | ||
7396 | </trans-unit><trans-unit id="6019411775996586321" datatype="html"> | ||
7397 | <source>Videos history</source><target state="new">Videos history</target> | ||
7398 | <context-group purpose="location"> | ||
7399 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7400 | <context context-type="linenumber">150</context> | ||
7401 | </context-group> | ||
7402 | </trans-unit><trans-unit id="5851560788527570644" datatype="html"> | ||
7403 | <source>Notifications</source><target state="new">Notifications</target> | ||
7404 | <context-group purpose="location"> | ||
7405 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7406 | <context context-type="linenumber">163</context> | ||
7407 | </context-group> | ||
7408 | </trans-unit> | ||
7127 | <trans-unit id="104404386496394770" datatype="html"> | 7409 | <trans-unit id="104404386496394770" datatype="html"> |
7128 | <source>Delete playlist</source> | 7410 | <source>Delete playlist</source> |
7129 | <target state="new">Delete playlist</target> | 7411 | <target state="new">Delete playlist</target> |
@@ -7277,7 +7559,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7277 | <x id="PH"/>. | 7559 | <x id="PH"/>. |
7278 | </target> | 7560 | </target> |
7279 | 7561 | ||
7280 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit> | 7562 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit><trans-unit id="8231550792139699065" datatype="html"> |
7563 | <source>Verify account email</source><target state="new">Verify account email</target> | ||
7564 | <context-group purpose="location"> | ||
7565 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7566 | <context context-type="linenumber">17</context> | ||
7567 | </context-group> | ||
7568 | </trans-unit><trans-unit id="4997281272800290390" datatype="html"> | ||
7569 | <source>Verify account ask send email</source><target state="new">Verify account ask send email</target> | ||
7570 | <context-group purpose="location"> | ||
7571 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7572 | <context context-type="linenumber">26</context> | ||
7573 | </context-group> | ||
7574 | </trans-unit> | ||
7281 | <trans-unit id="4180693983967989981" datatype="html"> | 7575 | <trans-unit id="4180693983967989981" datatype="html"> |
7282 | <source>Unable to find user id or verification string.</source> | 7576 | <source>Unable to find user id or verification string.</source> |
7283 | <target state="new">Unable to find user id or verification string.</target> | 7577 | <target state="new">Unable to find user id or verification string.</target> |
@@ -7402,27 +7696,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7402 | <source>any language</source> | 7696 | <source>any language</source> |
7403 | <target state="new">any language</target> | 7697 | <target state="new">any language</target> |
7404 | 7698 | ||
7405 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">202</context></context-group></trans-unit> | 7699 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">229</context></context-group></trans-unit> |
7406 | <trans-unit id="5633144232269377096" datatype="html"> | 7700 | <trans-unit id="5633144232269377096" datatype="html"> |
7407 | <source>hide</source> | 7701 | <source>hide</source> |
7408 | <target state="new">hide</target> | 7702 | <target state="new">hide</target> |
7409 | 7703 | ||
7410 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">118</context></context-group></trans-unit> | 7704 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> |
7411 | <trans-unit id="8603861867909474404" datatype="html"> | 7705 | <trans-unit id="8603861867909474404" datatype="html"> |
7412 | <source>blur</source> | 7706 | <source>blur</source> |
7413 | <target state="new">blur</target> | 7707 | <target state="new">blur</target> |
7414 | 7708 | ||
7415 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> | 7709 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> |
7416 | <trans-unit id="4534458451100881847" datatype="html"> | 7710 | <trans-unit id="4534458451100881847" datatype="html"> |
7417 | <source>display</source> | 7711 | <source>display</source> |
7418 | <target state="new">display</target> | 7712 | <target state="new">display</target> |
7419 | 7713 | ||
7420 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> | 7714 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">127</context></context-group></trans-unit> |
7421 | <trans-unit id="4467323362722952678" datatype="html"> | 7715 | <trans-unit id="4467323362722952678" datatype="html"> |
7422 | <source>Unknown</source> | 7716 | <source>Unknown</source> |
7423 | <target state="new">Unknown</target> | 7717 | <target state="new">Unknown</target> |
7424 | 7718 | ||
7425 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">190</context></context-group></trans-unit> | 7719 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">193</context></context-group></trans-unit> |
7426 | <trans-unit id="8781423666414310853" datatype="html"> | 7720 | <trans-unit id="8781423666414310853" datatype="html"> |
7427 | <source>Your password has been successfully reset!</source> | 7721 | <source>Your password has been successfully reset!</source> |
7428 | <target state="new">Your password has been successfully reset!</target> | 7722 | <target state="new">Your password has been successfully reset!</target> |
@@ -8542,27 +8836,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8542 | <source>Emphasis</source> | 8836 | <source>Emphasis</source> |
8543 | <target state="new">Emphasis</target> | 8837 | <target state="new">Emphasis</target> |
8544 | 8838 | ||
8545 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">77</context></context-group></trans-unit> | 8839 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> |
8546 | <trans-unit id="7565716024468232322" datatype="html"> | 8840 | <trans-unit id="7565716024468232322" datatype="html"> |
8547 | <source>Links</source> | 8841 | <source>Links</source> |
8548 | <target state="new">Links</target> | 8842 | <target state="new">Links</target> |
8549 | 8843 | ||
8550 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">78</context></context-group></trans-unit> | 8844 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> |
8551 | <trans-unit id="7838476952710404110" datatype="html"> | 8845 | <trans-unit id="7838476952710404110" datatype="html"> |
8552 | <source>New lines</source> | 8846 | <source>New lines</source> |
8553 | <target state="new">New lines</target> | 8847 | <target state="new">New lines</target> |
8554 | 8848 | ||
8555 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 8849 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">83</context></context-group></trans-unit> |
8556 | <trans-unit id="8756167649220050929" datatype="html"> | 8850 | <trans-unit id="8756167649220050929" datatype="html"> |
8557 | <source>Lists</source> | 8851 | <source>Lists</source> |
8558 | <target state="new">Lists</target> | 8852 | <target state="new">Lists</target> |
8559 | 8853 | ||
8560 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">80</context></context-group></trans-unit> | 8854 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">84</context></context-group></trans-unit> |
8561 | <trans-unit id="414887388288176527" datatype="html"> | 8855 | <trans-unit id="414887388288176527" datatype="html"> |
8562 | <source>Images</source> | 8856 | <source>Images</source> |
8563 | <target state="new">Images</target> | 8857 | <target state="new">Images</target> |
8564 | 8858 | ||
8565 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> | 8859 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">85</context></context-group></trans-unit> |
8566 | <trans-unit id="5708680277917691451" datatype="html"> | 8860 | <trans-unit id="5708680277917691451" datatype="html"> |
8567 | <source> | 8861 | <source> |
8568 | <x id="PH"/> users banned. | 8862 | <x id="PH"/> users banned. |
@@ -8958,7 +9252,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8958 | <source>Moderator</source> | 9252 | <source>Moderator</source> |
8959 | <target state="new">Moderator</target> | 9253 | <target state="new">Moderator</target> |
8960 | 9254 | ||
8961 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">386</context></context-group></trans-unit> | 9255 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">384</context></context-group></trans-unit> |
8962 | <trans-unit id="3723085768598852106" datatype="html"> | 9256 | <trans-unit id="3723085768598852106" datatype="html"> |
8963 | <source>Video removed from | 9257 | <source>Video removed from |
8964 | <x id="PH"/> | 9258 | <x id="PH"/> |
@@ -9026,7 +9320,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9026 | <source>Do you really want to delete this comment?</source> | 9320 | <source>Do you really want to delete this comment?</source> |
9027 | <target state="new">Do you really want to delete this comment?</target> | 9321 | <target state="new">Do you really want to delete this comment?</target> |
9028 | 9322 | ||
9029 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">434</context></context-group></trans-unit> | 9323 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">166</context></context-group></trans-unit> |
9030 | <trans-unit id="7837272126865175984" datatype="html"> | 9324 | <trans-unit id="7837272126865175984" datatype="html"> |
9031 | <source>Comment deleted.</source> | 9325 | <source>Comment deleted.</source> |
9032 | <target state="new">Comment deleted.</target> | 9326 | <target state="new">Comment deleted.</target> |
@@ -9138,9 +9432,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9138 | 9432 | ||
9139 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> | 9433 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> |
9140 | <source>Report</source><target state="new">Report</target> | 9434 | <source>Report</source><target state="new">Report</target> |
9435 | |||
9436 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="4814285799071780083" datatype="html"> | ||
9437 | <source>Remove</source><target state="new">Remove</target> | ||
9141 | <context-group purpose="location"> | 9438 | <context-group purpose="location"> |
9142 | <context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> | 9439 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> |
9143 | <context context-type="linenumber">286</context> | 9440 | <context context-type="linenumber">179</context> |
9441 | </context-group> | ||
9442 | </trans-unit><trans-unit id="6871668720687277843" datatype="html"> | ||
9443 | <source>Remove & re-draft</source><target state="new">Remove & re-draft</target> | ||
9444 | <context-group purpose="location"> | ||
9445 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> | ||
9446 | <context context-type="linenumber">187</context> | ||
9144 | </context-group> | 9447 | </context-group> |
9145 | </trans-unit> | 9448 | </trans-unit> |
9146 | <trans-unit id="4903651219400691248" datatype="html"> | 9449 | <trans-unit id="4903651219400691248" datatype="html"> |
@@ -9242,22 +9545,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9242 | <source>Only I can see this video</source> | 9545 | <source>Only I can see this video</source> |
9243 | <target state="new">Only I can see this video</target> | 9546 | <target state="new">Only I can see this video</target> |
9244 | 9547 | ||
9245 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">340</context></context-group></trans-unit> | 9548 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">341</context></context-group></trans-unit> |
9246 | <trans-unit id="6767380569816110388" datatype="html"> | 9549 | <trans-unit id="6767380569816110388" datatype="html"> |
9247 | <source>Only shareable via a private link</source> | 9550 | <source>Only shareable via a private link</source> |
9248 | <target state="new">Only shareable via a private link</target> | 9551 | <target state="new">Only shareable via a private link</target> |
9249 | 9552 | ||
9250 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">344</context></context-group></trans-unit> | 9553 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">345</context></context-group></trans-unit> |
9251 | <trans-unit id="6828965264297239528" datatype="html"> | 9554 | <trans-unit id="6828965264297239528" datatype="html"> |
9252 | <source>Anyone can see this video</source> | 9555 | <source>Anyone can see this video</source> |
9253 | <target state="new">Anyone can see this video</target> | 9556 | <target state="new">Anyone can see this video</target> |
9254 | 9557 | ||
9255 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">348</context></context-group></trans-unit> | 9558 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">349</context></context-group></trans-unit> |
9256 | <trans-unit id="1425933035739773115" datatype="html"> | 9559 | <trans-unit id="1425933035739773115" datatype="html"> |
9257 | <source>Only users of this instance can see this video</source> | 9560 | <source>Only users of this instance can see this video</source> |
9258 | <target state="new">Only users of this instance can see this video</target> | 9561 | <target state="new">Only users of this instance can see this video</target> |
9259 | 9562 | ||
9260 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">352</context></context-group></trans-unit> | 9563 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">353</context></context-group></trans-unit> |
9261 | <trans-unit id="5210096066382592800" datatype="html"> | 9564 | <trans-unit id="5210096066382592800" datatype="html"> |
9262 | <source>Video to import updated.</source> | 9565 | <source>Video to import updated.</source> |
9263 | <target state="new">Video to import updated.</target> | 9566 | <target state="new">Video to import updated.</target> |
@@ -9337,17 +9640,29 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9337 | <target state="new">Report comment</target> | 9640 | <target state="new">Report comment</target> |
9338 | 9641 | ||
9339 | 9642 | ||
9340 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 9643 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/report-modals/comment-report.component.ts</context><context context-type="linenumber">51</context></context-group></trans-unit> |
9341 | <trans-unit id="3691787517663044217" datatype="html"> | 9644 | <trans-unit id="3691787517663044217" datatype="html"> |
9342 | <source> The deletion will be sent to remote instances so they can reflect the change.</source> | 9645 | <source> The deletion will be sent to remote instances so they can reflect the change.</source> |
9343 | <target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> | 9646 | <target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> |
9344 | 9647 | ||
9345 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">163</context></context-group></trans-unit> | 9648 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">169</context></context-group></trans-unit> |
9346 | <trans-unit id="7321800851971795962" datatype="html"> | 9649 | <trans-unit id="7321800851971795962" datatype="html"> |
9347 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source> | 9650 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source> |
9348 | <target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> | 9651 | <target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> |
9349 | 9652 | ||
9350 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">165</context></context-group></trans-unit> | 9653 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="5964038603724691720" datatype="html"> |
9654 | <source>Delete and re-draft</source><target state="new">Delete and re-draft</target> | ||
9655 | <context-group purpose="location"> | ||
9656 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | ||
9657 | <context context-type="linenumber">197</context> | ||
9658 | </context-group> | ||
9659 | </trans-unit><trans-unit id="7163633882758007711" datatype="html"> | ||
9660 | <source>Do you really want to delete and re-draft this comment?</source><target state="new">Do you really want to delete and re-draft this comment?</target> | ||
9661 | <context-group purpose="location"> | ||
9662 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | ||
9663 | <context context-type="linenumber">197</context> | ||
9664 | </context-group> | ||
9665 | </trans-unit> | ||
9351 | <trans-unit id="6775540171466219199" datatype="html"> | 9666 | <trans-unit id="6775540171466219199" datatype="html"> |
9352 | <source>Stop autoplaying next video</source> | 9667 | <source>Stop autoplaying next video</source> |
9353 | <target state="new">Stop autoplaying next video</target> | 9668 | <target state="new">Stop autoplaying next video</target> |
@@ -9509,6 +9824,36 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9509 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> | 9824 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> |
9510 | <context context-type="linenumber">36</context> | 9825 | <context context-type="linenumber">36</context> |
9511 | </context-group> | 9826 | </context-group> |
9827 | </trans-unit><trans-unit id="4668975178372693951" datatype="html"> | ||
9828 | <source>Discover videos</source><target state="new">Discover videos</target> | ||
9829 | <context-group purpose="location"> | ||
9830 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9831 | <context context-type="linenumber">23</context> | ||
9832 | </context-group> | ||
9833 | </trans-unit><trans-unit id="8067135025051844577" datatype="html"> | ||
9834 | <source>Trending videos</source><target state="new">Trending videos</target> | ||
9835 | <context-group purpose="location"> | ||
9836 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9837 | <context context-type="linenumber">32</context> | ||
9838 | </context-group> | ||
9839 | </trans-unit><trans-unit id="664221386829541948" datatype="html"> | ||
9840 | <source>Recently added videos</source><target state="new">Recently added videos</target> | ||
9841 | <context-group purpose="location"> | ||
9842 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9843 | <context context-type="linenumber">58</context> | ||
9844 | </context-group> | ||
9845 | </trans-unit><trans-unit id="8212906256415538361" datatype="html"> | ||
9846 | <source>Upload a video</source><target state="new">Upload a video</target> | ||
9847 | <context-group purpose="location"> | ||
9848 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9849 | <context context-type="linenumber">97</context> | ||
9850 | </context-group> | ||
9851 | </trans-unit><trans-unit id="7590784934397800835" datatype="html"> | ||
9852 | <source>Edit a video</source><target state="new">Edit a video</target> | ||
9853 | <context-group purpose="location"> | ||
9854 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9855 | <context context-type="linenumber">106</context> | ||
9856 | </context-group> | ||
9512 | </trans-unit> | 9857 | </trans-unit> |
9513 | </body> | 9858 | </body> |
9514 | </file> | 9859 | </file> |
diff --git a/client/src/locale/angular.sl-SI.xlf b/client/src/locale/angular.sl-SI.xlf index e57fc65a7..caa345ecc 100644 --- a/client/src/locale/angular.sl-SI.xlf +++ b/client/src/locale/angular.sl-SI.xlf | |||
@@ -318,7 +318,7 @@ | |||
318 | <target>Nastavitve</target> | 318 | <target>Nastavitve</target> |
319 | 319 | ||
320 | 320 | ||
321 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 321 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">48</context></context-group></trans-unit> |
322 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d"> | 322 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d"> |
323 | <source>Start at</source> | 323 | <source>Start at</source> |
324 | <target>Začni ob</target> | 324 | <target>Začni ob</target> |
@@ -452,7 +452,7 @@ | |||
452 | Prekliči | 452 | Prekliči |
453 | </target> | 453 | </target> |
454 | 454 | ||
455 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> | 455 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit> |
456 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd" datatype="html"> | 456 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd" datatype="html"> |
457 | <source>Download</source> | 457 | <source>Download</source> |
458 | <target state="new">Download</target> | 458 | <target state="new">Download</target> |
@@ -575,7 +575,7 @@ | |||
575 | 575 | ||
576 | 576 | ||
577 | 577 | ||
578 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 578 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
579 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc" datatype="html"> | 579 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc" datatype="html"> |
580 | <source>Edit starts/stops at</source> | 580 | <source>Edit starts/stops at</source> |
581 | <target state="new">Edit starts/stops at</target> | 581 | <target state="new">Edit starts/stops at</target> |
@@ -615,7 +615,7 @@ | |||
615 | 615 | ||
616 | 616 | ||
617 | 617 | ||
618 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> | 618 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
619 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c" datatype="html"> | 619 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c" datatype="html"> |
620 | <source>Edit</source> | 620 | <source>Edit</source> |
621 | <target state="new">Edit</target> | 621 | <target state="new">Edit</target> |
@@ -640,17 +640,10 @@ | |||
640 | <target>Popoln predogled</target> | 640 | <target>Popoln predogled</target> |
641 | 641 | ||
642 | <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></trans-unit> | 642 | <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></trans-unit> |
643 | <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f"> | 643 | <trans-unit id="8644431249513874405" datatype="html"> |
644 | <source>Get help</source> | ||
645 | <target>Najdi pomoč</target> | ||
646 | |||
647 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit><trans-unit id="8644431249513874405" datatype="html"> | ||
648 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> | 644 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> |
649 | <context-group purpose="location"> | 645 | |
650 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 646 | <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></trans-unit> |
651 | <context context-type="linenumber">71</context> | ||
652 | </context-group> | ||
653 | </trans-unit> | ||
654 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> | 647 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> |
655 | <source>Recommended</source> | 648 | <source>Recommended</source> |
656 | <target state="new">Recommended</target> | 649 | <target state="new">Recommended</target> |
@@ -690,7 +683,7 @@ | |||
690 | <source>PROFILE SETTINGS</source> | 683 | <source>PROFILE SETTINGS</source> |
691 | <target state="new">PROFILE SETTINGS</target> | 684 | <target state="new">PROFILE SETTINGS</target> |
692 | 685 | ||
693 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 686 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">12</context></context-group></trans-unit> |
694 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3" datatype="html"> | 687 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3" datatype="html"> |
695 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> | 688 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> |
696 | <target state="new"> | 689 | <target state="new"> |
@@ -862,11 +855,8 @@ | |||
862 | 855 | ||
863 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> | 856 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> |
864 | <source>User</source><target state="new">User</target> | 857 | <source>User</source><target state="new">User</target> |
865 | <context-group purpose="location"> | 858 | |
866 | <context context-type="sourcefile">../app/core/users/user.service.ts</context> | 859 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit> |
867 | <context context-type="linenumber">384</context> | ||
868 | </context-group> | ||
869 | </trans-unit> | ||
870 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0" datatype="html"> | 860 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0" datatype="html"> |
871 | <source>Ban</source> | 861 | <source>Ban</source> |
872 | <target state="new">Ban</target> | 862 | <target state="new">Ban</target> |
@@ -1374,89 +1364,89 @@ The link will expire within 1 hour.</target> | |||
1374 | <source>Account settings</source> | 1364 | <source>Account settings</source> |
1375 | <target state="new">Account settings</target> | 1365 | <target state="new">Account settings</target> |
1376 | 1366 | ||
1377 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 1367 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
1378 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> | 1368 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> |
1379 | <source>Channels settings</source> | 1369 | <source>Channels settings</source> |
1380 | <target state="new">Channels settings</target> | 1370 | <target state="new">Channels settings</target> |
1381 | 1371 | ||
1382 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 1372 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> |
1383 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> | 1373 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> |
1384 | <source>Interface:</source> | 1374 | <source>Interface:</source> |
1385 | <target state="new">Interface:</target> | 1375 | <target state="new">Interface:</target> |
1386 | 1376 | ||
1387 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 1377 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1388 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> | 1378 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> |
1389 | <source>Videos:</source> | 1379 | <source>Videos:</source> |
1390 | <target state="new">Videos:</target> | 1380 | <target state="new">Videos:</target> |
1391 | 1381 | ||
1392 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 1382 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> |
1393 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> | 1383 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> |
1394 | <source>Sensitive:</source> | 1384 | <source>Sensitive:</source> |
1395 | <target state="new">Sensitive:</target> | 1385 | <target state="new">Sensitive:</target> |
1396 | 1386 | ||
1397 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 1387 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">54</context></context-group></trans-unit> |
1398 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1388 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> |
1399 | <source>Interface: <x id="INTERPOLATION"/></source> | 1389 | <source>Interface: <x id="INTERPOLATION"/></source> |
1400 | <target state="new">Interface: | 1390 | <target state="new">Interface: |
1401 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> | 1391 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> |
1402 | </target> | 1392 | </target> |
1403 | 1393 | ||
1404 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">156</context></context-group></trans-unit> | 1394 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> |
1405 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1395 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1406 | <source>Help share videos</source> | 1396 | <source>Help share videos</source> |
1407 | <target state="new">Help share videos</target> | 1397 | <target state="new">Help share videos</target> |
1408 | 1398 | ||
1409 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> | 1399 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
1410 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> | 1400 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> |
1411 | <source>More account settings</source> | 1401 | <source>More account settings</source> |
1412 | <target state="new">More account settings</target> | 1402 | <target state="new">More account settings</target> |
1413 | 1403 | ||
1414 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> | 1404 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> |
1415 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> | 1405 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> |
1416 | <source>Keyboard shortcuts</source> | 1406 | <source>Keyboard shortcuts</source> |
1417 | <target state="new">Keyboard shortcuts</target> | 1407 | <target state="new">Keyboard shortcuts</target> |
1418 | 1408 | ||
1419 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 1409 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">72</context></context-group></trans-unit> |
1420 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> | 1410 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> |
1421 | <source>Help</source> | 1411 | <source>Help</source> |
1422 | <target state="new">Help</target> | 1412 | <target state="new">Help</target> |
1423 | 1413 | ||
1424 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1414 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1425 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> | 1415 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> |
1426 | <source>Get help using PeerTube</source> | 1416 | <source>Get help using PeerTube</source> |
1427 | <target state="new">Get help using PeerTube</target> | 1417 | <target state="new">Get help using PeerTube</target> |
1428 | 1418 | ||
1429 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">161</context></context-group></trans-unit> | 1419 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">167</context></context-group></trans-unit> |
1430 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> | 1420 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> |
1431 | <source>Shortcuts</source> | 1421 | <source>Shortcuts</source> |
1432 | <target state="new">Shortcuts</target> | 1422 | <target state="new">Shortcuts</target> |
1433 | 1423 | ||
1434 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1424 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1435 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> | 1425 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> |
1436 | <source>powered by PeerTube</source> | 1426 | <source>powered by PeerTube</source> |
1437 | <target state="new">powered by PeerTube</target> | 1427 | <target state="new">powered by PeerTube</target> |
1438 | 1428 | ||
1439 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | 1429 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">177</context></context-group></trans-unit> |
1440 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> | 1430 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> |
1441 | <source>powered by PeerTube - CopyLeft 2015-2020</source> | 1431 | <source>powered by PeerTube - CopyLeft 2015-2020</source> |
1442 | <target state="new">powered by PeerTube - CopyLeft 2015-2020</target> | 1432 | <target state="new">powered by PeerTube - CopyLeft 2015-2020</target> |
1443 | 1433 | ||
1444 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> | 1434 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">176</context></context-group></trans-unit> |
1445 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344"> | 1435 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344"> |
1446 | <source>Log out</source> | 1436 | <source>Log out</source> |
1447 | <target>Odjava</target> | 1437 | <target>Odjava</target> |
1448 | 1438 | ||
1449 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">70</context></context-group></trans-unit> | 1439 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit> |
1450 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> | 1440 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> |
1451 | <source>Create an account</source> | 1441 | <source>Create an account</source> |
1452 | <target>Ustvari račun</target> | 1442 | <target>Ustvari račun</target> |
1453 | 1443 | ||
1454 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">78</context></context-group></trans-unit> | 1444 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
1455 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> | 1445 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> |
1456 | <source>MY LIBRARY</source> | 1446 | <source>MY LIBRARY</source> |
1457 | <target state="new">MY LIBRARY</target> | 1447 | <target state="new">MY LIBRARY</target> |
1458 | 1448 | ||
1459 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 1449 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">88</context></context-group></trans-unit> |
1460 | <trans-unit id="6371572688505952303" datatype="html"> | 1450 | <trans-unit id="6371572688505952303" datatype="html"> |
1461 | <source>My library</source> | 1451 | <source>My library</source> |
1462 | <target state="new">My library</target> | 1452 | <target state="new">My library</target> |
@@ -1496,22 +1486,22 @@ The link will expire within 1 hour.</target> | |||
1496 | <source>Videos</source> | 1486 | <source>Videos</source> |
1497 | <target>Videoposnetki</target> | 1487 | <target>Videoposnetki</target> |
1498 | 1488 | ||
1499 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">86</context></context-group></trans-unit> | 1489 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">92</context></context-group></trans-unit> |
1500 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> | 1490 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> |
1501 | <source>Playlists</source> | 1491 | <source>Playlists</source> |
1502 | <target state="new">Playlists</target> | 1492 | <target state="new">Playlists</target> |
1503 | 1493 | ||
1504 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">91</context></context-group></trans-unit> | 1494 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">97</context></context-group></trans-unit> |
1505 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2" datatype="html"> | 1495 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2" datatype="html"> |
1506 | <source>Subscriptions</source> | 1496 | <source>Subscriptions</source> |
1507 | <target state="new">Subscriptions</target> | 1497 | <target state="new">Subscriptions</target> |
1508 | 1498 | ||
1509 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 1499 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">102</context></context-group></trans-unit> |
1510 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8" datatype="html"> | 1500 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8" datatype="html"> |
1511 | <source>History</source> | 1501 | <source>History</source> |
1512 | <target state="new">History</target> | 1502 | <target state="new">History</target> |
1513 | 1503 | ||
1514 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit> | 1504 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">107</context></context-group></trans-unit> |
1515 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> | 1505 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> |
1516 | <source>VIDEOS</source> | 1506 | <source>VIDEOS</source> |
1517 | <target state="new">VIDEOS</target> | 1507 | <target state="new">VIDEOS</target> |
@@ -1523,27 +1513,27 @@ The link will expire within 1 hour.</target> | |||
1523 | <target state="new">Discover</target> | 1513 | <target state="new">Discover</target> |
1524 | 1514 | ||
1525 | 1515 | ||
1526 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">111</context></context-group></trans-unit> | 1516 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">117</context></context-group></trans-unit> |
1527 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> | 1517 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> |
1528 | <source>Trending</source> | 1518 | <source>Trending</source> |
1529 | <target>Popularno</target> | 1519 | <target>Popularno</target> |
1530 | 1520 | ||
1531 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">116</context></context-group></trans-unit> | 1521 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">122</context></context-group></trans-unit> |
1532 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> | 1522 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> |
1533 | <source>Most liked</source> | 1523 | <source>Most liked</source> |
1534 | <target state="new">Most liked</target> | 1524 | <target state="new">Most liked</target> |
1535 | 1525 | ||
1536 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">121</context></context-group></trans-unit> | 1526 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">127</context></context-group></trans-unit> |
1537 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> | 1527 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> |
1538 | <source>Recently added</source> | 1528 | <source>Recently added</source> |
1539 | <target>Nedavno dodano</target> | 1529 | <target>Nedavno dodano</target> |
1540 | 1530 | ||
1541 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">126</context></context-group></trans-unit> | 1531 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">132</context></context-group></trans-unit> |
1542 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> | 1532 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> |
1543 | <source>Administration</source> | 1533 | <source>Administration</source> |
1544 | <target>Administracija</target> | 1534 | <target>Administracija</target> |
1545 | 1535 | ||
1546 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">140</context></context-group></trans-unit> | 1536 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">146</context></context-group></trans-unit> |
1547 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a" datatype="html"> | 1537 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a" datatype="html"> |
1548 | <source>About</source> | 1538 | <source>About</source> |
1549 | <target state="new">About</target> | 1539 | <target state="new">About</target> |
@@ -1554,7 +1544,7 @@ The link will expire within 1 hour.</target> | |||
1554 | <source>Contact</source> | 1544 | <source>Contact</source> |
1555 | <target state="new">Contact</target> | 1545 | <target state="new">Contact</target> |
1556 | 1546 | ||
1557 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">160</context></context-group></trans-unit> | 1547 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">166</context></context-group></trans-unit> |
1558 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771"> | 1548 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771"> |
1559 | <source>View your notifications</source> | 1549 | <source>View your notifications</source> |
1560 | <target>Obvestila</target> | 1550 | <target>Obvestila</target> |
@@ -1581,7 +1571,7 @@ The link will expire within 1 hour.</target> | |||
1581 | <source>See all your notifications</source> | 1571 | <source>See all your notifications</source> |
1582 | <target>Vsa obvestila</target> | 1572 | <target>Vsa obvestila</target> |
1583 | 1573 | ||
1584 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 1574 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">40</context></context-group></trans-unit> |
1585 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> | 1575 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> |
1586 | <source>Search videos, channels…</source> | 1576 | <source>Search videos, channels…</source> |
1587 | <target state="new">Search videos, channels…</target> | 1577 | <target state="new">Search videos, channels…</target> |
@@ -1925,22 +1915,22 @@ The link will expire within 1 hour.</target> | |||
1925 | <source>FAQ</source> | 1915 | <source>FAQ</source> |
1926 | <target state="new">FAQ</target> | 1916 | <target state="new">FAQ</target> |
1927 | 1917 | ||
1928 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">163</context></context-group></trans-unit> | 1918 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
1929 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> | 1919 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> |
1930 | <source>Frequently asked questions about PeerTube</source> | 1920 | <source>Frequently asked questions about PeerTube</source> |
1931 | <target state="new">Frequently asked questions about PeerTube</target> | 1921 | <target state="new">Frequently asked questions about PeerTube</target> |
1932 | 1922 | ||
1933 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1923 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1934 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> | 1924 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> |
1935 | <source>API</source> | 1925 | <source>API</source> |
1936 | <target state="new">API</target> | 1926 | <target state="new">API</target> |
1937 | 1927 | ||
1938 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1928 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1939 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> | 1929 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> |
1940 | <source>API documentation</source> | 1930 | <source>API documentation</source> |
1941 | <target state="new">API documentation</target> | 1931 | <target state="new">API documentation</target> |
1942 | 1932 | ||
1943 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 1933 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
1944 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5" datatype="html"> | 1934 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5" datatype="html"> |
1945 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> | 1935 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> |
1946 | <target state="new">Schedule publication ( | 1936 | <target state="new">Schedule publication ( |
@@ -2341,7 +2331,13 @@ The link will expire within 1 hour.</target> | |||
2341 | Less customization | 2331 | Less customization |
2342 | </target> | 2332 | </target> |
2343 | 2333 | ||
2344 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit> | 2334 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit><trans-unit id="2454050363478003966" datatype="html"> |
2335 | <source>Login</source><target state="new">Login</target> | ||
2336 | <context-group purpose="location"> | ||
2337 | <context context-type="sourcefile">../app/+login/login-routing.module.ts</context> | ||
2338 | <context context-type="linenumber">14</context> | ||
2339 | </context-group> | ||
2340 | </trans-unit> | ||
2345 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e" datatype="html"> | 2341 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e" datatype="html"> |
2346 | <source>Autoplay</source> | 2342 | <source>Autoplay</source> |
2347 | <target state="new">Autoplay</target> | 2343 | <target state="new">Autoplay</target> |
@@ -2616,7 +2612,7 @@ The link will expire within 1 hour.</target> | |||
2616 | <source>No comments.</source> | 2612 | <source>No comments.</source> |
2617 | <target state="new">No comments.</target> | 2613 | <target state="new">No comments.</target> |
2618 | 2614 | ||
2619 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 2615 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> |
2620 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> | 2616 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> |
2621 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> | 2617 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> |
2622 | <target state="new"> | 2618 | <target state="new"> |
@@ -2626,7 +2622,7 @@ The link will expire within 1 hour.</target> | |||
2626 | 2622 | ||
2627 | </target> | 2623 | </target> |
2628 | 2624 | ||
2629 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">79</context></context-group></trans-unit> | 2625 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
2630 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> | 2626 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> |
2631 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> | 2627 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> |
2632 | <target state="new"> | 2628 | <target state="new"> |
@@ -2635,14 +2631,14 @@ The link will expire within 1 hour.</target> | |||
2635 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> | 2631 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> |
2636 | </target> | 2632 | </target> |
2637 | 2633 | ||
2638 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 2634 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">87</context></context-group></trans-unit> |
2639 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> | 2635 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> |
2640 | <source>View <x id="INTERPOLATION"/> replies</source> | 2636 | <source>View <x id="INTERPOLATION"/> replies</source> |
2641 | <target state="new">View | 2637 | <target state="new">View |
2642 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies | 2638 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies |
2643 | </target> | 2639 | </target> |
2644 | 2640 | ||
2645 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">85</context></context-group></trans-unit> | 2641 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">90</context></context-group></trans-unit> |
2646 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828" datatype="html"> | 2642 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828" datatype="html"> |
2647 | <source> | 2643 | <source> |
2648 | Comments are disabled. | 2644 | Comments are disabled. |
@@ -2651,26 +2647,84 @@ The link will expire within 1 hour.</target> | |||
2651 | Comments are disabled. | 2647 | Comments are disabled. |
2652 | </target> | 2648 | </target> |
2653 | 2649 | ||
2654 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 2650 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit> |
2655 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e" datatype="html"> | 2651 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e" datatype="html"> |
2656 | <source>Add comment...</source> | 2652 | <source>Add comment...</source> |
2657 | <target state="new">Add comment...</target> | 2653 | <target state="new">Add comment...</target> |
2658 | 2654 | ||
2659 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | 2655 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit><trans-unit id="4e5254dedf0c12ce7e7c2197384fceebe3b29a2b" datatype="html"> |
2660 | <trans-unit id="8956c0f4c6974289fc63f1ab6b54f5b32ed65eeb" datatype="html"> | 2656 | <source>Markdown compatible</source><target state="new">Markdown compatible</target> |
2661 | <source> | 2657 | <context-group purpose="location"> |
2662 | Reply | 2658 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> |
2663 | </source> | 2659 | <context context-type="linenumber">13</context> |
2664 | <target state="new"> | 2660 | </context-group> |
2665 | Reply | 2661 | </trans-unit><trans-unit id="4739ffad85f09defefdb6e51b45f43b2ef7c4388" datatype="html"> |
2666 | </target> | 2662 | <source>Markdown compatible that supports:</source><target state="new">Markdown compatible that supports:</target> |
2667 | 2663 | <context-group purpose="location"> | |
2668 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 2664 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> |
2665 | <context context-type="linenumber">15</context> | ||
2666 | </context-group> | ||
2667 | </trans-unit><trans-unit id="9a53b17a021bb0677c156fd893461797fc497a10" datatype="html"> | ||
2668 | <source>Auto generated links</source><target state="new">Auto generated links</target> | ||
2669 | <context-group purpose="location"> | ||
2670 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2671 | <context context-type="linenumber">18</context> | ||
2672 | </context-group> | ||
2673 | </trans-unit><trans-unit id="664f99b8919d6dd2faa1c1f7c378aa86d1be5e8a" datatype="html"> | ||
2674 | <source>Break lines</source><target state="new">Break lines</target> | ||
2675 | <context-group purpose="location"> | ||
2676 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2677 | <context context-type="linenumber">19</context> | ||
2678 | </context-group> | ||
2679 | </trans-unit><trans-unit id="b15e7bec5c7833d2d9634946ccbed68967b1bee1" datatype="html"> | ||
2680 | <source>Lists</source><target state="new">Lists</target> | ||
2681 | <context-group purpose="location"> | ||
2682 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2683 | <context context-type="linenumber">20</context> | ||
2684 | </context-group> | ||
2685 | </trans-unit><trans-unit id="ab4426b60f13c00b61d6b714d390dc629f314980" datatype="html"> | ||
2686 | <source>Emphasis</source><target state="new">Emphasis</target> | ||
2687 | <context-group purpose="location"> | ||
2688 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2689 | <context context-type="linenumber">22</context> | ||
2690 | </context-group> | ||
2691 | </trans-unit><trans-unit id="4e13b179501d3d32721037e03b4c04acb9857c5f" datatype="html"> | ||
2692 | <source>bold</source><target state="new">bold</target> | ||
2693 | <context-group purpose="location"> | ||
2694 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2695 | <context context-type="linenumber">23</context> | ||
2696 | </context-group> | ||
2697 | </trans-unit><trans-unit id="3c12190421fbb2756e6bbead923df9ec5de8ede2" datatype="html"> | ||
2698 | <source>italic</source><target state="new">italic</target> | ||
2699 | <context-group purpose="location"> | ||
2700 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2701 | <context context-type="linenumber">23</context> | ||
2702 | </context-group> | ||
2703 | </trans-unit><trans-unit id="adb4bbdcb961b8aac8298d6cac554d9b25636b7a" datatype="html"> | ||
2704 | <source>Emoji shortcuts</source><target state="new">Emoji shortcuts</target> | ||
2705 | <context-group purpose="location"> | ||
2706 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2707 | <context context-type="linenumber">26</context> | ||
2708 | </context-group> | ||
2709 | </trans-unit><trans-unit id="b9809a21a8eb3c9db2a0282c5dd94bc221575c96" datatype="html"> | ||
2710 | <source>Emoji markup</source><target state="new">Emoji markup</target> | ||
2711 | <context-group purpose="location"> | ||
2712 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2713 | <context context-type="linenumber">30</context> | ||
2714 | </context-group> | ||
2715 | </trans-unit><trans-unit id="f37feb427aaa551edd1f22616be6464bc0d492de" datatype="html"> | ||
2716 | <source>See complete list</source><target state="new">See complete list</target> | ||
2717 | <context-group purpose="location"> | ||
2718 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2719 | <context context-type="linenumber">32</context> | ||
2720 | </context-group> | ||
2721 | </trans-unit> | ||
2722 | |||
2669 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135" datatype="html"> | 2723 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135" datatype="html"> |
2670 | <source>You are one step away from commenting</source> | 2724 | <source>You are one step away from commenting</source> |
2671 | <target state="new">You are one step away from commenting</target> | 2725 | <target state="new">You are one step away from commenting</target> |
2672 | 2726 | ||
2673 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 2727 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
2674 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> | 2728 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> |
2675 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> | 2729 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> |
2676 | <target state="new"> | 2730 | <target state="new"> |
@@ -2679,7 +2733,7 @@ The link will expire within 1 hour.</target> | |||
2679 | from within the software's interface. | 2733 | from within the software's interface. |
2680 | </target> | 2734 | </target> |
2681 | 2735 | ||
2682 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 2736 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
2683 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb" datatype="html"> | 2737 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb" datatype="html"> |
2684 | <source> | 2738 | <source> |
2685 | If you have an account on Mastodon or Pleroma, you can open it directly in their interface: | 2739 | If you have an account on Mastodon or Pleroma, you can open it directly in their interface: |
@@ -2688,12 +2742,30 @@ The link will expire within 1 hour.</target> | |||
2688 | If you have an account on Mastodon or Pleroma, you can open it directly in their interface: | 2742 | If you have an account on Mastodon or Pleroma, you can open it directly in their interface: |
2689 | </target> | 2743 | </target> |
2690 | 2744 | ||
2691 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">41</context></context-group></trans-unit> | 2745 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">65</context></context-group></trans-unit> |
2692 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> | 2746 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> |
2693 | <source>Login to comment</source> | 2747 | <source>Login to comment</source> |
2694 | <target state="new">Login to comment</target> | 2748 | <target state="new">Login to comment</target> |
2695 | 2749 | ||
2696 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">52</context></context-group></trans-unit> | 2750 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit><trans-unit id="974170f455ff5a9034d5737e84b4194c0046fc6b" datatype="html"> |
2751 | <source>Markdown Emoji List</source><target state="new">Markdown Emoji List</target> | ||
2752 | <context-group purpose="location"> | ||
2753 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2754 | <context context-type="linenumber">84</context> | ||
2755 | </context-group> | ||
2756 | </trans-unit><trans-unit id="2662644497259948010" datatype="html"> | ||
2757 | <source>Comment</source><target state="new">Comment</target> | ||
2758 | <context-group purpose="location"> | ||
2759 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2760 | <context context-type="linenumber">58</context> | ||
2761 | </context-group> | ||
2762 | </trans-unit><trans-unit id="4502286564339177240" datatype="html"> | ||
2763 | <source>Reply</source><target state="new">Reply</target> | ||
2764 | <context-group purpose="location"> | ||
2765 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2766 | <context context-type="linenumber">60</context> | ||
2767 | </context-group> | ||
2768 | </trans-unit> | ||
2697 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285" datatype="html"> | 2769 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285" datatype="html"> |
2698 | <source>Highlighted comment</source> | 2770 | <source>Highlighted comment</source> |
2699 | <target state="new">Highlighted comment</target> | 2771 | <target state="new">Highlighted comment</target> |
@@ -2708,7 +2780,7 @@ The link will expire within 1 hour.</target> | |||
2708 | <source>This comment has been deleted</source> | 2780 | <source>This comment has been deleted</source> |
2709 | <target state="new">This comment has been deleted</target> | 2781 | <target state="new">This comment has been deleted</target> |
2710 | 2782 | ||
2711 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">62</context></context-group></trans-unit> | 2783 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">61</context></context-group></trans-unit> |
2712 | <trans-unit id="9031514421077169181" datatype="html"> | 2784 | <trans-unit id="9031514421077169181" datatype="html"> |
2713 | <source>Video redundancies</source> | 2785 | <source>Video redundancies</source> |
2714 | <target state="new">Video redundancies</target> | 2786 | <target state="new">Video redundancies</target> |
@@ -3565,7 +3637,25 @@ The link will expire within 1 hour.</target> | |||
3565 | <target state="new">No account found.</target> | 3637 | <target state="new">No account found.</target> |
3566 | 3638 | ||
3567 | 3639 | ||
3568 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit> | 3640 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit><trans-unit id="2338185419645468935" datatype="html"> |
3641 | <source>List installed plugins</source><target state="new">List installed plugins</target> | ||
3642 | <context-group purpose="location"> | ||
3643 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3644 | <context context-type="linenumber">28</context> | ||
3645 | </context-group> | ||
3646 | </trans-unit><trans-unit id="8897412584195581488" datatype="html"> | ||
3647 | <source>Search plugins</source><target state="new">Search plugins</target> | ||
3648 | <context-group purpose="location"> | ||
3649 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3650 | <context context-type="linenumber">37</context> | ||
3651 | </context-group> | ||
3652 | </trans-unit><trans-unit id="4994333937800672218" datatype="html"> | ||
3653 | <source>Show plugin</source><target state="new">Show plugin</target> | ||
3654 | <context-group purpose="location"> | ||
3655 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3656 | <context context-type="linenumber">46</context> | ||
3657 | </context-group> | ||
3658 | </trans-unit> | ||
3569 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> | 3659 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> |
3570 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> | 3660 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> |
3571 | <target state="new">Showing | 3661 | <target state="new">Showing |
@@ -4296,7 +4386,7 @@ The link will expire within 1 hour.</target> | |||
4296 | <source>Administrator</source> | 4386 | <source>Administrator</source> |
4297 | <target state="new">Administrator</target> | 4387 | <target state="new">Administrator</target> |
4298 | 4388 | ||
4299 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">385</context></context-group></trans-unit> | 4389 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">383</context></context-group></trans-unit> |
4300 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587" datatype="html"> | 4390 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587" datatype="html"> |
4301 | <source>Admin email</source> | 4391 | <source>Admin email</source> |
4302 | <target state="new">Admin email</target> | 4392 | <target state="new">Admin email</target> |
@@ -4558,27 +4648,27 @@ The link will expire within 1 hour.</target> | |||
4558 | <source>VIDEO SETTINGS</source> | 4648 | <source>VIDEO SETTINGS</source> |
4559 | <target state="new">VIDEO SETTINGS</target> | 4649 | <target state="new">VIDEO SETTINGS</target> |
4560 | 4650 | ||
4561 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit> | 4651 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
4562 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> | 4652 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> |
4563 | <source>NOTIFICATIONS</source> | 4653 | <source>NOTIFICATIONS</source> |
4564 | <target state="new">NOTIFICATIONS</target> | 4654 | <target state="new">NOTIFICATIONS</target> |
4565 | 4655 | ||
4566 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 4656 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">37</context></context-group></trans-unit> |
4567 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> | 4657 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> |
4568 | <source>INTERFACE</source> | 4658 | <source>INTERFACE</source> |
4569 | <target state="new">INTERFACE</target> | 4659 | <target state="new">INTERFACE</target> |
4570 | 4660 | ||
4571 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 4661 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit> |
4572 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> | 4662 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> |
4573 | <source>PASSWORD</source> | 4663 | <source>PASSWORD</source> |
4574 | <target state="new">PASSWORD</target> | 4664 | <target state="new">PASSWORD</target> |
4575 | 4665 | ||
4576 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">59</context></context-group></trans-unit> | 4666 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">57</context></context-group></trans-unit> |
4577 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> | 4667 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> |
4578 | <source>EMAIL</source> | 4668 | <source>EMAIL</source> |
4579 | <target state="new">EMAIL</target> | 4669 | <target state="new">EMAIL</target> |
4580 | 4670 | ||
4581 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">69</context></context-group></trans-unit> | 4671 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">67</context></context-group></trans-unit> |
4582 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> | 4672 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> |
4583 | <source>DANGER ZONE</source> | 4673 | <source>DANGER ZONE</source> |
4584 | <target state="new">DANGER ZONE</target> | 4674 | <target state="new">DANGER ZONE</target> |
@@ -4828,7 +4918,31 @@ The link will expire within 1 hour.</target> | |||
4828 | <source>No ownership change request found.</source> | 4918 | <source>No ownership change request found.</source> |
4829 | <target state="new">No ownership change request found.</target> | 4919 | <target state="new">No ownership change request found.</target> |
4830 | 4920 | ||
4831 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit> | 4921 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit><trans-unit id="4247400351982331798" datatype="html"> |
4922 | <source>Account settings</source><target state="new">Account settings</target> | ||
4923 | <context-group purpose="location"> | ||
4924 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4925 | <context context-type="linenumber">37</context> | ||
4926 | </context-group> | ||
4927 | </trans-unit><trans-unit id="154062590416726309" datatype="html"> | ||
4928 | <source>Account playlists</source><target state="new">Account playlists</target> | ||
4929 | <context-group purpose="location"> | ||
4930 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4931 | <context context-type="linenumber">55</context> | ||
4932 | </context-group> | ||
4933 | </trans-unit><trans-unit id="6550287183367517925" datatype="html"> | ||
4934 | <source>Create new playlist</source><target state="new">Create new playlist</target> | ||
4935 | <context-group purpose="location"> | ||
4936 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4937 | <context context-type="linenumber">64</context> | ||
4938 | </context-group> | ||
4939 | </trans-unit><trans-unit id="2864486939135008600" datatype="html"> | ||
4940 | <source>Playlist elements</source><target state="new">Playlist elements</target> | ||
4941 | <context-group purpose="location"> | ||
4942 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4943 | <context context-type="linenumber">73</context> | ||
4944 | </context-group> | ||
4945 | </trans-unit> | ||
4832 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> | 4946 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> |
4833 | <source>My imports</source> | 4947 | <source>My imports</source> |
4834 | <target state="new">My imports</target> | 4948 | <target state="new">My imports</target> |
@@ -5103,7 +5217,25 @@ The link will expire within 1 hour.</target> | |||
5103 | <source>An error occurred.</source> | 5217 | <source>An error occurred.</source> |
5104 | <target state="new">An error occurred.</target> | 5218 | <target state="new">An error occurred.</target> |
5105 | 5219 | ||
5106 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 5220 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit><trans-unit id="9128669621822125729" datatype="html"> |
5221 | <source>Video channel videos</source><target state="new">Video channel videos</target> | ||
5222 | <context-group purpose="location"> | ||
5223 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5224 | <context context-type="linenumber">25</context> | ||
5225 | </context-group> | ||
5226 | </trans-unit><trans-unit id="3193822049276963401" datatype="html"> | ||
5227 | <source>Video channel playlists</source><target state="new">Video channel playlists</target> | ||
5228 | <context-group purpose="location"> | ||
5229 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5230 | <context context-type="linenumber">38</context> | ||
5231 | </context-group> | ||
5232 | </trans-unit><trans-unit id="4723526509708949088" datatype="html"> | ||
5233 | <source>About video channel</source><target state="new">About video channel</target> | ||
5234 | <context-group purpose="location"> | ||
5235 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5236 | <context context-type="linenumber">47</context> | ||
5237 | </context-group> | ||
5238 | </trans-unit> | ||
5107 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97" datatype="html"> | 5239 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97" datatype="html"> |
5108 | <source> | 5240 | <source> |
5109 | Request email for account verification | 5241 | Request email for account verification |
@@ -5226,7 +5358,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5226 | <source>Stats</source> | 5358 | <source>Stats</source> |
5227 | <target state="new">Stats</target> | 5359 | <target state="new">Stats</target> |
5228 | 5360 | ||
5229 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 5361 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
5230 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc" datatype="html"> | 5362 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc" datatype="html"> |
5231 | <source>Joined <x id="INTERPOLATION"/></source> | 5363 | <source>Joined <x id="INTERPOLATION"/></source> |
5232 | <target state="new">Joined | 5364 | <target state="new">Joined |
@@ -5679,7 +5811,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5679 | <source>This instance does not have instances followings.</source> | 5811 | <source>This instance does not have instances followings.</source> |
5680 | <target state="new">This instance does not have instances followings.</target> | 5812 | <target state="new">This instance does not have instances followings.</target> |
5681 | 5813 | ||
5682 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit> | 5814 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit><trans-unit id="4195286790385468087" datatype="html"> |
5815 | <source>About this instance</source><target state="new">About this instance</target> | ||
5816 | <context-group purpose="location"> | ||
5817 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5818 | <context context-type="linenumber">26</context> | ||
5819 | </context-group> | ||
5820 | </trans-unit><trans-unit id="8773846522957677259" datatype="html"> | ||
5821 | <source>About PeerTube</source><target state="new">About PeerTube</target> | ||
5822 | <context-group purpose="location"> | ||
5823 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5824 | <context context-type="linenumber">38</context> | ||
5825 | </context-group> | ||
5826 | </trans-unit><trans-unit id="5782088737558028158" datatype="html"> | ||
5827 | <source>About follows</source><target state="new">About follows</target> | ||
5828 | <context-group purpose="location"> | ||
5829 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5830 | <context context-type="linenumber">47</context> | ||
5831 | </context-group> | ||
5832 | </trans-unit> | ||
5683 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> | 5833 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> |
5684 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> | 5834 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> |
5685 | <target state="new">Developed with ❤ by | 5835 | <target state="new">Developed with ❤ by |
@@ -5851,6 +6001,12 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5851 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 6001 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> |
5852 | <context context-type="linenumber">1</context> | 6002 | <context context-type="linenumber">1</context> |
5853 | </context-group> | 6003 | </context-group> |
6004 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
6005 | <source>Get help</source><target state="new">Get help</target> | ||
6006 | <context-group purpose="location"> | ||
6007 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | ||
6008 | <context context-type="linenumber">16</context> | ||
6009 | </context-group> | ||
5854 | </trans-unit> | 6010 | </trans-unit> |
5855 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1" datatype="html"> | 6011 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1" datatype="html"> |
5856 | <source> | 6012 | <source> |
@@ -5985,7 +6141,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5985 | 6141 | ||
5986 | </target> | 6142 | </target> |
5987 | 6143 | ||
5988 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 6144 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit><trans-unit id="3301086086650990787" datatype="html"> |
6145 | <source>Register</source><target state="new">Register</target> | ||
6146 | <context-group purpose="location"> | ||
6147 | <context context-type="sourcefile">../app/+signup/+register/register-routing.module.ts</context> | ||
6148 | <context context-type="linenumber">14</context> | ||
6149 | </context-group> | ||
6150 | </trans-unit> | ||
5989 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> | 6151 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> |
5990 | <source> | 6152 | <source> |
5991 | Sorry, we couldn't find the page you were looking for. | 6153 | Sorry, we couldn't find the page you were looking for. |
@@ -6010,7 +6172,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6010 | <target state="new">No description</target> | 6172 | <target state="new">No description</target> |
6011 | 6173 | ||
6012 | 6174 | ||
6013 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit> | 6175 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit><trans-unit id="819067926858619041" datatype="html"> |
6176 | <source>Account videos</source><target state="new">Account videos</target> | ||
6177 | <context-group purpose="location"> | ||
6178 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6179 | <context context-type="linenumber">29</context> | ||
6180 | </context-group> | ||
6181 | </trans-unit><trans-unit id="6823616469362610020" datatype="html"> | ||
6182 | <source>Account video channels</source><target state="new">Account video channels</target> | ||
6183 | <context-group purpose="location"> | ||
6184 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6185 | <context context-type="linenumber">42</context> | ||
6186 | </context-group> | ||
6187 | </trans-unit><trans-unit id="7678273613459026643" datatype="html"> | ||
6188 | <source>About account</source><target state="new">About account</target> | ||
6189 | <context-group purpose="location"> | ||
6190 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6191 | <context context-type="linenumber">51</context> | ||
6192 | </context-group> | ||
6193 | </trans-unit> | ||
6014 | <trans-unit id="3755500631176893489" datatype="html"> | 6194 | <trans-unit id="3755500631176893489" datatype="html"> |
6015 | <source>Published <x id="PH"/> videos</source> | 6195 | <source>Published <x id="PH"/> videos</source> |
6016 | <target state="new">Published | 6196 | <target state="new">Published |
@@ -6127,7 +6307,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6127 | <source>Configuration updated.</source> | 6307 | <source>Configuration updated.</source> |
6128 | <target state="new">Configuration updated.</target> | 6308 | <target state="new">Configuration updated.</target> |
6129 | 6309 | ||
6130 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit> | 6310 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit><trans-unit id="6284468333579755406" datatype="html"> |
6311 | <source>Edit custom configuration</source><target state="new">Edit custom configuration</target> | ||
6312 | <context-group purpose="location"> | ||
6313 | <context context-type="sourcefile">../app/+admin/config/config.routes.ts</context> | ||
6314 | <context context-type="linenumber">26</context> | ||
6315 | </context-group> | ||
6316 | </trans-unit> | ||
6131 | 6317 | ||
6132 | 6318 | ||
6133 | <trans-unit id="6549061957433635758" datatype="html"> | 6319 | <trans-unit id="6549061957433635758" datatype="html"> |
@@ -6606,7 +6792,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6606 | <x id="PH"/> updated. | 6792 | <x id="PH"/> updated. |
6607 | </target> | 6793 | </target> |
6608 | 6794 | ||
6609 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 6795 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit><trans-unit id="3229595422546554334" datatype="html"> |
6796 | <source>Jobs</source><target state="new">Jobs</target> | ||
6797 | <context-group purpose="location"> | ||
6798 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6799 | <context context-type="linenumber">26</context> | ||
6800 | </context-group> | ||
6801 | </trans-unit><trans-unit id="4804785061014590286" datatype="html"> | ||
6802 | <source>Logs</source><target state="new">Logs</target> | ||
6803 | <context-group purpose="location"> | ||
6804 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6805 | <context context-type="linenumber">37</context> | ||
6806 | </context-group> | ||
6807 | </trans-unit> | ||
6610 | <trans-unit id="3150704904301058778" datatype="html"> | 6808 | <trans-unit id="3150704904301058778" datatype="html"> |
6611 | <source>The plugin index is not available. Please retry later.</source> | 6809 | <source>The plugin index is not available. Please retry later.</source> |
6612 | <target state="new">The plugin index is not available. Please retry later.</target> | 6810 | <target state="new">The plugin index is not available. Please retry later.</target> |
@@ -6720,6 +6918,18 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6720 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> | 6918 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> |
6721 | <context context-type="linenumber">86</context> | 6919 | <context context-type="linenumber">86</context> |
6722 | </context-group> | 6920 | </context-group> |
6921 | </trans-unit><trans-unit id="2903648076838460070" datatype="html"> | ||
6922 | <source>Videos blocked</source><target state="new">Videos blocked</target> | ||
6923 | <context-group purpose="location"> | ||
6924 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6925 | <context context-type="linenumber">67</context> | ||
6926 | </context-group> | ||
6927 | </trans-unit><trans-unit id="7805059636749367886" datatype="html"> | ||
6928 | <source>Muted instances</source><target state="new">Muted instances</target> | ||
6929 | <context-group purpose="location"> | ||
6930 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6931 | <context context-type="linenumber">89</context> | ||
6932 | </context-group> | ||
6723 | </trans-unit> | 6933 | </trans-unit> |
6724 | <trans-unit id="5974506725502681113" datatype="html"> | 6934 | <trans-unit id="5974506725502681113" datatype="html"> |
6725 | <source>Password changed for user <x id="PH"/>.</source> | 6935 | <source>Password changed for user <x id="PH"/>.</source> |
@@ -6732,7 +6942,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6732 | <source>Update user password</source> | 6942 | <source>Update user password</source> |
6733 | <target state="new">Update user password</target> | 6943 | <target state="new">Update user password</target> |
6734 | 6944 | ||
6735 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit> | 6945 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit><trans-unit id="177544274549739411" datatype="html"> |
6946 | <source>Following list</source><target state="new">Following list</target> | ||
6947 | <context-group purpose="location"> | ||
6948 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6949 | <context context-type="linenumber">28</context> | ||
6950 | </context-group> | ||
6951 | </trans-unit><trans-unit id="8092429110007204784" datatype="html"> | ||
6952 | <source>Followers list</source><target state="new">Followers list</target> | ||
6953 | <context-group purpose="location"> | ||
6954 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6955 | <context context-type="linenumber">37</context> | ||
6956 | </context-group> | ||
6957 | </trans-unit> | ||
6736 | <trans-unit id="780323526182667308" datatype="html"> | 6958 | <trans-unit id="780323526182667308" datatype="html"> |
6737 | <source>User <x id="PH"/> updated.</source> | 6959 | <source>User <x id="PH"/> updated.</source> |
6738 | <target state="new">User | 6960 | <target state="new">User |
@@ -6751,7 +6973,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6751 | <x id="PH"/>. | 6973 | <x id="PH"/>. |
6752 | </target> | 6974 | </target> |
6753 | 6975 | ||
6754 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="8564701209009684429" datatype="html"> | 6976 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="7483807629538115183" datatype="html"> |
6977 | <source>Users list</source><target state="new">Users list</target> | ||
6978 | <context-group purpose="location"> | ||
6979 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6980 | <context context-type="linenumber">27</context> | ||
6981 | </context-group> | ||
6982 | </trans-unit><trans-unit id="1525334987774465166" datatype="html"> | ||
6983 | <source>Create a user</source><target state="new">Create a user</target> | ||
6984 | <context-group purpose="location"> | ||
6985 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6986 | <context context-type="linenumber">36</context> | ||
6987 | </context-group> | ||
6988 | </trans-unit><trans-unit id="5552039423287890133" datatype="html"> | ||
6989 | <source>Update a user</source><target state="new">Update a user</target> | ||
6990 | <context-group purpose="location"> | ||
6991 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6992 | <context context-type="linenumber">48</context> | ||
6993 | </context-group> | ||
6994 | </trans-unit><trans-unit id="8564701209009684429" datatype="html"> | ||
6755 | <source>Federation</source><target state="new">Federation</target> | 6995 | <source>Federation</source><target state="new">Federation</target> |
6756 | <context-group purpose="location"> | 6996 | <context-group purpose="location"> |
6757 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> | 6997 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> |
@@ -7105,7 +7345,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7105 | <source>Views for the day</source> | 7345 | <source>Views for the day</source> |
7106 | <target state="new">Views for the day</target> | 7346 | <target state="new">Views for the day</target> |
7107 | 7347 | ||
7108 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit> | 7348 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit><trans-unit id="4707367314920217630" datatype="html"> |
7349 | <source>Create new video channel</source><target state="new">Create new video channel</target> | ||
7350 | <context-group purpose="location"> | ||
7351 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7352 | <context context-type="linenumber">22</context> | ||
7353 | </context-group> | ||
7354 | </trans-unit><trans-unit id="6059091237492573541" datatype="html"> | ||
7355 | <source>Update video channel</source><target state="new">Update video channel</target> | ||
7356 | <context-group purpose="location"> | ||
7357 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7358 | <context context-type="linenumber">31</context> | ||
7359 | </context-group> | ||
7360 | </trans-unit><trans-unit id="6595008830732269870" datatype="html"> | ||
7361 | <source>Not found</source><target state="new">Not found</target> | ||
7362 | <context-group purpose="location"> | ||
7363 | <context context-type="sourcefile">../app/+page-not-found/page-not-found-routing.module.ts</context> | ||
7364 | <context context-type="linenumber">13</context> | ||
7365 | </context-group> | ||
7366 | </trans-unit> | ||
7109 | <trans-unit id="5032453707232754344" datatype="html"> | 7367 | <trans-unit id="5032453707232754344" datatype="html"> |
7110 | <source>Playlist <x id="PH"/> created.</source> | 7368 | <source>Playlist <x id="PH"/> created.</source> |
7111 | <target state="new">Playlist | 7369 | <target state="new">Playlist |
@@ -7123,7 +7381,31 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7123 | <source>Update playlist</source> | 7381 | <source>Update playlist</source> |
7124 | <target state="new">Update playlist</target> | 7382 | <target state="new">Update playlist</target> |
7125 | 7383 | ||
7126 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-video-playlists/my-account-video-playlist-elements.component.ts</context><context context-type="linenumber">48</context></context-group></trans-unit> | 7384 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">82</context></context-group></trans-unit><trans-unit id="3410331549417637431" datatype="html"> |
7385 | <source>Account video imports</source><target state="new">Account video imports</target> | ||
7386 | <context-group purpose="location"> | ||
7387 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7388 | <context context-type="linenumber">105</context> | ||
7389 | </context-group> | ||
7390 | </trans-unit><trans-unit id="4434998055872154420" datatype="html"> | ||
7391 | <source>Account subscriptions</source><target state="new">Account subscriptions</target> | ||
7392 | <context-group purpose="location"> | ||
7393 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7394 | <context context-type="linenumber">114</context> | ||
7395 | </context-group> | ||
7396 | </trans-unit><trans-unit id="6019411775996586321" datatype="html"> | ||
7397 | <source>Videos history</source><target state="new">Videos history</target> | ||
7398 | <context-group purpose="location"> | ||
7399 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7400 | <context context-type="linenumber">150</context> | ||
7401 | </context-group> | ||
7402 | </trans-unit><trans-unit id="5851560788527570644" datatype="html"> | ||
7403 | <source>Notifications</source><target state="new">Notifications</target> | ||
7404 | <context-group purpose="location"> | ||
7405 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7406 | <context context-type="linenumber">163</context> | ||
7407 | </context-group> | ||
7408 | </trans-unit> | ||
7127 | <trans-unit id="104404386496394770" datatype="html"> | 7409 | <trans-unit id="104404386496394770" datatype="html"> |
7128 | <source>Delete playlist</source> | 7410 | <source>Delete playlist</source> |
7129 | <target state="new">Delete playlist</target> | 7411 | <target state="new">Delete playlist</target> |
@@ -7277,7 +7559,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7277 | <x id="PH"/>. | 7559 | <x id="PH"/>. |
7278 | </target> | 7560 | </target> |
7279 | 7561 | ||
7280 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit> | 7562 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit><trans-unit id="8231550792139699065" datatype="html"> |
7563 | <source>Verify account email</source><target state="new">Verify account email</target> | ||
7564 | <context-group purpose="location"> | ||
7565 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7566 | <context context-type="linenumber">17</context> | ||
7567 | </context-group> | ||
7568 | </trans-unit><trans-unit id="4997281272800290390" datatype="html"> | ||
7569 | <source>Verify account ask send email</source><target state="new">Verify account ask send email</target> | ||
7570 | <context-group purpose="location"> | ||
7571 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7572 | <context context-type="linenumber">26</context> | ||
7573 | </context-group> | ||
7574 | </trans-unit> | ||
7281 | <trans-unit id="4180693983967989981" datatype="html"> | 7575 | <trans-unit id="4180693983967989981" datatype="html"> |
7282 | <source>Unable to find user id or verification string.</source> | 7576 | <source>Unable to find user id or verification string.</source> |
7283 | <target state="new">Unable to find user id or verification string.</target> | 7577 | <target state="new">Unable to find user id or verification string.</target> |
@@ -7402,27 +7696,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7402 | <source>any language</source> | 7696 | <source>any language</source> |
7403 | <target state="new">any language</target> | 7697 | <target state="new">any language</target> |
7404 | 7698 | ||
7405 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">202</context></context-group></trans-unit> | 7699 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">229</context></context-group></trans-unit> |
7406 | <trans-unit id="5633144232269377096" datatype="html"> | 7700 | <trans-unit id="5633144232269377096" datatype="html"> |
7407 | <source>hide</source> | 7701 | <source>hide</source> |
7408 | <target state="new">hide</target> | 7702 | <target state="new">hide</target> |
7409 | 7703 | ||
7410 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">118</context></context-group></trans-unit> | 7704 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> |
7411 | <trans-unit id="8603861867909474404" datatype="html"> | 7705 | <trans-unit id="8603861867909474404" datatype="html"> |
7412 | <source>blur</source> | 7706 | <source>blur</source> |
7413 | <target state="new">blur</target> | 7707 | <target state="new">blur</target> |
7414 | 7708 | ||
7415 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> | 7709 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> |
7416 | <trans-unit id="4534458451100881847" datatype="html"> | 7710 | <trans-unit id="4534458451100881847" datatype="html"> |
7417 | <source>display</source> | 7711 | <source>display</source> |
7418 | <target state="new">display</target> | 7712 | <target state="new">display</target> |
7419 | 7713 | ||
7420 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> | 7714 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">127</context></context-group></trans-unit> |
7421 | <trans-unit id="4467323362722952678" datatype="html"> | 7715 | <trans-unit id="4467323362722952678" datatype="html"> |
7422 | <source>Unknown</source> | 7716 | <source>Unknown</source> |
7423 | <target state="new">Unknown</target> | 7717 | <target state="new">Unknown</target> |
7424 | 7718 | ||
7425 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">190</context></context-group></trans-unit> | 7719 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">193</context></context-group></trans-unit> |
7426 | <trans-unit id="8781423666414310853" datatype="html"> | 7720 | <trans-unit id="8781423666414310853" datatype="html"> |
7427 | <source>Your password has been successfully reset!</source> | 7721 | <source>Your password has been successfully reset!</source> |
7428 | <target state="new">Your password has been successfully reset!</target> | 7722 | <target state="new">Your password has been successfully reset!</target> |
@@ -8542,27 +8836,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8542 | <source>Emphasis</source> | 8836 | <source>Emphasis</source> |
8543 | <target state="new">Emphasis</target> | 8837 | <target state="new">Emphasis</target> |
8544 | 8838 | ||
8545 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">77</context></context-group></trans-unit> | 8839 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> |
8546 | <trans-unit id="7565716024468232322" datatype="html"> | 8840 | <trans-unit id="7565716024468232322" datatype="html"> |
8547 | <source>Links</source> | 8841 | <source>Links</source> |
8548 | <target state="new">Links</target> | 8842 | <target state="new">Links</target> |
8549 | 8843 | ||
8550 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">78</context></context-group></trans-unit> | 8844 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> |
8551 | <trans-unit id="7838476952710404110" datatype="html"> | 8845 | <trans-unit id="7838476952710404110" datatype="html"> |
8552 | <source>New lines</source> | 8846 | <source>New lines</source> |
8553 | <target state="new">New lines</target> | 8847 | <target state="new">New lines</target> |
8554 | 8848 | ||
8555 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 8849 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">83</context></context-group></trans-unit> |
8556 | <trans-unit id="8756167649220050929" datatype="html"> | 8850 | <trans-unit id="8756167649220050929" datatype="html"> |
8557 | <source>Lists</source> | 8851 | <source>Lists</source> |
8558 | <target state="new">Lists</target> | 8852 | <target state="new">Lists</target> |
8559 | 8853 | ||
8560 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">80</context></context-group></trans-unit> | 8854 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">84</context></context-group></trans-unit> |
8561 | <trans-unit id="414887388288176527" datatype="html"> | 8855 | <trans-unit id="414887388288176527" datatype="html"> |
8562 | <source>Images</source> | 8856 | <source>Images</source> |
8563 | <target state="new">Images</target> | 8857 | <target state="new">Images</target> |
8564 | 8858 | ||
8565 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> | 8859 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">85</context></context-group></trans-unit> |
8566 | <trans-unit id="5708680277917691451" datatype="html"> | 8860 | <trans-unit id="5708680277917691451" datatype="html"> |
8567 | <source> | 8861 | <source> |
8568 | <x id="PH"/> users banned. | 8862 | <x id="PH"/> users banned. |
@@ -8958,7 +9252,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8958 | <source>Moderator</source> | 9252 | <source>Moderator</source> |
8959 | <target state="new">Moderator</target> | 9253 | <target state="new">Moderator</target> |
8960 | 9254 | ||
8961 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">386</context></context-group></trans-unit> | 9255 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">384</context></context-group></trans-unit> |
8962 | <trans-unit id="3723085768598852106" datatype="html"> | 9256 | <trans-unit id="3723085768598852106" datatype="html"> |
8963 | <source>Video removed from | 9257 | <source>Video removed from |
8964 | <x id="PH"/> | 9258 | <x id="PH"/> |
@@ -9026,7 +9320,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9026 | <source>Do you really want to delete this comment?</source> | 9320 | <source>Do you really want to delete this comment?</source> |
9027 | <target state="new">Do you really want to delete this comment?</target> | 9321 | <target state="new">Do you really want to delete this comment?</target> |
9028 | 9322 | ||
9029 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">434</context></context-group></trans-unit> | 9323 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">166</context></context-group></trans-unit> |
9030 | <trans-unit id="7837272126865175984" datatype="html"> | 9324 | <trans-unit id="7837272126865175984" datatype="html"> |
9031 | <source>Comment deleted.</source> | 9325 | <source>Comment deleted.</source> |
9032 | <target state="new">Comment deleted.</target> | 9326 | <target state="new">Comment deleted.</target> |
@@ -9138,9 +9432,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9138 | 9432 | ||
9139 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> | 9433 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> |
9140 | <source>Report</source><target state="new">Report</target> | 9434 | <source>Report</source><target state="new">Report</target> |
9435 | |||
9436 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="4814285799071780083" datatype="html"> | ||
9437 | <source>Remove</source><target state="new">Remove</target> | ||
9141 | <context-group purpose="location"> | 9438 | <context-group purpose="location"> |
9142 | <context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> | 9439 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> |
9143 | <context context-type="linenumber">286</context> | 9440 | <context context-type="linenumber">179</context> |
9441 | </context-group> | ||
9442 | </trans-unit><trans-unit id="6871668720687277843" datatype="html"> | ||
9443 | <source>Remove & re-draft</source><target state="new">Remove & re-draft</target> | ||
9444 | <context-group purpose="location"> | ||
9445 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> | ||
9446 | <context context-type="linenumber">187</context> | ||
9144 | </context-group> | 9447 | </context-group> |
9145 | </trans-unit> | 9448 | </trans-unit> |
9146 | <trans-unit id="4903651219400691248" datatype="html"> | 9449 | <trans-unit id="4903651219400691248" datatype="html"> |
@@ -9242,22 +9545,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9242 | <source>Only I can see this video</source> | 9545 | <source>Only I can see this video</source> |
9243 | <target state="new">Only I can see this video</target> | 9546 | <target state="new">Only I can see this video</target> |
9244 | 9547 | ||
9245 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">340</context></context-group></trans-unit> | 9548 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">341</context></context-group></trans-unit> |
9246 | <trans-unit id="6767380569816110388" datatype="html"> | 9549 | <trans-unit id="6767380569816110388" datatype="html"> |
9247 | <source>Only shareable via a private link</source> | 9550 | <source>Only shareable via a private link</source> |
9248 | <target state="new">Only shareable via a private link</target> | 9551 | <target state="new">Only shareable via a private link</target> |
9249 | 9552 | ||
9250 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">344</context></context-group></trans-unit> | 9553 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">345</context></context-group></trans-unit> |
9251 | <trans-unit id="6828965264297239528" datatype="html"> | 9554 | <trans-unit id="6828965264297239528" datatype="html"> |
9252 | <source>Anyone can see this video</source> | 9555 | <source>Anyone can see this video</source> |
9253 | <target state="new">Anyone can see this video</target> | 9556 | <target state="new">Anyone can see this video</target> |
9254 | 9557 | ||
9255 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">348</context></context-group></trans-unit> | 9558 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">349</context></context-group></trans-unit> |
9256 | <trans-unit id="1425933035739773115" datatype="html"> | 9559 | <trans-unit id="1425933035739773115" datatype="html"> |
9257 | <source>Only users of this instance can see this video</source> | 9560 | <source>Only users of this instance can see this video</source> |
9258 | <target state="new">Only users of this instance can see this video</target> | 9561 | <target state="new">Only users of this instance can see this video</target> |
9259 | 9562 | ||
9260 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">352</context></context-group></trans-unit> | 9563 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">353</context></context-group></trans-unit> |
9261 | <trans-unit id="5210096066382592800" datatype="html"> | 9564 | <trans-unit id="5210096066382592800" datatype="html"> |
9262 | <source>Video to import updated.</source> | 9565 | <source>Video to import updated.</source> |
9263 | <target state="new">Video to import updated.</target> | 9566 | <target state="new">Video to import updated.</target> |
@@ -9337,17 +9640,29 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9337 | <target state="new">Report comment</target> | 9640 | <target state="new">Report comment</target> |
9338 | 9641 | ||
9339 | 9642 | ||
9340 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 9643 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/report-modals/comment-report.component.ts</context><context context-type="linenumber">51</context></context-group></trans-unit> |
9341 | <trans-unit id="3691787517663044217" datatype="html"> | 9644 | <trans-unit id="3691787517663044217" datatype="html"> |
9342 | <source> The deletion will be sent to remote instances so they can reflect the change.</source> | 9645 | <source> The deletion will be sent to remote instances so they can reflect the change.</source> |
9343 | <target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> | 9646 | <target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> |
9344 | 9647 | ||
9345 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">163</context></context-group></trans-unit> | 9648 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">169</context></context-group></trans-unit> |
9346 | <trans-unit id="7321800851971795962" datatype="html"> | 9649 | <trans-unit id="7321800851971795962" datatype="html"> |
9347 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source> | 9650 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source> |
9348 | <target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> | 9651 | <target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> |
9349 | 9652 | ||
9350 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">165</context></context-group></trans-unit> | 9653 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="5964038603724691720" datatype="html"> |
9654 | <source>Delete and re-draft</source><target state="new">Delete and re-draft</target> | ||
9655 | <context-group purpose="location"> | ||
9656 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | ||
9657 | <context context-type="linenumber">197</context> | ||
9658 | </context-group> | ||
9659 | </trans-unit><trans-unit id="7163633882758007711" datatype="html"> | ||
9660 | <source>Do you really want to delete and re-draft this comment?</source><target state="new">Do you really want to delete and re-draft this comment?</target> | ||
9661 | <context-group purpose="location"> | ||
9662 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | ||
9663 | <context context-type="linenumber">197</context> | ||
9664 | </context-group> | ||
9665 | </trans-unit> | ||
9351 | <trans-unit id="6775540171466219199" datatype="html"> | 9666 | <trans-unit id="6775540171466219199" datatype="html"> |
9352 | <source>Stop autoplaying next video</source> | 9667 | <source>Stop autoplaying next video</source> |
9353 | <target state="new">Stop autoplaying next video</target> | 9668 | <target state="new">Stop autoplaying next video</target> |
@@ -9509,6 +9824,36 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9509 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> | 9824 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> |
9510 | <context context-type="linenumber">36</context> | 9825 | <context context-type="linenumber">36</context> |
9511 | </context-group> | 9826 | </context-group> |
9827 | </trans-unit><trans-unit id="4668975178372693951" datatype="html"> | ||
9828 | <source>Discover videos</source><target state="new">Discover videos</target> | ||
9829 | <context-group purpose="location"> | ||
9830 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9831 | <context context-type="linenumber">23</context> | ||
9832 | </context-group> | ||
9833 | </trans-unit><trans-unit id="8067135025051844577" datatype="html"> | ||
9834 | <source>Trending videos</source><target state="new">Trending videos</target> | ||
9835 | <context-group purpose="location"> | ||
9836 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9837 | <context context-type="linenumber">32</context> | ||
9838 | </context-group> | ||
9839 | </trans-unit><trans-unit id="664221386829541948" datatype="html"> | ||
9840 | <source>Recently added videos</source><target state="new">Recently added videos</target> | ||
9841 | <context-group purpose="location"> | ||
9842 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9843 | <context context-type="linenumber">58</context> | ||
9844 | </context-group> | ||
9845 | </trans-unit><trans-unit id="8212906256415538361" datatype="html"> | ||
9846 | <source>Upload a video</source><target state="new">Upload a video</target> | ||
9847 | <context-group purpose="location"> | ||
9848 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9849 | <context context-type="linenumber">97</context> | ||
9850 | </context-group> | ||
9851 | </trans-unit><trans-unit id="7590784934397800835" datatype="html"> | ||
9852 | <source>Edit a video</source><target state="new">Edit a video</target> | ||
9853 | <context-group purpose="location"> | ||
9854 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9855 | <context context-type="linenumber">106</context> | ||
9856 | </context-group> | ||
9512 | </trans-unit> | 9857 | </trans-unit> |
9513 | </body> | 9858 | </body> |
9514 | </file> | 9859 | </file> |
diff --git a/client/src/locale/angular.ta.xlf b/client/src/locale/angular.ta.xlf index c6edacdd4..fbbdd2b4a 100644 --- a/client/src/locale/angular.ta.xlf +++ b/client/src/locale/angular.ta.xlf | |||
@@ -318,7 +318,7 @@ | |||
318 | <target state="new">Options</target> | 318 | <target state="new">Options</target> |
319 | 319 | ||
320 | 320 | ||
321 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 321 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">48</context></context-group></trans-unit> |
322 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d" datatype="html"> | 322 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d" datatype="html"> |
323 | <source>Start at</source> | 323 | <source>Start at</source> |
324 | <target state="new">Start at</target> | 324 | <target state="new">Start at</target> |
@@ -452,7 +452,7 @@ | |||
452 | Cancel | 452 | Cancel |
453 | </target> | 453 | </target> |
454 | 454 | ||
455 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> | 455 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit> |
456 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd" datatype="html"> | 456 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd" datatype="html"> |
457 | <source>Download</source> | 457 | <source>Download</source> |
458 | <target state="new">Download</target> | 458 | <target state="new">Download</target> |
@@ -575,7 +575,7 @@ | |||
575 | 575 | ||
576 | 576 | ||
577 | 577 | ||
578 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 578 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
579 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc" datatype="html"> | 579 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc" datatype="html"> |
580 | <source>Edit starts/stops at</source> | 580 | <source>Edit starts/stops at</source> |
581 | <target state="new">Edit starts/stops at</target> | 581 | <target state="new">Edit starts/stops at</target> |
@@ -615,7 +615,7 @@ | |||
615 | 615 | ||
616 | 616 | ||
617 | 617 | ||
618 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> | 618 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
619 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> | 619 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> |
620 | <source>Edit</source> | 620 | <source>Edit</source> |
621 | <target>தொகு</target> | 621 | <target>தொகு</target> |
@@ -640,17 +640,10 @@ | |||
640 | <target state="new">Complete preview</target> | 640 | <target state="new">Complete preview</target> |
641 | 641 | ||
642 | <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></trans-unit> | 642 | <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></trans-unit> |
643 | <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f"> | 643 | <trans-unit id="8644431249513874405" datatype="html"> |
644 | <source>Get help</source> | ||
645 | <target>உதவி</target> | ||
646 | |||
647 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit><trans-unit id="8644431249513874405" datatype="html"> | ||
648 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> | 644 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> |
649 | <context-group purpose="location"> | 645 | |
650 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 646 | <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></trans-unit> |
651 | <context context-type="linenumber">71</context> | ||
652 | </context-group> | ||
653 | </trans-unit> | ||
654 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> | 647 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> |
655 | <source>Recommended</source> | 648 | <source>Recommended</source> |
656 | <target state="new">Recommended</target> | 649 | <target state="new">Recommended</target> |
@@ -690,7 +683,7 @@ | |||
690 | <source>PROFILE SETTINGS</source> | 683 | <source>PROFILE SETTINGS</source> |
691 | <target state="new">PROFILE SETTINGS</target> | 684 | <target state="new">PROFILE SETTINGS</target> |
692 | 685 | ||
693 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 686 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">12</context></context-group></trans-unit> |
694 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3" datatype="html"> | 687 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3" datatype="html"> |
695 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> | 688 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> |
696 | <target state="new"> | 689 | <target state="new"> |
@@ -862,11 +855,8 @@ | |||
862 | 855 | ||
863 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> | 856 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> |
864 | <source>User</source><target state="new">User</target> | 857 | <source>User</source><target state="new">User</target> |
865 | <context-group purpose="location"> | 858 | |
866 | <context context-type="sourcefile">../app/core/users/user.service.ts</context> | 859 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit> |
867 | <context context-type="linenumber">384</context> | ||
868 | </context-group> | ||
869 | </trans-unit> | ||
870 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0"> | 860 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0"> |
871 | <source>Ban</source> | 861 | <source>Ban</source> |
872 | <target>ரத்து</target> | 862 | <target>ரத்து</target> |
@@ -1374,89 +1364,89 @@ The link will expire within 1 hour.</target> | |||
1374 | <source>Account settings</source> | 1364 | <source>Account settings</source> |
1375 | <target state="new">Account settings</target> | 1365 | <target state="new">Account settings</target> |
1376 | 1366 | ||
1377 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 1367 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
1378 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> | 1368 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> |
1379 | <source>Channels settings</source> | 1369 | <source>Channels settings</source> |
1380 | <target state="new">Channels settings</target> | 1370 | <target state="new">Channels settings</target> |
1381 | 1371 | ||
1382 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 1372 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> |
1383 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> | 1373 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> |
1384 | <source>Interface:</source> | 1374 | <source>Interface:</source> |
1385 | <target state="new">Interface:</target> | 1375 | <target state="new">Interface:</target> |
1386 | 1376 | ||
1387 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 1377 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1388 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> | 1378 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> |
1389 | <source>Videos:</source> | 1379 | <source>Videos:</source> |
1390 | <target state="new">Videos:</target> | 1380 | <target state="new">Videos:</target> |
1391 | 1381 | ||
1392 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 1382 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> |
1393 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> | 1383 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> |
1394 | <source>Sensitive:</source> | 1384 | <source>Sensitive:</source> |
1395 | <target state="new">Sensitive:</target> | 1385 | <target state="new">Sensitive:</target> |
1396 | 1386 | ||
1397 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 1387 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">54</context></context-group></trans-unit> |
1398 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1388 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> |
1399 | <source>Interface: <x id="INTERPOLATION"/></source> | 1389 | <source>Interface: <x id="INTERPOLATION"/></source> |
1400 | <target state="new">Interface: | 1390 | <target state="new">Interface: |
1401 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> | 1391 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> |
1402 | </target> | 1392 | </target> |
1403 | 1393 | ||
1404 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">156</context></context-group></trans-unit> | 1394 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> |
1405 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1395 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1406 | <source>Help share videos</source> | 1396 | <source>Help share videos</source> |
1407 | <target state="new">Help share videos</target> | 1397 | <target state="new">Help share videos</target> |
1408 | 1398 | ||
1409 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> | 1399 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
1410 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> | 1400 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> |
1411 | <source>More account settings</source> | 1401 | <source>More account settings</source> |
1412 | <target state="new">More account settings</target> | 1402 | <target state="new">More account settings</target> |
1413 | 1403 | ||
1414 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> | 1404 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> |
1415 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> | 1405 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> |
1416 | <source>Keyboard shortcuts</source> | 1406 | <source>Keyboard shortcuts</source> |
1417 | <target state="new">Keyboard shortcuts</target> | 1407 | <target state="new">Keyboard shortcuts</target> |
1418 | 1408 | ||
1419 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 1409 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">72</context></context-group></trans-unit> |
1420 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> | 1410 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> |
1421 | <source>Help</source> | 1411 | <source>Help</source> |
1422 | <target state="new">Help</target> | 1412 | <target state="new">Help</target> |
1423 | 1413 | ||
1424 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1414 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1425 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> | 1415 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> |
1426 | <source>Get help using PeerTube</source> | 1416 | <source>Get help using PeerTube</source> |
1427 | <target state="new">Get help using PeerTube</target> | 1417 | <target state="new">Get help using PeerTube</target> |
1428 | 1418 | ||
1429 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">161</context></context-group></trans-unit> | 1419 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">167</context></context-group></trans-unit> |
1430 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> | 1420 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> |
1431 | <source>Shortcuts</source> | 1421 | <source>Shortcuts</source> |
1432 | <target state="new">Shortcuts</target> | 1422 | <target state="new">Shortcuts</target> |
1433 | 1423 | ||
1434 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1424 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1435 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> | 1425 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> |
1436 | <source>powered by PeerTube</source> | 1426 | <source>powered by PeerTube</source> |
1437 | <target state="new">powered by PeerTube</target> | 1427 | <target state="new">powered by PeerTube</target> |
1438 | 1428 | ||
1439 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | 1429 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">177</context></context-group></trans-unit> |
1440 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> | 1430 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> |
1441 | <source>powered by PeerTube - CopyLeft 2015-2020</source> | 1431 | <source>powered by PeerTube - CopyLeft 2015-2020</source> |
1442 | <target state="new">powered by PeerTube - CopyLeft 2015-2020</target> | 1432 | <target state="new">powered by PeerTube - CopyLeft 2015-2020</target> |
1443 | 1433 | ||
1444 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> | 1434 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">176</context></context-group></trans-unit> |
1445 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344" datatype="html"> | 1435 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344" datatype="html"> |
1446 | <source>Log out</source> | 1436 | <source>Log out</source> |
1447 | <target state="new">Log out</target> | 1437 | <target state="new">Log out</target> |
1448 | 1438 | ||
1449 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">70</context></context-group></trans-unit> | 1439 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit> |
1450 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> | 1440 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> |
1451 | <source>Create an account</source> | 1441 | <source>Create an account</source> |
1452 | <target>கணக்கை உருவாக்கு</target> | 1442 | <target>கணக்கை உருவாக்கு</target> |
1453 | 1443 | ||
1454 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">78</context></context-group></trans-unit> | 1444 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
1455 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> | 1445 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> |
1456 | <source>MY LIBRARY</source> | 1446 | <source>MY LIBRARY</source> |
1457 | <target state="new">MY LIBRARY</target> | 1447 | <target state="new">MY LIBRARY</target> |
1458 | 1448 | ||
1459 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 1449 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">88</context></context-group></trans-unit> |
1460 | <trans-unit id="6371572688505952303" datatype="html"> | 1450 | <trans-unit id="6371572688505952303" datatype="html"> |
1461 | <source>My library</source> | 1451 | <source>My library</source> |
1462 | <target state="new">My library</target> | 1452 | <target state="new">My library</target> |
@@ -1496,22 +1486,22 @@ The link will expire within 1 hour.</target> | |||
1496 | <source>Videos</source> | 1486 | <source>Videos</source> |
1497 | <target state="new">Videos</target> | 1487 | <target state="new">Videos</target> |
1498 | 1488 | ||
1499 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">86</context></context-group></trans-unit> | 1489 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">92</context></context-group></trans-unit> |
1500 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> | 1490 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> |
1501 | <source>Playlists</source> | 1491 | <source>Playlists</source> |
1502 | <target state="new">Playlists</target> | 1492 | <target state="new">Playlists</target> |
1503 | 1493 | ||
1504 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">91</context></context-group></trans-unit> | 1494 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">97</context></context-group></trans-unit> |
1505 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2" datatype="html"> | 1495 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2" datatype="html"> |
1506 | <source>Subscriptions</source> | 1496 | <source>Subscriptions</source> |
1507 | <target state="new">Subscriptions</target> | 1497 | <target state="new">Subscriptions</target> |
1508 | 1498 | ||
1509 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 1499 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">102</context></context-group></trans-unit> |
1510 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8" datatype="html"> | 1500 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8" datatype="html"> |
1511 | <source>History</source> | 1501 | <source>History</source> |
1512 | <target state="new">History</target> | 1502 | <target state="new">History</target> |
1513 | 1503 | ||
1514 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit> | 1504 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">107</context></context-group></trans-unit> |
1515 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> | 1505 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> |
1516 | <source>VIDEOS</source> | 1506 | <source>VIDEOS</source> |
1517 | <target state="new">VIDEOS</target> | 1507 | <target state="new">VIDEOS</target> |
@@ -1523,27 +1513,27 @@ The link will expire within 1 hour.</target> | |||
1523 | <target state="new">Discover</target> | 1513 | <target state="new">Discover</target> |
1524 | 1514 | ||
1525 | 1515 | ||
1526 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">111</context></context-group></trans-unit> | 1516 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">117</context></context-group></trans-unit> |
1527 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807" datatype="html"> | 1517 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807" datatype="html"> |
1528 | <source>Trending</source> | 1518 | <source>Trending</source> |
1529 | <target state="new">Trending</target> | 1519 | <target state="new">Trending</target> |
1530 | 1520 | ||
1531 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">116</context></context-group></trans-unit> | 1521 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">122</context></context-group></trans-unit> |
1532 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> | 1522 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> |
1533 | <source>Most liked</source> | 1523 | <source>Most liked</source> |
1534 | <target state="new">Most liked</target> | 1524 | <target state="new">Most liked</target> |
1535 | 1525 | ||
1536 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">121</context></context-group></trans-unit> | 1526 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">127</context></context-group></trans-unit> |
1537 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> | 1527 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> |
1538 | <source>Recently added</source> | 1528 | <source>Recently added</source> |
1539 | <target>சமீபத்தியவை</target> | 1529 | <target>சமீபத்தியவை</target> |
1540 | 1530 | ||
1541 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">126</context></context-group></trans-unit> | 1531 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">132</context></context-group></trans-unit> |
1542 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919" datatype="html"> | 1532 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919" datatype="html"> |
1543 | <source>Administration</source> | 1533 | <source>Administration</source> |
1544 | <target state="new">Administration</target> | 1534 | <target state="new">Administration</target> |
1545 | 1535 | ||
1546 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">140</context></context-group></trans-unit> | 1536 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">146</context></context-group></trans-unit> |
1547 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> | 1537 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> |
1548 | <source>About</source> | 1538 | <source>About</source> |
1549 | <target>எங்களைப் பற்றி</target> | 1539 | <target>எங்களைப் பற்றி</target> |
@@ -1554,7 +1544,7 @@ The link will expire within 1 hour.</target> | |||
1554 | <source>Contact</source> | 1544 | <source>Contact</source> |
1555 | <target state="new">Contact</target> | 1545 | <target state="new">Contact</target> |
1556 | 1546 | ||
1557 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">160</context></context-group></trans-unit> | 1547 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">166</context></context-group></trans-unit> |
1558 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771" datatype="html"> | 1548 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771" datatype="html"> |
1559 | <source>View your notifications</source> | 1549 | <source>View your notifications</source> |
1560 | <target state="new">View your notifications</target> | 1550 | <target state="new">View your notifications</target> |
@@ -1581,7 +1571,7 @@ The link will expire within 1 hour.</target> | |||
1581 | <source>See all your notifications</source> | 1571 | <source>See all your notifications</source> |
1582 | <target state="new">See all your notifications</target> | 1572 | <target state="new">See all your notifications</target> |
1583 | 1573 | ||
1584 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 1574 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">40</context></context-group></trans-unit> |
1585 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> | 1575 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> |
1586 | <source>Search videos, channels…</source> | 1576 | <source>Search videos, channels…</source> |
1587 | <target state="new">Search videos, channels…</target> | 1577 | <target state="new">Search videos, channels…</target> |
@@ -1925,22 +1915,22 @@ The link will expire within 1 hour.</target> | |||
1925 | <source>FAQ</source> | 1915 | <source>FAQ</source> |
1926 | <target state="new">FAQ</target> | 1916 | <target state="new">FAQ</target> |
1927 | 1917 | ||
1928 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">163</context></context-group></trans-unit> | 1918 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
1929 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> | 1919 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> |
1930 | <source>Frequently asked questions about PeerTube</source> | 1920 | <source>Frequently asked questions about PeerTube</source> |
1931 | <target state="new">Frequently asked questions about PeerTube</target> | 1921 | <target state="new">Frequently asked questions about PeerTube</target> |
1932 | 1922 | ||
1933 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1923 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1934 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> | 1924 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> |
1935 | <source>API</source> | 1925 | <source>API</source> |
1936 | <target state="new">API</target> | 1926 | <target state="new">API</target> |
1937 | 1927 | ||
1938 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1928 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1939 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> | 1929 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> |
1940 | <source>API documentation</source> | 1930 | <source>API documentation</source> |
1941 | <target state="new">API documentation</target> | 1931 | <target state="new">API documentation</target> |
1942 | 1932 | ||
1943 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 1933 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
1944 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5" datatype="html"> | 1934 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5" datatype="html"> |
1945 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> | 1935 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> |
1946 | <target state="new">Schedule publication ( | 1936 | <target state="new">Schedule publication ( |
@@ -2341,7 +2331,13 @@ The link will expire within 1 hour.</target> | |||
2341 | Less customization | 2331 | Less customization |
2342 | </target> | 2332 | </target> |
2343 | 2333 | ||
2344 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit> | 2334 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit><trans-unit id="2454050363478003966" datatype="html"> |
2335 | <source>Login</source><target state="new">Login</target> | ||
2336 | <context-group purpose="location"> | ||
2337 | <context context-type="sourcefile">../app/+login/login-routing.module.ts</context> | ||
2338 | <context context-type="linenumber">14</context> | ||
2339 | </context-group> | ||
2340 | </trans-unit> | ||
2345 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e" datatype="html"> | 2341 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e" datatype="html"> |
2346 | <source>Autoplay</source> | 2342 | <source>Autoplay</source> |
2347 | <target state="new">Autoplay</target> | 2343 | <target state="new">Autoplay</target> |
@@ -2616,7 +2612,7 @@ The link will expire within 1 hour.</target> | |||
2616 | <source>No comments.</source> | 2612 | <source>No comments.</source> |
2617 | <target state="new">No comments.</target> | 2613 | <target state="new">No comments.</target> |
2618 | 2614 | ||
2619 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 2615 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> |
2620 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> | 2616 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> |
2621 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> | 2617 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> |
2622 | <target state="new"> | 2618 | <target state="new"> |
@@ -2626,7 +2622,7 @@ The link will expire within 1 hour.</target> | |||
2626 | 2622 | ||
2627 | </target> | 2623 | </target> |
2628 | 2624 | ||
2629 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">79</context></context-group></trans-unit> | 2625 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
2630 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> | 2626 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> |
2631 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> | 2627 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> |
2632 | <target state="new"> | 2628 | <target state="new"> |
@@ -2635,14 +2631,14 @@ The link will expire within 1 hour.</target> | |||
2635 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> | 2631 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> |
2636 | </target> | 2632 | </target> |
2637 | 2633 | ||
2638 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 2634 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">87</context></context-group></trans-unit> |
2639 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> | 2635 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> |
2640 | <source>View <x id="INTERPOLATION"/> replies</source> | 2636 | <source>View <x id="INTERPOLATION"/> replies</source> |
2641 | <target state="new">View | 2637 | <target state="new">View |
2642 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies | 2638 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies |
2643 | </target> | 2639 | </target> |
2644 | 2640 | ||
2645 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">85</context></context-group></trans-unit> | 2641 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">90</context></context-group></trans-unit> |
2646 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828" datatype="html"> | 2642 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828" datatype="html"> |
2647 | <source> | 2643 | <source> |
2648 | Comments are disabled. | 2644 | Comments are disabled. |
@@ -2651,26 +2647,84 @@ The link will expire within 1 hour.</target> | |||
2651 | Comments are disabled. | 2647 | Comments are disabled. |
2652 | </target> | 2648 | </target> |
2653 | 2649 | ||
2654 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 2650 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit> |
2655 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e" datatype="html"> | 2651 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e" datatype="html"> |
2656 | <source>Add comment...</source> | 2652 | <source>Add comment...</source> |
2657 | <target state="new">Add comment...</target> | 2653 | <target state="new">Add comment...</target> |
2658 | 2654 | ||
2659 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | 2655 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit><trans-unit id="4e5254dedf0c12ce7e7c2197384fceebe3b29a2b" datatype="html"> |
2660 | <trans-unit id="8956c0f4c6974289fc63f1ab6b54f5b32ed65eeb" datatype="html"> | 2656 | <source>Markdown compatible</source><target state="new">Markdown compatible</target> |
2661 | <source> | 2657 | <context-group purpose="location"> |
2662 | Reply | 2658 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> |
2663 | </source> | 2659 | <context context-type="linenumber">13</context> |
2664 | <target state="new"> | 2660 | </context-group> |
2665 | Reply | 2661 | </trans-unit><trans-unit id="4739ffad85f09defefdb6e51b45f43b2ef7c4388" datatype="html"> |
2666 | </target> | 2662 | <source>Markdown compatible that supports:</source><target state="new">Markdown compatible that supports:</target> |
2667 | 2663 | <context-group purpose="location"> | |
2668 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 2664 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> |
2665 | <context context-type="linenumber">15</context> | ||
2666 | </context-group> | ||
2667 | </trans-unit><trans-unit id="9a53b17a021bb0677c156fd893461797fc497a10" datatype="html"> | ||
2668 | <source>Auto generated links</source><target state="new">Auto generated links</target> | ||
2669 | <context-group purpose="location"> | ||
2670 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2671 | <context context-type="linenumber">18</context> | ||
2672 | </context-group> | ||
2673 | </trans-unit><trans-unit id="664f99b8919d6dd2faa1c1f7c378aa86d1be5e8a" datatype="html"> | ||
2674 | <source>Break lines</source><target state="new">Break lines</target> | ||
2675 | <context-group purpose="location"> | ||
2676 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2677 | <context context-type="linenumber">19</context> | ||
2678 | </context-group> | ||
2679 | </trans-unit><trans-unit id="b15e7bec5c7833d2d9634946ccbed68967b1bee1" datatype="html"> | ||
2680 | <source>Lists</source><target state="new">Lists</target> | ||
2681 | <context-group purpose="location"> | ||
2682 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2683 | <context context-type="linenumber">20</context> | ||
2684 | </context-group> | ||
2685 | </trans-unit><trans-unit id="ab4426b60f13c00b61d6b714d390dc629f314980" datatype="html"> | ||
2686 | <source>Emphasis</source><target state="new">Emphasis</target> | ||
2687 | <context-group purpose="location"> | ||
2688 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2689 | <context context-type="linenumber">22</context> | ||
2690 | </context-group> | ||
2691 | </trans-unit><trans-unit id="4e13b179501d3d32721037e03b4c04acb9857c5f" datatype="html"> | ||
2692 | <source>bold</source><target state="new">bold</target> | ||
2693 | <context-group purpose="location"> | ||
2694 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2695 | <context context-type="linenumber">23</context> | ||
2696 | </context-group> | ||
2697 | </trans-unit><trans-unit id="3c12190421fbb2756e6bbead923df9ec5de8ede2" datatype="html"> | ||
2698 | <source>italic</source><target state="new">italic</target> | ||
2699 | <context-group purpose="location"> | ||
2700 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2701 | <context context-type="linenumber">23</context> | ||
2702 | </context-group> | ||
2703 | </trans-unit><trans-unit id="adb4bbdcb961b8aac8298d6cac554d9b25636b7a" datatype="html"> | ||
2704 | <source>Emoji shortcuts</source><target state="new">Emoji shortcuts</target> | ||
2705 | <context-group purpose="location"> | ||
2706 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2707 | <context context-type="linenumber">26</context> | ||
2708 | </context-group> | ||
2709 | </trans-unit><trans-unit id="b9809a21a8eb3c9db2a0282c5dd94bc221575c96" datatype="html"> | ||
2710 | <source>Emoji markup</source><target state="new">Emoji markup</target> | ||
2711 | <context-group purpose="location"> | ||
2712 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2713 | <context context-type="linenumber">30</context> | ||
2714 | </context-group> | ||
2715 | </trans-unit><trans-unit id="f37feb427aaa551edd1f22616be6464bc0d492de" datatype="html"> | ||
2716 | <source>See complete list</source><target state="new">See complete list</target> | ||
2717 | <context-group purpose="location"> | ||
2718 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2719 | <context context-type="linenumber">32</context> | ||
2720 | </context-group> | ||
2721 | </trans-unit> | ||
2722 | |||
2669 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135" datatype="html"> | 2723 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135" datatype="html"> |
2670 | <source>You are one step away from commenting</source> | 2724 | <source>You are one step away from commenting</source> |
2671 | <target state="new">You are one step away from commenting</target> | 2725 | <target state="new">You are one step away from commenting</target> |
2672 | 2726 | ||
2673 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 2727 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
2674 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> | 2728 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> |
2675 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> | 2729 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> |
2676 | <target state="new"> | 2730 | <target state="new"> |
@@ -2679,7 +2733,7 @@ The link will expire within 1 hour.</target> | |||
2679 | from within the software's interface. | 2733 | from within the software's interface. |
2680 | </target> | 2734 | </target> |
2681 | 2735 | ||
2682 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 2736 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
2683 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb" datatype="html"> | 2737 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb" datatype="html"> |
2684 | <source> | 2738 | <source> |
2685 | If you have an account on Mastodon or Pleroma, you can open it directly in their interface: | 2739 | If you have an account on Mastodon or Pleroma, you can open it directly in their interface: |
@@ -2688,12 +2742,30 @@ The link will expire within 1 hour.</target> | |||
2688 | If you have an account on Mastodon or Pleroma, you can open it directly in their interface: | 2742 | If you have an account on Mastodon or Pleroma, you can open it directly in their interface: |
2689 | </target> | 2743 | </target> |
2690 | 2744 | ||
2691 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">41</context></context-group></trans-unit> | 2745 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">65</context></context-group></trans-unit> |
2692 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> | 2746 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> |
2693 | <source>Login to comment</source> | 2747 | <source>Login to comment</source> |
2694 | <target state="new">Login to comment</target> | 2748 | <target state="new">Login to comment</target> |
2695 | 2749 | ||
2696 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">52</context></context-group></trans-unit> | 2750 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit><trans-unit id="974170f455ff5a9034d5737e84b4194c0046fc6b" datatype="html"> |
2751 | <source>Markdown Emoji List</source><target state="new">Markdown Emoji List</target> | ||
2752 | <context-group purpose="location"> | ||
2753 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2754 | <context context-type="linenumber">84</context> | ||
2755 | </context-group> | ||
2756 | </trans-unit><trans-unit id="2662644497259948010" datatype="html"> | ||
2757 | <source>Comment</source><target state="new">Comment</target> | ||
2758 | <context-group purpose="location"> | ||
2759 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2760 | <context context-type="linenumber">58</context> | ||
2761 | </context-group> | ||
2762 | </trans-unit><trans-unit id="4502286564339177240" datatype="html"> | ||
2763 | <source>Reply</source><target state="new">Reply</target> | ||
2764 | <context-group purpose="location"> | ||
2765 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2766 | <context context-type="linenumber">60</context> | ||
2767 | </context-group> | ||
2768 | </trans-unit> | ||
2697 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285" datatype="html"> | 2769 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285" datatype="html"> |
2698 | <source>Highlighted comment</source> | 2770 | <source>Highlighted comment</source> |
2699 | <target state="new">Highlighted comment</target> | 2771 | <target state="new">Highlighted comment</target> |
@@ -2708,7 +2780,7 @@ The link will expire within 1 hour.</target> | |||
2708 | <source>This comment has been deleted</source> | 2780 | <source>This comment has been deleted</source> |
2709 | <target state="new">This comment has been deleted</target> | 2781 | <target state="new">This comment has been deleted</target> |
2710 | 2782 | ||
2711 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">62</context></context-group></trans-unit> | 2783 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">61</context></context-group></trans-unit> |
2712 | <trans-unit id="9031514421077169181" datatype="html"> | 2784 | <trans-unit id="9031514421077169181" datatype="html"> |
2713 | <source>Video redundancies</source> | 2785 | <source>Video redundancies</source> |
2714 | <target state="new">Video redundancies</target> | 2786 | <target state="new">Video redundancies</target> |
@@ -3565,7 +3637,25 @@ The link will expire within 1 hour.</target> | |||
3565 | <target state="new">No account found.</target> | 3637 | <target state="new">No account found.</target> |
3566 | 3638 | ||
3567 | 3639 | ||
3568 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit> | 3640 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit><trans-unit id="2338185419645468935" datatype="html"> |
3641 | <source>List installed plugins</source><target state="new">List installed plugins</target> | ||
3642 | <context-group purpose="location"> | ||
3643 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3644 | <context context-type="linenumber">28</context> | ||
3645 | </context-group> | ||
3646 | </trans-unit><trans-unit id="8897412584195581488" datatype="html"> | ||
3647 | <source>Search plugins</source><target state="new">Search plugins</target> | ||
3648 | <context-group purpose="location"> | ||
3649 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3650 | <context context-type="linenumber">37</context> | ||
3651 | </context-group> | ||
3652 | </trans-unit><trans-unit id="4994333937800672218" datatype="html"> | ||
3653 | <source>Show plugin</source><target state="new">Show plugin</target> | ||
3654 | <context-group purpose="location"> | ||
3655 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3656 | <context context-type="linenumber">46</context> | ||
3657 | </context-group> | ||
3658 | </trans-unit> | ||
3569 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> | 3659 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> |
3570 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> | 3660 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> |
3571 | <target state="new">Showing | 3661 | <target state="new">Showing |
@@ -4296,7 +4386,7 @@ The link will expire within 1 hour.</target> | |||
4296 | <source>Administrator</source> | 4386 | <source>Administrator</source> |
4297 | <target state="new">Administrator</target> | 4387 | <target state="new">Administrator</target> |
4298 | 4388 | ||
4299 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">385</context></context-group></trans-unit> | 4389 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">383</context></context-group></trans-unit> |
4300 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587" datatype="html"> | 4390 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587" datatype="html"> |
4301 | <source>Admin email</source> | 4391 | <source>Admin email</source> |
4302 | <target state="new">Admin email</target> | 4392 | <target state="new">Admin email</target> |
@@ -4558,27 +4648,27 @@ The link will expire within 1 hour.</target> | |||
4558 | <source>VIDEO SETTINGS</source> | 4648 | <source>VIDEO SETTINGS</source> |
4559 | <target state="new">VIDEO SETTINGS</target> | 4649 | <target state="new">VIDEO SETTINGS</target> |
4560 | 4650 | ||
4561 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit> | 4651 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
4562 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> | 4652 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> |
4563 | <source>NOTIFICATIONS</source> | 4653 | <source>NOTIFICATIONS</source> |
4564 | <target state="new">NOTIFICATIONS</target> | 4654 | <target state="new">NOTIFICATIONS</target> |
4565 | 4655 | ||
4566 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 4656 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">37</context></context-group></trans-unit> |
4567 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> | 4657 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> |
4568 | <source>INTERFACE</source> | 4658 | <source>INTERFACE</source> |
4569 | <target state="new">INTERFACE</target> | 4659 | <target state="new">INTERFACE</target> |
4570 | 4660 | ||
4571 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 4661 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit> |
4572 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> | 4662 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> |
4573 | <source>PASSWORD</source> | 4663 | <source>PASSWORD</source> |
4574 | <target state="new">PASSWORD</target> | 4664 | <target state="new">PASSWORD</target> |
4575 | 4665 | ||
4576 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">59</context></context-group></trans-unit> | 4666 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">57</context></context-group></trans-unit> |
4577 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> | 4667 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> |
4578 | <source>EMAIL</source> | 4668 | <source>EMAIL</source> |
4579 | <target state="new">EMAIL</target> | 4669 | <target state="new">EMAIL</target> |
4580 | 4670 | ||
4581 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">69</context></context-group></trans-unit> | 4671 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">67</context></context-group></trans-unit> |
4582 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> | 4672 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> |
4583 | <source>DANGER ZONE</source> | 4673 | <source>DANGER ZONE</source> |
4584 | <target state="new">DANGER ZONE</target> | 4674 | <target state="new">DANGER ZONE</target> |
@@ -4828,7 +4918,31 @@ The link will expire within 1 hour.</target> | |||
4828 | <source>No ownership change request found.</source> | 4918 | <source>No ownership change request found.</source> |
4829 | <target state="new">No ownership change request found.</target> | 4919 | <target state="new">No ownership change request found.</target> |
4830 | 4920 | ||
4831 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit> | 4921 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit><trans-unit id="4247400351982331798" datatype="html"> |
4922 | <source>Account settings</source><target state="new">Account settings</target> | ||
4923 | <context-group purpose="location"> | ||
4924 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4925 | <context context-type="linenumber">37</context> | ||
4926 | </context-group> | ||
4927 | </trans-unit><trans-unit id="154062590416726309" datatype="html"> | ||
4928 | <source>Account playlists</source><target state="new">Account playlists</target> | ||
4929 | <context-group purpose="location"> | ||
4930 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4931 | <context context-type="linenumber">55</context> | ||
4932 | </context-group> | ||
4933 | </trans-unit><trans-unit id="6550287183367517925" datatype="html"> | ||
4934 | <source>Create new playlist</source><target state="new">Create new playlist</target> | ||
4935 | <context-group purpose="location"> | ||
4936 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4937 | <context context-type="linenumber">64</context> | ||
4938 | </context-group> | ||
4939 | </trans-unit><trans-unit id="2864486939135008600" datatype="html"> | ||
4940 | <source>Playlist elements</source><target state="new">Playlist elements</target> | ||
4941 | <context-group purpose="location"> | ||
4942 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4943 | <context context-type="linenumber">73</context> | ||
4944 | </context-group> | ||
4945 | </trans-unit> | ||
4832 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> | 4946 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> |
4833 | <source>My imports</source> | 4947 | <source>My imports</source> |
4834 | <target state="new">My imports</target> | 4948 | <target state="new">My imports</target> |
@@ -5103,7 +5217,25 @@ The link will expire within 1 hour.</target> | |||
5103 | <source>An error occurred.</source> | 5217 | <source>An error occurred.</source> |
5104 | <target state="new">An error occurred.</target> | 5218 | <target state="new">An error occurred.</target> |
5105 | 5219 | ||
5106 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 5220 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit><trans-unit id="9128669621822125729" datatype="html"> |
5221 | <source>Video channel videos</source><target state="new">Video channel videos</target> | ||
5222 | <context-group purpose="location"> | ||
5223 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5224 | <context context-type="linenumber">25</context> | ||
5225 | </context-group> | ||
5226 | </trans-unit><trans-unit id="3193822049276963401" datatype="html"> | ||
5227 | <source>Video channel playlists</source><target state="new">Video channel playlists</target> | ||
5228 | <context-group purpose="location"> | ||
5229 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5230 | <context context-type="linenumber">38</context> | ||
5231 | </context-group> | ||
5232 | </trans-unit><trans-unit id="4723526509708949088" datatype="html"> | ||
5233 | <source>About video channel</source><target state="new">About video channel</target> | ||
5234 | <context-group purpose="location"> | ||
5235 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5236 | <context context-type="linenumber">47</context> | ||
5237 | </context-group> | ||
5238 | </trans-unit> | ||
5107 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97" datatype="html"> | 5239 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97" datatype="html"> |
5108 | <source> | 5240 | <source> |
5109 | Request email for account verification | 5241 | Request email for account verification |
@@ -5226,7 +5358,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5226 | <source>Stats</source> | 5358 | <source>Stats</source> |
5227 | <target state="new">Stats</target> | 5359 | <target state="new">Stats</target> |
5228 | 5360 | ||
5229 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 5361 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
5230 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc" datatype="html"> | 5362 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc" datatype="html"> |
5231 | <source>Joined <x id="INTERPOLATION"/></source> | 5363 | <source>Joined <x id="INTERPOLATION"/></source> |
5232 | <target state="new">Joined | 5364 | <target state="new">Joined |
@@ -5679,7 +5811,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5679 | <source>This instance does not have instances followings.</source> | 5811 | <source>This instance does not have instances followings.</source> |
5680 | <target state="new">This instance does not have instances followings.</target> | 5812 | <target state="new">This instance does not have instances followings.</target> |
5681 | 5813 | ||
5682 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit> | 5814 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit><trans-unit id="4195286790385468087" datatype="html"> |
5815 | <source>About this instance</source><target state="new">About this instance</target> | ||
5816 | <context-group purpose="location"> | ||
5817 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5818 | <context context-type="linenumber">26</context> | ||
5819 | </context-group> | ||
5820 | </trans-unit><trans-unit id="8773846522957677259" datatype="html"> | ||
5821 | <source>About PeerTube</source><target state="new">About PeerTube</target> | ||
5822 | <context-group purpose="location"> | ||
5823 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5824 | <context context-type="linenumber">38</context> | ||
5825 | </context-group> | ||
5826 | </trans-unit><trans-unit id="5782088737558028158" datatype="html"> | ||
5827 | <source>About follows</source><target state="new">About follows</target> | ||
5828 | <context-group purpose="location"> | ||
5829 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5830 | <context context-type="linenumber">47</context> | ||
5831 | </context-group> | ||
5832 | </trans-unit> | ||
5683 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> | 5833 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> |
5684 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> | 5834 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> |
5685 | <target state="new">Developed with ❤ by | 5835 | <target state="new">Developed with ❤ by |
@@ -5851,6 +6001,12 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5851 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 6001 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> |
5852 | <context context-type="linenumber">1</context> | 6002 | <context context-type="linenumber">1</context> |
5853 | </context-group> | 6003 | </context-group> |
6004 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
6005 | <source>Get help</source><target state="new">Get help</target> | ||
6006 | <context-group purpose="location"> | ||
6007 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | ||
6008 | <context context-type="linenumber">16</context> | ||
6009 | </context-group> | ||
5854 | </trans-unit> | 6010 | </trans-unit> |
5855 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1" datatype="html"> | 6011 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1" datatype="html"> |
5856 | <source> | 6012 | <source> |
@@ -5985,7 +6141,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5985 | 6141 | ||
5986 | </target> | 6142 | </target> |
5987 | 6143 | ||
5988 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 6144 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit><trans-unit id="3301086086650990787" datatype="html"> |
6145 | <source>Register</source><target state="new">Register</target> | ||
6146 | <context-group purpose="location"> | ||
6147 | <context context-type="sourcefile">../app/+signup/+register/register-routing.module.ts</context> | ||
6148 | <context context-type="linenumber">14</context> | ||
6149 | </context-group> | ||
6150 | </trans-unit> | ||
5989 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> | 6151 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> |
5990 | <source> | 6152 | <source> |
5991 | Sorry, we couldn't find the page you were looking for. | 6153 | Sorry, we couldn't find the page you were looking for. |
@@ -6010,7 +6172,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6010 | <target state="new">No description</target> | 6172 | <target state="new">No description</target> |
6011 | 6173 | ||
6012 | 6174 | ||
6013 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit> | 6175 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit><trans-unit id="819067926858619041" datatype="html"> |
6176 | <source>Account videos</source><target state="new">Account videos</target> | ||
6177 | <context-group purpose="location"> | ||
6178 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6179 | <context context-type="linenumber">29</context> | ||
6180 | </context-group> | ||
6181 | </trans-unit><trans-unit id="6823616469362610020" datatype="html"> | ||
6182 | <source>Account video channels</source><target state="new">Account video channels</target> | ||
6183 | <context-group purpose="location"> | ||
6184 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6185 | <context context-type="linenumber">42</context> | ||
6186 | </context-group> | ||
6187 | </trans-unit><trans-unit id="7678273613459026643" datatype="html"> | ||
6188 | <source>About account</source><target state="new">About account</target> | ||
6189 | <context-group purpose="location"> | ||
6190 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6191 | <context context-type="linenumber">51</context> | ||
6192 | </context-group> | ||
6193 | </trans-unit> | ||
6014 | <trans-unit id="3755500631176893489" datatype="html"> | 6194 | <trans-unit id="3755500631176893489" datatype="html"> |
6015 | <source>Published <x id="PH"/> videos</source> | 6195 | <source>Published <x id="PH"/> videos</source> |
6016 | <target state="new">Published | 6196 | <target state="new">Published |
@@ -6127,7 +6307,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6127 | <source>Configuration updated.</source> | 6307 | <source>Configuration updated.</source> |
6128 | <target state="new">Configuration updated.</target> | 6308 | <target state="new">Configuration updated.</target> |
6129 | 6309 | ||
6130 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit> | 6310 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit><trans-unit id="6284468333579755406" datatype="html"> |
6311 | <source>Edit custom configuration</source><target state="new">Edit custom configuration</target> | ||
6312 | <context-group purpose="location"> | ||
6313 | <context context-type="sourcefile">../app/+admin/config/config.routes.ts</context> | ||
6314 | <context context-type="linenumber">26</context> | ||
6315 | </context-group> | ||
6316 | </trans-unit> | ||
6131 | 6317 | ||
6132 | 6318 | ||
6133 | <trans-unit id="6549061957433635758" datatype="html"> | 6319 | <trans-unit id="6549061957433635758" datatype="html"> |
@@ -6606,7 +6792,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6606 | <x id="PH"/> updated. | 6792 | <x id="PH"/> updated. |
6607 | </target> | 6793 | </target> |
6608 | 6794 | ||
6609 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 6795 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit><trans-unit id="3229595422546554334" datatype="html"> |
6796 | <source>Jobs</source><target state="new">Jobs</target> | ||
6797 | <context-group purpose="location"> | ||
6798 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6799 | <context context-type="linenumber">26</context> | ||
6800 | </context-group> | ||
6801 | </trans-unit><trans-unit id="4804785061014590286" datatype="html"> | ||
6802 | <source>Logs</source><target state="new">Logs</target> | ||
6803 | <context-group purpose="location"> | ||
6804 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6805 | <context context-type="linenumber">37</context> | ||
6806 | </context-group> | ||
6807 | </trans-unit> | ||
6610 | <trans-unit id="3150704904301058778" datatype="html"> | 6808 | <trans-unit id="3150704904301058778" datatype="html"> |
6611 | <source>The plugin index is not available. Please retry later.</source> | 6809 | <source>The plugin index is not available. Please retry later.</source> |
6612 | <target state="new">The plugin index is not available. Please retry later.</target> | 6810 | <target state="new">The plugin index is not available. Please retry later.</target> |
@@ -6720,6 +6918,18 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6720 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> | 6918 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> |
6721 | <context context-type="linenumber">86</context> | 6919 | <context context-type="linenumber">86</context> |
6722 | </context-group> | 6920 | </context-group> |
6921 | </trans-unit><trans-unit id="2903648076838460070" datatype="html"> | ||
6922 | <source>Videos blocked</source><target state="new">Videos blocked</target> | ||
6923 | <context-group purpose="location"> | ||
6924 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6925 | <context context-type="linenumber">67</context> | ||
6926 | </context-group> | ||
6927 | </trans-unit><trans-unit id="7805059636749367886" datatype="html"> | ||
6928 | <source>Muted instances</source><target state="new">Muted instances</target> | ||
6929 | <context-group purpose="location"> | ||
6930 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6931 | <context context-type="linenumber">89</context> | ||
6932 | </context-group> | ||
6723 | </trans-unit> | 6933 | </trans-unit> |
6724 | <trans-unit id="5974506725502681113" datatype="html"> | 6934 | <trans-unit id="5974506725502681113" datatype="html"> |
6725 | <source>Password changed for user <x id="PH"/>.</source> | 6935 | <source>Password changed for user <x id="PH"/>.</source> |
@@ -6732,7 +6942,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6732 | <source>Update user password</source> | 6942 | <source>Update user password</source> |
6733 | <target state="new">Update user password</target> | 6943 | <target state="new">Update user password</target> |
6734 | 6944 | ||
6735 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit> | 6945 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit><trans-unit id="177544274549739411" datatype="html"> |
6946 | <source>Following list</source><target state="new">Following list</target> | ||
6947 | <context-group purpose="location"> | ||
6948 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6949 | <context context-type="linenumber">28</context> | ||
6950 | </context-group> | ||
6951 | </trans-unit><trans-unit id="8092429110007204784" datatype="html"> | ||
6952 | <source>Followers list</source><target state="new">Followers list</target> | ||
6953 | <context-group purpose="location"> | ||
6954 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6955 | <context context-type="linenumber">37</context> | ||
6956 | </context-group> | ||
6957 | </trans-unit> | ||
6736 | <trans-unit id="780323526182667308" datatype="html"> | 6958 | <trans-unit id="780323526182667308" datatype="html"> |
6737 | <source>User <x id="PH"/> updated.</source> | 6959 | <source>User <x id="PH"/> updated.</source> |
6738 | <target state="new">User | 6960 | <target state="new">User |
@@ -6751,7 +6973,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6751 | <x id="PH"/>. | 6973 | <x id="PH"/>. |
6752 | </target> | 6974 | </target> |
6753 | 6975 | ||
6754 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="8564701209009684429" datatype="html"> | 6976 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="7483807629538115183" datatype="html"> |
6977 | <source>Users list</source><target state="new">Users list</target> | ||
6978 | <context-group purpose="location"> | ||
6979 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6980 | <context context-type="linenumber">27</context> | ||
6981 | </context-group> | ||
6982 | </trans-unit><trans-unit id="1525334987774465166" datatype="html"> | ||
6983 | <source>Create a user</source><target state="new">Create a user</target> | ||
6984 | <context-group purpose="location"> | ||
6985 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6986 | <context context-type="linenumber">36</context> | ||
6987 | </context-group> | ||
6988 | </trans-unit><trans-unit id="5552039423287890133" datatype="html"> | ||
6989 | <source>Update a user</source><target state="new">Update a user</target> | ||
6990 | <context-group purpose="location"> | ||
6991 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6992 | <context context-type="linenumber">48</context> | ||
6993 | </context-group> | ||
6994 | </trans-unit><trans-unit id="8564701209009684429" datatype="html"> | ||
6755 | <source>Federation</source><target state="new">Federation</target> | 6995 | <source>Federation</source><target state="new">Federation</target> |
6756 | <context-group purpose="location"> | 6996 | <context-group purpose="location"> |
6757 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> | 6997 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> |
@@ -7105,7 +7345,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7105 | <source>Views for the day</source> | 7345 | <source>Views for the day</source> |
7106 | <target state="new">Views for the day</target> | 7346 | <target state="new">Views for the day</target> |
7107 | 7347 | ||
7108 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit> | 7348 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit><trans-unit id="4707367314920217630" datatype="html"> |
7349 | <source>Create new video channel</source><target state="new">Create new video channel</target> | ||
7350 | <context-group purpose="location"> | ||
7351 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7352 | <context context-type="linenumber">22</context> | ||
7353 | </context-group> | ||
7354 | </trans-unit><trans-unit id="6059091237492573541" datatype="html"> | ||
7355 | <source>Update video channel</source><target state="new">Update video channel</target> | ||
7356 | <context-group purpose="location"> | ||
7357 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7358 | <context context-type="linenumber">31</context> | ||
7359 | </context-group> | ||
7360 | </trans-unit><trans-unit id="6595008830732269870" datatype="html"> | ||
7361 | <source>Not found</source><target state="new">Not found</target> | ||
7362 | <context-group purpose="location"> | ||
7363 | <context context-type="sourcefile">../app/+page-not-found/page-not-found-routing.module.ts</context> | ||
7364 | <context context-type="linenumber">13</context> | ||
7365 | </context-group> | ||
7366 | </trans-unit> | ||
7109 | <trans-unit id="5032453707232754344" datatype="html"> | 7367 | <trans-unit id="5032453707232754344" datatype="html"> |
7110 | <source>Playlist <x id="PH"/> created.</source> | 7368 | <source>Playlist <x id="PH"/> created.</source> |
7111 | <target state="new">Playlist | 7369 | <target state="new">Playlist |
@@ -7123,7 +7381,31 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7123 | <source>Update playlist</source> | 7381 | <source>Update playlist</source> |
7124 | <target state="new">Update playlist</target> | 7382 | <target state="new">Update playlist</target> |
7125 | 7383 | ||
7126 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-video-playlists/my-account-video-playlist-elements.component.ts</context><context context-type="linenumber">48</context></context-group></trans-unit> | 7384 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">82</context></context-group></trans-unit><trans-unit id="3410331549417637431" datatype="html"> |
7385 | <source>Account video imports</source><target state="new">Account video imports</target> | ||
7386 | <context-group purpose="location"> | ||
7387 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7388 | <context context-type="linenumber">105</context> | ||
7389 | </context-group> | ||
7390 | </trans-unit><trans-unit id="4434998055872154420" datatype="html"> | ||
7391 | <source>Account subscriptions</source><target state="new">Account subscriptions</target> | ||
7392 | <context-group purpose="location"> | ||
7393 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7394 | <context context-type="linenumber">114</context> | ||
7395 | </context-group> | ||
7396 | </trans-unit><trans-unit id="6019411775996586321" datatype="html"> | ||
7397 | <source>Videos history</source><target state="new">Videos history</target> | ||
7398 | <context-group purpose="location"> | ||
7399 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7400 | <context context-type="linenumber">150</context> | ||
7401 | </context-group> | ||
7402 | </trans-unit><trans-unit id="5851560788527570644" datatype="html"> | ||
7403 | <source>Notifications</source><target state="new">Notifications</target> | ||
7404 | <context-group purpose="location"> | ||
7405 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7406 | <context context-type="linenumber">163</context> | ||
7407 | </context-group> | ||
7408 | </trans-unit> | ||
7127 | <trans-unit id="104404386496394770" datatype="html"> | 7409 | <trans-unit id="104404386496394770" datatype="html"> |
7128 | <source>Delete playlist</source> | 7410 | <source>Delete playlist</source> |
7129 | <target state="new">Delete playlist</target> | 7411 | <target state="new">Delete playlist</target> |
@@ -7277,7 +7559,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7277 | <x id="PH"/>. | 7559 | <x id="PH"/>. |
7278 | </target> | 7560 | </target> |
7279 | 7561 | ||
7280 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit> | 7562 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit><trans-unit id="8231550792139699065" datatype="html"> |
7563 | <source>Verify account email</source><target state="new">Verify account email</target> | ||
7564 | <context-group purpose="location"> | ||
7565 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7566 | <context context-type="linenumber">17</context> | ||
7567 | </context-group> | ||
7568 | </trans-unit><trans-unit id="4997281272800290390" datatype="html"> | ||
7569 | <source>Verify account ask send email</source><target state="new">Verify account ask send email</target> | ||
7570 | <context-group purpose="location"> | ||
7571 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7572 | <context context-type="linenumber">26</context> | ||
7573 | </context-group> | ||
7574 | </trans-unit> | ||
7281 | <trans-unit id="4180693983967989981" datatype="html"> | 7575 | <trans-unit id="4180693983967989981" datatype="html"> |
7282 | <source>Unable to find user id or verification string.</source> | 7576 | <source>Unable to find user id or verification string.</source> |
7283 | <target state="new">Unable to find user id or verification string.</target> | 7577 | <target state="new">Unable to find user id or verification string.</target> |
@@ -7402,27 +7696,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7402 | <source>any language</source> | 7696 | <source>any language</source> |
7403 | <target state="new">any language</target> | 7697 | <target state="new">any language</target> |
7404 | 7698 | ||
7405 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">202</context></context-group></trans-unit> | 7699 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">229</context></context-group></trans-unit> |
7406 | <trans-unit id="5633144232269377096" datatype="html"> | 7700 | <trans-unit id="5633144232269377096" datatype="html"> |
7407 | <source>hide</source> | 7701 | <source>hide</source> |
7408 | <target state="new">hide</target> | 7702 | <target state="new">hide</target> |
7409 | 7703 | ||
7410 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">118</context></context-group></trans-unit> | 7704 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> |
7411 | <trans-unit id="8603861867909474404" datatype="html"> | 7705 | <trans-unit id="8603861867909474404" datatype="html"> |
7412 | <source>blur</source> | 7706 | <source>blur</source> |
7413 | <target state="new">blur</target> | 7707 | <target state="new">blur</target> |
7414 | 7708 | ||
7415 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> | 7709 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> |
7416 | <trans-unit id="4534458451100881847" datatype="html"> | 7710 | <trans-unit id="4534458451100881847" datatype="html"> |
7417 | <source>display</source> | 7711 | <source>display</source> |
7418 | <target state="new">display</target> | 7712 | <target state="new">display</target> |
7419 | 7713 | ||
7420 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> | 7714 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">127</context></context-group></trans-unit> |
7421 | <trans-unit id="4467323362722952678" datatype="html"> | 7715 | <trans-unit id="4467323362722952678" datatype="html"> |
7422 | <source>Unknown</source> | 7716 | <source>Unknown</source> |
7423 | <target state="new">Unknown</target> | 7717 | <target state="new">Unknown</target> |
7424 | 7718 | ||
7425 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">190</context></context-group></trans-unit> | 7719 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">193</context></context-group></trans-unit> |
7426 | <trans-unit id="8781423666414310853" datatype="html"> | 7720 | <trans-unit id="8781423666414310853" datatype="html"> |
7427 | <source>Your password has been successfully reset!</source> | 7721 | <source>Your password has been successfully reset!</source> |
7428 | <target state="new">Your password has been successfully reset!</target> | 7722 | <target state="new">Your password has been successfully reset!</target> |
@@ -8542,27 +8836,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8542 | <source>Emphasis</source> | 8836 | <source>Emphasis</source> |
8543 | <target state="new">Emphasis</target> | 8837 | <target state="new">Emphasis</target> |
8544 | 8838 | ||
8545 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">77</context></context-group></trans-unit> | 8839 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> |
8546 | <trans-unit id="7565716024468232322" datatype="html"> | 8840 | <trans-unit id="7565716024468232322" datatype="html"> |
8547 | <source>Links</source> | 8841 | <source>Links</source> |
8548 | <target state="new">Links</target> | 8842 | <target state="new">Links</target> |
8549 | 8843 | ||
8550 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">78</context></context-group></trans-unit> | 8844 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> |
8551 | <trans-unit id="7838476952710404110" datatype="html"> | 8845 | <trans-unit id="7838476952710404110" datatype="html"> |
8552 | <source>New lines</source> | 8846 | <source>New lines</source> |
8553 | <target state="new">New lines</target> | 8847 | <target state="new">New lines</target> |
8554 | 8848 | ||
8555 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 8849 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">83</context></context-group></trans-unit> |
8556 | <trans-unit id="8756167649220050929" datatype="html"> | 8850 | <trans-unit id="8756167649220050929" datatype="html"> |
8557 | <source>Lists</source> | 8851 | <source>Lists</source> |
8558 | <target state="new">Lists</target> | 8852 | <target state="new">Lists</target> |
8559 | 8853 | ||
8560 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">80</context></context-group></trans-unit> | 8854 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">84</context></context-group></trans-unit> |
8561 | <trans-unit id="414887388288176527" datatype="html"> | 8855 | <trans-unit id="414887388288176527" datatype="html"> |
8562 | <source>Images</source> | 8856 | <source>Images</source> |
8563 | <target state="new">Images</target> | 8857 | <target state="new">Images</target> |
8564 | 8858 | ||
8565 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> | 8859 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">85</context></context-group></trans-unit> |
8566 | <trans-unit id="5708680277917691451" datatype="html"> | 8860 | <trans-unit id="5708680277917691451" datatype="html"> |
8567 | <source> | 8861 | <source> |
8568 | <x id="PH"/> users banned. | 8862 | <x id="PH"/> users banned. |
@@ -8958,7 +9252,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8958 | <source>Moderator</source> | 9252 | <source>Moderator</source> |
8959 | <target state="new">Moderator</target> | 9253 | <target state="new">Moderator</target> |
8960 | 9254 | ||
8961 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">386</context></context-group></trans-unit> | 9255 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">384</context></context-group></trans-unit> |
8962 | <trans-unit id="3723085768598852106" datatype="html"> | 9256 | <trans-unit id="3723085768598852106" datatype="html"> |
8963 | <source>Video removed from | 9257 | <source>Video removed from |
8964 | <x id="PH"/> | 9258 | <x id="PH"/> |
@@ -9026,7 +9320,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9026 | <source>Do you really want to delete this comment?</source> | 9320 | <source>Do you really want to delete this comment?</source> |
9027 | <target state="new">Do you really want to delete this comment?</target> | 9321 | <target state="new">Do you really want to delete this comment?</target> |
9028 | 9322 | ||
9029 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">434</context></context-group></trans-unit> | 9323 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">166</context></context-group></trans-unit> |
9030 | <trans-unit id="7837272126865175984" datatype="html"> | 9324 | <trans-unit id="7837272126865175984" datatype="html"> |
9031 | <source>Comment deleted.</source> | 9325 | <source>Comment deleted.</source> |
9032 | <target state="new">Comment deleted.</target> | 9326 | <target state="new">Comment deleted.</target> |
@@ -9138,9 +9432,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9138 | 9432 | ||
9139 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> | 9433 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> |
9140 | <source>Report</source><target state="new">Report</target> | 9434 | <source>Report</source><target state="new">Report</target> |
9435 | |||
9436 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="4814285799071780083" datatype="html"> | ||
9437 | <source>Remove</source><target state="new">Remove</target> | ||
9141 | <context-group purpose="location"> | 9438 | <context-group purpose="location"> |
9142 | <context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> | 9439 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> |
9143 | <context context-type="linenumber">286</context> | 9440 | <context context-type="linenumber">179</context> |
9441 | </context-group> | ||
9442 | </trans-unit><trans-unit id="6871668720687277843" datatype="html"> | ||
9443 | <source>Remove & re-draft</source><target state="new">Remove & re-draft</target> | ||
9444 | <context-group purpose="location"> | ||
9445 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> | ||
9446 | <context context-type="linenumber">187</context> | ||
9144 | </context-group> | 9447 | </context-group> |
9145 | </trans-unit> | 9448 | </trans-unit> |
9146 | <trans-unit id="4903651219400691248" datatype="html"> | 9449 | <trans-unit id="4903651219400691248" datatype="html"> |
@@ -9242,22 +9545,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9242 | <source>Only I can see this video</source> | 9545 | <source>Only I can see this video</source> |
9243 | <target state="new">Only I can see this video</target> | 9546 | <target state="new">Only I can see this video</target> |
9244 | 9547 | ||
9245 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">340</context></context-group></trans-unit> | 9548 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">341</context></context-group></trans-unit> |
9246 | <trans-unit id="6767380569816110388" datatype="html"> | 9549 | <trans-unit id="6767380569816110388" datatype="html"> |
9247 | <source>Only shareable via a private link</source> | 9550 | <source>Only shareable via a private link</source> |
9248 | <target state="new">Only shareable via a private link</target> | 9551 | <target state="new">Only shareable via a private link</target> |
9249 | 9552 | ||
9250 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">344</context></context-group></trans-unit> | 9553 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">345</context></context-group></trans-unit> |
9251 | <trans-unit id="6828965264297239528" datatype="html"> | 9554 | <trans-unit id="6828965264297239528" datatype="html"> |
9252 | <source>Anyone can see this video</source> | 9555 | <source>Anyone can see this video</source> |
9253 | <target state="new">Anyone can see this video</target> | 9556 | <target state="new">Anyone can see this video</target> |
9254 | 9557 | ||
9255 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">348</context></context-group></trans-unit> | 9558 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">349</context></context-group></trans-unit> |
9256 | <trans-unit id="1425933035739773115" datatype="html"> | 9559 | <trans-unit id="1425933035739773115" datatype="html"> |
9257 | <source>Only users of this instance can see this video</source> | 9560 | <source>Only users of this instance can see this video</source> |
9258 | <target state="new">Only users of this instance can see this video</target> | 9561 | <target state="new">Only users of this instance can see this video</target> |
9259 | 9562 | ||
9260 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">352</context></context-group></trans-unit> | 9563 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">353</context></context-group></trans-unit> |
9261 | <trans-unit id="5210096066382592800" datatype="html"> | 9564 | <trans-unit id="5210096066382592800" datatype="html"> |
9262 | <source>Video to import updated.</source> | 9565 | <source>Video to import updated.</source> |
9263 | <target state="new">Video to import updated.</target> | 9566 | <target state="new">Video to import updated.</target> |
@@ -9337,17 +9640,29 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9337 | <target state="new">Report comment</target> | 9640 | <target state="new">Report comment</target> |
9338 | 9641 | ||
9339 | 9642 | ||
9340 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 9643 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/report-modals/comment-report.component.ts</context><context context-type="linenumber">51</context></context-group></trans-unit> |
9341 | <trans-unit id="3691787517663044217" datatype="html"> | 9644 | <trans-unit id="3691787517663044217" datatype="html"> |
9342 | <source> The deletion will be sent to remote instances so they can reflect the change.</source> | 9645 | <source> The deletion will be sent to remote instances so they can reflect the change.</source> |
9343 | <target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> | 9646 | <target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> |
9344 | 9647 | ||
9345 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">163</context></context-group></trans-unit> | 9648 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">169</context></context-group></trans-unit> |
9346 | <trans-unit id="7321800851971795962" datatype="html"> | 9649 | <trans-unit id="7321800851971795962" datatype="html"> |
9347 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source> | 9650 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source> |
9348 | <target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> | 9651 | <target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> |
9349 | 9652 | ||
9350 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">165</context></context-group></trans-unit> | 9653 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="5964038603724691720" datatype="html"> |
9654 | <source>Delete and re-draft</source><target state="new">Delete and re-draft</target> | ||
9655 | <context-group purpose="location"> | ||
9656 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | ||
9657 | <context context-type="linenumber">197</context> | ||
9658 | </context-group> | ||
9659 | </trans-unit><trans-unit id="7163633882758007711" datatype="html"> | ||
9660 | <source>Do you really want to delete and re-draft this comment?</source><target state="new">Do you really want to delete and re-draft this comment?</target> | ||
9661 | <context-group purpose="location"> | ||
9662 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | ||
9663 | <context context-type="linenumber">197</context> | ||
9664 | </context-group> | ||
9665 | </trans-unit> | ||
9351 | <trans-unit id="6775540171466219199" datatype="html"> | 9666 | <trans-unit id="6775540171466219199" datatype="html"> |
9352 | <source>Stop autoplaying next video</source> | 9667 | <source>Stop autoplaying next video</source> |
9353 | <target state="new">Stop autoplaying next video</target> | 9668 | <target state="new">Stop autoplaying next video</target> |
@@ -9509,6 +9824,36 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9509 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> | 9824 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> |
9510 | <context context-type="linenumber">36</context> | 9825 | <context context-type="linenumber">36</context> |
9511 | </context-group> | 9826 | </context-group> |
9827 | </trans-unit><trans-unit id="4668975178372693951" datatype="html"> | ||
9828 | <source>Discover videos</source><target state="new">Discover videos</target> | ||
9829 | <context-group purpose="location"> | ||
9830 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9831 | <context context-type="linenumber">23</context> | ||
9832 | </context-group> | ||
9833 | </trans-unit><trans-unit id="8067135025051844577" datatype="html"> | ||
9834 | <source>Trending videos</source><target state="new">Trending videos</target> | ||
9835 | <context-group purpose="location"> | ||
9836 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9837 | <context context-type="linenumber">32</context> | ||
9838 | </context-group> | ||
9839 | </trans-unit><trans-unit id="664221386829541948" datatype="html"> | ||
9840 | <source>Recently added videos</source><target state="new">Recently added videos</target> | ||
9841 | <context-group purpose="location"> | ||
9842 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9843 | <context context-type="linenumber">58</context> | ||
9844 | </context-group> | ||
9845 | </trans-unit><trans-unit id="8212906256415538361" datatype="html"> | ||
9846 | <source>Upload a video</source><target state="new">Upload a video</target> | ||
9847 | <context-group purpose="location"> | ||
9848 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9849 | <context context-type="linenumber">97</context> | ||
9850 | </context-group> | ||
9851 | </trans-unit><trans-unit id="7590784934397800835" datatype="html"> | ||
9852 | <source>Edit a video</source><target state="new">Edit a video</target> | ||
9853 | <context-group purpose="location"> | ||
9854 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9855 | <context context-type="linenumber">106</context> | ||
9856 | </context-group> | ||
9512 | </trans-unit> | 9857 | </trans-unit> |
9513 | </body> | 9858 | </body> |
9514 | </file> | 9859 | </file> |
diff --git a/client/src/locale/angular.th-TH.xlf b/client/src/locale/angular.th-TH.xlf index 593507605..ff859d215 100644 --- a/client/src/locale/angular.th-TH.xlf +++ b/client/src/locale/angular.th-TH.xlf | |||
@@ -296,7 +296,7 @@ | |||
296 | <target>ตัวเลือก</target> | 296 | <target>ตัวเลือก</target> |
297 | 297 | ||
298 | 298 | ||
299 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 299 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">48</context></context-group></trans-unit> |
300 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d"> | 300 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d"> |
301 | <source>Start at</source> | 301 | <source>Start at</source> |
302 | <target>เริ่มต้นที่</target> | 302 | <target>เริ่มต้นที่</target> |
@@ -428,7 +428,7 @@ | |||
428 | ยกเลิก | 428 | ยกเลิก |
429 | </target> | 429 | </target> |
430 | 430 | ||
431 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> | 431 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit> |
432 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd"> | 432 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd"> |
433 | <source>Download</source> | 433 | <source>Download</source> |
434 | <target>ดาวน์โหลด</target> | 434 | <target>ดาวน์โหลด</target> |
@@ -547,7 +547,7 @@ | |||
547 | 547 | ||
548 | 548 | ||
549 | 549 | ||
550 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 550 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
551 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc"> | 551 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc"> |
552 | <source>Edit starts/stops at</source> | 552 | <source>Edit starts/stops at</source> |
553 | <target>แก้ไขช่วงเวลาเริ่ม/จบ</target> | 553 | <target>แก้ไขช่วงเวลาเริ่ม/จบ</target> |
@@ -587,7 +587,7 @@ | |||
587 | 587 | ||
588 | 588 | ||
589 | 589 | ||
590 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> | 590 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
591 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> | 591 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> |
592 | <source>Edit</source> | 592 | <source>Edit</source> |
593 | <target>แก้ไข</target> | 593 | <target>แก้ไข</target> |
@@ -612,17 +612,10 @@ | |||
612 | <target>ตัวอย่างเต็ม</target> | 612 | <target>ตัวอย่างเต็ม</target> |
613 | 613 | ||
614 | <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></trans-unit> | 614 | <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></trans-unit> |
615 | <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f"> | 615 | <trans-unit id="8644431249513874405" datatype="html"> |
616 | <source>Get help</source> | ||
617 | <target>ขอความช่วยเหลือ</target> | ||
618 | |||
619 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit><trans-unit id="8644431249513874405" datatype="html"> | ||
620 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> | 616 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> |
621 | <context-group purpose="location"> | 617 | |
622 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 618 | <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></trans-unit> |
623 | <context context-type="linenumber">71</context> | ||
624 | </context-group> | ||
625 | </trans-unit> | ||
626 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> | 619 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> |
627 | <source>Recommended</source> | 620 | <source>Recommended</source> |
628 | <target state="new">Recommended</target> | 621 | <target state="new">Recommended</target> |
@@ -662,7 +655,7 @@ | |||
662 | <source>PROFILE SETTINGS</source> | 655 | <source>PROFILE SETTINGS</source> |
663 | <target state="new">PROFILE SETTINGS</target> | 656 | <target state="new">PROFILE SETTINGS</target> |
664 | 657 | ||
665 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 658 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">12</context></context-group></trans-unit> |
666 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3"> | 659 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3"> |
667 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> | 660 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> |
668 | <target> | 661 | <target> |
@@ -828,11 +821,8 @@ | |||
828 | 821 | ||
829 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> | 822 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> |
830 | <source>User</source><target state="new">User</target> | 823 | <source>User</source><target state="new">User</target> |
831 | <context-group purpose="location"> | 824 | |
832 | <context context-type="sourcefile">../app/core/users/user.service.ts</context> | 825 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit> |
833 | <context context-type="linenumber">384</context> | ||
834 | </context-group> | ||
835 | </trans-unit> | ||
836 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0"> | 826 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0"> |
837 | <source>Ban</source> | 827 | <source>Ban</source> |
838 | <target>แบน</target> | 828 | <target>แบน</target> |
@@ -1304,89 +1294,89 @@ The link will expire within 1 hour.</target> | |||
1304 | <source>Account settings</source> | 1294 | <source>Account settings</source> |
1305 | <target state="translated">การตั้งค่าบัญชี</target> | 1295 | <target state="translated">การตั้งค่าบัญชี</target> |
1306 | 1296 | ||
1307 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 1297 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
1308 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> | 1298 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> |
1309 | <source>Channels settings</source> | 1299 | <source>Channels settings</source> |
1310 | <target state="translated">การตั้งค่าช่อง</target> | 1300 | <target state="translated">การตั้งค่าช่อง</target> |
1311 | 1301 | ||
1312 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 1302 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> |
1313 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> | 1303 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> |
1314 | <source>Interface:</source> | 1304 | <source>Interface:</source> |
1315 | <target state="new">Interface:</target> | 1305 | <target state="new">Interface:</target> |
1316 | 1306 | ||
1317 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 1307 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1318 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> | 1308 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> |
1319 | <source>Videos:</source> | 1309 | <source>Videos:</source> |
1320 | <target state="new">Videos:</target> | 1310 | <target state="new">Videos:</target> |
1321 | 1311 | ||
1322 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 1312 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> |
1323 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> | 1313 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> |
1324 | <source>Sensitive:</source> | 1314 | <source>Sensitive:</source> |
1325 | <target state="new">Sensitive:</target> | 1315 | <target state="new">Sensitive:</target> |
1326 | 1316 | ||
1327 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 1317 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">54</context></context-group></trans-unit> |
1328 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1318 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> |
1329 | <source>Interface: <x id="INTERPOLATION"/></source> | 1319 | <source>Interface: <x id="INTERPOLATION"/></source> |
1330 | <target state="new">Interface: | 1320 | <target state="new">Interface: |
1331 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> | 1321 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> |
1332 | </target> | 1322 | </target> |
1333 | 1323 | ||
1334 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">156</context></context-group></trans-unit> | 1324 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> |
1335 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1325 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1336 | <source>Help share videos</source> | 1326 | <source>Help share videos</source> |
1337 | <target state="new">Help share videos</target> | 1327 | <target state="new">Help share videos</target> |
1338 | 1328 | ||
1339 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> | 1329 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
1340 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> | 1330 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> |
1341 | <source>More account settings</source> | 1331 | <source>More account settings</source> |
1342 | <target state="translated">การตั้งค่าบัญชีเพิ่มเติม</target> | 1332 | <target state="translated">การตั้งค่าบัญชีเพิ่มเติม</target> |
1343 | 1333 | ||
1344 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> | 1334 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> |
1345 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> | 1335 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> |
1346 | <source>Keyboard shortcuts</source> | 1336 | <source>Keyboard shortcuts</source> |
1347 | <target state="translated">ปุ่มลัดคีย์บอร์ด</target> | 1337 | <target state="translated">ปุ่มลัดคีย์บอร์ด</target> |
1348 | 1338 | ||
1349 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 1339 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">72</context></context-group></trans-unit> |
1350 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> | 1340 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> |
1351 | <source>Help</source> | 1341 | <source>Help</source> |
1352 | <target state="translated">ช่วยเหลือ</target> | 1342 | <target state="translated">ช่วยเหลือ</target> |
1353 | 1343 | ||
1354 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1344 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1355 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> | 1345 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> |
1356 | <source>Get help using PeerTube</source> | 1346 | <source>Get help using PeerTube</source> |
1357 | <target state="translated">ขอความช่วยเหลือในการใช้งาน PeerTube</target> | 1347 | <target state="translated">ขอความช่วยเหลือในการใช้งาน PeerTube</target> |
1358 | 1348 | ||
1359 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">161</context></context-group></trans-unit> | 1349 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">167</context></context-group></trans-unit> |
1360 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> | 1350 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> |
1361 | <source>Shortcuts</source> | 1351 | <source>Shortcuts</source> |
1362 | <target state="translated">ปุ่มลัด</target> | 1352 | <target state="translated">ปุ่มลัด</target> |
1363 | 1353 | ||
1364 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1354 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1365 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> | 1355 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> |
1366 | <source>powered by PeerTube</source> | 1356 | <source>powered by PeerTube</source> |
1367 | <target state="new">powered by PeerTube</target> | 1357 | <target state="new">powered by PeerTube</target> |
1368 | 1358 | ||
1369 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | 1359 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">177</context></context-group></trans-unit> |
1370 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> | 1360 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> |
1371 | <source>powered by PeerTube - CopyLeft 2015-2020</source> | 1361 | <source>powered by PeerTube - CopyLeft 2015-2020</source> |
1372 | <target state="new">powered by PeerTube - CopyLeft 2015-2020</target> | 1362 | <target state="new">powered by PeerTube - CopyLeft 2015-2020</target> |
1373 | 1363 | ||
1374 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> | 1364 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">176</context></context-group></trans-unit> |
1375 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344"> | 1365 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344"> |
1376 | <source>Log out</source> | 1366 | <source>Log out</source> |
1377 | <target>ออกจากระบบ</target> | 1367 | <target>ออกจากระบบ</target> |
1378 | 1368 | ||
1379 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">70</context></context-group></trans-unit> | 1369 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit> |
1380 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> | 1370 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> |
1381 | <source>Create an account</source> | 1371 | <source>Create an account</source> |
1382 | <target>สร้างบัญชีผู้ใช้</target> | 1372 | <target>สร้างบัญชีผู้ใช้</target> |
1383 | 1373 | ||
1384 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">78</context></context-group></trans-unit> | 1374 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
1385 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> | 1375 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> |
1386 | <source>MY LIBRARY</source> | 1376 | <source>MY LIBRARY</source> |
1387 | <target state="new">MY LIBRARY</target> | 1377 | <target state="new">MY LIBRARY</target> |
1388 | 1378 | ||
1389 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 1379 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">88</context></context-group></trans-unit> |
1390 | <trans-unit id="6371572688505952303"> | 1380 | <trans-unit id="6371572688505952303"> |
1391 | <source>My library</source> | 1381 | <source>My library</source> |
1392 | <target>คลังของฉัน</target> | 1382 | <target>คลังของฉัน</target> |
@@ -1426,22 +1416,22 @@ The link will expire within 1 hour.</target> | |||
1426 | <source>Videos</source> | 1416 | <source>Videos</source> |
1427 | <target>วิดีโอ</target> | 1417 | <target>วิดีโอ</target> |
1428 | 1418 | ||
1429 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">86</context></context-group></trans-unit> | 1419 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">92</context></context-group></trans-unit> |
1430 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> | 1420 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> |
1431 | <source>Playlists</source> | 1421 | <source>Playlists</source> |
1432 | <target>เพลย์ลิสต์</target> | 1422 | <target>เพลย์ลิสต์</target> |
1433 | 1423 | ||
1434 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">91</context></context-group></trans-unit> | 1424 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">97</context></context-group></trans-unit> |
1435 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2"> | 1425 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2"> |
1436 | <source>Subscriptions</source> | 1426 | <source>Subscriptions</source> |
1437 | <target>การติดตาม</target> | 1427 | <target>การติดตาม</target> |
1438 | 1428 | ||
1439 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 1429 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">102</context></context-group></trans-unit> |
1440 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8"> | 1430 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8"> |
1441 | <source>History</source> | 1431 | <source>History</source> |
1442 | <target>ประวัติ</target> | 1432 | <target>ประวัติ</target> |
1443 | 1433 | ||
1444 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit> | 1434 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">107</context></context-group></trans-unit> |
1445 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> | 1435 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> |
1446 | <source>VIDEOS</source> | 1436 | <source>VIDEOS</source> |
1447 | <target state="translated">วิดีโอ</target> | 1437 | <target state="translated">วิดีโอ</target> |
@@ -1453,27 +1443,27 @@ The link will expire within 1 hour.</target> | |||
1453 | <target>สำรวจ</target> | 1443 | <target>สำรวจ</target> |
1454 | 1444 | ||
1455 | 1445 | ||
1456 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">111</context></context-group></trans-unit> | 1446 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">117</context></context-group></trans-unit> |
1457 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> | 1447 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> |
1458 | <source>Trending</source> | 1448 | <source>Trending</source> |
1459 | <target>มาแรง</target> | 1449 | <target>มาแรง</target> |
1460 | 1450 | ||
1461 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">116</context></context-group></trans-unit> | 1451 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">122</context></context-group></trans-unit> |
1462 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> | 1452 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> |
1463 | <source>Most liked</source> | 1453 | <source>Most liked</source> |
1464 | <target state="translated">ชอบมากที่สุด</target> | 1454 | <target state="translated">ชอบมากที่สุด</target> |
1465 | 1455 | ||
1466 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">121</context></context-group></trans-unit> | 1456 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">127</context></context-group></trans-unit> |
1467 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> | 1457 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> |
1468 | <source>Recently added</source> | 1458 | <source>Recently added</source> |
1469 | <target>เพิ่งเผยแพร่</target> | 1459 | <target>เพิ่งเผยแพร่</target> |
1470 | 1460 | ||
1471 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">126</context></context-group></trans-unit> | 1461 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">132</context></context-group></trans-unit> |
1472 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> | 1462 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> |
1473 | <source>Administration</source> | 1463 | <source>Administration</source> |
1474 | <target>การดูแล</target> | 1464 | <target>การดูแล</target> |
1475 | 1465 | ||
1476 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">140</context></context-group></trans-unit> | 1466 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">146</context></context-group></trans-unit> |
1477 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> | 1467 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> |
1478 | <source>About</source> | 1468 | <source>About</source> |
1479 | <target>เกี่ยวกับ</target> | 1469 | <target>เกี่ยวกับ</target> |
@@ -1484,7 +1474,7 @@ The link will expire within 1 hour.</target> | |||
1484 | <source>Contact</source> | 1474 | <source>Contact</source> |
1485 | <target state="translated">ติดต่อ</target> | 1475 | <target state="translated">ติดต่อ</target> |
1486 | 1476 | ||
1487 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">160</context></context-group></trans-unit> | 1477 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">166</context></context-group></trans-unit> |
1488 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771"> | 1478 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771"> |
1489 | <source>View your notifications</source> | 1479 | <source>View your notifications</source> |
1490 | <target>ดูการแจ้งเตือนของคุณ</target> | 1480 | <target>ดูการแจ้งเตือนของคุณ</target> |
@@ -1511,7 +1501,7 @@ The link will expire within 1 hour.</target> | |||
1511 | <source>See all your notifications</source> | 1501 | <source>See all your notifications</source> |
1512 | <target>ดูการแจ้งเตือนทั้งหมด</target> | 1502 | <target>ดูการแจ้งเตือนทั้งหมด</target> |
1513 | 1503 | ||
1514 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 1504 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">40</context></context-group></trans-unit> |
1515 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> | 1505 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> |
1516 | <source>Search videos, channels…</source> | 1506 | <source>Search videos, channels…</source> |
1517 | <target state="translated">ค้นหาวิดีโอ, ช่อง…</target> | 1507 | <target state="translated">ค้นหาวิดีโอ, ช่อง…</target> |
@@ -1837,22 +1827,22 @@ The link will expire within 1 hour.</target> | |||
1837 | <source>FAQ</source> | 1827 | <source>FAQ</source> |
1838 | <target state="new">FAQ</target> | 1828 | <target state="new">FAQ</target> |
1839 | 1829 | ||
1840 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">163</context></context-group></trans-unit> | 1830 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
1841 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> | 1831 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> |
1842 | <source>Frequently asked questions about PeerTube</source> | 1832 | <source>Frequently asked questions about PeerTube</source> |
1843 | <target state="new">Frequently asked questions about PeerTube</target> | 1833 | <target state="new">Frequently asked questions about PeerTube</target> |
1844 | 1834 | ||
1845 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1835 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1846 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> | 1836 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> |
1847 | <source>API</source> | 1837 | <source>API</source> |
1848 | <target state="new">API</target> | 1838 | <target state="new">API</target> |
1849 | 1839 | ||
1850 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1840 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1851 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> | 1841 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> |
1852 | <source>API documentation</source> | 1842 | <source>API documentation</source> |
1853 | <target state="new">API documentation</target> | 1843 | <target state="new">API documentation</target> |
1854 | 1844 | ||
1855 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 1845 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
1856 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5"> | 1846 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5"> |
1857 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> | 1847 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> |
1858 | <target>ตั้งเวลาเผยแพร่ ( | 1848 | <target>ตั้งเวลาเผยแพร่ ( |
@@ -2210,7 +2200,13 @@ The link will expire within 1 hour.</target> | |||
2210 | <source>Less customization</source> | 2200 | <source>Less customization</source> |
2211 | <target state="translated">แสดงการปรับแต่งน้อยลง</target> | 2201 | <target state="translated">แสดงการปรับแต่งน้อยลง</target> |
2212 | 2202 | ||
2213 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit> | 2203 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit><trans-unit id="2454050363478003966" datatype="html"> |
2204 | <source>Login</source><target state="new">Login</target> | ||
2205 | <context-group purpose="location"> | ||
2206 | <context context-type="sourcefile">../app/+login/login-routing.module.ts</context> | ||
2207 | <context context-type="linenumber">14</context> | ||
2208 | </context-group> | ||
2209 | </trans-unit> | ||
2214 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e" datatype="html"> | 2210 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e" datatype="html"> |
2215 | <source>Autoplay</source> | 2211 | <source>Autoplay</source> |
2216 | <target state="translated">เล่นอัตโนมัติ</target> | 2212 | <target state="translated">เล่นอัตโนมัติ</target> |
@@ -2465,7 +2461,7 @@ The link will expire within 1 hour.</target> | |||
2465 | <source>No comments.</source> | 2461 | <source>No comments.</source> |
2466 | <target state="translated">ไม่มีความคิดเห็น</target> | 2462 | <target state="translated">ไม่มีความคิดเห็น</target> |
2467 | 2463 | ||
2468 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 2464 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> |
2469 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> | 2465 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> |
2470 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> | 2466 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> |
2471 | <target state="translated">ดูการตอบกลับ | 2467 | <target state="translated">ดูการตอบกลับ |
@@ -2473,7 +2469,7 @@ The link will expire within 1 hour.</target> | |||
2473 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> และคนอื่น ๆ | 2469 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> และคนอื่น ๆ |
2474 | </target> | 2470 | </target> |
2475 | 2471 | ||
2476 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">79</context></context-group></trans-unit> | 2472 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
2477 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> | 2473 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> |
2478 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> | 2474 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> |
2479 | <target state="translated">ดูการตอบกลับ | 2475 | <target state="translated">ดูการตอบกลับ |
@@ -2481,61 +2477,147 @@ The link will expire within 1 hour.</target> | |||
2481 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> | 2477 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> |
2482 | </target> | 2478 | </target> |
2483 | 2479 | ||
2484 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 2480 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">87</context></context-group></trans-unit> |
2485 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> | 2481 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> |
2486 | <source>View <x id="INTERPOLATION"/> replies</source> | 2482 | <source>View <x id="INTERPOLATION"/> replies</source> |
2487 | <target state="translated">ดูการตอบกลับ | 2483 | <target state="translated">ดูการตอบกลับ |
2488 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> รายการ | 2484 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> รายการ |
2489 | </target> | 2485 | </target> |
2490 | 2486 | ||
2491 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">85</context></context-group></trans-unit> | 2487 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">90</context></context-group></trans-unit> |
2492 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828" datatype="html"> | 2488 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828" datatype="html"> |
2493 | <source>Comments are disabled.</source> | 2489 | <source>Comments are disabled.</source> |
2494 | <target state="translated">การแสดงความคิดเห็นถูกปิด</target> | 2490 | <target state="translated">การแสดงความคิดเห็นถูกปิด</target> |
2495 | 2491 | ||
2496 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit><trans-unit id="3691787517663044217" datatype="html"> | 2492 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit><trans-unit id="3691787517663044217" datatype="html"> |
2497 | <source> The deletion will be sent to remote instances so they can reflect the change.</source><target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> | 2493 | <source> The deletion will be sent to remote instances so they can reflect the change.</source><target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> |
2494 | |||
2495 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">169</context></context-group></trans-unit><trans-unit id="7321800851971795962" datatype="html"> | ||
2496 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source><target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> | ||
2497 | |||
2498 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="5964038603724691720" datatype="html"> | ||
2499 | <source>Delete and re-draft</source><target state="new">Delete and re-draft</target> | ||
2498 | <context-group purpose="location"> | 2500 | <context-group purpose="location"> |
2499 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | 2501 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> |
2500 | <context context-type="linenumber">163</context> | 2502 | <context context-type="linenumber">197</context> |
2501 | </context-group> | 2503 | </context-group> |
2502 | </trans-unit><trans-unit id="7321800851971795962" datatype="html"> | 2504 | </trans-unit><trans-unit id="7163633882758007711" datatype="html"> |
2503 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source><target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> | 2505 | <source>Do you really want to delete and re-draft this comment?</source><target state="new">Do you really want to delete and re-draft this comment?</target> |
2504 | <context-group purpose="location"> | 2506 | <context-group purpose="location"> |
2505 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | 2507 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> |
2506 | <context context-type="linenumber">165</context> | 2508 | <context context-type="linenumber">197</context> |
2507 | </context-group> | 2509 | </context-group> |
2508 | </trans-unit> | 2510 | </trans-unit> |
2509 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e" datatype="html"> | 2511 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e" datatype="html"> |
2510 | <source>Add comment...</source> | 2512 | <source>Add comment...</source> |
2511 | <target state="translated">แสดงความคิดเห็น...</target> | 2513 | <target state="translated">แสดงความคิดเห็น...</target> |
2512 | 2514 | ||
2513 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | 2515 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit><trans-unit id="4e5254dedf0c12ce7e7c2197384fceebe3b29a2b" datatype="html"> |
2514 | <trans-unit id="8956c0f4c6974289fc63f1ab6b54f5b32ed65eeb" datatype="html"> | 2516 | <source>Markdown compatible</source><target state="new">Markdown compatible</target> |
2515 | <source>Reply</source> | 2517 | <context-group purpose="location"> |
2516 | <target state="translated">ตอบกลับ</target> | 2518 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> |
2517 | 2519 | <context context-type="linenumber">13</context> | |
2518 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 2520 | </context-group> |
2521 | </trans-unit><trans-unit id="4739ffad85f09defefdb6e51b45f43b2ef7c4388" datatype="html"> | ||
2522 | <source>Markdown compatible that supports:</source><target state="new">Markdown compatible that supports:</target> | ||
2523 | <context-group purpose="location"> | ||
2524 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2525 | <context context-type="linenumber">15</context> | ||
2526 | </context-group> | ||
2527 | </trans-unit><trans-unit id="9a53b17a021bb0677c156fd893461797fc497a10" datatype="html"> | ||
2528 | <source>Auto generated links</source><target state="new">Auto generated links</target> | ||
2529 | <context-group purpose="location"> | ||
2530 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2531 | <context context-type="linenumber">18</context> | ||
2532 | </context-group> | ||
2533 | </trans-unit><trans-unit id="664f99b8919d6dd2faa1c1f7c378aa86d1be5e8a" datatype="html"> | ||
2534 | <source>Break lines</source><target state="new">Break lines</target> | ||
2535 | <context-group purpose="location"> | ||
2536 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2537 | <context context-type="linenumber">19</context> | ||
2538 | </context-group> | ||
2539 | </trans-unit><trans-unit id="b15e7bec5c7833d2d9634946ccbed68967b1bee1" datatype="html"> | ||
2540 | <source>Lists</source><target state="new">Lists</target> | ||
2541 | <context-group purpose="location"> | ||
2542 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2543 | <context context-type="linenumber">20</context> | ||
2544 | </context-group> | ||
2545 | </trans-unit><trans-unit id="ab4426b60f13c00b61d6b714d390dc629f314980" datatype="html"> | ||
2546 | <source>Emphasis</source><target state="new">Emphasis</target> | ||
2547 | <context-group purpose="location"> | ||
2548 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2549 | <context context-type="linenumber">22</context> | ||
2550 | </context-group> | ||
2551 | </trans-unit><trans-unit id="4e13b179501d3d32721037e03b4c04acb9857c5f" datatype="html"> | ||
2552 | <source>bold</source><target state="new">bold</target> | ||
2553 | <context-group purpose="location"> | ||
2554 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2555 | <context context-type="linenumber">23</context> | ||
2556 | </context-group> | ||
2557 | </trans-unit><trans-unit id="3c12190421fbb2756e6bbead923df9ec5de8ede2" datatype="html"> | ||
2558 | <source>italic</source><target state="new">italic</target> | ||
2559 | <context-group purpose="location"> | ||
2560 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2561 | <context context-type="linenumber">23</context> | ||
2562 | </context-group> | ||
2563 | </trans-unit><trans-unit id="adb4bbdcb961b8aac8298d6cac554d9b25636b7a" datatype="html"> | ||
2564 | <source>Emoji shortcuts</source><target state="new">Emoji shortcuts</target> | ||
2565 | <context-group purpose="location"> | ||
2566 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2567 | <context context-type="linenumber">26</context> | ||
2568 | </context-group> | ||
2569 | </trans-unit><trans-unit id="b9809a21a8eb3c9db2a0282c5dd94bc221575c96" datatype="html"> | ||
2570 | <source>Emoji markup</source><target state="new">Emoji markup</target> | ||
2571 | <context-group purpose="location"> | ||
2572 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2573 | <context context-type="linenumber">30</context> | ||
2574 | </context-group> | ||
2575 | </trans-unit><trans-unit id="f37feb427aaa551edd1f22616be6464bc0d492de" datatype="html"> | ||
2576 | <source>See complete list</source><target state="new">See complete list</target> | ||
2577 | <context-group purpose="location"> | ||
2578 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2579 | <context context-type="linenumber">32</context> | ||
2580 | </context-group> | ||
2581 | </trans-unit> | ||
2582 | |||
2519 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135" datatype="html"> | 2583 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135" datatype="html"> |
2520 | <source>You are one step away from commenting</source> | 2584 | <source>You are one step away from commenting</source> |
2521 | <target state="translated">ใกล้จะแสดงความคิดเห็นได้แล้ว</target> | 2585 | <target state="translated">ใกล้จะแสดงความคิดเห็นได้แล้ว</target> |
2522 | 2586 | ||
2523 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 2587 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
2524 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> | 2588 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> |
2525 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> | 2589 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> |
2526 | <target state="translated">คุณสามารถแสดงความคิดเห็นด้วยบัญชีบนเว็บไซต์ใดก็ได้ที่รองรับ ActivityPub ในแพลตฟอร์มส่วนใหญ่ คุณสามารถหาวิดีโอได้โดยพิมพ์ URL ในแถบค้นหาแล้วแสดงความคิดเห็นจากอินเตอร์เฟซในซอฟต์แวร์ได้</target> | 2590 | <target state="translated">คุณสามารถแสดงความคิดเห็นด้วยบัญชีบนเว็บไซต์ใดก็ได้ที่รองรับ ActivityPub ในแพลตฟอร์มส่วนใหญ่ คุณสามารถหาวิดีโอได้โดยพิมพ์ URL ในแถบค้นหาแล้วแสดงความคิดเห็นจากอินเตอร์เฟซในซอฟต์แวร์ได้</target> |
2527 | 2591 | ||
2528 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 2592 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
2529 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb" datatype="html"> | 2593 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb" datatype="html"> |
2530 | <source>If you have an account on Mastodon or Pleroma, you can open it directly in their interface:</source> | 2594 | <source>If you have an account on Mastodon or Pleroma, you can open it directly in their interface:</source> |
2531 | <target state="translated">หากคุณมีบัญชีบน Mastodon หรือ Pleroma คุณสามารถเปิดวิดีโอนี้จากเว็บนั้นโดยตรงได้:</target> | 2595 | <target state="translated">หากคุณมีบัญชีบน Mastodon หรือ Pleroma คุณสามารถเปิดวิดีโอนี้จากเว็บนั้นโดยตรงได้:</target> |
2532 | 2596 | ||
2533 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">41</context></context-group></trans-unit> | 2597 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">65</context></context-group></trans-unit> |
2534 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> | 2598 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> |
2535 | <source>Login to comment</source> | 2599 | <source>Login to comment</source> |
2536 | <target state="translated">เข้าสู่ระบบเพื่อแสดงความคิดเห็น</target> | 2600 | <target state="translated">เข้าสู่ระบบเพื่อแสดงความคิดเห็น</target> |
2537 | 2601 | ||
2538 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">52</context></context-group></trans-unit> | 2602 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit><trans-unit id="974170f455ff5a9034d5737e84b4194c0046fc6b" datatype="html"> |
2603 | <source>Markdown Emoji List</source><target state="new">Markdown Emoji List</target> | ||
2604 | <context-group purpose="location"> | ||
2605 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2606 | <context context-type="linenumber">84</context> | ||
2607 | </context-group> | ||
2608 | </trans-unit><trans-unit id="2662644497259948010" datatype="html"> | ||
2609 | <source>Comment</source><target state="new">Comment</target> | ||
2610 | <context-group purpose="location"> | ||
2611 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2612 | <context context-type="linenumber">58</context> | ||
2613 | </context-group> | ||
2614 | </trans-unit><trans-unit id="4502286564339177240" datatype="html"> | ||
2615 | <source>Reply</source><target state="new">Reply</target> | ||
2616 | <context-group purpose="location"> | ||
2617 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2618 | <context context-type="linenumber">60</context> | ||
2619 | </context-group> | ||
2620 | </trans-unit> | ||
2539 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285" datatype="html"> | 2621 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285" datatype="html"> |
2540 | <source>Highlighted comment</source> | 2622 | <source>Highlighted comment</source> |
2541 | <target state="translated">ความคิดเห็นที่ถูกเน้น</target> | 2623 | <target state="translated">ความคิดเห็นที่ถูกเน้น</target> |
@@ -2550,7 +2632,7 @@ The link will expire within 1 hour.</target> | |||
2550 | <source>This comment has been deleted</source> | 2632 | <source>This comment has been deleted</source> |
2551 | <target state="translated">ความคิดเห็นนี้ถูกลบ</target> | 2633 | <target state="translated">ความคิดเห็นนี้ถูกลบ</target> |
2552 | 2634 | ||
2553 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">62</context></context-group></trans-unit> | 2635 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">61</context></context-group></trans-unit> |
2554 | <trans-unit id="9031514421077169181" datatype="html"> | 2636 | <trans-unit id="9031514421077169181" datatype="html"> |
2555 | <source>Video redundancies</source> | 2637 | <source>Video redundancies</source> |
2556 | <target state="new">Video redundancies</target> | 2638 | <target state="new">Video redundancies</target> |
@@ -3399,7 +3481,25 @@ The link will expire within 1 hour.</target> | |||
3399 | <target state="new">No account found.</target> | 3481 | <target state="new">No account found.</target> |
3400 | 3482 | ||
3401 | 3483 | ||
3402 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit> | 3484 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit><trans-unit id="2338185419645468935" datatype="html"> |
3485 | <source>List installed plugins</source><target state="new">List installed plugins</target> | ||
3486 | <context-group purpose="location"> | ||
3487 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3488 | <context context-type="linenumber">28</context> | ||
3489 | </context-group> | ||
3490 | </trans-unit><trans-unit id="8897412584195581488" datatype="html"> | ||
3491 | <source>Search plugins</source><target state="new">Search plugins</target> | ||
3492 | <context-group purpose="location"> | ||
3493 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3494 | <context context-type="linenumber">37</context> | ||
3495 | </context-group> | ||
3496 | </trans-unit><trans-unit id="4994333937800672218" datatype="html"> | ||
3497 | <source>Show plugin</source><target state="new">Show plugin</target> | ||
3498 | <context-group purpose="location"> | ||
3499 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3500 | <context context-type="linenumber">46</context> | ||
3501 | </context-group> | ||
3502 | </trans-unit> | ||
3403 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> | 3503 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> |
3404 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> | 3504 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> |
3405 | <target state="new">Showing | 3505 | <target state="new">Showing |
@@ -4124,7 +4224,7 @@ The link will expire within 1 hour.</target> | |||
4124 | <source>Administrator</source> | 4224 | <source>Administrator</source> |
4125 | <target state="new">Administrator</target> | 4225 | <target state="new">Administrator</target> |
4126 | 4226 | ||
4127 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">385</context></context-group></trans-unit> | 4227 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">383</context></context-group></trans-unit> |
4128 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587" datatype="html"> | 4228 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587" datatype="html"> |
4129 | <source>Admin email</source> | 4229 | <source>Admin email</source> |
4130 | <target state="new">Admin email</target> | 4230 | <target state="new">Admin email</target> |
@@ -4380,27 +4480,27 @@ The link will expire within 1 hour.</target> | |||
4380 | <source>VIDEO SETTINGS</source> | 4480 | <source>VIDEO SETTINGS</source> |
4381 | <target state="translated">การตั้งค่าวิดีโอ</target> | 4481 | <target state="translated">การตั้งค่าวิดีโอ</target> |
4382 | 4482 | ||
4383 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit> | 4483 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
4384 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> | 4484 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> |
4385 | <source>NOTIFICATIONS</source> | 4485 | <source>NOTIFICATIONS</source> |
4386 | <target state="new">NOTIFICATIONS</target> | 4486 | <target state="new">NOTIFICATIONS</target> |
4387 | 4487 | ||
4388 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 4488 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">37</context></context-group></trans-unit> |
4389 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> | 4489 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> |
4390 | <source>INTERFACE</source> | 4490 | <source>INTERFACE</source> |
4391 | <target state="new">INTERFACE</target> | 4491 | <target state="new">INTERFACE</target> |
4392 | 4492 | ||
4393 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 4493 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit> |
4394 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> | 4494 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> |
4395 | <source>PASSWORD</source> | 4495 | <source>PASSWORD</source> |
4396 | <target state="translated">รหัสผ่าน</target> | 4496 | <target state="translated">รหัสผ่าน</target> |
4397 | 4497 | ||
4398 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">59</context></context-group></trans-unit> | 4498 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">57</context></context-group></trans-unit> |
4399 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> | 4499 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> |
4400 | <source>EMAIL</source> | 4500 | <source>EMAIL</source> |
4401 | <target state="new">EMAIL</target> | 4501 | <target state="new">EMAIL</target> |
4402 | 4502 | ||
4403 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">69</context></context-group></trans-unit> | 4503 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">67</context></context-group></trans-unit> |
4404 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> | 4504 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> |
4405 | <source>DANGER ZONE</source> | 4505 | <source>DANGER ZONE</source> |
4406 | <target state="new">DANGER ZONE</target> | 4506 | <target state="new">DANGER ZONE</target> |
@@ -4646,7 +4746,31 @@ The link will expire within 1 hour.</target> | |||
4646 | <source>No ownership change request found.</source> | 4746 | <source>No ownership change request found.</source> |
4647 | <target state="new">No ownership change request found.</target> | 4747 | <target state="new">No ownership change request found.</target> |
4648 | 4748 | ||
4649 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit> | 4749 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit><trans-unit id="4247400351982331798" datatype="html"> |
4750 | <source>Account settings</source><target state="new">Account settings</target> | ||
4751 | <context-group purpose="location"> | ||
4752 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4753 | <context context-type="linenumber">37</context> | ||
4754 | </context-group> | ||
4755 | </trans-unit><trans-unit id="154062590416726309" datatype="html"> | ||
4756 | <source>Account playlists</source><target state="new">Account playlists</target> | ||
4757 | <context-group purpose="location"> | ||
4758 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4759 | <context context-type="linenumber">55</context> | ||
4760 | </context-group> | ||
4761 | </trans-unit><trans-unit id="6550287183367517925" datatype="html"> | ||
4762 | <source>Create new playlist</source><target state="new">Create new playlist</target> | ||
4763 | <context-group purpose="location"> | ||
4764 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4765 | <context context-type="linenumber">64</context> | ||
4766 | </context-group> | ||
4767 | </trans-unit><trans-unit id="2864486939135008600" datatype="html"> | ||
4768 | <source>Playlist elements</source><target state="new">Playlist elements</target> | ||
4769 | <context-group purpose="location"> | ||
4770 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4771 | <context context-type="linenumber">73</context> | ||
4772 | </context-group> | ||
4773 | </trans-unit> | ||
4650 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> | 4774 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> |
4651 | <source>My imports</source> | 4775 | <source>My imports</source> |
4652 | <target state="new">My imports</target> | 4776 | <target state="new">My imports</target> |
@@ -4907,7 +5031,25 @@ The link will expire within 1 hour.</target> | |||
4907 | <source>An error occurred.</source> | 5031 | <source>An error occurred.</source> |
4908 | <target state="translated">เกิดข้อผิดพลาด</target> | 5032 | <target state="translated">เกิดข้อผิดพลาด</target> |
4909 | 5033 | ||
4910 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 5034 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit><trans-unit id="9128669621822125729" datatype="html"> |
5035 | <source>Video channel videos</source><target state="new">Video channel videos</target> | ||
5036 | <context-group purpose="location"> | ||
5037 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5038 | <context context-type="linenumber">25</context> | ||
5039 | </context-group> | ||
5040 | </trans-unit><trans-unit id="3193822049276963401" datatype="html"> | ||
5041 | <source>Video channel playlists</source><target state="new">Video channel playlists</target> | ||
5042 | <context-group purpose="location"> | ||
5043 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5044 | <context context-type="linenumber">38</context> | ||
5045 | </context-group> | ||
5046 | </trans-unit><trans-unit id="4723526509708949088" datatype="html"> | ||
5047 | <source>About video channel</source><target state="new">About video channel</target> | ||
5048 | <context-group purpose="location"> | ||
5049 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5050 | <context context-type="linenumber">47</context> | ||
5051 | </context-group> | ||
5052 | </trans-unit> | ||
4911 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97" datatype="html"> | 5053 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97" datatype="html"> |
4912 | <source>Request email for account verification</source> | 5054 | <source>Request email for account verification</source> |
4913 | <target state="translated">ส่งอีเมลยืนยันบัญชี</target> | 5055 | <target state="translated">ส่งอีเมลยืนยันบัญชี</target> |
@@ -5024,7 +5166,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5024 | <source>Stats</source> | 5166 | <source>Stats</source> |
5025 | <target state="translated">สถิติ</target> | 5167 | <target state="translated">สถิติ</target> |
5026 | 5168 | ||
5027 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 5169 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
5028 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc" datatype="html"> | 5170 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc" datatype="html"> |
5029 | <source>Joined <x id="INTERPOLATION"/></source> | 5171 | <source>Joined <x id="INTERPOLATION"/></source> |
5030 | <target state="translated">เข้าร่วมเมื่อ | 5172 | <target state="translated">เข้าร่วมเมื่อ |
@@ -5445,7 +5587,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5445 | <source>This instance does not have instances followings.</source> | 5587 | <source>This instance does not have instances followings.</source> |
5446 | <target state="translated">เว็บไซต์นี้ไม่ได้ติดตามเว็บไซต์อื่น</target> | 5588 | <target state="translated">เว็บไซต์นี้ไม่ได้ติดตามเว็บไซต์อื่น</target> |
5447 | 5589 | ||
5448 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit> | 5590 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit><trans-unit id="4195286790385468087" datatype="html"> |
5591 | <source>About this instance</source><target state="new">About this instance</target> | ||
5592 | <context-group purpose="location"> | ||
5593 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5594 | <context context-type="linenumber">26</context> | ||
5595 | </context-group> | ||
5596 | </trans-unit><trans-unit id="8773846522957677259" datatype="html"> | ||
5597 | <source>About PeerTube</source><target state="new">About PeerTube</target> | ||
5598 | <context-group purpose="location"> | ||
5599 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5600 | <context context-type="linenumber">38</context> | ||
5601 | </context-group> | ||
5602 | </trans-unit><trans-unit id="5782088737558028158" datatype="html"> | ||
5603 | <source>About follows</source><target state="new">About follows</target> | ||
5604 | <context-group purpose="location"> | ||
5605 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5606 | <context context-type="linenumber">47</context> | ||
5607 | </context-group> | ||
5608 | </trans-unit> | ||
5449 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> | 5609 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> |
5450 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> | 5610 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> |
5451 | <target state="translated">พัฒนาด้วย ❤ โดย | 5611 | <target state="translated">พัฒนาด้วย ❤ โดย |
@@ -5613,6 +5773,12 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5613 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 5773 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> |
5614 | <context context-type="linenumber">1</context> | 5774 | <context context-type="linenumber">1</context> |
5615 | </context-group> | 5775 | </context-group> |
5776 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
5777 | <source>Get help</source><target state="new">Get help</target> | ||
5778 | <context-group purpose="location"> | ||
5779 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | ||
5780 | <context context-type="linenumber">16</context> | ||
5781 | </context-group> | ||
5616 | </trans-unit> | 5782 | </trans-unit> |
5617 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1" datatype="html"> | 5783 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1" datatype="html"> |
5618 | <source>Create my account</source> | 5784 | <source>Create my account</source> |
@@ -5724,7 +5890,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5724 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/>ของเว็บไซต์นี้ | 5890 | <x id="CLOSE_TAG_NG-CONTAINER" ctype="x-ng-container" equiv-text="</ng-container>"/>ของเว็บไซต์นี้ |
5725 | </target> | 5891 | </target> |
5726 | 5892 | ||
5727 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 5893 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit><trans-unit id="3301086086650990787" datatype="html"> |
5894 | <source>Register</source><target state="new">Register</target> | ||
5895 | <context-group purpose="location"> | ||
5896 | <context context-type="sourcefile">../app/+signup/+register/register-routing.module.ts</context> | ||
5897 | <context context-type="linenumber">14</context> | ||
5898 | </context-group> | ||
5899 | </trans-unit> | ||
5728 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> | 5900 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> |
5729 | <source>Sorry, we couldn't find the page you were looking for.</source> | 5901 | <source>Sorry, we couldn't find the page you were looking for.</source> |
5730 | <target state="translated">ขออภัย เราไม่พบหน้าที่คุณต้องการ</target> | 5902 | <target state="translated">ขออภัย เราไม่พบหน้าที่คุณต้องการ</target> |
@@ -5745,7 +5917,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5745 | <target state="translated">ไม่มีคำอธิบาย</target> | 5917 | <target state="translated">ไม่มีคำอธิบาย</target> |
5746 | 5918 | ||
5747 | 5919 | ||
5748 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit> | 5920 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit><trans-unit id="819067926858619041" datatype="html"> |
5921 | <source>Account videos</source><target state="new">Account videos</target> | ||
5922 | <context-group purpose="location"> | ||
5923 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
5924 | <context context-type="linenumber">29</context> | ||
5925 | </context-group> | ||
5926 | </trans-unit><trans-unit id="6823616469362610020" datatype="html"> | ||
5927 | <source>Account video channels</source><target state="new">Account video channels</target> | ||
5928 | <context-group purpose="location"> | ||
5929 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
5930 | <context context-type="linenumber">42</context> | ||
5931 | </context-group> | ||
5932 | </trans-unit><trans-unit id="7678273613459026643" datatype="html"> | ||
5933 | <source>About account</source><target state="new">About account</target> | ||
5934 | <context-group purpose="location"> | ||
5935 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
5936 | <context context-type="linenumber">51</context> | ||
5937 | </context-group> | ||
5938 | </trans-unit> | ||
5749 | <trans-unit id="3755500631176893489" datatype="html"> | 5939 | <trans-unit id="3755500631176893489" datatype="html"> |
5750 | <source>Published <x id="PH"/> videos</source> | 5940 | <source>Published <x id="PH"/> videos</source> |
5751 | <target state="translated">เผยแพร่ | 5941 | <target state="translated">เผยแพร่ |
@@ -5862,7 +6052,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5862 | <source>Configuration updated.</source> | 6052 | <source>Configuration updated.</source> |
5863 | <target state="translated">อัปเดตการตั้งค่าแล้ว</target> | 6053 | <target state="translated">อัปเดตการตั้งค่าแล้ว</target> |
5864 | 6054 | ||
5865 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit> | 6055 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit><trans-unit id="6284468333579755406" datatype="html"> |
6056 | <source>Edit custom configuration</source><target state="new">Edit custom configuration</target> | ||
6057 | <context-group purpose="location"> | ||
6058 | <context context-type="sourcefile">../app/+admin/config/config.routes.ts</context> | ||
6059 | <context context-type="linenumber">26</context> | ||
6060 | </context-group> | ||
6061 | </trans-unit> | ||
5866 | 6062 | ||
5867 | 6063 | ||
5868 | <trans-unit id="6549061957433635758" datatype="html"> | 6064 | <trans-unit id="6549061957433635758" datatype="html"> |
@@ -6341,7 +6537,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6341 | <x id="PH"/> แล้ว | 6537 | <x id="PH"/> แล้ว |
6342 | </target> | 6538 | </target> |
6343 | 6539 | ||
6344 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 6540 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit><trans-unit id="3229595422546554334" datatype="html"> |
6541 | <source>Jobs</source><target state="new">Jobs</target> | ||
6542 | <context-group purpose="location"> | ||
6543 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6544 | <context context-type="linenumber">26</context> | ||
6545 | </context-group> | ||
6546 | </trans-unit><trans-unit id="4804785061014590286" datatype="html"> | ||
6547 | <source>Logs</source><target state="new">Logs</target> | ||
6548 | <context-group purpose="location"> | ||
6549 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6550 | <context context-type="linenumber">37</context> | ||
6551 | </context-group> | ||
6552 | </trans-unit> | ||
6345 | <trans-unit id="3150704904301058778" datatype="html"> | 6553 | <trans-unit id="3150704904301058778" datatype="html"> |
6346 | <source>The plugin index is not available. Please retry later.</source> | 6554 | <source>The plugin index is not available. Please retry later.</source> |
6347 | <target state="new">The plugin index is not available. Please retry later.</target> | 6555 | <target state="new">The plugin index is not available. Please retry later.</target> |
@@ -6455,6 +6663,18 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6455 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> | 6663 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> |
6456 | <context context-type="linenumber">86</context> | 6664 | <context context-type="linenumber">86</context> |
6457 | </context-group> | 6665 | </context-group> |
6666 | </trans-unit><trans-unit id="2903648076838460070" datatype="html"> | ||
6667 | <source>Videos blocked</source><target state="new">Videos blocked</target> | ||
6668 | <context-group purpose="location"> | ||
6669 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6670 | <context context-type="linenumber">67</context> | ||
6671 | </context-group> | ||
6672 | </trans-unit><trans-unit id="7805059636749367886" datatype="html"> | ||
6673 | <source>Muted instances</source><target state="new">Muted instances</target> | ||
6674 | <context-group purpose="location"> | ||
6675 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6676 | <context context-type="linenumber">89</context> | ||
6677 | </context-group> | ||
6458 | </trans-unit> | 6678 | </trans-unit> |
6459 | <trans-unit id="5974506725502681113" datatype="html"> | 6679 | <trans-unit id="5974506725502681113" datatype="html"> |
6460 | <source>Password changed for user <x id="PH"/>.</source> | 6680 | <source>Password changed for user <x id="PH"/>.</source> |
@@ -6467,7 +6687,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6467 | <source>Update user password</source> | 6687 | <source>Update user password</source> |
6468 | <target state="new">Update user password</target> | 6688 | <target state="new">Update user password</target> |
6469 | 6689 | ||
6470 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit> | 6690 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit><trans-unit id="177544274549739411" datatype="html"> |
6691 | <source>Following list</source><target state="new">Following list</target> | ||
6692 | <context-group purpose="location"> | ||
6693 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6694 | <context context-type="linenumber">28</context> | ||
6695 | </context-group> | ||
6696 | </trans-unit><trans-unit id="8092429110007204784" datatype="html"> | ||
6697 | <source>Followers list</source><target state="new">Followers list</target> | ||
6698 | <context-group purpose="location"> | ||
6699 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6700 | <context context-type="linenumber">37</context> | ||
6701 | </context-group> | ||
6702 | </trans-unit> | ||
6471 | <trans-unit id="780323526182667308" datatype="html"> | 6703 | <trans-unit id="780323526182667308" datatype="html"> |
6472 | <source>User <x id="PH"/> updated.</source> | 6704 | <source>User <x id="PH"/> updated.</source> |
6473 | <target state="new">User | 6705 | <target state="new">User |
@@ -6486,7 +6718,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6486 | <x id="PH"/>. | 6718 | <x id="PH"/>. |
6487 | </target> | 6719 | </target> |
6488 | 6720 | ||
6489 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="8564701209009684429" datatype="html"> | 6721 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="7483807629538115183" datatype="html"> |
6722 | <source>Users list</source><target state="new">Users list</target> | ||
6723 | <context-group purpose="location"> | ||
6724 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6725 | <context context-type="linenumber">27</context> | ||
6726 | </context-group> | ||
6727 | </trans-unit><trans-unit id="1525334987774465166" datatype="html"> | ||
6728 | <source>Create a user</source><target state="new">Create a user</target> | ||
6729 | <context-group purpose="location"> | ||
6730 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6731 | <context context-type="linenumber">36</context> | ||
6732 | </context-group> | ||
6733 | </trans-unit><trans-unit id="5552039423287890133" datatype="html"> | ||
6734 | <source>Update a user</source><target state="new">Update a user</target> | ||
6735 | <context-group purpose="location"> | ||
6736 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6737 | <context context-type="linenumber">48</context> | ||
6738 | </context-group> | ||
6739 | </trans-unit><trans-unit id="8564701209009684429" datatype="html"> | ||
6490 | <source>Federation</source><target state="new">Federation</target> | 6740 | <source>Federation</source><target state="new">Federation</target> |
6491 | <context-group purpose="location"> | 6741 | <context-group purpose="location"> |
6492 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> | 6742 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> |
@@ -6840,7 +7090,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6840 | <source>Views for the day</source> | 7090 | <source>Views for the day</source> |
6841 | <target state="new">Views for the day</target> | 7091 | <target state="new">Views for the day</target> |
6842 | 7092 | ||
6843 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit> | 7093 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit><trans-unit id="4707367314920217630" datatype="html"> |
7094 | <source>Create new video channel</source><target state="new">Create new video channel</target> | ||
7095 | <context-group purpose="location"> | ||
7096 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7097 | <context context-type="linenumber">22</context> | ||
7098 | </context-group> | ||
7099 | </trans-unit><trans-unit id="6059091237492573541" datatype="html"> | ||
7100 | <source>Update video channel</source><target state="new">Update video channel</target> | ||
7101 | <context-group purpose="location"> | ||
7102 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7103 | <context context-type="linenumber">31</context> | ||
7104 | </context-group> | ||
7105 | </trans-unit><trans-unit id="6595008830732269870" datatype="html"> | ||
7106 | <source>Not found</source><target state="new">Not found</target> | ||
7107 | <context-group purpose="location"> | ||
7108 | <context context-type="sourcefile">../app/+page-not-found/page-not-found-routing.module.ts</context> | ||
7109 | <context context-type="linenumber">13</context> | ||
7110 | </context-group> | ||
7111 | </trans-unit> | ||
6844 | <trans-unit id="5032453707232754344" datatype="html"> | 7112 | <trans-unit id="5032453707232754344" datatype="html"> |
6845 | <source>Playlist <x id="PH"/> created.</source> | 7113 | <source>Playlist <x id="PH"/> created.</source> |
6846 | <target state="translated">สร้างเพลย์ลิสต์ | 7114 | <target state="translated">สร้างเพลย์ลิสต์ |
@@ -6858,7 +7126,31 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6858 | <source>Update playlist</source> | 7126 | <source>Update playlist</source> |
6859 | <target state="new">Update playlist</target> | 7127 | <target state="new">Update playlist</target> |
6860 | 7128 | ||
6861 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-video-playlists/my-account-video-playlist-elements.component.ts</context><context context-type="linenumber">48</context></context-group></trans-unit> | 7129 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">82</context></context-group></trans-unit><trans-unit id="3410331549417637431" datatype="html"> |
7130 | <source>Account video imports</source><target state="new">Account video imports</target> | ||
7131 | <context-group purpose="location"> | ||
7132 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7133 | <context context-type="linenumber">105</context> | ||
7134 | </context-group> | ||
7135 | </trans-unit><trans-unit id="4434998055872154420" datatype="html"> | ||
7136 | <source>Account subscriptions</source><target state="new">Account subscriptions</target> | ||
7137 | <context-group purpose="location"> | ||
7138 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7139 | <context context-type="linenumber">114</context> | ||
7140 | </context-group> | ||
7141 | </trans-unit><trans-unit id="6019411775996586321" datatype="html"> | ||
7142 | <source>Videos history</source><target state="new">Videos history</target> | ||
7143 | <context-group purpose="location"> | ||
7144 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7145 | <context context-type="linenumber">150</context> | ||
7146 | </context-group> | ||
7147 | </trans-unit><trans-unit id="5851560788527570644" datatype="html"> | ||
7148 | <source>Notifications</source><target state="new">Notifications</target> | ||
7149 | <context-group purpose="location"> | ||
7150 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7151 | <context context-type="linenumber">163</context> | ||
7152 | </context-group> | ||
7153 | </trans-unit> | ||
6862 | <trans-unit id="104404386496394770" datatype="html"> | 7154 | <trans-unit id="104404386496394770" datatype="html"> |
6863 | <source>Delete playlist</source> | 7155 | <source>Delete playlist</source> |
6864 | <target state="new">Delete playlist</target> | 7156 | <target state="new">Delete playlist</target> |
@@ -7012,7 +7304,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7012 | <x id="PH"/> | 7304 | <x id="PH"/> |
7013 | </target> | 7305 | </target> |
7014 | 7306 | ||
7015 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit> | 7307 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit><trans-unit id="8231550792139699065" datatype="html"> |
7308 | <source>Verify account email</source><target state="new">Verify account email</target> | ||
7309 | <context-group purpose="location"> | ||
7310 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7311 | <context context-type="linenumber">17</context> | ||
7312 | </context-group> | ||
7313 | </trans-unit><trans-unit id="4997281272800290390" datatype="html"> | ||
7314 | <source>Verify account ask send email</source><target state="new">Verify account ask send email</target> | ||
7315 | <context-group purpose="location"> | ||
7316 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7317 | <context context-type="linenumber">26</context> | ||
7318 | </context-group> | ||
7319 | </trans-unit> | ||
7016 | <trans-unit id="4180693983967989981" datatype="html"> | 7320 | <trans-unit id="4180693983967989981" datatype="html"> |
7017 | <source>Unable to find user id or verification string.</source> | 7321 | <source>Unable to find user id or verification string.</source> |
7018 | <target state="translated">ไม่พบไอดีผู้ใช้หรือรหัสลิงก์ยืนยัน</target> | 7322 | <target state="translated">ไม่พบไอดีผู้ใช้หรือรหัสลิงก์ยืนยัน</target> |
@@ -7137,27 +7441,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7137 | <source>any language</source> | 7441 | <source>any language</source> |
7138 | <target state="new">any language</target> | 7442 | <target state="new">any language</target> |
7139 | 7443 | ||
7140 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">202</context></context-group></trans-unit> | 7444 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">229</context></context-group></trans-unit> |
7141 | <trans-unit id="5633144232269377096" datatype="html"> | 7445 | <trans-unit id="5633144232269377096" datatype="html"> |
7142 | <source>hide</source> | 7446 | <source>hide</source> |
7143 | <target state="new">hide</target> | 7447 | <target state="new">hide</target> |
7144 | 7448 | ||
7145 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">118</context></context-group></trans-unit> | 7449 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> |
7146 | <trans-unit id="8603861867909474404" datatype="html"> | 7450 | <trans-unit id="8603861867909474404" datatype="html"> |
7147 | <source>blur</source> | 7451 | <source>blur</source> |
7148 | <target state="new">blur</target> | 7452 | <target state="new">blur</target> |
7149 | 7453 | ||
7150 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> | 7454 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> |
7151 | <trans-unit id="4534458451100881847" datatype="html"> | 7455 | <trans-unit id="4534458451100881847" datatype="html"> |
7152 | <source>display</source> | 7456 | <source>display</source> |
7153 | <target state="new">display</target> | 7457 | <target state="new">display</target> |
7154 | 7458 | ||
7155 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> | 7459 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">127</context></context-group></trans-unit> |
7156 | <trans-unit id="4467323362722952678" datatype="html"> | 7460 | <trans-unit id="4467323362722952678" datatype="html"> |
7157 | <source>Unknown</source> | 7461 | <source>Unknown</source> |
7158 | <target state="new">Unknown</target> | 7462 | <target state="new">Unknown</target> |
7159 | 7463 | ||
7160 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">190</context></context-group></trans-unit> | 7464 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">193</context></context-group></trans-unit> |
7161 | <trans-unit id="8781423666414310853" datatype="html"> | 7465 | <trans-unit id="8781423666414310853" datatype="html"> |
7162 | <source>Your password has been successfully reset!</source> | 7466 | <source>Your password has been successfully reset!</source> |
7163 | <target state="translated">รีเซ็ตรหัสผ่านเรียบร้อย</target> | 7467 | <target state="translated">รีเซ็ตรหัสผ่านเรียบร้อย</target> |
@@ -8275,27 +8579,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8275 | <source>Emphasis</source> | 8579 | <source>Emphasis</source> |
8276 | <target state="new">Emphasis</target> | 8580 | <target state="new">Emphasis</target> |
8277 | 8581 | ||
8278 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">77</context></context-group></trans-unit> | 8582 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> |
8279 | <trans-unit id="7565716024468232322" datatype="html"> | 8583 | <trans-unit id="7565716024468232322" datatype="html"> |
8280 | <source>Links</source> | 8584 | <source>Links</source> |
8281 | <target state="new">Links</target> | 8585 | <target state="new">Links</target> |
8282 | 8586 | ||
8283 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">78</context></context-group></trans-unit> | 8587 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> |
8284 | <trans-unit id="7838476952710404110" datatype="html"> | 8588 | <trans-unit id="7838476952710404110" datatype="html"> |
8285 | <source>New lines</source> | 8589 | <source>New lines</source> |
8286 | <target state="new">New lines</target> | 8590 | <target state="new">New lines</target> |
8287 | 8591 | ||
8288 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 8592 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">83</context></context-group></trans-unit> |
8289 | <trans-unit id="8756167649220050929" datatype="html"> | 8593 | <trans-unit id="8756167649220050929" datatype="html"> |
8290 | <source>Lists</source> | 8594 | <source>Lists</source> |
8291 | <target state="new">Lists</target> | 8595 | <target state="new">Lists</target> |
8292 | 8596 | ||
8293 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">80</context></context-group></trans-unit> | 8597 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">84</context></context-group></trans-unit> |
8294 | <trans-unit id="414887388288176527" datatype="html"> | 8598 | <trans-unit id="414887388288176527" datatype="html"> |
8295 | <source>Images</source> | 8599 | <source>Images</source> |
8296 | <target state="new">Images</target> | 8600 | <target state="new">Images</target> |
8297 | 8601 | ||
8298 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> | 8602 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">85</context></context-group></trans-unit> |
8299 | <trans-unit id="5708680277917691451" datatype="html"> | 8603 | <trans-unit id="5708680277917691451" datatype="html"> |
8300 | <source> | 8604 | <source> |
8301 | <x id="PH"/> users banned. | 8605 | <x id="PH"/> users banned. |
@@ -8691,7 +8995,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8691 | <source>Moderator</source> | 8995 | <source>Moderator</source> |
8692 | <target state="new">Moderator</target> | 8996 | <target state="new">Moderator</target> |
8693 | 8997 | ||
8694 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">386</context></context-group></trans-unit> | 8998 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">384</context></context-group></trans-unit> |
8695 | <trans-unit id="3723085768598852106" datatype="html"> | 8999 | <trans-unit id="3723085768598852106" datatype="html"> |
8696 | <source>Video removed from | 9000 | <source>Video removed from |
8697 | <x id="PH"/> | 9001 | <x id="PH"/> |
@@ -8764,7 +9068,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8764 | <source>Do you really want to delete this comment?</source> | 9068 | <source>Do you really want to delete this comment?</source> |
8765 | <target state="new">Do you really want to delete this comment?</target> | 9069 | <target state="new">Do you really want to delete this comment?</target> |
8766 | 9070 | ||
8767 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">434</context></context-group></trans-unit> | 9071 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">166</context></context-group></trans-unit> |
8768 | <trans-unit id="7837272126865175984" datatype="html"> | 9072 | <trans-unit id="7837272126865175984" datatype="html"> |
8769 | <source>Comment deleted.</source> | 9073 | <source>Comment deleted.</source> |
8770 | <target state="new">Comment deleted.</target> | 9074 | <target state="new">Comment deleted.</target> |
@@ -8876,9 +9180,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8876 | 9180 | ||
8877 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> | 9181 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> |
8878 | <source>Report</source><target state="new">Report</target> | 9182 | <source>Report</source><target state="new">Report</target> |
9183 | |||
9184 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="4814285799071780083" datatype="html"> | ||
9185 | <source>Remove</source><target state="new">Remove</target> | ||
8879 | <context-group purpose="location"> | 9186 | <context-group purpose="location"> |
8880 | <context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> | 9187 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> |
8881 | <context context-type="linenumber">286</context> | 9188 | <context context-type="linenumber">179</context> |
9189 | </context-group> | ||
9190 | </trans-unit><trans-unit id="6871668720687277843" datatype="html"> | ||
9191 | <source>Remove & re-draft</source><target state="new">Remove & re-draft</target> | ||
9192 | <context-group purpose="location"> | ||
9193 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> | ||
9194 | <context context-type="linenumber">187</context> | ||
8882 | </context-group> | 9195 | </context-group> |
8883 | </trans-unit> | 9196 | </trans-unit> |
8884 | <trans-unit id="4903651219400691248" datatype="html"> | 9197 | <trans-unit id="4903651219400691248" datatype="html"> |
@@ -8982,22 +9295,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8982 | <source>Only I can see this video</source> | 9295 | <source>Only I can see this video</source> |
8983 | <target state="translated">มีเพียงฉันที่เห็นวิดีโอนี้</target> | 9296 | <target state="translated">มีเพียงฉันที่เห็นวิดีโอนี้</target> |
8984 | 9297 | ||
8985 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">340</context></context-group></trans-unit> | 9298 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">341</context></context-group></trans-unit> |
8986 | <trans-unit id="6767380569816110388" datatype="html"> | 9299 | <trans-unit id="6767380569816110388" datatype="html"> |
8987 | <source>Only shareable via a private link</source> | 9300 | <source>Only shareable via a private link</source> |
8988 | <target state="new">Only shareable via a private link</target> | 9301 | <target state="new">Only shareable via a private link</target> |
8989 | 9302 | ||
8990 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">344</context></context-group></trans-unit> | 9303 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">345</context></context-group></trans-unit> |
8991 | <trans-unit id="6828965264297239528" datatype="html"> | 9304 | <trans-unit id="6828965264297239528" datatype="html"> |
8992 | <source>Anyone can see this video</source> | 9305 | <source>Anyone can see this video</source> |
8993 | <target state="translated">ทุกคนเห็นวิดีโอนี้</target> | 9306 | <target state="translated">ทุกคนเห็นวิดีโอนี้</target> |
8994 | 9307 | ||
8995 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">348</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">349</context></context-group></trans-unit> |
8996 | <trans-unit id="1425933035739773115" datatype="html"> | 9309 | <trans-unit id="1425933035739773115" datatype="html"> |
8997 | <source>Only users of this instance can see this video</source> | 9310 | <source>Only users of this instance can see this video</source> |
8998 | <target state="new">Only users of this instance can see this video</target> | 9311 | <target state="new">Only users of this instance can see this video</target> |
8999 | 9312 | ||
9000 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">352</context></context-group></trans-unit> | 9313 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">353</context></context-group></trans-unit> |
9001 | <trans-unit id="5210096066382592800" datatype="html"> | 9314 | <trans-unit id="5210096066382592800" datatype="html"> |
9002 | <source>Video to import updated.</source> | 9315 | <source>Video to import updated.</source> |
9003 | <target state="new">Video to import updated.</target> | 9316 | <target state="new">Video to import updated.</target> |
@@ -9077,7 +9390,7 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9077 | <target state="new">Report comment</target> | 9390 | <target state="new">Report comment</target> |
9078 | 9391 | ||
9079 | 9392 | ||
9080 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 9393 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/report-modals/comment-report.component.ts</context><context context-type="linenumber">51</context></context-group></trans-unit> |
9081 | 9394 | ||
9082 | 9395 | ||
9083 | <trans-unit id="6775540171466219199" datatype="html"> | 9396 | <trans-unit id="6775540171466219199" datatype="html"> |
@@ -9241,6 +9554,36 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9241 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> | 9554 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> |
9242 | <context context-type="linenumber">36</context> | 9555 | <context context-type="linenumber">36</context> |
9243 | </context-group> | 9556 | </context-group> |
9557 | </trans-unit><trans-unit id="4668975178372693951" datatype="html"> | ||
9558 | <source>Discover videos</source><target state="new">Discover videos</target> | ||
9559 | <context-group purpose="location"> | ||
9560 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9561 | <context context-type="linenumber">23</context> | ||
9562 | </context-group> | ||
9563 | </trans-unit><trans-unit id="8067135025051844577" datatype="html"> | ||
9564 | <source>Trending videos</source><target state="new">Trending videos</target> | ||
9565 | <context-group purpose="location"> | ||
9566 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9567 | <context context-type="linenumber">32</context> | ||
9568 | </context-group> | ||
9569 | </trans-unit><trans-unit id="664221386829541948" datatype="html"> | ||
9570 | <source>Recently added videos</source><target state="new">Recently added videos</target> | ||
9571 | <context-group purpose="location"> | ||
9572 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9573 | <context context-type="linenumber">58</context> | ||
9574 | </context-group> | ||
9575 | </trans-unit><trans-unit id="8212906256415538361" datatype="html"> | ||
9576 | <source>Upload a video</source><target state="new">Upload a video</target> | ||
9577 | <context-group purpose="location"> | ||
9578 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9579 | <context context-type="linenumber">97</context> | ||
9580 | </context-group> | ||
9581 | </trans-unit><trans-unit id="7590784934397800835" datatype="html"> | ||
9582 | <source>Edit a video</source><target state="new">Edit a video</target> | ||
9583 | <context-group purpose="location"> | ||
9584 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9585 | <context context-type="linenumber">106</context> | ||
9586 | </context-group> | ||
9244 | </trans-unit> | 9587 | </trans-unit> |
9245 | </body> | 9588 | </body> |
9246 | </file> | 9589 | </file> |
diff --git a/client/src/locale/angular.uk-UA.xlf b/client/src/locale/angular.uk-UA.xlf index be69040ef..c6e7c4444 100644 --- a/client/src/locale/angular.uk-UA.xlf +++ b/client/src/locale/angular.uk-UA.xlf | |||
@@ -290,7 +290,7 @@ | |||
290 | <target state="translated">Опції</target> | 290 | <target state="translated">Опції</target> |
291 | 291 | ||
292 | 292 | ||
293 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 293 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">48</context></context-group></trans-unit> |
294 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d" datatype="html"> | 294 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d" datatype="html"> |
295 | <source>Start at</source> | 295 | <source>Start at</source> |
296 | <target state="translated">Почати з</target> | 296 | <target state="translated">Почати з</target> |
@@ -418,7 +418,7 @@ | |||
418 | <source>Cancel</source> | 418 | <source>Cancel</source> |
419 | <target state="translated">Відміна</target> | 419 | <target state="translated">Відміна</target> |
420 | 420 | ||
421 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> | 421 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit> |
422 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd" datatype="html"> | 422 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd" datatype="html"> |
423 | <source>Download</source> | 423 | <source>Download</source> |
424 | <target state="translated">Скачати</target> | 424 | <target state="translated">Скачати</target> |
@@ -533,7 +533,7 @@ | |||
533 | 533 | ||
534 | 534 | ||
535 | 535 | ||
536 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 536 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
537 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc" datatype="html"> | 537 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc" datatype="html"> |
538 | <source>Edit starts/stops at</source> | 538 | <source>Edit starts/stops at</source> |
539 | <target state="translated">Змінити час початку/зупинки</target> | 539 | <target state="translated">Змінити час початку/зупинки</target> |
@@ -573,7 +573,7 @@ | |||
573 | 573 | ||
574 | 574 | ||
575 | 575 | ||
576 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> | 576 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
577 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> | 577 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> |
578 | <source>Edit</source> | 578 | <source>Edit</source> |
579 | <target>Редагувати</target> | 579 | <target>Редагувати</target> |
@@ -598,17 +598,10 @@ | |||
598 | <target>Готовий попередній перегляд</target> | 598 | <target>Готовий попередній перегляд</target> |
599 | 599 | ||
600 | <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></trans-unit> | 600 | <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></trans-unit> |
601 | <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f"> | 601 | <trans-unit id="8644431249513874405" datatype="html"> |
602 | <source>Get help</source> | ||
603 | <target>Отримати допомогу</target> | ||
604 | |||
605 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit><trans-unit id="8644431249513874405" datatype="html"> | ||
606 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> | 602 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> |
607 | <context-group purpose="location"> | 603 | |
608 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 604 | <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></trans-unit> |
609 | <context context-type="linenumber">71</context> | ||
610 | </context-group> | ||
611 | </trans-unit> | ||
612 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> | 605 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> |
613 | <source>Recommended</source> | 606 | <source>Recommended</source> |
614 | <target state="translated">Рекомендовано</target> | 607 | <target state="translated">Рекомендовано</target> |
@@ -648,7 +641,7 @@ | |||
648 | <source>PROFILE SETTINGS</source> | 641 | <source>PROFILE SETTINGS</source> |
649 | <target state="translated">НАЛАШТУВАННЯ ПРОФІЛЮ</target> | 642 | <target state="translated">НАЛАШТУВАННЯ ПРОФІЛЮ</target> |
650 | 643 | ||
651 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 644 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">12</context></context-group></trans-unit> |
652 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3" datatype="html"> | 645 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3" datatype="html"> |
653 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> | 646 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> |
654 | <target state="translated"> | 647 | <target state="translated"> |
@@ -813,11 +806,8 @@ | |||
813 | 806 | ||
814 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> | 807 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> |
815 | <source>User</source><target state="new">User</target> | 808 | <source>User</source><target state="new">User</target> |
816 | <context-group purpose="location"> | 809 | |
817 | <context context-type="sourcefile">../app/core/users/user.service.ts</context> | 810 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit> |
818 | <context context-type="linenumber">384</context> | ||
819 | </context-group> | ||
820 | </trans-unit> | ||
821 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0"> | 811 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0"> |
822 | <source>Ban</source> | 812 | <source>Ban</source> |
823 | <target>Заблокувати</target> | 813 | <target>Заблокувати</target> |
@@ -1276,89 +1266,89 @@ The link will expire within 1 hour.</target> | |||
1276 | <source>Account settings</source> | 1266 | <source>Account settings</source> |
1277 | <target state="new">Account settings</target> | 1267 | <target state="new">Account settings</target> |
1278 | 1268 | ||
1279 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 1269 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
1280 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> | 1270 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> |
1281 | <source>Channels settings</source> | 1271 | <source>Channels settings</source> |
1282 | <target state="new">Channels settings</target> | 1272 | <target state="new">Channels settings</target> |
1283 | 1273 | ||
1284 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 1274 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> |
1285 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> | 1275 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> |
1286 | <source>Interface:</source> | 1276 | <source>Interface:</source> |
1287 | <target state="new">Interface:</target> | 1277 | <target state="new">Interface:</target> |
1288 | 1278 | ||
1289 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 1279 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1290 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> | 1280 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> |
1291 | <source>Videos:</source> | 1281 | <source>Videos:</source> |
1292 | <target state="new">Videos:</target> | 1282 | <target state="new">Videos:</target> |
1293 | 1283 | ||
1294 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 1284 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> |
1295 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> | 1285 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> |
1296 | <source>Sensitive:</source> | 1286 | <source>Sensitive:</source> |
1297 | <target state="new">Sensitive:</target> | 1287 | <target state="new">Sensitive:</target> |
1298 | 1288 | ||
1299 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 1289 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">54</context></context-group></trans-unit> |
1300 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1290 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> |
1301 | <source>Interface: <x id="INTERPOLATION"/></source> | 1291 | <source>Interface: <x id="INTERPOLATION"/></source> |
1302 | <target state="new">Interface: | 1292 | <target state="new">Interface: |
1303 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> | 1293 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> |
1304 | </target> | 1294 | </target> |
1305 | 1295 | ||
1306 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">156</context></context-group></trans-unit> | 1296 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> |
1307 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1297 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1308 | <source>Help share videos</source> | 1298 | <source>Help share videos</source> |
1309 | <target state="new">Help share videos</target> | 1299 | <target state="new">Help share videos</target> |
1310 | 1300 | ||
1311 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> | 1301 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
1312 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> | 1302 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> |
1313 | <source>More account settings</source> | 1303 | <source>More account settings</source> |
1314 | <target state="new">More account settings</target> | 1304 | <target state="new">More account settings</target> |
1315 | 1305 | ||
1316 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> | 1306 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> |
1317 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> | 1307 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> |
1318 | <source>Keyboard shortcuts</source> | 1308 | <source>Keyboard shortcuts</source> |
1319 | <target state="new">Keyboard shortcuts</target> | 1309 | <target state="new">Keyboard shortcuts</target> |
1320 | 1310 | ||
1321 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 1311 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">72</context></context-group></trans-unit> |
1322 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> | 1312 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> |
1323 | <source>Help</source> | 1313 | <source>Help</source> |
1324 | <target state="new">Help</target> | 1314 | <target state="new">Help</target> |
1325 | 1315 | ||
1326 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1316 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1327 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> | 1317 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> |
1328 | <source>Get help using PeerTube</source> | 1318 | <source>Get help using PeerTube</source> |
1329 | <target state="new">Get help using PeerTube</target> | 1319 | <target state="new">Get help using PeerTube</target> |
1330 | 1320 | ||
1331 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">161</context></context-group></trans-unit> | 1321 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">167</context></context-group></trans-unit> |
1332 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> | 1322 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> |
1333 | <source>Shortcuts</source> | 1323 | <source>Shortcuts</source> |
1334 | <target state="new">Shortcuts</target> | 1324 | <target state="new">Shortcuts</target> |
1335 | 1325 | ||
1336 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1326 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1337 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> | 1327 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> |
1338 | <source>powered by PeerTube</source> | 1328 | <source>powered by PeerTube</source> |
1339 | <target state="new">powered by PeerTube</target> | 1329 | <target state="new">powered by PeerTube</target> |
1340 | 1330 | ||
1341 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | 1331 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">177</context></context-group></trans-unit> |
1342 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> | 1332 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> |
1343 | <source>powered by PeerTube - CopyLeft 2015-2020</source> | 1333 | <source>powered by PeerTube - CopyLeft 2015-2020</source> |
1344 | <target state="new">powered by PeerTube - CopyLeft 2015-2020</target> | 1334 | <target state="new">powered by PeerTube - CopyLeft 2015-2020</target> |
1345 | 1335 | ||
1346 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> | 1336 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">176</context></context-group></trans-unit> |
1347 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344" datatype="html"> | 1337 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344" datatype="html"> |
1348 | <source>Log out</source> | 1338 | <source>Log out</source> |
1349 | <target state="new">Log out</target> | 1339 | <target state="new">Log out</target> |
1350 | 1340 | ||
1351 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">70</context></context-group></trans-unit> | 1341 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit> |
1352 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87" datatype="html"> | 1342 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87" datatype="html"> |
1353 | <source>Create an account</source> | 1343 | <source>Create an account</source> |
1354 | <target state="new">Create an account</target> | 1344 | <target state="new">Create an account</target> |
1355 | 1345 | ||
1356 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">78</context></context-group></trans-unit> | 1346 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
1357 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> | 1347 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> |
1358 | <source>MY LIBRARY</source> | 1348 | <source>MY LIBRARY</source> |
1359 | <target state="new">MY LIBRARY</target> | 1349 | <target state="new">MY LIBRARY</target> |
1360 | 1350 | ||
1361 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 1351 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">88</context></context-group></trans-unit> |
1362 | <trans-unit id="6371572688505952303" datatype="html"> | 1352 | <trans-unit id="6371572688505952303" datatype="html"> |
1363 | <source>My library</source> | 1353 | <source>My library</source> |
1364 | <target state="new">My library</target> | 1354 | <target state="new">My library</target> |
@@ -1398,22 +1388,22 @@ The link will expire within 1 hour.</target> | |||
1398 | <source>Videos</source> | 1388 | <source>Videos</source> |
1399 | <target state="new">Videos</target> | 1389 | <target state="new">Videos</target> |
1400 | 1390 | ||
1401 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">86</context></context-group></trans-unit> | 1391 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">92</context></context-group></trans-unit> |
1402 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> | 1392 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> |
1403 | <source>Playlists</source> | 1393 | <source>Playlists</source> |
1404 | <target state="new">Playlists</target> | 1394 | <target state="new">Playlists</target> |
1405 | 1395 | ||
1406 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">91</context></context-group></trans-unit> | 1396 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">97</context></context-group></trans-unit> |
1407 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2" datatype="html"> | 1397 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2" datatype="html"> |
1408 | <source>Subscriptions</source> | 1398 | <source>Subscriptions</source> |
1409 | <target state="new">Subscriptions</target> | 1399 | <target state="new">Subscriptions</target> |
1410 | 1400 | ||
1411 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 1401 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">102</context></context-group></trans-unit> |
1412 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8" datatype="html"> | 1402 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8" datatype="html"> |
1413 | <source>History</source> | 1403 | <source>History</source> |
1414 | <target state="new">History</target> | 1404 | <target state="new">History</target> |
1415 | 1405 | ||
1416 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit> | 1406 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">107</context></context-group></trans-unit> |
1417 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> | 1407 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> |
1418 | <source>VIDEOS</source> | 1408 | <source>VIDEOS</source> |
1419 | <target state="new">VIDEOS</target> | 1409 | <target state="new">VIDEOS</target> |
@@ -1425,27 +1415,27 @@ The link will expire within 1 hour.</target> | |||
1425 | <target state="new">Discover</target> | 1415 | <target state="new">Discover</target> |
1426 | 1416 | ||
1427 | 1417 | ||
1428 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">111</context></context-group></trans-unit> | 1418 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">117</context></context-group></trans-unit> |
1429 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807" datatype="html"> | 1419 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807" datatype="html"> |
1430 | <source>Trending</source> | 1420 | <source>Trending</source> |
1431 | <target state="new">Trending</target> | 1421 | <target state="new">Trending</target> |
1432 | 1422 | ||
1433 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">116</context></context-group></trans-unit> | 1423 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">122</context></context-group></trans-unit> |
1434 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> | 1424 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> |
1435 | <source>Most liked</source> | 1425 | <source>Most liked</source> |
1436 | <target state="new">Most liked</target> | 1426 | <target state="new">Most liked</target> |
1437 | 1427 | ||
1438 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">121</context></context-group></trans-unit> | 1428 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">127</context></context-group></trans-unit> |
1439 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1" datatype="html"> | 1429 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1" datatype="html"> |
1440 | <source>Recently added</source> | 1430 | <source>Recently added</source> |
1441 | <target state="new">Recently added</target> | 1431 | <target state="new">Recently added</target> |
1442 | 1432 | ||
1443 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">126</context></context-group></trans-unit> | 1433 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">132</context></context-group></trans-unit> |
1444 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919" datatype="html"> | 1434 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919" datatype="html"> |
1445 | <source>Administration</source> | 1435 | <source>Administration</source> |
1446 | <target state="new">Administration</target> | 1436 | <target state="new">Administration</target> |
1447 | 1437 | ||
1448 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">140</context></context-group></trans-unit> | 1438 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">146</context></context-group></trans-unit> |
1449 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a" datatype="html"> | 1439 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a" datatype="html"> |
1450 | <source>About</source> | 1440 | <source>About</source> |
1451 | <target state="new">About</target> | 1441 | <target state="new">About</target> |
@@ -1456,7 +1446,7 @@ The link will expire within 1 hour.</target> | |||
1456 | <source>Contact</source> | 1446 | <source>Contact</source> |
1457 | <target state="new">Contact</target> | 1447 | <target state="new">Contact</target> |
1458 | 1448 | ||
1459 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">160</context></context-group></trans-unit> | 1449 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">166</context></context-group></trans-unit> |
1460 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771" datatype="html"> | 1450 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771" datatype="html"> |
1461 | <source>View your notifications</source> | 1451 | <source>View your notifications</source> |
1462 | <target state="new">View your notifications</target> | 1452 | <target state="new">View your notifications</target> |
@@ -1483,7 +1473,7 @@ The link will expire within 1 hour.</target> | |||
1483 | <source>See all your notifications</source> | 1473 | <source>See all your notifications</source> |
1484 | <target state="new">See all your notifications</target> | 1474 | <target state="new">See all your notifications</target> |
1485 | 1475 | ||
1486 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 1476 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">40</context></context-group></trans-unit> |
1487 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> | 1477 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> |
1488 | <source>Search videos, channels…</source> | 1478 | <source>Search videos, channels…</source> |
1489 | <target state="new">Search videos, channels…</target> | 1479 | <target state="new">Search videos, channels…</target> |
@@ -1817,22 +1807,22 @@ The link will expire within 1 hour.</target> | |||
1817 | <source>FAQ</source> | 1807 | <source>FAQ</source> |
1818 | <target state="new">FAQ</target> | 1808 | <target state="new">FAQ</target> |
1819 | 1809 | ||
1820 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">163</context></context-group></trans-unit> | 1810 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
1821 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> | 1811 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> |
1822 | <source>Frequently asked questions about PeerTube</source> | 1812 | <source>Frequently asked questions about PeerTube</source> |
1823 | <target state="new">Frequently asked questions about PeerTube</target> | 1813 | <target state="new">Frequently asked questions about PeerTube</target> |
1824 | 1814 | ||
1825 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1815 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1826 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> | 1816 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> |
1827 | <source>API</source> | 1817 | <source>API</source> |
1828 | <target state="new">API</target> | 1818 | <target state="new">API</target> |
1829 | 1819 | ||
1830 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1820 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1831 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> | 1821 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> |
1832 | <source>API documentation</source> | 1822 | <source>API documentation</source> |
1833 | <target state="new">API documentation</target> | 1823 | <target state="new">API documentation</target> |
1834 | 1824 | ||
1835 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 1825 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
1836 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5" datatype="html"> | 1826 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5" datatype="html"> |
1837 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> | 1827 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> |
1838 | <target state="new">Schedule publication ( | 1828 | <target state="new">Schedule publication ( |
@@ -2219,7 +2209,13 @@ The link will expire within 1 hour.</target> | |||
2219 | Less customization | 2209 | Less customization |
2220 | </target> | 2210 | </target> |
2221 | 2211 | ||
2222 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit> | 2212 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit><trans-unit id="2454050363478003966" datatype="html"> |
2213 | <source>Login</source><target state="new">Login</target> | ||
2214 | <context-group purpose="location"> | ||
2215 | <context context-type="sourcefile">../app/+login/login-routing.module.ts</context> | ||
2216 | <context context-type="linenumber">14</context> | ||
2217 | </context-group> | ||
2218 | </trans-unit> | ||
2223 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e" datatype="html"> | 2219 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e" datatype="html"> |
2224 | <source>Autoplay</source> | 2220 | <source>Autoplay</source> |
2225 | <target state="new">Autoplay</target> | 2221 | <target state="new">Autoplay</target> |
@@ -2484,7 +2480,7 @@ The link will expire within 1 hour.</target> | |||
2484 | <source>No comments.</source> | 2480 | <source>No comments.</source> |
2485 | <target state="new">No comments.</target> | 2481 | <target state="new">No comments.</target> |
2486 | 2482 | ||
2487 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 2483 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> |
2488 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> | 2484 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> |
2489 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> | 2485 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> |
2490 | <target state="new"> | 2486 | <target state="new"> |
@@ -2494,7 +2490,7 @@ The link will expire within 1 hour.</target> | |||
2494 | 2490 | ||
2495 | </target> | 2491 | </target> |
2496 | 2492 | ||
2497 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">79</context></context-group></trans-unit> | 2493 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
2498 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> | 2494 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> |
2499 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> | 2495 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> |
2500 | <target state="new"> | 2496 | <target state="new"> |
@@ -2503,50 +2499,116 @@ The link will expire within 1 hour.</target> | |||
2503 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> | 2499 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> |
2504 | </target> | 2500 | </target> |
2505 | 2501 | ||
2506 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 2502 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">87</context></context-group></trans-unit> |
2507 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> | 2503 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> |
2508 | <source>View <x id="INTERPOLATION"/> replies</source> | 2504 | <source>View <x id="INTERPOLATION"/> replies</source> |
2509 | <target state="new">View | 2505 | <target state="new">View |
2510 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies | 2506 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies |
2511 | </target> | 2507 | </target> |
2512 | 2508 | ||
2513 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">85</context></context-group></trans-unit> | 2509 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">90</context></context-group></trans-unit> |
2514 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828" datatype="html"> | 2510 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828" datatype="html"> |
2515 | <source>Comments are disabled.</source> | 2511 | <source>Comments are disabled.</source> |
2516 | <target state="new"> | 2512 | <target state="new"> |
2517 | Comments are disabled. | 2513 | Comments are disabled. |
2518 | </target> | 2514 | </target> |
2519 | 2515 | ||
2520 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit><trans-unit id="3691787517663044217" datatype="html"> | 2516 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit><trans-unit id="3691787517663044217" datatype="html"> |
2521 | <source> The deletion will be sent to remote instances so they can reflect the change.</source><target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> | 2517 | <source> The deletion will be sent to remote instances so they can reflect the change.</source><target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> |
2518 | |||
2519 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">169</context></context-group></trans-unit><trans-unit id="7321800851971795962" datatype="html"> | ||
2520 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source><target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> | ||
2521 | |||
2522 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="5964038603724691720" datatype="html"> | ||
2523 | <source>Delete and re-draft</source><target state="new">Delete and re-draft</target> | ||
2522 | <context-group purpose="location"> | 2524 | <context-group purpose="location"> |
2523 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | 2525 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> |
2524 | <context context-type="linenumber">163</context> | 2526 | <context context-type="linenumber">197</context> |
2525 | </context-group> | 2527 | </context-group> |
2526 | </trans-unit><trans-unit id="7321800851971795962" datatype="html"> | 2528 | </trans-unit><trans-unit id="7163633882758007711" datatype="html"> |
2527 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source><target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> | 2529 | <source>Do you really want to delete and re-draft this comment?</source><target state="new">Do you really want to delete and re-draft this comment?</target> |
2528 | <context-group purpose="location"> | 2530 | <context-group purpose="location"> |
2529 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | 2531 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> |
2530 | <context context-type="linenumber">165</context> | 2532 | <context context-type="linenumber">197</context> |
2531 | </context-group> | 2533 | </context-group> |
2532 | </trans-unit> | 2534 | </trans-unit> |
2533 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e" datatype="html"> | 2535 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e" datatype="html"> |
2534 | <source>Add comment...</source> | 2536 | <source>Add comment...</source> |
2535 | <target state="new">Add comment...</target> | 2537 | <target state="new">Add comment...</target> |
2536 | 2538 | ||
2537 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | 2539 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit><trans-unit id="4e5254dedf0c12ce7e7c2197384fceebe3b29a2b" datatype="html"> |
2538 | <trans-unit id="8956c0f4c6974289fc63f1ab6b54f5b32ed65eeb" datatype="html"> | 2540 | <source>Markdown compatible</source><target state="new">Markdown compatible</target> |
2539 | <source>Reply</source> | 2541 | <context-group purpose="location"> |
2540 | <target state="new"> | 2542 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> |
2541 | Reply | 2543 | <context context-type="linenumber">13</context> |
2542 | </target> | 2544 | </context-group> |
2543 | 2545 | </trans-unit><trans-unit id="4739ffad85f09defefdb6e51b45f43b2ef7c4388" datatype="html"> | |
2544 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 2546 | <source>Markdown compatible that supports:</source><target state="new">Markdown compatible that supports:</target> |
2547 | <context-group purpose="location"> | ||
2548 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2549 | <context context-type="linenumber">15</context> | ||
2550 | </context-group> | ||
2551 | </trans-unit><trans-unit id="9a53b17a021bb0677c156fd893461797fc497a10" datatype="html"> | ||
2552 | <source>Auto generated links</source><target state="new">Auto generated links</target> | ||
2553 | <context-group purpose="location"> | ||
2554 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2555 | <context context-type="linenumber">18</context> | ||
2556 | </context-group> | ||
2557 | </trans-unit><trans-unit id="664f99b8919d6dd2faa1c1f7c378aa86d1be5e8a" datatype="html"> | ||
2558 | <source>Break lines</source><target state="new">Break lines</target> | ||
2559 | <context-group purpose="location"> | ||
2560 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2561 | <context context-type="linenumber">19</context> | ||
2562 | </context-group> | ||
2563 | </trans-unit><trans-unit id="b15e7bec5c7833d2d9634946ccbed68967b1bee1" datatype="html"> | ||
2564 | <source>Lists</source><target state="new">Lists</target> | ||
2565 | <context-group purpose="location"> | ||
2566 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2567 | <context context-type="linenumber">20</context> | ||
2568 | </context-group> | ||
2569 | </trans-unit><trans-unit id="ab4426b60f13c00b61d6b714d390dc629f314980" datatype="html"> | ||
2570 | <source>Emphasis</source><target state="new">Emphasis</target> | ||
2571 | <context-group purpose="location"> | ||
2572 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2573 | <context context-type="linenumber">22</context> | ||
2574 | </context-group> | ||
2575 | </trans-unit><trans-unit id="4e13b179501d3d32721037e03b4c04acb9857c5f" datatype="html"> | ||
2576 | <source>bold</source><target state="new">bold</target> | ||
2577 | <context-group purpose="location"> | ||
2578 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2579 | <context context-type="linenumber">23</context> | ||
2580 | </context-group> | ||
2581 | </trans-unit><trans-unit id="3c12190421fbb2756e6bbead923df9ec5de8ede2" datatype="html"> | ||
2582 | <source>italic</source><target state="new">italic</target> | ||
2583 | <context-group purpose="location"> | ||
2584 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2585 | <context context-type="linenumber">23</context> | ||
2586 | </context-group> | ||
2587 | </trans-unit><trans-unit id="adb4bbdcb961b8aac8298d6cac554d9b25636b7a" datatype="html"> | ||
2588 | <source>Emoji shortcuts</source><target state="new">Emoji shortcuts</target> | ||
2589 | <context-group purpose="location"> | ||
2590 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2591 | <context context-type="linenumber">26</context> | ||
2592 | </context-group> | ||
2593 | </trans-unit><trans-unit id="b9809a21a8eb3c9db2a0282c5dd94bc221575c96" datatype="html"> | ||
2594 | <source>Emoji markup</source><target state="new">Emoji markup</target> | ||
2595 | <context-group purpose="location"> | ||
2596 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2597 | <context context-type="linenumber">30</context> | ||
2598 | </context-group> | ||
2599 | </trans-unit><trans-unit id="f37feb427aaa551edd1f22616be6464bc0d492de" datatype="html"> | ||
2600 | <source>See complete list</source><target state="new">See complete list</target> | ||
2601 | <context-group purpose="location"> | ||
2602 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2603 | <context context-type="linenumber">32</context> | ||
2604 | </context-group> | ||
2605 | </trans-unit> | ||
2606 | |||
2545 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135" datatype="html"> | 2607 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135" datatype="html"> |
2546 | <source>You are one step away from commenting</source> | 2608 | <source>You are one step away from commenting</source> |
2547 | <target state="new">You are one step away from commenting</target> | 2609 | <target state="new">You are one step away from commenting</target> |
2548 | 2610 | ||
2549 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 2611 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
2550 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> | 2612 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> |
2551 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> | 2613 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> |
2552 | <target state="new"> | 2614 | <target state="new"> |
@@ -2555,19 +2617,37 @@ The link will expire within 1 hour.</target> | |||
2555 | from within the software's interface. | 2617 | from within the software's interface. |
2556 | </target> | 2618 | </target> |
2557 | 2619 | ||
2558 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 2620 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
2559 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb" datatype="html"> | 2621 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb" datatype="html"> |
2560 | <source>If you have an account on Mastodon or Pleroma, you can open it directly in their interface:</source> | 2622 | <source>If you have an account on Mastodon or Pleroma, you can open it directly in their interface:</source> |
2561 | <target state="new"> | 2623 | <target state="new"> |
2562 | If you have an account on Mastodon or Pleroma, you can open it directly in their interface: | 2624 | If you have an account on Mastodon or Pleroma, you can open it directly in their interface: |
2563 | </target> | 2625 | </target> |
2564 | 2626 | ||
2565 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">41</context></context-group></trans-unit> | 2627 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">65</context></context-group></trans-unit> |
2566 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> | 2628 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> |
2567 | <source>Login to comment</source> | 2629 | <source>Login to comment</source> |
2568 | <target state="new">Login to comment</target> | 2630 | <target state="new">Login to comment</target> |
2569 | 2631 | ||
2570 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">52</context></context-group></trans-unit> | 2632 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit><trans-unit id="974170f455ff5a9034d5737e84b4194c0046fc6b" datatype="html"> |
2633 | <source>Markdown Emoji List</source><target state="new">Markdown Emoji List</target> | ||
2634 | <context-group purpose="location"> | ||
2635 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2636 | <context context-type="linenumber">84</context> | ||
2637 | </context-group> | ||
2638 | </trans-unit><trans-unit id="2662644497259948010" datatype="html"> | ||
2639 | <source>Comment</source><target state="new">Comment</target> | ||
2640 | <context-group purpose="location"> | ||
2641 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2642 | <context context-type="linenumber">58</context> | ||
2643 | </context-group> | ||
2644 | </trans-unit><trans-unit id="4502286564339177240" datatype="html"> | ||
2645 | <source>Reply</source><target state="new">Reply</target> | ||
2646 | <context-group purpose="location"> | ||
2647 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2648 | <context context-type="linenumber">60</context> | ||
2649 | </context-group> | ||
2650 | </trans-unit> | ||
2571 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285" datatype="html"> | 2651 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285" datatype="html"> |
2572 | <source>Highlighted comment</source> | 2652 | <source>Highlighted comment</source> |
2573 | <target state="new">Highlighted comment</target> | 2653 | <target state="new">Highlighted comment</target> |
@@ -2582,7 +2662,7 @@ The link will expire within 1 hour.</target> | |||
2582 | <source>This comment has been deleted</source> | 2662 | <source>This comment has been deleted</source> |
2583 | <target state="new">This comment has been deleted</target> | 2663 | <target state="new">This comment has been deleted</target> |
2584 | 2664 | ||
2585 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">62</context></context-group></trans-unit> | 2665 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">61</context></context-group></trans-unit> |
2586 | <trans-unit id="9031514421077169181" datatype="html"> | 2666 | <trans-unit id="9031514421077169181" datatype="html"> |
2587 | <source>Video redundancies</source> | 2667 | <source>Video redundancies</source> |
2588 | <target state="new">Video redundancies</target> | 2668 | <target state="new">Video redundancies</target> |
@@ -3431,7 +3511,25 @@ The link will expire within 1 hour.</target> | |||
3431 | <target state="new">No account found.</target> | 3511 | <target state="new">No account found.</target> |
3432 | 3512 | ||
3433 | 3513 | ||
3434 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit> | 3514 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit><trans-unit id="2338185419645468935" datatype="html"> |
3515 | <source>List installed plugins</source><target state="new">List installed plugins</target> | ||
3516 | <context-group purpose="location"> | ||
3517 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3518 | <context context-type="linenumber">28</context> | ||
3519 | </context-group> | ||
3520 | </trans-unit><trans-unit id="8897412584195581488" datatype="html"> | ||
3521 | <source>Search plugins</source><target state="new">Search plugins</target> | ||
3522 | <context-group purpose="location"> | ||
3523 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3524 | <context context-type="linenumber">37</context> | ||
3525 | </context-group> | ||
3526 | </trans-unit><trans-unit id="4994333937800672218" datatype="html"> | ||
3527 | <source>Show plugin</source><target state="new">Show plugin</target> | ||
3528 | <context-group purpose="location"> | ||
3529 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3530 | <context context-type="linenumber">46</context> | ||
3531 | </context-group> | ||
3532 | </trans-unit> | ||
3435 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> | 3533 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> |
3436 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> | 3534 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> |
3437 | <target state="new">Showing | 3535 | <target state="new">Showing |
@@ -4156,7 +4254,7 @@ The link will expire within 1 hour.</target> | |||
4156 | <source>Administrator</source> | 4254 | <source>Administrator</source> |
4157 | <target state="new">Administrator</target> | 4255 | <target state="new">Administrator</target> |
4158 | 4256 | ||
4159 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">385</context></context-group></trans-unit> | 4257 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">383</context></context-group></trans-unit> |
4160 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587" datatype="html"> | 4258 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587" datatype="html"> |
4161 | <source>Admin email</source> | 4259 | <source>Admin email</source> |
4162 | <target state="new">Admin email</target> | 4260 | <target state="new">Admin email</target> |
@@ -4412,27 +4510,27 @@ The link will expire within 1 hour.</target> | |||
4412 | <source>VIDEO SETTINGS</source> | 4510 | <source>VIDEO SETTINGS</source> |
4413 | <target state="new">VIDEO SETTINGS</target> | 4511 | <target state="new">VIDEO SETTINGS</target> |
4414 | 4512 | ||
4415 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit> | 4513 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
4416 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> | 4514 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> |
4417 | <source>NOTIFICATIONS</source> | 4515 | <source>NOTIFICATIONS</source> |
4418 | <target state="new">NOTIFICATIONS</target> | 4516 | <target state="new">NOTIFICATIONS</target> |
4419 | 4517 | ||
4420 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 4518 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">37</context></context-group></trans-unit> |
4421 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> | 4519 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> |
4422 | <source>INTERFACE</source> | 4520 | <source>INTERFACE</source> |
4423 | <target state="new">INTERFACE</target> | 4521 | <target state="new">INTERFACE</target> |
4424 | 4522 | ||
4425 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 4523 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit> |
4426 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> | 4524 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> |
4427 | <source>PASSWORD</source> | 4525 | <source>PASSWORD</source> |
4428 | <target state="new">PASSWORD</target> | 4526 | <target state="new">PASSWORD</target> |
4429 | 4527 | ||
4430 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">59</context></context-group></trans-unit> | 4528 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">57</context></context-group></trans-unit> |
4431 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> | 4529 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> |
4432 | <source>EMAIL</source> | 4530 | <source>EMAIL</source> |
4433 | <target state="new">EMAIL</target> | 4531 | <target state="new">EMAIL</target> |
4434 | 4532 | ||
4435 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">69</context></context-group></trans-unit> | 4533 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">67</context></context-group></trans-unit> |
4436 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> | 4534 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> |
4437 | <source>DANGER ZONE</source> | 4535 | <source>DANGER ZONE</source> |
4438 | <target state="new">DANGER ZONE</target> | 4536 | <target state="new">DANGER ZONE</target> |
@@ -4682,7 +4780,31 @@ The link will expire within 1 hour.</target> | |||
4682 | <source>No ownership change request found.</source> | 4780 | <source>No ownership change request found.</source> |
4683 | <target state="new">No ownership change request found.</target> | 4781 | <target state="new">No ownership change request found.</target> |
4684 | 4782 | ||
4685 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit> | 4783 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit><trans-unit id="4247400351982331798" datatype="html"> |
4784 | <source>Account settings</source><target state="new">Account settings</target> | ||
4785 | <context-group purpose="location"> | ||
4786 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4787 | <context context-type="linenumber">37</context> | ||
4788 | </context-group> | ||
4789 | </trans-unit><trans-unit id="154062590416726309" datatype="html"> | ||
4790 | <source>Account playlists</source><target state="new">Account playlists</target> | ||
4791 | <context-group purpose="location"> | ||
4792 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4793 | <context context-type="linenumber">55</context> | ||
4794 | </context-group> | ||
4795 | </trans-unit><trans-unit id="6550287183367517925" datatype="html"> | ||
4796 | <source>Create new playlist</source><target state="new">Create new playlist</target> | ||
4797 | <context-group purpose="location"> | ||
4798 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4799 | <context context-type="linenumber">64</context> | ||
4800 | </context-group> | ||
4801 | </trans-unit><trans-unit id="2864486939135008600" datatype="html"> | ||
4802 | <source>Playlist elements</source><target state="new">Playlist elements</target> | ||
4803 | <context-group purpose="location"> | ||
4804 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4805 | <context context-type="linenumber">73</context> | ||
4806 | </context-group> | ||
4807 | </trans-unit> | ||
4686 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> | 4808 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> |
4687 | <source>My imports</source> | 4809 | <source>My imports</source> |
4688 | <target state="new">My imports</target> | 4810 | <target state="new">My imports</target> |
@@ -4953,7 +5075,25 @@ The link will expire within 1 hour.</target> | |||
4953 | <source>An error occurred.</source> | 5075 | <source>An error occurred.</source> |
4954 | <target state="new">An error occurred.</target> | 5076 | <target state="new">An error occurred.</target> |
4955 | 5077 | ||
4956 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 5078 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit><trans-unit id="9128669621822125729" datatype="html"> |
5079 | <source>Video channel videos</source><target state="new">Video channel videos</target> | ||
5080 | <context-group purpose="location"> | ||
5081 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5082 | <context context-type="linenumber">25</context> | ||
5083 | </context-group> | ||
5084 | </trans-unit><trans-unit id="3193822049276963401" datatype="html"> | ||
5085 | <source>Video channel playlists</source><target state="new">Video channel playlists</target> | ||
5086 | <context-group purpose="location"> | ||
5087 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5088 | <context context-type="linenumber">38</context> | ||
5089 | </context-group> | ||
5090 | </trans-unit><trans-unit id="4723526509708949088" datatype="html"> | ||
5091 | <source>About video channel</source><target state="new">About video channel</target> | ||
5092 | <context-group purpose="location"> | ||
5093 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5094 | <context context-type="linenumber">47</context> | ||
5095 | </context-group> | ||
5096 | </trans-unit> | ||
4957 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97" datatype="html"> | 5097 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97" datatype="html"> |
4958 | <source>Request email for account verification</source> | 5098 | <source>Request email for account verification</source> |
4959 | <target state="new"> | 5099 | <target state="new"> |
@@ -5072,7 +5212,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5072 | <source>Stats</source> | 5212 | <source>Stats</source> |
5073 | <target state="new">Stats</target> | 5213 | <target state="new">Stats</target> |
5074 | 5214 | ||
5075 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 5215 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
5076 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc" datatype="html"> | 5216 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc" datatype="html"> |
5077 | <source>Joined <x id="INTERPOLATION"/></source> | 5217 | <source>Joined <x id="INTERPOLATION"/></source> |
5078 | <target state="new">Joined | 5218 | <target state="new">Joined |
@@ -5509,7 +5649,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5509 | <source>This instance does not have instances followings.</source> | 5649 | <source>This instance does not have instances followings.</source> |
5510 | <target state="new">This instance does not have instances followings.</target> | 5650 | <target state="new">This instance does not have instances followings.</target> |
5511 | 5651 | ||
5512 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit> | 5652 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit><trans-unit id="4195286790385468087" datatype="html"> |
5653 | <source>About this instance</source><target state="new">About this instance</target> | ||
5654 | <context-group purpose="location"> | ||
5655 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5656 | <context context-type="linenumber">26</context> | ||
5657 | </context-group> | ||
5658 | </trans-unit><trans-unit id="8773846522957677259" datatype="html"> | ||
5659 | <source>About PeerTube</source><target state="new">About PeerTube</target> | ||
5660 | <context-group purpose="location"> | ||
5661 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5662 | <context context-type="linenumber">38</context> | ||
5663 | </context-group> | ||
5664 | </trans-unit><trans-unit id="5782088737558028158" datatype="html"> | ||
5665 | <source>About follows</source><target state="new">About follows</target> | ||
5666 | <context-group purpose="location"> | ||
5667 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5668 | <context context-type="linenumber">47</context> | ||
5669 | </context-group> | ||
5670 | </trans-unit> | ||
5513 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> | 5671 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> |
5514 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> | 5672 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> |
5515 | <target state="new">Developed with ❤ by | 5673 | <target state="new">Developed with ❤ by |
@@ -5679,6 +5837,12 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5679 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 5837 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> |
5680 | <context context-type="linenumber">1</context> | 5838 | <context context-type="linenumber">1</context> |
5681 | </context-group> | 5839 | </context-group> |
5840 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
5841 | <source>Get help</source><target state="new">Get help</target> | ||
5842 | <context-group purpose="location"> | ||
5843 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | ||
5844 | <context context-type="linenumber">16</context> | ||
5845 | </context-group> | ||
5682 | </trans-unit> | 5846 | </trans-unit> |
5683 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1" datatype="html"> | 5847 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1" datatype="html"> |
5684 | <source>Create my account</source> | 5848 | <source>Create my account</source> |
@@ -5803,7 +5967,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5803 | 5967 | ||
5804 | </target> | 5968 | </target> |
5805 | 5969 | ||
5806 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 5970 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit><trans-unit id="3301086086650990787" datatype="html"> |
5971 | <source>Register</source><target state="new">Register</target> | ||
5972 | <context-group purpose="location"> | ||
5973 | <context context-type="sourcefile">../app/+signup/+register/register-routing.module.ts</context> | ||
5974 | <context context-type="linenumber">14</context> | ||
5975 | </context-group> | ||
5976 | </trans-unit> | ||
5807 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> | 5977 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> |
5808 | <source>Sorry, we couldn't find the page you were looking for.</source> | 5978 | <source>Sorry, we couldn't find the page you were looking for.</source> |
5809 | <target state="new"> | 5979 | <target state="new"> |
@@ -5826,7 +5996,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5826 | <target state="new">No description</target> | 5996 | <target state="new">No description</target> |
5827 | 5997 | ||
5828 | 5998 | ||
5829 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit> | 5999 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit><trans-unit id="819067926858619041" datatype="html"> |
6000 | <source>Account videos</source><target state="new">Account videos</target> | ||
6001 | <context-group purpose="location"> | ||
6002 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6003 | <context context-type="linenumber">29</context> | ||
6004 | </context-group> | ||
6005 | </trans-unit><trans-unit id="6823616469362610020" datatype="html"> | ||
6006 | <source>Account video channels</source><target state="new">Account video channels</target> | ||
6007 | <context-group purpose="location"> | ||
6008 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6009 | <context context-type="linenumber">42</context> | ||
6010 | </context-group> | ||
6011 | </trans-unit><trans-unit id="7678273613459026643" datatype="html"> | ||
6012 | <source>About account</source><target state="new">About account</target> | ||
6013 | <context-group purpose="location"> | ||
6014 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6015 | <context context-type="linenumber">51</context> | ||
6016 | </context-group> | ||
6017 | </trans-unit> | ||
5830 | <trans-unit id="3755500631176893489" datatype="html"> | 6018 | <trans-unit id="3755500631176893489" datatype="html"> |
5831 | <source>Published <x id="PH"/> videos</source> | 6019 | <source>Published <x id="PH"/> videos</source> |
5832 | <target state="new">Published | 6020 | <target state="new">Published |
@@ -5943,7 +6131,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5943 | <source>Configuration updated.</source> | 6131 | <source>Configuration updated.</source> |
5944 | <target state="new">Configuration updated.</target> | 6132 | <target state="new">Configuration updated.</target> |
5945 | 6133 | ||
5946 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit> | 6134 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit><trans-unit id="6284468333579755406" datatype="html"> |
6135 | <source>Edit custom configuration</source><target state="new">Edit custom configuration</target> | ||
6136 | <context-group purpose="location"> | ||
6137 | <context context-type="sourcefile">../app/+admin/config/config.routes.ts</context> | ||
6138 | <context context-type="linenumber">26</context> | ||
6139 | </context-group> | ||
6140 | </trans-unit> | ||
5947 | 6141 | ||
5948 | 6142 | ||
5949 | <trans-unit id="6549061957433635758" datatype="html"> | 6143 | <trans-unit id="6549061957433635758" datatype="html"> |
@@ -6422,7 +6616,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6422 | <x id="PH"/> updated. | 6616 | <x id="PH"/> updated. |
6423 | </target> | 6617 | </target> |
6424 | 6618 | ||
6425 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 6619 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit><trans-unit id="3229595422546554334" datatype="html"> |
6620 | <source>Jobs</source><target state="new">Jobs</target> | ||
6621 | <context-group purpose="location"> | ||
6622 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6623 | <context context-type="linenumber">26</context> | ||
6624 | </context-group> | ||
6625 | </trans-unit><trans-unit id="4804785061014590286" datatype="html"> | ||
6626 | <source>Logs</source><target state="new">Logs</target> | ||
6627 | <context-group purpose="location"> | ||
6628 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6629 | <context context-type="linenumber">37</context> | ||
6630 | </context-group> | ||
6631 | </trans-unit> | ||
6426 | <trans-unit id="3150704904301058778" datatype="html"> | 6632 | <trans-unit id="3150704904301058778" datatype="html"> |
6427 | <source>The plugin index is not available. Please retry later.</source> | 6633 | <source>The plugin index is not available. Please retry later.</source> |
6428 | <target state="new">The plugin index is not available. Please retry later.</target> | 6634 | <target state="new">The plugin index is not available. Please retry later.</target> |
@@ -6536,6 +6742,18 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6536 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> | 6742 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> |
6537 | <context context-type="linenumber">86</context> | 6743 | <context context-type="linenumber">86</context> |
6538 | </context-group> | 6744 | </context-group> |
6745 | </trans-unit><trans-unit id="2903648076838460070" datatype="html"> | ||
6746 | <source>Videos blocked</source><target state="new">Videos blocked</target> | ||
6747 | <context-group purpose="location"> | ||
6748 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6749 | <context context-type="linenumber">67</context> | ||
6750 | </context-group> | ||
6751 | </trans-unit><trans-unit id="7805059636749367886" datatype="html"> | ||
6752 | <source>Muted instances</source><target state="new">Muted instances</target> | ||
6753 | <context-group purpose="location"> | ||
6754 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6755 | <context context-type="linenumber">89</context> | ||
6756 | </context-group> | ||
6539 | </trans-unit> | 6757 | </trans-unit> |
6540 | <trans-unit id="5974506725502681113" datatype="html"> | 6758 | <trans-unit id="5974506725502681113" datatype="html"> |
6541 | <source>Password changed for user <x id="PH"/>.</source> | 6759 | <source>Password changed for user <x id="PH"/>.</source> |
@@ -6548,7 +6766,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6548 | <source>Update user password</source> | 6766 | <source>Update user password</source> |
6549 | <target state="new">Update user password</target> | 6767 | <target state="new">Update user password</target> |
6550 | 6768 | ||
6551 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit> | 6769 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit><trans-unit id="177544274549739411" datatype="html"> |
6770 | <source>Following list</source><target state="new">Following list</target> | ||
6771 | <context-group purpose="location"> | ||
6772 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6773 | <context context-type="linenumber">28</context> | ||
6774 | </context-group> | ||
6775 | </trans-unit><trans-unit id="8092429110007204784" datatype="html"> | ||
6776 | <source>Followers list</source><target state="new">Followers list</target> | ||
6777 | <context-group purpose="location"> | ||
6778 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6779 | <context context-type="linenumber">37</context> | ||
6780 | </context-group> | ||
6781 | </trans-unit> | ||
6552 | <trans-unit id="780323526182667308" datatype="html"> | 6782 | <trans-unit id="780323526182667308" datatype="html"> |
6553 | <source>User <x id="PH"/> updated.</source> | 6783 | <source>User <x id="PH"/> updated.</source> |
6554 | <target state="new">User | 6784 | <target state="new">User |
@@ -6567,7 +6797,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6567 | <x id="PH"/>. | 6797 | <x id="PH"/>. |
6568 | </target> | 6798 | </target> |
6569 | 6799 | ||
6570 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="8564701209009684429" datatype="html"> | 6800 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="7483807629538115183" datatype="html"> |
6801 | <source>Users list</source><target state="new">Users list</target> | ||
6802 | <context-group purpose="location"> | ||
6803 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6804 | <context context-type="linenumber">27</context> | ||
6805 | </context-group> | ||
6806 | </trans-unit><trans-unit id="1525334987774465166" datatype="html"> | ||
6807 | <source>Create a user</source><target state="new">Create a user</target> | ||
6808 | <context-group purpose="location"> | ||
6809 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6810 | <context context-type="linenumber">36</context> | ||
6811 | </context-group> | ||
6812 | </trans-unit><trans-unit id="5552039423287890133" datatype="html"> | ||
6813 | <source>Update a user</source><target state="new">Update a user</target> | ||
6814 | <context-group purpose="location"> | ||
6815 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6816 | <context context-type="linenumber">48</context> | ||
6817 | </context-group> | ||
6818 | </trans-unit><trans-unit id="8564701209009684429" datatype="html"> | ||
6571 | <source>Federation</source><target state="new">Federation</target> | 6819 | <source>Federation</source><target state="new">Federation</target> |
6572 | <context-group purpose="location"> | 6820 | <context-group purpose="location"> |
6573 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> | 6821 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> |
@@ -6921,7 +7169,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6921 | <source>Views for the day</source> | 7169 | <source>Views for the day</source> |
6922 | <target state="new">Views for the day</target> | 7170 | <target state="new">Views for the day</target> |
6923 | 7171 | ||
6924 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit> | 7172 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit><trans-unit id="4707367314920217630" datatype="html"> |
7173 | <source>Create new video channel</source><target state="new">Create new video channel</target> | ||
7174 | <context-group purpose="location"> | ||
7175 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7176 | <context context-type="linenumber">22</context> | ||
7177 | </context-group> | ||
7178 | </trans-unit><trans-unit id="6059091237492573541" datatype="html"> | ||
7179 | <source>Update video channel</source><target state="new">Update video channel</target> | ||
7180 | <context-group purpose="location"> | ||
7181 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7182 | <context context-type="linenumber">31</context> | ||
7183 | </context-group> | ||
7184 | </trans-unit><trans-unit id="6595008830732269870" datatype="html"> | ||
7185 | <source>Not found</source><target state="new">Not found</target> | ||
7186 | <context-group purpose="location"> | ||
7187 | <context context-type="sourcefile">../app/+page-not-found/page-not-found-routing.module.ts</context> | ||
7188 | <context context-type="linenumber">13</context> | ||
7189 | </context-group> | ||
7190 | </trans-unit> | ||
6925 | <trans-unit id="5032453707232754344" datatype="html"> | 7191 | <trans-unit id="5032453707232754344" datatype="html"> |
6926 | <source>Playlist <x id="PH"/> created.</source> | 7192 | <source>Playlist <x id="PH"/> created.</source> |
6927 | <target state="new">Playlist | 7193 | <target state="new">Playlist |
@@ -6939,7 +7205,31 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6939 | <source>Update playlist</source> | 7205 | <source>Update playlist</source> |
6940 | <target state="new">Update playlist</target> | 7206 | <target state="new">Update playlist</target> |
6941 | 7207 | ||
6942 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-video-playlists/my-account-video-playlist-elements.component.ts</context><context context-type="linenumber">48</context></context-group></trans-unit> | 7208 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">82</context></context-group></trans-unit><trans-unit id="3410331549417637431" datatype="html"> |
7209 | <source>Account video imports</source><target state="new">Account video imports</target> | ||
7210 | <context-group purpose="location"> | ||
7211 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7212 | <context context-type="linenumber">105</context> | ||
7213 | </context-group> | ||
7214 | </trans-unit><trans-unit id="4434998055872154420" datatype="html"> | ||
7215 | <source>Account subscriptions</source><target state="new">Account subscriptions</target> | ||
7216 | <context-group purpose="location"> | ||
7217 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7218 | <context context-type="linenumber">114</context> | ||
7219 | </context-group> | ||
7220 | </trans-unit><trans-unit id="6019411775996586321" datatype="html"> | ||
7221 | <source>Videos history</source><target state="new">Videos history</target> | ||
7222 | <context-group purpose="location"> | ||
7223 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7224 | <context context-type="linenumber">150</context> | ||
7225 | </context-group> | ||
7226 | </trans-unit><trans-unit id="5851560788527570644" datatype="html"> | ||
7227 | <source>Notifications</source><target state="new">Notifications</target> | ||
7228 | <context-group purpose="location"> | ||
7229 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7230 | <context context-type="linenumber">163</context> | ||
7231 | </context-group> | ||
7232 | </trans-unit> | ||
6943 | <trans-unit id="104404386496394770" datatype="html"> | 7233 | <trans-unit id="104404386496394770" datatype="html"> |
6944 | <source>Delete playlist</source> | 7234 | <source>Delete playlist</source> |
6945 | <target state="new">Delete playlist</target> | 7235 | <target state="new">Delete playlist</target> |
@@ -7093,7 +7383,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7093 | <x id="PH"/>. | 7383 | <x id="PH"/>. |
7094 | </target> | 7384 | </target> |
7095 | 7385 | ||
7096 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit> | 7386 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit><trans-unit id="8231550792139699065" datatype="html"> |
7387 | <source>Verify account email</source><target state="new">Verify account email</target> | ||
7388 | <context-group purpose="location"> | ||
7389 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7390 | <context context-type="linenumber">17</context> | ||
7391 | </context-group> | ||
7392 | </trans-unit><trans-unit id="4997281272800290390" datatype="html"> | ||
7393 | <source>Verify account ask send email</source><target state="new">Verify account ask send email</target> | ||
7394 | <context-group purpose="location"> | ||
7395 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7396 | <context context-type="linenumber">26</context> | ||
7397 | </context-group> | ||
7398 | </trans-unit> | ||
7097 | <trans-unit id="4180693983967989981" datatype="html"> | 7399 | <trans-unit id="4180693983967989981" datatype="html"> |
7098 | <source>Unable to find user id or verification string.</source> | 7400 | <source>Unable to find user id or verification string.</source> |
7099 | <target state="new">Unable to find user id or verification string.</target> | 7401 | <target state="new">Unable to find user id or verification string.</target> |
@@ -7218,27 +7520,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7218 | <source>any language</source> | 7520 | <source>any language</source> |
7219 | <target state="new">any language</target> | 7521 | <target state="new">any language</target> |
7220 | 7522 | ||
7221 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">202</context></context-group></trans-unit> | 7523 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">229</context></context-group></trans-unit> |
7222 | <trans-unit id="5633144232269377096" datatype="html"> | 7524 | <trans-unit id="5633144232269377096" datatype="html"> |
7223 | <source>hide</source> | 7525 | <source>hide</source> |
7224 | <target state="new">hide</target> | 7526 | <target state="new">hide</target> |
7225 | 7527 | ||
7226 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">118</context></context-group></trans-unit> | 7528 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> |
7227 | <trans-unit id="8603861867909474404" datatype="html"> | 7529 | <trans-unit id="8603861867909474404" datatype="html"> |
7228 | <source>blur</source> | 7530 | <source>blur</source> |
7229 | <target state="new">blur</target> | 7531 | <target state="new">blur</target> |
7230 | 7532 | ||
7231 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> | 7533 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> |
7232 | <trans-unit id="4534458451100881847" datatype="html"> | 7534 | <trans-unit id="4534458451100881847" datatype="html"> |
7233 | <source>display</source> | 7535 | <source>display</source> |
7234 | <target state="new">display</target> | 7536 | <target state="new">display</target> |
7235 | 7537 | ||
7236 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> | 7538 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">127</context></context-group></trans-unit> |
7237 | <trans-unit id="4467323362722952678" datatype="html"> | 7539 | <trans-unit id="4467323362722952678" datatype="html"> |
7238 | <source>Unknown</source> | 7540 | <source>Unknown</source> |
7239 | <target state="new">Unknown</target> | 7541 | <target state="new">Unknown</target> |
7240 | 7542 | ||
7241 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">190</context></context-group></trans-unit> | 7543 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">193</context></context-group></trans-unit> |
7242 | <trans-unit id="8781423666414310853" datatype="html"> | 7544 | <trans-unit id="8781423666414310853" datatype="html"> |
7243 | <source>Your password has been successfully reset!</source> | 7545 | <source>Your password has been successfully reset!</source> |
7244 | <target state="new">Your password has been successfully reset!</target> | 7546 | <target state="new">Your password has been successfully reset!</target> |
@@ -8356,27 +8658,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8356 | <source>Emphasis</source> | 8658 | <source>Emphasis</source> |
8357 | <target state="new">Emphasis</target> | 8659 | <target state="new">Emphasis</target> |
8358 | 8660 | ||
8359 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">77</context></context-group></trans-unit> | 8661 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> |
8360 | <trans-unit id="7565716024468232322" datatype="html"> | 8662 | <trans-unit id="7565716024468232322" datatype="html"> |
8361 | <source>Links</source> | 8663 | <source>Links</source> |
8362 | <target state="new">Links</target> | 8664 | <target state="new">Links</target> |
8363 | 8665 | ||
8364 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">78</context></context-group></trans-unit> | 8666 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> |
8365 | <trans-unit id="7838476952710404110" datatype="html"> | 8667 | <trans-unit id="7838476952710404110" datatype="html"> |
8366 | <source>New lines</source> | 8668 | <source>New lines</source> |
8367 | <target state="new">New lines</target> | 8669 | <target state="new">New lines</target> |
8368 | 8670 | ||
8369 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 8671 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">83</context></context-group></trans-unit> |
8370 | <trans-unit id="8756167649220050929" datatype="html"> | 8672 | <trans-unit id="8756167649220050929" datatype="html"> |
8371 | <source>Lists</source> | 8673 | <source>Lists</source> |
8372 | <target state="new">Lists</target> | 8674 | <target state="new">Lists</target> |
8373 | 8675 | ||
8374 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">80</context></context-group></trans-unit> | 8676 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">84</context></context-group></trans-unit> |
8375 | <trans-unit id="414887388288176527" datatype="html"> | 8677 | <trans-unit id="414887388288176527" datatype="html"> |
8376 | <source>Images</source> | 8678 | <source>Images</source> |
8377 | <target state="new">Images</target> | 8679 | <target state="new">Images</target> |
8378 | 8680 | ||
8379 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> | 8681 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">85</context></context-group></trans-unit> |
8380 | <trans-unit id="5708680277917691451" datatype="html"> | 8682 | <trans-unit id="5708680277917691451" datatype="html"> |
8381 | <source> | 8683 | <source> |
8382 | <x id="PH"/> users banned. | 8684 | <x id="PH"/> users banned. |
@@ -8772,7 +9074,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8772 | <source>Moderator</source> | 9074 | <source>Moderator</source> |
8773 | <target state="new">Moderator</target> | 9075 | <target state="new">Moderator</target> |
8774 | 9076 | ||
8775 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">386</context></context-group></trans-unit> | 9077 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">384</context></context-group></trans-unit> |
8776 | <trans-unit id="3723085768598852106" datatype="html"> | 9078 | <trans-unit id="3723085768598852106" datatype="html"> |
8777 | <source>Video removed from | 9079 | <source>Video removed from |
8778 | <x id="PH"/> | 9080 | <x id="PH"/> |
@@ -8845,7 +9147,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8845 | <source>Do you really want to delete this comment?</source> | 9147 | <source>Do you really want to delete this comment?</source> |
8846 | <target state="new">Do you really want to delete this comment?</target> | 9148 | <target state="new">Do you really want to delete this comment?</target> |
8847 | 9149 | ||
8848 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">434</context></context-group></trans-unit> | 9150 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">166</context></context-group></trans-unit> |
8849 | <trans-unit id="7837272126865175984" datatype="html"> | 9151 | <trans-unit id="7837272126865175984" datatype="html"> |
8850 | <source>Comment deleted.</source> | 9152 | <source>Comment deleted.</source> |
8851 | <target state="new">Comment deleted.</target> | 9153 | <target state="new">Comment deleted.</target> |
@@ -8957,9 +9259,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8957 | 9259 | ||
8958 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> | 9260 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> |
8959 | <source>Report</source><target state="new">Report</target> | 9261 | <source>Report</source><target state="new">Report</target> |
9262 | |||
9263 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="4814285799071780083" datatype="html"> | ||
9264 | <source>Remove</source><target state="new">Remove</target> | ||
8960 | <context-group purpose="location"> | 9265 | <context-group purpose="location"> |
8961 | <context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> | 9266 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> |
8962 | <context context-type="linenumber">286</context> | 9267 | <context context-type="linenumber">179</context> |
9268 | </context-group> | ||
9269 | </trans-unit><trans-unit id="6871668720687277843" datatype="html"> | ||
9270 | <source>Remove & re-draft</source><target state="new">Remove & re-draft</target> | ||
9271 | <context-group purpose="location"> | ||
9272 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> | ||
9273 | <context context-type="linenumber">187</context> | ||
8963 | </context-group> | 9274 | </context-group> |
8964 | </trans-unit> | 9275 | </trans-unit> |
8965 | <trans-unit id="4903651219400691248" datatype="html"> | 9276 | <trans-unit id="4903651219400691248" datatype="html"> |
@@ -9063,22 +9374,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9063 | <source>Only I can see this video</source> | 9374 | <source>Only I can see this video</source> |
9064 | <target state="new">Only I can see this video</target> | 9375 | <target state="new">Only I can see this video</target> |
9065 | 9376 | ||
9066 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">340</context></context-group></trans-unit> | 9377 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">341</context></context-group></trans-unit> |
9067 | <trans-unit id="6767380569816110388" datatype="html"> | 9378 | <trans-unit id="6767380569816110388" datatype="html"> |
9068 | <source>Only shareable via a private link</source> | 9379 | <source>Only shareable via a private link</source> |
9069 | <target state="new">Only shareable via a private link</target> | 9380 | <target state="new">Only shareable via a private link</target> |
9070 | 9381 | ||
9071 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">344</context></context-group></trans-unit> | 9382 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">345</context></context-group></trans-unit> |
9072 | <trans-unit id="6828965264297239528" datatype="html"> | 9383 | <trans-unit id="6828965264297239528" datatype="html"> |
9073 | <source>Anyone can see this video</source> | 9384 | <source>Anyone can see this video</source> |
9074 | <target state="new">Anyone can see this video</target> | 9385 | <target state="new">Anyone can see this video</target> |
9075 | 9386 | ||
9076 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">348</context></context-group></trans-unit> | 9387 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">349</context></context-group></trans-unit> |
9077 | <trans-unit id="1425933035739773115" datatype="html"> | 9388 | <trans-unit id="1425933035739773115" datatype="html"> |
9078 | <source>Only users of this instance can see this video</source> | 9389 | <source>Only users of this instance can see this video</source> |
9079 | <target state="new">Only users of this instance can see this video</target> | 9390 | <target state="new">Only users of this instance can see this video</target> |
9080 | 9391 | ||
9081 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">352</context></context-group></trans-unit> | 9392 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">353</context></context-group></trans-unit> |
9082 | <trans-unit id="5210096066382592800" datatype="html"> | 9393 | <trans-unit id="5210096066382592800" datatype="html"> |
9083 | <source>Video to import updated.</source> | 9394 | <source>Video to import updated.</source> |
9084 | <target state="new">Video to import updated.</target> | 9395 | <target state="new">Video to import updated.</target> |
@@ -9158,7 +9469,7 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9158 | <target state="new">Report comment</target> | 9469 | <target state="new">Report comment</target> |
9159 | 9470 | ||
9160 | 9471 | ||
9161 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 9472 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/report-modals/comment-report.component.ts</context><context context-type="linenumber">51</context></context-group></trans-unit> |
9162 | 9473 | ||
9163 | 9474 | ||
9164 | <trans-unit id="6775540171466219199" datatype="html"> | 9475 | <trans-unit id="6775540171466219199" datatype="html"> |
@@ -9322,6 +9633,36 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9322 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> | 9633 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> |
9323 | <context context-type="linenumber">36</context> | 9634 | <context context-type="linenumber">36</context> |
9324 | </context-group> | 9635 | </context-group> |
9636 | </trans-unit><trans-unit id="4668975178372693951" datatype="html"> | ||
9637 | <source>Discover videos</source><target state="new">Discover videos</target> | ||
9638 | <context-group purpose="location"> | ||
9639 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9640 | <context context-type="linenumber">23</context> | ||
9641 | </context-group> | ||
9642 | </trans-unit><trans-unit id="8067135025051844577" datatype="html"> | ||
9643 | <source>Trending videos</source><target state="new">Trending videos</target> | ||
9644 | <context-group purpose="location"> | ||
9645 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9646 | <context context-type="linenumber">32</context> | ||
9647 | </context-group> | ||
9648 | </trans-unit><trans-unit id="664221386829541948" datatype="html"> | ||
9649 | <source>Recently added videos</source><target state="new">Recently added videos</target> | ||
9650 | <context-group purpose="location"> | ||
9651 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9652 | <context context-type="linenumber">58</context> | ||
9653 | </context-group> | ||
9654 | </trans-unit><trans-unit id="8212906256415538361" datatype="html"> | ||
9655 | <source>Upload a video</source><target state="new">Upload a video</target> | ||
9656 | <context-group purpose="location"> | ||
9657 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9658 | <context context-type="linenumber">97</context> | ||
9659 | </context-group> | ||
9660 | </trans-unit><trans-unit id="7590784934397800835" datatype="html"> | ||
9661 | <source>Edit a video</source><target state="new">Edit a video</target> | ||
9662 | <context-group purpose="location"> | ||
9663 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9664 | <context context-type="linenumber">106</context> | ||
9665 | </context-group> | ||
9325 | </trans-unit> | 9666 | </trans-unit> |
9326 | </body> | 9667 | </body> |
9327 | </file> | 9668 | </file> |
diff --git a/client/src/locale/angular.vi-VN.xlf b/client/src/locale/angular.vi-VN.xlf index 019e2cef8..ef943e900 100644 --- a/client/src/locale/angular.vi-VN.xlf +++ b/client/src/locale/angular.vi-VN.xlf | |||
@@ -318,7 +318,7 @@ | |||
318 | <target>Tuỳ chỉnh</target> | 318 | <target>Tuỳ chỉnh</target> |
319 | 319 | ||
320 | 320 | ||
321 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 321 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">48</context></context-group></trans-unit> |
322 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d"> | 322 | <trans-unit id="85e5d1de15d23cde43c530e3740a2a61aed24c2d"> |
323 | <source>Start at</source> | 323 | <source>Start at</source> |
324 | <target>Bắt đầu từ</target> | 324 | <target>Bắt đầu từ</target> |
@@ -452,7 +452,7 @@ | |||
452 | Huỷ | 452 | Huỷ |
453 | </target> | 453 | </target> |
454 | 454 | ||
455 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">22</context></context-group></trans-unit> | 455 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">46</context></context-group></trans-unit> |
456 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd"> | 456 | <trans-unit id="dc75033a5238fdc4f462212c847a45ba8018a3fd"> |
457 | <source>Download</source> | 457 | <source>Download</source> |
458 | <target>Tải về</target> | 458 | <target>Tải về</target> |
@@ -575,7 +575,7 @@ | |||
575 | 575 | ||
576 | 576 | ||
577 | 577 | ||
578 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">56</context></context-group></trans-unit> | 578 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
579 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc" datatype="html"> | 579 | <trans-unit id="2edccfda908b57c073dc0811eaa58818de2be2dc" datatype="html"> |
580 | <source>Edit starts/stops at</source> | 580 | <source>Edit starts/stops at</source> |
581 | <target state="new">Edit starts/stops at</target> | 581 | <target state="new">Edit starts/stops at</target> |
@@ -615,7 +615,7 @@ | |||
615 | 615 | ||
616 | 616 | ||
617 | 617 | ||
618 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> | 618 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-edit/shared/video-edit.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
619 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> | 619 | <trans-unit id="28f86ffd419b869711aa13f5e5ff54be6d70731c"> |
620 | <source>Edit</source> | 620 | <source>Edit</source> |
621 | <target>Sửa</target> | 621 | <target>Sửa</target> |
@@ -640,17 +640,10 @@ | |||
640 | <target>Xem trước đầy đủ</target> | 640 | <target>Xem trước đầy đủ</target> |
641 | 641 | ||
642 | <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></trans-unit> | 642 | <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></trans-unit> |
643 | <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f"> | 643 | <trans-unit id="8644431249513874405" datatype="html"> |
644 | <source>Get help</source> | ||
645 | <target>Nhận trợ giúp</target> | ||
646 | |||
647 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit><trans-unit id="8644431249513874405" datatype="html"> | ||
648 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> | 644 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source><target state="new"><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</target> |
649 | <context-group purpose="location"> | 645 | |
650 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 646 | <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></trans-unit> |
651 | <context context-type="linenumber">71</context> | ||
652 | </context-group> | ||
653 | </trans-unit> | ||
654 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> | 647 | <trans-unit id="98ae65ebba6c43c5cda8bdbd6f03e1daa0595af1" datatype="html"> |
655 | <source>Recommended</source> | 648 | <source>Recommended</source> |
656 | <target state="new">Recommended</target> | 649 | <target state="new">Recommended</target> |
@@ -690,7 +683,7 @@ | |||
690 | <source>PROFILE SETTINGS</source> | 683 | <source>PROFILE SETTINGS</source> |
691 | <target state="new">PROFILE SETTINGS</target> | 684 | <target state="new">PROFILE SETTINGS</target> |
692 | 685 | ||
693 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 686 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">12</context></context-group></trans-unit> |
694 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3" datatype="html"> | 687 | <trans-unit id="4913054c95f5ba14c351ab1b787f7abac97bfdd3" datatype="html"> |
695 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> | 688 | <source><x id="START_TAG_SPAN"/>Remote subscribe<x id="CLOSE_TAG_SPAN"/><x id="START_TAG_SPAN_1"/>Remote interact<x id="CLOSE_TAG_SPAN"/></source> |
696 | <target state="new"> | 689 | <target state="new"> |
@@ -862,11 +855,8 @@ | |||
862 | 855 | ||
863 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> | 856 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-instance/instance-statistics.component.html</context><context context-type="linenumber">95</context></context-group></trans-unit><trans-unit id="2392488717875840729" datatype="html"> |
864 | <source>User</source><target state="new">User</target> | 857 | <source>User</source><target state="new">User</target> |
865 | <context-group purpose="location"> | 858 | |
866 | <context context-type="sourcefile">../app/core/users/user.service.ts</context> | 859 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">382</context></context-group></trans-unit> |
867 | <context context-type="linenumber">384</context> | ||
868 | </context-group> | ||
869 | </trans-unit> | ||
870 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0"> | 860 | <trans-unit id="6a323f80f9d90a32db8ce52cc82075938c3c36f0"> |
871 | <source>Ban</source> | 861 | <source>Ban</source> |
872 | <target>Chặn</target> | 862 | <target>Chặn</target> |
@@ -1374,89 +1364,89 @@ The link will expire within 1 hour.</target> | |||
1374 | <source>Account settings</source> | 1364 | <source>Account settings</source> |
1375 | <target state="new">Account settings</target> | 1365 | <target state="new">Account settings</target> |
1376 | 1366 | ||
1377 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 1367 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
1378 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> | 1368 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> |
1379 | <source>Channels settings</source> | 1369 | <source>Channels settings</source> |
1380 | <target state="new">Channels settings</target> | 1370 | <target state="new">Channels settings</target> |
1381 | 1371 | ||
1382 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">29</context></context-group></trans-unit> | 1372 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> |
1383 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> | 1373 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> |
1384 | <source>Interface:</source> | 1374 | <source>Interface:</source> |
1385 | <target state="new">Interface:</target> | 1375 | <target state="new">Interface:</target> |
1386 | 1376 | ||
1387 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 1377 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">38</context></context-group></trans-unit> |
1388 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> | 1378 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> |
1389 | <source>Videos:</source> | 1379 | <source>Videos:</source> |
1390 | <target state="new">Videos:</target> | 1380 | <target state="new">Videos:</target> |
1391 | 1381 | ||
1392 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">42</context></context-group></trans-unit> | 1382 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">45</context></context-group></trans-unit> |
1393 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> | 1383 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> |
1394 | <source>Sensitive:</source> | 1384 | <source>Sensitive:</source> |
1395 | <target state="new">Sensitive:</target> | 1385 | <target state="new">Sensitive:</target> |
1396 | 1386 | ||
1397 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 1387 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">54</context></context-group></trans-unit> |
1398 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 1388 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> |
1399 | <source>Interface: <x id="INTERPOLATION"/></source> | 1389 | <source>Interface: <x id="INTERPOLATION"/></source> |
1400 | <target state="new">Interface: | 1390 | <target state="new">Interface: |
1401 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> | 1391 | <x id="INTERPOLATION" equiv-text="{{ language }}"/> |
1402 | </target> | 1392 | </target> |
1403 | 1393 | ||
1404 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">156</context></context-group></trans-unit> | 1394 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> |
1405 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 1395 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
1406 | <source>Help share videos</source> | 1396 | <source>Help share videos</source> |
1407 | <target state="new">Help share videos</target> | 1397 | <target state="new">Help share videos</target> |
1408 | 1398 | ||
1409 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> | 1399 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
1410 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> | 1400 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> |
1411 | <source>More account settings</source> | 1401 | <source>More account settings</source> |
1412 | <target state="new">More account settings</target> | 1402 | <target state="new">More account settings</target> |
1413 | 1403 | ||
1414 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> | 1404 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> |
1415 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> | 1405 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> |
1416 | <source>Keyboard shortcuts</source> | 1406 | <source>Keyboard shortcuts</source> |
1417 | <target state="new">Keyboard shortcuts</target> | 1407 | <target state="new">Keyboard shortcuts</target> |
1418 | 1408 | ||
1419 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 1409 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">72</context></context-group></trans-unit> |
1420 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> | 1410 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> |
1421 | <source>Help</source> | 1411 | <source>Help</source> |
1422 | <target state="new">Help</target> | 1412 | <target state="new">Help</target> |
1423 | 1413 | ||
1424 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1414 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1425 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> | 1415 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> |
1426 | <source>Get help using PeerTube</source> | 1416 | <source>Get help using PeerTube</source> |
1427 | <target state="new">Get help using PeerTube</target> | 1417 | <target state="new">Get help using PeerTube</target> |
1428 | 1418 | ||
1429 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">161</context></context-group></trans-unit> | 1419 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">167</context></context-group></trans-unit> |
1430 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> | 1420 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> |
1431 | <source>Shortcuts</source> | 1421 | <source>Shortcuts</source> |
1432 | <target state="new">Shortcuts</target> | 1422 | <target state="new">Shortcuts</target> |
1433 | 1423 | ||
1434 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1424 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1435 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> | 1425 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> |
1436 | <source>powered by PeerTube</source> | 1426 | <source>powered by PeerTube</source> |
1437 | <target state="new">powered by PeerTube</target> | 1427 | <target state="new">powered by PeerTube</target> |
1438 | 1428 | ||
1439 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> | 1429 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">177</context></context-group></trans-unit> |
1440 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> | 1430 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> |
1441 | <source>powered by PeerTube - CopyLeft 2015-2020</source> | 1431 | <source>powered by PeerTube - CopyLeft 2015-2020</source> |
1442 | <target state="new">powered by PeerTube - CopyLeft 2015-2020</target> | 1432 | <target state="new">powered by PeerTube - CopyLeft 2015-2020</target> |
1443 | 1433 | ||
1444 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> | 1434 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">176</context></context-group></trans-unit> |
1445 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344"> | 1435 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344"> |
1446 | <source>Log out</source> | 1436 | <source>Log out</source> |
1447 | <target>Đăng xuất</target> | 1437 | <target>Đăng xuất</target> |
1448 | 1438 | ||
1449 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">70</context></context-group></trans-unit> | 1439 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit> |
1450 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> | 1440 | <trans-unit id="d207cc1965ec0c29e594e0e9917f39bfc276ed87"> |
1451 | <source>Create an account</source> | 1441 | <source>Create an account</source> |
1452 | <target>Tạo tài khoản</target> | 1442 | <target>Tạo tài khoản</target> |
1453 | 1443 | ||
1454 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">78</context></context-group></trans-unit> | 1444 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
1455 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> | 1445 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> |
1456 | <source>MY LIBRARY</source> | 1446 | <source>MY LIBRARY</source> |
1457 | <target state="new">MY LIBRARY</target> | 1447 | <target state="new">MY LIBRARY</target> |
1458 | 1448 | ||
1459 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 1449 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">88</context></context-group></trans-unit> |
1460 | <trans-unit id="6371572688505952303"> | 1450 | <trans-unit id="6371572688505952303"> |
1461 | <source>My library</source> | 1451 | <source>My library</source> |
1462 | <target>Thư viện của tôi</target> | 1452 | <target>Thư viện của tôi</target> |
@@ -1496,22 +1486,22 @@ The link will expire within 1 hour.</target> | |||
1496 | <source>Videos</source> | 1486 | <source>Videos</source> |
1497 | <target>Video</target> | 1487 | <target>Video</target> |
1498 | 1488 | ||
1499 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">86</context></context-group></trans-unit> | 1489 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">92</context></context-group></trans-unit> |
1500 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> | 1490 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502"> |
1501 | <source>Playlists</source> | 1491 | <source>Playlists</source> |
1502 | <target>Danh sách phát</target> | 1492 | <target>Danh sách phát</target> |
1503 | 1493 | ||
1504 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">91</context></context-group></trans-unit> | 1494 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">97</context></context-group></trans-unit> |
1505 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2"> | 1495 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2"> |
1506 | <source>Subscriptions</source> | 1496 | <source>Subscriptions</source> |
1507 | <target>Danh sách đăng kí</target> | 1497 | <target>Danh sách đăng kí</target> |
1508 | 1498 | ||
1509 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 1499 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">102</context></context-group></trans-unit> |
1510 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8"> | 1500 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8"> |
1511 | <source>History</source> | 1501 | <source>History</source> |
1512 | <target>Lịch sử</target> | 1502 | <target>Lịch sử</target> |
1513 | 1503 | ||
1514 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit> | 1504 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">107</context></context-group></trans-unit> |
1515 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> | 1505 | <trans-unit id="165035acb08983753bcecc3e8b6b18c7caf26d35" datatype="html"> |
1516 | <source>VIDEOS</source> | 1506 | <source>VIDEOS</source> |
1517 | <target state="new">VIDEOS</target> | 1507 | <target state="new">VIDEOS</target> |
@@ -1523,27 +1513,27 @@ The link will expire within 1 hour.</target> | |||
1523 | <target>Khám phá</target> | 1513 | <target>Khám phá</target> |
1524 | 1514 | ||
1525 | 1515 | ||
1526 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">111</context></context-group></trans-unit> | 1516 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">117</context></context-group></trans-unit> |
1527 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> | 1517 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807"> |
1528 | <source>Trending</source> | 1518 | <source>Trending</source> |
1529 | <target>Thịnh hành</target> | 1519 | <target>Thịnh hành</target> |
1530 | 1520 | ||
1531 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">116</context></context-group></trans-unit> | 1521 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">122</context></context-group></trans-unit> |
1532 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> | 1522 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> |
1533 | <source>Most liked</source> | 1523 | <source>Most liked</source> |
1534 | <target state="new">Most liked</target> | 1524 | <target state="new">Most liked</target> |
1535 | 1525 | ||
1536 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">121</context></context-group></trans-unit> | 1526 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">127</context></context-group></trans-unit> |
1537 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> | 1527 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1"> |
1538 | <source>Recently added</source> | 1528 | <source>Recently added</source> |
1539 | <target>Đã thêm gần đây</target> | 1529 | <target>Đã thêm gần đây</target> |
1540 | 1530 | ||
1541 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">126</context></context-group></trans-unit> | 1531 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">132</context></context-group></trans-unit> |
1542 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> | 1532 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919"> |
1543 | <source>Administration</source> | 1533 | <source>Administration</source> |
1544 | <target>Người quản trị</target> | 1534 | <target>Người quản trị</target> |
1545 | 1535 | ||
1546 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">140</context></context-group></trans-unit> | 1536 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">146</context></context-group></trans-unit> |
1547 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> | 1537 | <trans-unit id="004b222ff9ef9dd4771b777950ca1d0e4cd4348a"> |
1548 | <source>About</source> | 1538 | <source>About</source> |
1549 | <target>Thông tin</target> | 1539 | <target>Thông tin</target> |
@@ -1554,7 +1544,7 @@ The link will expire within 1 hour.</target> | |||
1554 | <source>Contact</source> | 1544 | <source>Contact</source> |
1555 | <target state="new">Contact</target> | 1545 | <target state="new">Contact</target> |
1556 | 1546 | ||
1557 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">160</context></context-group></trans-unit> | 1547 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">166</context></context-group></trans-unit> |
1558 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771"> | 1548 | <trans-unit id="2dc8a0a3763cd5c456c84630fc335398c9b86771"> |
1559 | <source>View your notifications</source> | 1549 | <source>View your notifications</source> |
1560 | <target>Xem thông báo của bạn</target> | 1550 | <target>Xem thông báo của bạn</target> |
@@ -1581,7 +1571,7 @@ The link will expire within 1 hour.</target> | |||
1581 | <source>See all your notifications</source> | 1571 | <source>See all your notifications</source> |
1582 | <target>Xem toàn bộ thông báo của bạn</target> | 1572 | <target>Xem toàn bộ thông báo của bạn</target> |
1583 | 1573 | ||
1584 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 1574 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/avatar-notification.component.html</context><context context-type="linenumber">40</context></context-group></trans-unit> |
1585 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> | 1575 | <trans-unit id="73216504c8903e04fdb415d876eb8969dd3afa60" datatype="html"> |
1586 | <source>Search videos, channels…</source> | 1576 | <source>Search videos, channels…</source> |
1587 | <target state="new">Search videos, channels…</target> | 1577 | <target state="new">Search videos, channels…</target> |
@@ -1925,22 +1915,22 @@ The link will expire within 1 hour.</target> | |||
1925 | <source>FAQ</source> | 1915 | <source>FAQ</source> |
1926 | <target state="new">FAQ</target> | 1916 | <target state="new">FAQ</target> |
1927 | 1917 | ||
1928 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">163</context></context-group></trans-unit> | 1918 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">169</context></context-group></trans-unit> |
1929 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> | 1919 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> |
1930 | <source>Frequently asked questions about PeerTube</source> | 1920 | <source>Frequently asked questions about PeerTube</source> |
1931 | <target state="new">Frequently asked questions about PeerTube</target> | 1921 | <target state="new">Frequently asked questions about PeerTube</target> |
1932 | 1922 | ||
1933 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">162</context></context-group></trans-unit> | 1923 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">168</context></context-group></trans-unit> |
1934 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> | 1924 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> |
1935 | <source>API</source> | 1925 | <source>API</source> |
1936 | <target state="new">API</target> | 1926 | <target state="new">API</target> |
1937 | 1927 | ||
1938 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">165</context></context-group></trans-unit> | 1928 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">171</context></context-group></trans-unit> |
1939 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> | 1929 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> |
1940 | <source>API documentation</source> | 1930 | <source>API documentation</source> |
1941 | <target state="new">API documentation</target> | 1931 | <target state="new">API documentation</target> |
1942 | 1932 | ||
1943 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 1933 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
1944 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5"> | 1934 | <trans-unit id="d69f4fafc780cc7dbafb063ca5f11e6f7c91b0c5"> |
1945 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> | 1935 | <source>Schedule publication (<x id="INTERPOLATION"/>)</source> |
1946 | <target>Lên lịch xuất bản ( | 1936 | <target>Lên lịch xuất bản ( |
@@ -2341,7 +2331,13 @@ The link will expire within 1 hour.</target> | |||
2341 | Less customization | 2331 | Less customization |
2342 | </target> | 2332 | </target> |
2343 | 2333 | ||
2344 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit> | 2334 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-share-modal/video-share.component.html</context><context context-type="linenumber">224</context></context-group></trans-unit><trans-unit id="2454050363478003966" datatype="html"> |
2335 | <source>Login</source><target state="new">Login</target> | ||
2336 | <context-group purpose="location"> | ||
2337 | <context context-type="sourcefile">../app/+login/login-routing.module.ts</context> | ||
2338 | <context context-type="linenumber">14</context> | ||
2339 | </context-group> | ||
2340 | </trans-unit> | ||
2345 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e"> | 2341 | <trans-unit id="0c2e76c41af25effefd456fb1e86143e0cfd1a4e"> |
2346 | <source>Autoplay</source> | 2342 | <source>Autoplay</source> |
2347 | <target>Tự động phát</target> | 2343 | <target>Tự động phát</target> |
@@ -2616,7 +2612,7 @@ The link will expire within 1 hour.</target> | |||
2616 | <source>No comments.</source> | 2612 | <source>No comments.</source> |
2617 | <target>Không có bình luận.</target> | 2613 | <target>Không có bình luận.</target> |
2618 | 2614 | ||
2619 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">32</context></context-group></trans-unit> | 2615 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">33</context></context-group></trans-unit> |
2620 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> | 2616 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> |
2621 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> | 2617 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> |
2622 | <target state="new"> | 2618 | <target state="new"> |
@@ -2626,7 +2622,7 @@ The link will expire within 1 hour.</target> | |||
2626 | 2622 | ||
2627 | </target> | 2623 | </target> |
2628 | 2624 | ||
2629 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">79</context></context-group></trans-unit> | 2625 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">84</context></context-group></trans-unit> |
2630 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> | 2626 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> |
2631 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> | 2627 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> |
2632 | <target state="new"> | 2628 | <target state="new"> |
@@ -2635,14 +2631,14 @@ The link will expire within 1 hour.</target> | |||
2635 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> | 2631 | <x id="INTERPOLATION_1" equiv-text="{{ video?.account?.displayName || 'the author' }}"/> |
2636 | </target> | 2632 | </target> |
2637 | 2633 | ||
2638 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">82</context></context-group></trans-unit> | 2634 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">87</context></context-group></trans-unit> |
2639 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> | 2635 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> |
2640 | <source>View <x id="INTERPOLATION"/> replies</source> | 2636 | <source>View <x id="INTERPOLATION"/> replies</source> |
2641 | <target state="new">View | 2637 | <target state="new">View |
2642 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies | 2638 | <x id="INTERPOLATION" equiv-text="{{ comment.totalReplies }}"/> replies |
2643 | </target> | 2639 | </target> |
2644 | 2640 | ||
2645 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">85</context></context-group></trans-unit> | 2641 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">90</context></context-group></trans-unit> |
2646 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828"> | 2642 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828"> |
2647 | <source> | 2643 | <source> |
2648 | Comments are disabled. | 2644 | Comments are disabled. |
@@ -2651,26 +2647,84 @@ The link will expire within 1 hour.</target> | |||
2651 | Đã tắt bình luận. | 2647 | Đã tắt bình luận. |
2652 | </target> | 2648 | </target> |
2653 | 2649 | ||
2654 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">96</context></context-group></trans-unit> | 2650 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context><context context-type="linenumber">101</context></context-group></trans-unit> |
2655 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e"> | 2651 | <trans-unit id="db79255cb8757e9e945ba5f901a2b67e4189016e"> |
2656 | <source>Add comment...</source> | 2652 | <source>Add comment...</source> |
2657 | <target>Thêm bình luận...</target> | 2653 | <target>Thêm bình luận...</target> |
2658 | 2654 | ||
2659 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit> | 2655 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">6</context></context-group></trans-unit><trans-unit id="4e5254dedf0c12ce7e7c2197384fceebe3b29a2b" datatype="html"> |
2660 | <trans-unit id="8956c0f4c6974289fc63f1ab6b54f5b32ed65eeb" datatype="html"> | 2656 | <source>Markdown compatible</source><target state="new">Markdown compatible</target> |
2661 | <source> | 2657 | <context-group purpose="location"> |
2662 | Reply | 2658 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> |
2663 | </source> | 2659 | <context context-type="linenumber">13</context> |
2664 | <target state="new"> | 2660 | </context-group> |
2665 | Reply | 2661 | </trans-unit><trans-unit id="4739ffad85f09defefdb6e51b45f43b2ef7c4388" datatype="html"> |
2666 | </target> | 2662 | <source>Markdown compatible that supports:</source><target state="new">Markdown compatible that supports:</target> |
2667 | 2663 | <context-group purpose="location"> | |
2668 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">25</context></context-group></trans-unit> | 2664 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> |
2665 | <context context-type="linenumber">15</context> | ||
2666 | </context-group> | ||
2667 | </trans-unit><trans-unit id="9a53b17a021bb0677c156fd893461797fc497a10" datatype="html"> | ||
2668 | <source>Auto generated links</source><target state="new">Auto generated links</target> | ||
2669 | <context-group purpose="location"> | ||
2670 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2671 | <context context-type="linenumber">18</context> | ||
2672 | </context-group> | ||
2673 | </trans-unit><trans-unit id="664f99b8919d6dd2faa1c1f7c378aa86d1be5e8a" datatype="html"> | ||
2674 | <source>Break lines</source><target state="new">Break lines</target> | ||
2675 | <context-group purpose="location"> | ||
2676 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2677 | <context context-type="linenumber">19</context> | ||
2678 | </context-group> | ||
2679 | </trans-unit><trans-unit id="b15e7bec5c7833d2d9634946ccbed68967b1bee1" datatype="html"> | ||
2680 | <source>Lists</source><target state="new">Lists</target> | ||
2681 | <context-group purpose="location"> | ||
2682 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2683 | <context context-type="linenumber">20</context> | ||
2684 | </context-group> | ||
2685 | </trans-unit><trans-unit id="ab4426b60f13c00b61d6b714d390dc629f314980" datatype="html"> | ||
2686 | <source>Emphasis</source><target state="new">Emphasis</target> | ||
2687 | <context-group purpose="location"> | ||
2688 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2689 | <context context-type="linenumber">22</context> | ||
2690 | </context-group> | ||
2691 | </trans-unit><trans-unit id="4e13b179501d3d32721037e03b4c04acb9857c5f" datatype="html"> | ||
2692 | <source>bold</source><target state="new">bold</target> | ||
2693 | <context-group purpose="location"> | ||
2694 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2695 | <context context-type="linenumber">23</context> | ||
2696 | </context-group> | ||
2697 | </trans-unit><trans-unit id="3c12190421fbb2756e6bbead923df9ec5de8ede2" datatype="html"> | ||
2698 | <source>italic</source><target state="new">italic</target> | ||
2699 | <context-group purpose="location"> | ||
2700 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2701 | <context context-type="linenumber">23</context> | ||
2702 | </context-group> | ||
2703 | </trans-unit><trans-unit id="adb4bbdcb961b8aac8298d6cac554d9b25636b7a" datatype="html"> | ||
2704 | <source>Emoji shortcuts</source><target state="new">Emoji shortcuts</target> | ||
2705 | <context-group purpose="location"> | ||
2706 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2707 | <context context-type="linenumber">26</context> | ||
2708 | </context-group> | ||
2709 | </trans-unit><trans-unit id="b9809a21a8eb3c9db2a0282c5dd94bc221575c96" datatype="html"> | ||
2710 | <source>Emoji markup</source><target state="new">Emoji markup</target> | ||
2711 | <context-group purpose="location"> | ||
2712 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2713 | <context context-type="linenumber">30</context> | ||
2714 | </context-group> | ||
2715 | </trans-unit><trans-unit id="f37feb427aaa551edd1f22616be6464bc0d492de" datatype="html"> | ||
2716 | <source>See complete list</source><target state="new">See complete list</target> | ||
2717 | <context-group purpose="location"> | ||
2718 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2719 | <context context-type="linenumber">32</context> | ||
2720 | </context-group> | ||
2721 | </trans-unit> | ||
2722 | |||
2669 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135" datatype="html"> | 2723 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135" datatype="html"> |
2670 | <source>You are one step away from commenting</source> | 2724 | <source>You are one step away from commenting</source> |
2671 | <target state="new">You are one step away from commenting</target> | 2725 | <target state="new">You are one step away from commenting</target> |
2672 | 2726 | ||
2673 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">31</context></context-group></trans-unit> | 2727 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">55</context></context-group></trans-unit> |
2674 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> | 2728 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> |
2675 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> | 2729 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> |
2676 | <target state="new"> | 2730 | <target state="new"> |
@@ -2679,7 +2733,7 @@ The link will expire within 1 hour.</target> | |||
2679 | from within the software's interface. | 2733 | from within the software's interface. |
2680 | </target> | 2734 | </target> |
2681 | 2735 | ||
2682 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">36</context></context-group></trans-unit> | 2736 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">60</context></context-group></trans-unit> |
2683 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb" datatype="html"> | 2737 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb" datatype="html"> |
2684 | <source> | 2738 | <source> |
2685 | If you have an account on Mastodon or Pleroma, you can open it directly in their interface: | 2739 | If you have an account on Mastodon or Pleroma, you can open it directly in their interface: |
@@ -2688,12 +2742,30 @@ The link will expire within 1 hour.</target> | |||
2688 | If you have an account on Mastodon or Pleroma, you can open it directly in their interface: | 2742 | If you have an account on Mastodon or Pleroma, you can open it directly in their interface: |
2689 | </target> | 2743 | </target> |
2690 | 2744 | ||
2691 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">41</context></context-group></trans-unit> | 2745 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">65</context></context-group></trans-unit> |
2692 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> | 2746 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> |
2693 | <source>Login to comment</source> | 2747 | <source>Login to comment</source> |
2694 | <target state="new">Login to comment</target> | 2748 | <target state="new">Login to comment</target> |
2695 | 2749 | ||
2696 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">52</context></context-group></trans-unit> | 2750 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context><context context-type="linenumber">76</context></context-group></trans-unit><trans-unit id="974170f455ff5a9034d5737e84b4194c0046fc6b" datatype="html"> |
2751 | <source>Markdown Emoji List</source><target state="new">Markdown Emoji List</target> | ||
2752 | <context-group purpose="location"> | ||
2753 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
2754 | <context context-type="linenumber">84</context> | ||
2755 | </context-group> | ||
2756 | </trans-unit><trans-unit id="2662644497259948010" datatype="html"> | ||
2757 | <source>Comment</source><target state="new">Comment</target> | ||
2758 | <context-group purpose="location"> | ||
2759 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2760 | <context context-type="linenumber">58</context> | ||
2761 | </context-group> | ||
2762 | </trans-unit><trans-unit id="4502286564339177240" datatype="html"> | ||
2763 | <source>Reply</source><target state="new">Reply</target> | ||
2764 | <context-group purpose="location"> | ||
2765 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
2766 | <context context-type="linenumber">60</context> | ||
2767 | </context-group> | ||
2768 | </trans-unit> | ||
2697 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285" datatype="html"> | 2769 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285" datatype="html"> |
2698 | <source>Highlighted comment</source> | 2770 | <source>Highlighted comment</source> |
2699 | <target state="new">Highlighted comment</target> | 2771 | <target state="new">Highlighted comment</target> |
@@ -2708,7 +2780,7 @@ The link will expire within 1 hour.</target> | |||
2708 | <source>This comment has been deleted</source> | 2780 | <source>This comment has been deleted</source> |
2709 | <target state="new">This comment has been deleted</target> | 2781 | <target state="new">This comment has been deleted</target> |
2710 | 2782 | ||
2711 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">62</context></context-group></trans-unit> | 2783 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context><context context-type="linenumber">61</context></context-group></trans-unit> |
2712 | <trans-unit id="9031514421077169181" datatype="html"> | 2784 | <trans-unit id="9031514421077169181" datatype="html"> |
2713 | <source>Video redundancies</source> | 2785 | <source>Video redundancies</source> |
2714 | <target state="new">Video redundancies</target> | 2786 | <target state="new">Video redundancies</target> |
@@ -3565,7 +3637,25 @@ The link will expire within 1 hour.</target> | |||
3565 | <target state="new">No account found.</target> | 3637 | <target state="new">No account found.</target> |
3566 | 3638 | ||
3567 | 3639 | ||
3568 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit> | 3640 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/account-blocklist.component.html</context><context context-type="linenumber">64</context></context-group></trans-unit><trans-unit id="2338185419645468935" datatype="html"> |
3641 | <source>List installed plugins</source><target state="new">List installed plugins</target> | ||
3642 | <context-group purpose="location"> | ||
3643 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3644 | <context context-type="linenumber">28</context> | ||
3645 | </context-group> | ||
3646 | </trans-unit><trans-unit id="8897412584195581488" datatype="html"> | ||
3647 | <source>Search plugins</source><target state="new">Search plugins</target> | ||
3648 | <context-group purpose="location"> | ||
3649 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3650 | <context context-type="linenumber">37</context> | ||
3651 | </context-group> | ||
3652 | </trans-unit><trans-unit id="4994333937800672218" datatype="html"> | ||
3653 | <source>Show plugin</source><target state="new">Show plugin</target> | ||
3654 | <context-group purpose="location"> | ||
3655 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3656 | <context context-type="linenumber">46</context> | ||
3657 | </context-group> | ||
3658 | </trans-unit> | ||
3569 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> | 3659 | <trans-unit id="6c3f125145d398f0cbc07c5161b41f08116dbf01" datatype="html"> |
3570 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> | 3660 | <source>Showing <x id="INTERPOLATION"/> to <x id="INTERPOLATION_1"/> of <x id="INTERPOLATION_2"/> muted accounts</source> |
3571 | <target state="new">Showing | 3661 | <target state="new">Showing |
@@ -4296,7 +4386,7 @@ The link will expire within 1 hour.</target> | |||
4296 | <source>Administrator</source> | 4386 | <source>Administrator</source> |
4297 | <target state="new">Administrator</target> | 4387 | <target state="new">Administrator</target> |
4298 | 4388 | ||
4299 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">385</context></context-group></trans-unit> | 4389 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">383</context></context-group></trans-unit> |
4300 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587" datatype="html"> | 4390 | <trans-unit id="55a0f51e38679d3141841e8333da5779d349c587" datatype="html"> |
4301 | <source>Admin email</source> | 4391 | <source>Admin email</source> |
4302 | <target state="new">Admin email</target> | 4392 | <target state="new">Admin email</target> |
@@ -4558,27 +4648,27 @@ The link will expire within 1 hour.</target> | |||
4558 | <source>VIDEO SETTINGS</source> | 4648 | <source>VIDEO SETTINGS</source> |
4559 | <target state="new">VIDEO SETTINGS</target> | 4649 | <target state="new">VIDEO SETTINGS</target> |
4560 | 4650 | ||
4561 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">28</context></context-group></trans-unit> | 4651 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">26</context></context-group></trans-unit> |
4562 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> | 4652 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> |
4563 | <source>NOTIFICATIONS</source> | 4653 | <source>NOTIFICATIONS</source> |
4564 | <target state="new">NOTIFICATIONS</target> | 4654 | <target state="new">NOTIFICATIONS</target> |
4565 | 4655 | ||
4566 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">39</context></context-group></trans-unit> | 4656 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">37</context></context-group></trans-unit> |
4567 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> | 4657 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> |
4568 | <source>INTERFACE</source> | 4658 | <source>INTERFACE</source> |
4569 | <target state="new">INTERFACE</target> | 4659 | <target state="new">INTERFACE</target> |
4570 | 4660 | ||
4571 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">49</context></context-group></trans-unit> | 4661 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">47</context></context-group></trans-unit> |
4572 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> | 4662 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> |
4573 | <source>PASSWORD</source> | 4663 | <source>PASSWORD</source> |
4574 | <target state="new">PASSWORD</target> | 4664 | <target state="new">PASSWORD</target> |
4575 | 4665 | ||
4576 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">59</context></context-group></trans-unit> | 4666 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">57</context></context-group></trans-unit> |
4577 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> | 4667 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> |
4578 | <source>EMAIL</source> | 4668 | <source>EMAIL</source> |
4579 | <target state="new">EMAIL</target> | 4669 | <target state="new">EMAIL</target> |
4580 | 4670 | ||
4581 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">69</context></context-group></trans-unit> | 4671 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context><context context-type="linenumber">67</context></context-group></trans-unit> |
4582 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> | 4672 | <trans-unit id="e6c299a11dadb59bf789ecc5d85eb1a1ebff4613" datatype="html"> |
4583 | <source>DANGER ZONE</source> | 4673 | <source>DANGER ZONE</source> |
4584 | <target state="new">DANGER ZONE</target> | 4674 | <target state="new">DANGER ZONE</target> |
@@ -4828,7 +4918,31 @@ The link will expire within 1 hour.</target> | |||
4828 | <source>No ownership change request found.</source> | 4918 | <source>No ownership change request found.</source> |
4829 | <target state="new">No ownership change request found.</target> | 4919 | <target state="new">No ownership change request found.</target> |
4830 | 4920 | ||
4831 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit> | 4921 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-ownership/my-account-ownership.component.html</context><context context-type="linenumber">83</context></context-group></trans-unit><trans-unit id="4247400351982331798" datatype="html"> |
4922 | <source>Account settings</source><target state="new">Account settings</target> | ||
4923 | <context-group purpose="location"> | ||
4924 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4925 | <context context-type="linenumber">37</context> | ||
4926 | </context-group> | ||
4927 | </trans-unit><trans-unit id="154062590416726309" datatype="html"> | ||
4928 | <source>Account playlists</source><target state="new">Account playlists</target> | ||
4929 | <context-group purpose="location"> | ||
4930 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4931 | <context context-type="linenumber">55</context> | ||
4932 | </context-group> | ||
4933 | </trans-unit><trans-unit id="6550287183367517925" datatype="html"> | ||
4934 | <source>Create new playlist</source><target state="new">Create new playlist</target> | ||
4935 | <context-group purpose="location"> | ||
4936 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4937 | <context context-type="linenumber">64</context> | ||
4938 | </context-group> | ||
4939 | </trans-unit><trans-unit id="2864486939135008600" datatype="html"> | ||
4940 | <source>Playlist elements</source><target state="new">Playlist elements</target> | ||
4941 | <context-group purpose="location"> | ||
4942 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
4943 | <context context-type="linenumber">73</context> | ||
4944 | </context-group> | ||
4945 | </trans-unit> | ||
4832 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> | 4946 | <trans-unit id="bd751145ec934c2839fd6acffee05fbf439782ed" datatype="html"> |
4833 | <source>My imports</source> | 4947 | <source>My imports</source> |
4834 | <target state="new">My imports</target> | 4948 | <target state="new">My imports</target> |
@@ -5103,7 +5217,25 @@ The link will expire within 1 hour.</target> | |||
5103 | <source>An error occurred.</source> | 5217 | <source>An error occurred.</source> |
5104 | <target state="new">An error occurred.</target> | 5218 | <target state="new">An error occurred.</target> |
5105 | 5219 | ||
5106 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit> | 5220 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-email/verify-account-email.component.html</context><context context-type="linenumber">14</context></context-group></trans-unit><trans-unit id="9128669621822125729" datatype="html"> |
5221 | <source>Video channel videos</source><target state="new">Video channel videos</target> | ||
5222 | <context-group purpose="location"> | ||
5223 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5224 | <context context-type="linenumber">25</context> | ||
5225 | </context-group> | ||
5226 | </trans-unit><trans-unit id="3193822049276963401" datatype="html"> | ||
5227 | <source>Video channel playlists</source><target state="new">Video channel playlists</target> | ||
5228 | <context-group purpose="location"> | ||
5229 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5230 | <context context-type="linenumber">38</context> | ||
5231 | </context-group> | ||
5232 | </trans-unit><trans-unit id="4723526509708949088" datatype="html"> | ||
5233 | <source>About video channel</source><target state="new">About video channel</target> | ||
5234 | <context-group purpose="location"> | ||
5235 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
5236 | <context context-type="linenumber">47</context> | ||
5237 | </context-group> | ||
5238 | </trans-unit> | ||
5107 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97" datatype="html"> | 5239 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97" datatype="html"> |
5108 | <source> | 5240 | <source> |
5109 | Request email for account verification | 5241 | Request email for account verification |
@@ -5226,7 +5358,7 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5226 | <source>Stats</source> | 5358 | <source>Stats</source> |
5227 | <target state="new">Stats</target> | 5359 | <target state="new">Stats</target> |
5228 | 5360 | ||
5229 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">164</context></context-group></trans-unit> | 5361 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.html</context><context context-type="linenumber">170</context></context-group></trans-unit> |
5230 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc" datatype="html"> | 5362 | <trans-unit id="8bc634cd9d8c9b684dbfaaf17a522f894bedbffc" datatype="html"> |
5231 | <source>Joined <x id="INTERPOLATION"/></source> | 5363 | <source>Joined <x id="INTERPOLATION"/></source> |
5232 | <target state="new">Joined | 5364 | <target state="new">Joined |
@@ -5679,7 +5811,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5679 | <source>This instance does not have instances followings.</source> | 5811 | <source>This instance does not have instances followings.</source> |
5680 | <target state="new">This instance does not have instances followings.</target> | 5812 | <target state="new">This instance does not have instances followings.</target> |
5681 | 5813 | ||
5682 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit> | 5814 | <context-group purpose="location"><context context-type="sourcefile">../app/+about/about-follows/about-follows.component.html</context><context context-type="linenumber">16</context></context-group></trans-unit><trans-unit id="4195286790385468087" datatype="html"> |
5815 | <source>About this instance</source><target state="new">About this instance</target> | ||
5816 | <context-group purpose="location"> | ||
5817 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5818 | <context context-type="linenumber">26</context> | ||
5819 | </context-group> | ||
5820 | </trans-unit><trans-unit id="8773846522957677259" datatype="html"> | ||
5821 | <source>About PeerTube</source><target state="new">About PeerTube</target> | ||
5822 | <context-group purpose="location"> | ||
5823 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5824 | <context context-type="linenumber">38</context> | ||
5825 | </context-group> | ||
5826 | </trans-unit><trans-unit id="5782088737558028158" datatype="html"> | ||
5827 | <source>About follows</source><target state="new">About follows</target> | ||
5828 | <context-group purpose="location"> | ||
5829 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
5830 | <context context-type="linenumber">47</context> | ||
5831 | </context-group> | ||
5832 | </trans-unit> | ||
5683 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> | 5833 | <trans-unit id="3d2fb0ff92d3dd1e6040cd79b2a60edac6dea2da" datatype="html"> |
5684 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> | 5834 | <source>Developed with ❤ by <x id="START_LINK"/>Framasoft<x id="CLOSE_LINK"/></source> |
5685 | <target state="new">Developed with ❤ by | 5835 | <target state="new">Developed with ❤ by |
@@ -5851,6 +6001,12 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5851 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> | 6001 | <context context-type="sourcefile">../assets/images/misc/account-arrow-left.svg</context> |
5852 | <context context-type="linenumber">1</context> | 6002 | <context context-type="linenumber">1</context> |
5853 | </context-group> | 6003 | </context-group> |
6004 | </trans-unit><trans-unit id="9082008222523034483" datatype="html"> | ||
6005 | <source>Get help</source><target state="new">Get help</target> | ||
6006 | <context-group purpose="location"> | ||
6007 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | ||
6008 | <context context-type="linenumber">16</context> | ||
6009 | </context-group> | ||
5854 | </trans-unit> | 6010 | </trans-unit> |
5855 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1" datatype="html"> | 6011 | <trans-unit id="f127303f2937f5d9ced837f692899f5d599659a1" datatype="html"> |
5856 | <source> | 6012 | <source> |
@@ -5985,7 +6141,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
5985 | 6141 | ||
5986 | </target> | 6142 | </target> |
5987 | 6143 | ||
5988 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit> | 6144 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+register/register-step-user.component.html</context><context context-type="linenumber">66</context></context-group></trans-unit><trans-unit id="3301086086650990787" datatype="html"> |
6145 | <source>Register</source><target state="new">Register</target> | ||
6146 | <context-group purpose="location"> | ||
6147 | <context context-type="sourcefile">../app/+signup/+register/register-routing.module.ts</context> | ||
6148 | <context context-type="linenumber">14</context> | ||
6149 | </context-group> | ||
6150 | </trans-unit> | ||
5989 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> | 6151 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> |
5990 | <source> | 6152 | <source> |
5991 | Sorry, we couldn't find the page you were looking for. | 6153 | Sorry, we couldn't find the page you were looking for. |
@@ -6010,7 +6172,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6010 | <target state="new">No description</target> | 6172 | <target state="new">No description</target> |
6011 | 6173 | ||
6012 | 6174 | ||
6013 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit> | 6175 | <context-group purpose="location"><context context-type="sourcefile">../app/+accounts/account-about/account-about.component.ts</context><context context-type="linenumber">38</context></context-group></trans-unit><trans-unit id="819067926858619041" datatype="html"> |
6176 | <source>Account videos</source><target state="new">Account videos</target> | ||
6177 | <context-group purpose="location"> | ||
6178 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6179 | <context context-type="linenumber">29</context> | ||
6180 | </context-group> | ||
6181 | </trans-unit><trans-unit id="6823616469362610020" datatype="html"> | ||
6182 | <source>Account video channels</source><target state="new">Account video channels</target> | ||
6183 | <context-group purpose="location"> | ||
6184 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6185 | <context context-type="linenumber">42</context> | ||
6186 | </context-group> | ||
6187 | </trans-unit><trans-unit id="7678273613459026643" datatype="html"> | ||
6188 | <source>About account</source><target state="new">About account</target> | ||
6189 | <context-group purpose="location"> | ||
6190 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
6191 | <context context-type="linenumber">51</context> | ||
6192 | </context-group> | ||
6193 | </trans-unit> | ||
6014 | <trans-unit id="3755500631176893489" datatype="html"> | 6194 | <trans-unit id="3755500631176893489" datatype="html"> |
6015 | <source>Published <x id="PH"/> videos</source> | 6195 | <source>Published <x id="PH"/> videos</source> |
6016 | <target state="new">Published | 6196 | <target state="new">Published |
@@ -6127,7 +6307,13 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6127 | <source>Configuration updated.</source> | 6307 | <source>Configuration updated.</source> |
6128 | <target state="new">Configuration updated.</target> | 6308 | <target state="new">Configuration updated.</target> |
6129 | 6309 | ||
6130 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit> | 6310 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/config/edit-custom-config/edit-custom-config.component.ts</context><context context-type="linenumber">289</context></context-group></trans-unit><trans-unit id="6284468333579755406" datatype="html"> |
6311 | <source>Edit custom configuration</source><target state="new">Edit custom configuration</target> | ||
6312 | <context-group purpose="location"> | ||
6313 | <context context-type="sourcefile">../app/+admin/config/config.routes.ts</context> | ||
6314 | <context context-type="linenumber">26</context> | ||
6315 | </context-group> | ||
6316 | </trans-unit> | ||
6131 | 6317 | ||
6132 | 6318 | ||
6133 | <trans-unit id="6549061957433635758" datatype="html"> | 6319 | <trans-unit id="6549061957433635758" datatype="html"> |
@@ -6606,7 +6792,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6606 | <x id="PH"/> updated. | 6792 | <x id="PH"/> updated. |
6607 | </target> | 6793 | </target> |
6608 | 6794 | ||
6609 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 6795 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/plugins/plugin-list-installed/plugin-list-installed.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit><trans-unit id="3229595422546554334" datatype="html"> |
6796 | <source>Jobs</source><target state="new">Jobs</target> | ||
6797 | <context-group purpose="location"> | ||
6798 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6799 | <context context-type="linenumber">26</context> | ||
6800 | </context-group> | ||
6801 | </trans-unit><trans-unit id="4804785061014590286" datatype="html"> | ||
6802 | <source>Logs</source><target state="new">Logs</target> | ||
6803 | <context-group purpose="location"> | ||
6804 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
6805 | <context context-type="linenumber">37</context> | ||
6806 | </context-group> | ||
6807 | </trans-unit> | ||
6610 | <trans-unit id="3150704904301058778" datatype="html"> | 6808 | <trans-unit id="3150704904301058778" datatype="html"> |
6611 | <source>The plugin index is not available. Please retry later.</source> | 6809 | <source>The plugin index is not available. Please retry later.</source> |
6612 | <target state="new">The plugin index is not available. Please retry later.</target> | 6810 | <target state="new">The plugin index is not available. Please retry later.</target> |
@@ -6720,6 +6918,18 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6720 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> | 6918 | <context context-type="sourcefile">../app/+admin/users/user-edit/user-create.component.ts</context> |
6721 | <context context-type="linenumber">86</context> | 6919 | <context context-type="linenumber">86</context> |
6722 | </context-group> | 6920 | </context-group> |
6921 | </trans-unit><trans-unit id="2903648076838460070" datatype="html"> | ||
6922 | <source>Videos blocked</source><target state="new">Videos blocked</target> | ||
6923 | <context-group purpose="location"> | ||
6924 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6925 | <context context-type="linenumber">67</context> | ||
6926 | </context-group> | ||
6927 | </trans-unit><trans-unit id="7805059636749367886" datatype="html"> | ||
6928 | <source>Muted instances</source><target state="new">Muted instances</target> | ||
6929 | <context-group purpose="location"> | ||
6930 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
6931 | <context context-type="linenumber">89</context> | ||
6932 | </context-group> | ||
6723 | </trans-unit> | 6933 | </trans-unit> |
6724 | <trans-unit id="5974506725502681113" datatype="html"> | 6934 | <trans-unit id="5974506725502681113" datatype="html"> |
6725 | <source>Password changed for user <x id="PH"/>.</source> | 6935 | <source>Password changed for user <x id="PH"/>.</source> |
@@ -6732,7 +6942,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6732 | <source>Update user password</source> | 6942 | <source>Update user password</source> |
6733 | <target state="new">Update user password</target> | 6943 | <target state="new">Update user password</target> |
6734 | 6944 | ||
6735 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit> | 6945 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-password.component.ts</context><context context-type="linenumber">52</context></context-group></trans-unit><trans-unit id="177544274549739411" datatype="html"> |
6946 | <source>Following list</source><target state="new">Following list</target> | ||
6947 | <context-group purpose="location"> | ||
6948 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6949 | <context context-type="linenumber">28</context> | ||
6950 | </context-group> | ||
6951 | </trans-unit><trans-unit id="8092429110007204784" datatype="html"> | ||
6952 | <source>Followers list</source><target state="new">Followers list</target> | ||
6953 | <context-group purpose="location"> | ||
6954 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
6955 | <context context-type="linenumber">37</context> | ||
6956 | </context-group> | ||
6957 | </trans-unit> | ||
6736 | <trans-unit id="780323526182667308" datatype="html"> | 6958 | <trans-unit id="780323526182667308" datatype="html"> |
6737 | <source>User <x id="PH"/> updated.</source> | 6959 | <source>User <x id="PH"/> updated.</source> |
6738 | <target state="new">User | 6960 | <target state="new">User |
@@ -6751,7 +6973,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
6751 | <x id="PH"/>. | 6973 | <x id="PH"/>. |
6752 | </target> | 6974 | </target> |
6753 | 6975 | ||
6754 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="8564701209009684429" datatype="html"> | 6976 | <context-group purpose="location"><context context-type="sourcefile">../app/+admin/users/user-edit/user-update.component.ts</context><context context-type="linenumber">103</context></context-group></trans-unit><trans-unit id="7483807629538115183" datatype="html"> |
6977 | <source>Users list</source><target state="new">Users list</target> | ||
6978 | <context-group purpose="location"> | ||
6979 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6980 | <context context-type="linenumber">27</context> | ||
6981 | </context-group> | ||
6982 | </trans-unit><trans-unit id="1525334987774465166" datatype="html"> | ||
6983 | <source>Create a user</source><target state="new">Create a user</target> | ||
6984 | <context-group purpose="location"> | ||
6985 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6986 | <context context-type="linenumber">36</context> | ||
6987 | </context-group> | ||
6988 | </trans-unit><trans-unit id="5552039423287890133" datatype="html"> | ||
6989 | <source>Update a user</source><target state="new">Update a user</target> | ||
6990 | <context-group purpose="location"> | ||
6991 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
6992 | <context context-type="linenumber">48</context> | ||
6993 | </context-group> | ||
6994 | </trans-unit><trans-unit id="8564701209009684429" datatype="html"> | ||
6755 | <source>Federation</source><target state="new">Federation</target> | 6995 | <source>Federation</source><target state="new">Federation</target> |
6756 | <context-group purpose="location"> | 6996 | <context-group purpose="location"> |
6757 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> | 6997 | <context context-type="sourcefile">../app/+admin/admin.component.ts</context> |
@@ -7105,7 +7345,25 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7105 | <source>Views for the day</source> | 7345 | <source>Views for the day</source> |
7106 | <target state="new">Views for the day</target> | 7346 | <target state="new">Views for the day</target> |
7107 | 7347 | ||
7108 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit> | 7348 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels.component.ts</context><context context-type="linenumber">144</context></context-group></trans-unit><trans-unit id="4707367314920217630" datatype="html"> |
7349 | <source>Create new video channel</source><target state="new">Create new video channel</target> | ||
7350 | <context-group purpose="location"> | ||
7351 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7352 | <context context-type="linenumber">22</context> | ||
7353 | </context-group> | ||
7354 | </trans-unit><trans-unit id="6059091237492573541" datatype="html"> | ||
7355 | <source>Update video channel</source><target state="new">Update video channel</target> | ||
7356 | <context-group purpose="location"> | ||
7357 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
7358 | <context context-type="linenumber">31</context> | ||
7359 | </context-group> | ||
7360 | </trans-unit><trans-unit id="6595008830732269870" datatype="html"> | ||
7361 | <source>Not found</source><target state="new">Not found</target> | ||
7362 | <context-group purpose="location"> | ||
7363 | <context context-type="sourcefile">../app/+page-not-found/page-not-found-routing.module.ts</context> | ||
7364 | <context context-type="linenumber">13</context> | ||
7365 | </context-group> | ||
7366 | </trans-unit> | ||
7109 | <trans-unit id="5032453707232754344" datatype="html"> | 7367 | <trans-unit id="5032453707232754344" datatype="html"> |
7110 | <source>Playlist <x id="PH"/> created.</source> | 7368 | <source>Playlist <x id="PH"/> created.</source> |
7111 | <target state="new">Playlist | 7369 | <target state="new">Playlist |
@@ -7123,7 +7381,31 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7123 | <source>Update playlist</source> | 7381 | <source>Update playlist</source> |
7124 | <target state="new">Update playlist</target> | 7382 | <target state="new">Update playlist</target> |
7125 | 7383 | ||
7126 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-video-playlists/my-account-video-playlist-elements.component.ts</context><context context-type="linenumber">48</context></context-group></trans-unit> | 7384 | <context-group purpose="location"><context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context><context context-type="linenumber">82</context></context-group></trans-unit><trans-unit id="3410331549417637431" datatype="html"> |
7385 | <source>Account video imports</source><target state="new">Account video imports</target> | ||
7386 | <context-group purpose="location"> | ||
7387 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7388 | <context context-type="linenumber">105</context> | ||
7389 | </context-group> | ||
7390 | </trans-unit><trans-unit id="4434998055872154420" datatype="html"> | ||
7391 | <source>Account subscriptions</source><target state="new">Account subscriptions</target> | ||
7392 | <context-group purpose="location"> | ||
7393 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7394 | <context context-type="linenumber">114</context> | ||
7395 | </context-group> | ||
7396 | </trans-unit><trans-unit id="6019411775996586321" datatype="html"> | ||
7397 | <source>Videos history</source><target state="new">Videos history</target> | ||
7398 | <context-group purpose="location"> | ||
7399 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7400 | <context context-type="linenumber">150</context> | ||
7401 | </context-group> | ||
7402 | </trans-unit><trans-unit id="5851560788527570644" datatype="html"> | ||
7403 | <source>Notifications</source><target state="new">Notifications</target> | ||
7404 | <context-group purpose="location"> | ||
7405 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
7406 | <context context-type="linenumber">163</context> | ||
7407 | </context-group> | ||
7408 | </trans-unit> | ||
7127 | <trans-unit id="104404386496394770" datatype="html"> | 7409 | <trans-unit id="104404386496394770" datatype="html"> |
7128 | <source>Delete playlist</source> | 7410 | <source>Delete playlist</source> |
7129 | <target state="new">Delete playlist</target> | 7411 | <target state="new">Delete playlist</target> |
@@ -7277,7 +7559,19 @@ channel with the same name (<x id="PH_2"/>)!</target> | |||
7277 | <x id="PH"/>. | 7559 | <x id="PH"/>. |
7278 | </target> | 7560 | </target> |
7279 | 7561 | ||
7280 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit> | 7562 | <context-group purpose="location"><context context-type="sourcefile">../app/+signup/+verify-account/verify-account-ask-send-email/verify-account-ask-send-email.component.ts</context><context context-type="linenumber">45</context></context-group></trans-unit><trans-unit id="8231550792139699065" datatype="html"> |
7563 | <source>Verify account email</source><target state="new">Verify account email</target> | ||
7564 | <context-group purpose="location"> | ||
7565 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7566 | <context context-type="linenumber">17</context> | ||
7567 | </context-group> | ||
7568 | </trans-unit><trans-unit id="4997281272800290390" datatype="html"> | ||
7569 | <source>Verify account ask send email</source><target state="new">Verify account ask send email</target> | ||
7570 | <context-group purpose="location"> | ||
7571 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
7572 | <context context-type="linenumber">26</context> | ||
7573 | </context-group> | ||
7574 | </trans-unit> | ||
7281 | <trans-unit id="4180693983967989981" datatype="html"> | 7575 | <trans-unit id="4180693983967989981" datatype="html"> |
7282 | <source>Unable to find user id or verification string.</source> | 7576 | <source>Unable to find user id or verification string.</source> |
7283 | <target state="new">Unable to find user id or verification string.</target> | 7577 | <target state="new">Unable to find user id or verification string.</target> |
@@ -7402,27 +7696,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
7402 | <source>any language</source> | 7696 | <source>any language</source> |
7403 | <target state="new">any language</target> | 7697 | <target state="new">any language</target> |
7404 | 7698 | ||
7405 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">202</context></context-group></trans-unit> | 7699 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">229</context></context-group></trans-unit> |
7406 | <trans-unit id="5633144232269377096" datatype="html"> | 7700 | <trans-unit id="5633144232269377096" datatype="html"> |
7407 | <source>hide</source> | 7701 | <source>hide</source> |
7408 | <target state="new">hide</target> | 7702 | <target state="new">hide</target> |
7409 | 7703 | ||
7410 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">118</context></context-group></trans-unit> | 7704 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> |
7411 | <trans-unit id="8603861867909474404" datatype="html"> | 7705 | <trans-unit id="8603861867909474404" datatype="html"> |
7412 | <source>blur</source> | 7706 | <source>blur</source> |
7413 | <target state="new">blur</target> | 7707 | <target state="new">blur</target> |
7414 | 7708 | ||
7415 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">121</context></context-group></trans-unit> | 7709 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> |
7416 | <trans-unit id="4534458451100881847" datatype="html"> | 7710 | <trans-unit id="4534458451100881847" datatype="html"> |
7417 | <source>display</source> | 7711 | <source>display</source> |
7418 | <target state="new">display</target> | 7712 | <target state="new">display</target> |
7419 | 7713 | ||
7420 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">124</context></context-group></trans-unit> | 7714 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">127</context></context-group></trans-unit> |
7421 | <trans-unit id="4467323362722952678" datatype="html"> | 7715 | <trans-unit id="4467323362722952678" datatype="html"> |
7422 | <source>Unknown</source> | 7716 | <source>Unknown</source> |
7423 | <target state="new">Unknown</target> | 7717 | <target state="new">Unknown</target> |
7424 | 7718 | ||
7425 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">190</context></context-group></trans-unit> | 7719 | <context-group purpose="location"><context context-type="sourcefile">../app/menu/menu.component.ts</context><context context-type="linenumber">193</context></context-group></trans-unit> |
7426 | <trans-unit id="8781423666414310853" datatype="html"> | 7720 | <trans-unit id="8781423666414310853" datatype="html"> |
7427 | <source>Your password has been successfully reset!</source> | 7721 | <source>Your password has been successfully reset!</source> |
7428 | <target state="new">Your password has been successfully reset!</target> | 7722 | <target state="new">Your password has been successfully reset!</target> |
@@ -8542,27 +8836,27 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8542 | <source>Emphasis</source> | 8836 | <source>Emphasis</source> |
8543 | <target>Nhấn mạnh</target> | 8837 | <target>Nhấn mạnh</target> |
8544 | 8838 | ||
8545 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">77</context></context-group></trans-unit> | 8839 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> |
8546 | <trans-unit id="7565716024468232322"> | 8840 | <trans-unit id="7565716024468232322"> |
8547 | <source>Links</source> | 8841 | <source>Links</source> |
8548 | <target>Đường dẫn</target> | 8842 | <target>Đường dẫn</target> |
8549 | 8843 | ||
8550 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">78</context></context-group></trans-unit> | 8844 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">82</context></context-group></trans-unit> |
8551 | <trans-unit id="7838476952710404110"> | 8845 | <trans-unit id="7838476952710404110"> |
8552 | <source>New lines</source> | 8846 | <source>New lines</source> |
8553 | <target>Hàng mới</target> | 8847 | <target>Hàng mới</target> |
8554 | 8848 | ||
8555 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">79</context></context-group></trans-unit> | 8849 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">83</context></context-group></trans-unit> |
8556 | <trans-unit id="8756167649220050929"> | 8850 | <trans-unit id="8756167649220050929"> |
8557 | <source>Lists</source> | 8851 | <source>Lists</source> |
8558 | <target>Danh sách</target> | 8852 | <target>Danh sách</target> |
8559 | 8853 | ||
8560 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">80</context></context-group></trans-unit> | 8854 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">84</context></context-group></trans-unit> |
8561 | <trans-unit id="414887388288176527"> | 8855 | <trans-unit id="414887388288176527"> |
8562 | <source>Images</source> | 8856 | <source>Images</source> |
8563 | <target>Hình ảnh</target> | 8857 | <target>Hình ảnh</target> |
8564 | 8858 | ||
8565 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">81</context></context-group></trans-unit> | 8859 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context><context context-type="linenumber">85</context></context-group></trans-unit> |
8566 | <trans-unit id="5708680277917691451"> | 8860 | <trans-unit id="5708680277917691451"> |
8567 | <source> | 8861 | <source> |
8568 | <x id="PH"/> users banned. | 8862 | <x id="PH"/> users banned. |
@@ -8958,7 +9252,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8958 | <source>Moderator</source> | 9252 | <source>Moderator</source> |
8959 | <target>Người quản trị</target> | 9253 | <target>Người quản trị</target> |
8960 | 9254 | ||
8961 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">386</context></context-group></trans-unit> | 9255 | <context-group purpose="location"><context context-type="sourcefile">../app/core/users/user.service.ts</context><context context-type="linenumber">384</context></context-group></trans-unit> |
8962 | <trans-unit id="3723085768598852106"> | 9256 | <trans-unit id="3723085768598852106"> |
8963 | <source>Video removed from | 9257 | <source>Video removed from |
8964 | <x id="PH"/> | 9258 | <x id="PH"/> |
@@ -9026,7 +9320,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9026 | <source>Do you really want to delete this comment?</source> | 9320 | <source>Do you really want to delete this comment?</source> |
9027 | <target state="new">Do you really want to delete this comment?</target> | 9321 | <target state="new">Do you really want to delete this comment?</target> |
9028 | 9322 | ||
9029 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.ts</context><context context-type="linenumber">434</context></context-group></trans-unit> | 9323 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">166</context></context-group></trans-unit> |
9030 | <trans-unit id="7837272126865175984" datatype="html"> | 9324 | <trans-unit id="7837272126865175984" datatype="html"> |
9031 | <source>Comment deleted.</source> | 9325 | <source>Comment deleted.</source> |
9032 | <target state="new">Comment deleted.</target> | 9326 | <target state="new">Comment deleted.</target> |
@@ -9138,9 +9432,18 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9138 | 9432 | ||
9139 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> | 9433 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context><context context-type="linenumber">274</context></context-group></trans-unit><trans-unit id="7008439939460403347" datatype="html"> |
9140 | <source>Report</source><target state="new">Report</target> | 9434 | <source>Report</source><target state="new">Report</target> |
9435 | |||
9436 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="4814285799071780083" datatype="html"> | ||
9437 | <source>Remove</source><target state="new">Remove</target> | ||
9141 | <context-group purpose="location"> | 9438 | <context-group purpose="location"> |
9142 | <context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> | 9439 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> |
9143 | <context context-type="linenumber">286</context> | 9440 | <context context-type="linenumber">179</context> |
9441 | </context-group> | ||
9442 | </trans-unit><trans-unit id="6871668720687277843" datatype="html"> | ||
9443 | <source>Remove & re-draft</source><target state="new">Remove & re-draft</target> | ||
9444 | <context-group purpose="location"> | ||
9445 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> | ||
9446 | <context context-type="linenumber">187</context> | ||
9144 | </context-group> | 9447 | </context-group> |
9145 | </trans-unit> | 9448 | </trans-unit> |
9146 | <trans-unit id="4903651219400691248" datatype="html"> | 9449 | <trans-unit id="4903651219400691248" datatype="html"> |
@@ -9242,22 +9545,22 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9242 | <source>Only I can see this video</source> | 9545 | <source>Only I can see this video</source> |
9243 | <target>Chỉ mình tôi có thể thấy video này</target> | 9546 | <target>Chỉ mình tôi có thể thấy video này</target> |
9244 | 9547 | ||
9245 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">340</context></context-group></trans-unit> | 9548 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">341</context></context-group></trans-unit> |
9246 | <trans-unit id="6767380569816110388" datatype="html"> | 9549 | <trans-unit id="6767380569816110388" datatype="html"> |
9247 | <source>Only shareable via a private link</source> | 9550 | <source>Only shareable via a private link</source> |
9248 | <target state="new">Only shareable via a private link</target> | 9551 | <target state="new">Only shareable via a private link</target> |
9249 | 9552 | ||
9250 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">344</context></context-group></trans-unit> | 9553 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">345</context></context-group></trans-unit> |
9251 | <trans-unit id="6828965264297239528"> | 9554 | <trans-unit id="6828965264297239528"> |
9252 | <source>Anyone can see this video</source> | 9555 | <source>Anyone can see this video</source> |
9253 | <target>Ai cũng có thể thấy video này</target> | 9556 | <target>Ai cũng có thể thấy video này</target> |
9254 | 9557 | ||
9255 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">348</context></context-group></trans-unit> | 9558 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">349</context></context-group></trans-unit> |
9256 | <trans-unit id="1425933035739773115" datatype="html"> | 9559 | <trans-unit id="1425933035739773115" datatype="html"> |
9257 | <source>Only users of this instance can see this video</source> | 9560 | <source>Only users of this instance can see this video</source> |
9258 | <target state="new">Only users of this instance can see this video</target> | 9561 | <target state="new">Only users of this instance can see this video</target> |
9259 | 9562 | ||
9260 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">352</context></context-group></trans-unit> | 9563 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context><context context-type="linenumber">353</context></context-group></trans-unit> |
9261 | <trans-unit id="5210096066382592800" datatype="html"> | 9564 | <trans-unit id="5210096066382592800" datatype="html"> |
9262 | <source>Video to import updated.</source> | 9565 | <source>Video to import updated.</source> |
9263 | <target state="new">Video to import updated.</target> | 9566 | <target state="new">Video to import updated.</target> |
@@ -9337,17 +9640,29 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9337 | <target state="new">Report comment</target> | 9640 | <target state="new">Report comment</target> |
9338 | 9641 | ||
9339 | 9642 | ||
9340 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context><context context-type="linenumber">139</context></context-group></trans-unit> | 9643 | <context-group purpose="location"><context context-type="sourcefile">../app/shared/shared-moderation/report-modals/comment-report.component.ts</context><context context-type="linenumber">51</context></context-group></trans-unit> |
9341 | <trans-unit id="3691787517663044217" datatype="html"> | 9644 | <trans-unit id="3691787517663044217" datatype="html"> |
9342 | <source> The deletion will be sent to remote instances so they can reflect the change.</source> | 9645 | <source> The deletion will be sent to remote instances so they can reflect the change.</source> |
9343 | <target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> | 9646 | <target state="new"> The deletion will be sent to remote instances so they can reflect the change.</target> |
9344 | 9647 | ||
9345 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">163</context></context-group></trans-unit> | 9648 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">169</context></context-group></trans-unit> |
9346 | <trans-unit id="7321800851971795962" datatype="html"> | 9649 | <trans-unit id="7321800851971795962" datatype="html"> |
9347 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source> | 9650 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source> |
9348 | <target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> | 9651 | <target state="new"> It is a remote comment, so the deletion will only be effective on your instance.</target> |
9349 | 9652 | ||
9350 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">165</context></context-group></trans-unit> | 9653 | <context-group purpose="location"><context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context><context context-type="linenumber">171</context></context-group></trans-unit><trans-unit id="5964038603724691720" datatype="html"> |
9654 | <source>Delete and re-draft</source><target state="new">Delete and re-draft</target> | ||
9655 | <context-group purpose="location"> | ||
9656 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | ||
9657 | <context context-type="linenumber">197</context> | ||
9658 | </context-group> | ||
9659 | </trans-unit><trans-unit id="7163633882758007711" datatype="html"> | ||
9660 | <source>Do you really want to delete and re-draft this comment?</source><target state="new">Do you really want to delete and re-draft this comment?</target> | ||
9661 | <context-group purpose="location"> | ||
9662 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | ||
9663 | <context context-type="linenumber">197</context> | ||
9664 | </context-group> | ||
9665 | </trans-unit> | ||
9351 | <trans-unit id="6775540171466219199" datatype="html"> | 9666 | <trans-unit id="6775540171466219199" datatype="html"> |
9352 | <source>Stop autoplaying next video</source> | 9667 | <source>Stop autoplaying next video</source> |
9353 | <target state="new">Stop autoplaying next video</target> | 9668 | <target state="new">Stop autoplaying next video</target> |
@@ -9509,6 +9824,36 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</target> | |||
9509 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> | 9824 | <context context-type="sourcefile">../app/+videos/video-list/video-local.component.ts</context> |
9510 | <context context-type="linenumber">36</context> | 9825 | <context context-type="linenumber">36</context> |
9511 | </context-group> | 9826 | </context-group> |
9827 | </trans-unit><trans-unit id="4668975178372693951" datatype="html"> | ||
9828 | <source>Discover videos</source><target state="new">Discover videos</target> | ||
9829 | <context-group purpose="location"> | ||
9830 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9831 | <context context-type="linenumber">23</context> | ||
9832 | </context-group> | ||
9833 | </trans-unit><trans-unit id="8067135025051844577" datatype="html"> | ||
9834 | <source>Trending videos</source><target state="new">Trending videos</target> | ||
9835 | <context-group purpose="location"> | ||
9836 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9837 | <context context-type="linenumber">32</context> | ||
9838 | </context-group> | ||
9839 | </trans-unit><trans-unit id="664221386829541948" datatype="html"> | ||
9840 | <source>Recently added videos</source><target state="new">Recently added videos</target> | ||
9841 | <context-group purpose="location"> | ||
9842 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9843 | <context context-type="linenumber">58</context> | ||
9844 | </context-group> | ||
9845 | </trans-unit><trans-unit id="8212906256415538361" datatype="html"> | ||
9846 | <source>Upload a video</source><target state="new">Upload a video</target> | ||
9847 | <context-group purpose="location"> | ||
9848 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9849 | <context context-type="linenumber">97</context> | ||
9850 | </context-group> | ||
9851 | </trans-unit><trans-unit id="7590784934397800835" datatype="html"> | ||
9852 | <source>Edit a video</source><target state="new">Edit a video</target> | ||
9853 | <context-group purpose="location"> | ||
9854 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
9855 | <context context-type="linenumber">106</context> | ||
9856 | </context-group> | ||
9512 | </trans-unit> | 9857 | </trans-unit> |
9513 | </body> | 9858 | </body> |
9514 | </file> | 9859 | </file> |
diff --git a/client/src/locale/angular.xlf b/client/src/locale/angular.xlf index c93975997..cdca7cabc 100644 --- a/client/src/locale/angular.xlf +++ b/client/src/locale/angular.xlf | |||
@@ -37,6 +37,27 @@ | |||
37 | <context context-type="linenumber">16</context> | 37 | <context context-type="linenumber">16</context> |
38 | </context-group> | 38 | </context-group> |
39 | </trans-unit> | 39 | </trans-unit> |
40 | <trans-unit id="4195286790385468087" datatype="html"> | ||
41 | <source>About this instance</source> | ||
42 | <context-group purpose="location"> | ||
43 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
44 | <context context-type="linenumber">26</context> | ||
45 | </context-group> | ||
46 | </trans-unit> | ||
47 | <trans-unit id="8773846522957677259" datatype="html"> | ||
48 | <source>About PeerTube</source> | ||
49 | <context-group purpose="location"> | ||
50 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
51 | <context context-type="linenumber">38</context> | ||
52 | </context-group> | ||
53 | </trans-unit> | ||
54 | <trans-unit id="5782088737558028158" datatype="html"> | ||
55 | <source>About follows</source> | ||
56 | <context-group purpose="location"> | ||
57 | <context context-type="sourcefile">../app/+about/about-routing.module.ts</context> | ||
58 | <context context-type="linenumber">47</context> | ||
59 | </context-group> | ||
60 | </trans-unit> | ||
40 | <trans-unit id="ce301bc59085d13cf569fb7a97f073148435ec27" datatype="html"> | 61 | <trans-unit id="ce301bc59085d13cf569fb7a97f073148435ec27" datatype="html"> |
41 | <source>About <x id="INTERPOLATION"/></source> | 62 | <source>About <x id="INTERPOLATION"/></source> |
42 | <context-group purpose="location"> | 63 | <context-group purpose="location"> |
@@ -667,6 +688,27 @@ | |||
667 | <context context-type="linenumber">38</context> | 688 | <context context-type="linenumber">38</context> |
668 | </context-group> | 689 | </context-group> |
669 | </trans-unit> | 690 | </trans-unit> |
691 | <trans-unit id="819067926858619041" datatype="html"> | ||
692 | <source>Account videos</source> | ||
693 | <context-group purpose="location"> | ||
694 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
695 | <context context-type="linenumber">29</context> | ||
696 | </context-group> | ||
697 | </trans-unit> | ||
698 | <trans-unit id="6823616469362610020" datatype="html"> | ||
699 | <source>Account video channels</source> | ||
700 | <context-group purpose="location"> | ||
701 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
702 | <context context-type="linenumber">42</context> | ||
703 | </context-group> | ||
704 | </trans-unit> | ||
705 | <trans-unit id="7678273613459026643" datatype="html"> | ||
706 | <source>About account</source> | ||
707 | <context-group purpose="location"> | ||
708 | <context context-type="sourcefile">../app/+accounts/accounts-routing.module.ts</context> | ||
709 | <context context-type="linenumber">51</context> | ||
710 | </context-group> | ||
711 | </trans-unit> | ||
670 | <trans-unit id="24968c3b9f7cb940df7e5bf46f61a11710481829" datatype="html"> | 712 | <trans-unit id="24968c3b9f7cb940df7e5bf46f61a11710481829" datatype="html"> |
671 | <source>Reports</source> | 713 | <source>Reports</source> |
672 | <context-group purpose="location"> | 714 | <context-group purpose="location"> |
@@ -884,6 +926,27 @@ | |||
884 | <context context-type="linenumber">103</context> | 926 | <context context-type="linenumber">103</context> |
885 | </context-group> | 927 | </context-group> |
886 | </trans-unit> | 928 | </trans-unit> |
929 | <trans-unit id="7483807629538115183" datatype="html"> | ||
930 | <source>Users list</source> | ||
931 | <context-group purpose="location"> | ||
932 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
933 | <context context-type="linenumber">27</context> | ||
934 | </context-group> | ||
935 | </trans-unit> | ||
936 | <trans-unit id="1525334987774465166" datatype="html"> | ||
937 | <source>Create a user</source> | ||
938 | <context-group purpose="location"> | ||
939 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
940 | <context context-type="linenumber">36</context> | ||
941 | </context-group> | ||
942 | </trans-unit> | ||
943 | <trans-unit id="5552039423287890133" datatype="html"> | ||
944 | <source>Update a user</source> | ||
945 | <context-group purpose="location"> | ||
946 | <context context-type="sourcefile">../app/+admin/users/users.routes.ts</context> | ||
947 | <context context-type="linenumber">48</context> | ||
948 | </context-group> | ||
949 | </trans-unit> | ||
887 | <trans-unit id="8564701209009684429" datatype="html"> | 950 | <trans-unit id="8564701209009684429" datatype="html"> |
888 | <source>Federation</source> | 951 | <source>Federation</source> |
889 | <context-group purpose="location"> | 952 | <context-group purpose="location"> |
@@ -1003,6 +1066,20 @@ | |||
1003 | <context context-type="linenumber">52</context> | 1066 | <context context-type="linenumber">52</context> |
1004 | </context-group> | 1067 | </context-group> |
1005 | </trans-unit> | 1068 | </trans-unit> |
1069 | <trans-unit id="177544274549739411" datatype="html"> | ||
1070 | <source>Following list</source> | ||
1071 | <context-group purpose="location"> | ||
1072 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
1073 | <context context-type="linenumber">28</context> | ||
1074 | </context-group> | ||
1075 | </trans-unit> | ||
1076 | <trans-unit id="8092429110007204784" datatype="html"> | ||
1077 | <source>Followers list</source> | ||
1078 | <context-group purpose="location"> | ||
1079 | <context context-type="sourcefile">../app/+admin/follows/follows.routes.ts</context> | ||
1080 | <context context-type="linenumber">37</context> | ||
1081 | </context-group> | ||
1082 | </trans-unit> | ||
1006 | <trans-unit id="c8d1785038d461ec66b5799db21864182b35900a" datatype="html"> | 1083 | <trans-unit id="c8d1785038d461ec66b5799db21864182b35900a" datatype="html"> |
1007 | <source>Refresh</source> | 1084 | <source>Refresh</source> |
1008 | <context-group purpose="location"> | 1085 | <context-group purpose="location"> |
@@ -1668,6 +1745,20 @@ | |||
1668 | <context context-type="linenumber">139</context> | 1745 | <context context-type="linenumber">139</context> |
1669 | </context-group> | 1746 | </context-group> |
1670 | </trans-unit> | 1747 | </trans-unit> |
1748 | <trans-unit id="3229595422546554334" datatype="html"> | ||
1749 | <source>Jobs</source> | ||
1750 | <context-group purpose="location"> | ||
1751 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
1752 | <context context-type="linenumber">26</context> | ||
1753 | </context-group> | ||
1754 | </trans-unit> | ||
1755 | <trans-unit id="4804785061014590286" datatype="html"> | ||
1756 | <source>Logs</source> | ||
1757 | <context-group purpose="location"> | ||
1758 | <context context-type="sourcefile">../app/+admin/system/system.routes.ts</context> | ||
1759 | <context context-type="linenumber">37</context> | ||
1760 | </context-group> | ||
1761 | </trans-unit> | ||
1671 | <trans-unit id="1886888801485703107" datatype="html"> | 1762 | <trans-unit id="1886888801485703107" datatype="html"> |
1672 | <source>User <x id="PH"/> created.</source> | 1763 | <source>User <x id="PH"/> created.</source> |
1673 | <context-group purpose="location"> | 1764 | <context-group purpose="location"> |
@@ -1682,6 +1773,20 @@ | |||
1682 | <context context-type="linenumber">86</context> | 1773 | <context context-type="linenumber">86</context> |
1683 | </context-group> | 1774 | </context-group> |
1684 | </trans-unit> | 1775 | </trans-unit> |
1776 | <trans-unit id="2903648076838460070" datatype="html"> | ||
1777 | <source>Videos blocked</source> | ||
1778 | <context-group purpose="location"> | ||
1779 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
1780 | <context context-type="linenumber">67</context> | ||
1781 | </context-group> | ||
1782 | </trans-unit> | ||
1783 | <trans-unit id="7805059636749367886" datatype="html"> | ||
1784 | <source>Muted instances</source> | ||
1785 | <context-group purpose="location"> | ||
1786 | <context context-type="sourcefile">../app/+admin/moderation/moderation.routes.ts</context> | ||
1787 | <context context-type="linenumber">89</context> | ||
1788 | </context-group> | ||
1789 | </trans-unit> | ||
1685 | <trans-unit id="240806681889331244" datatype="html"> | 1790 | <trans-unit id="240806681889331244" datatype="html"> |
1686 | <source>Unlimited</source> | 1791 | <source>Unlimited</source> |
1687 | <context-group purpose="location"> | 1792 | <context-group purpose="location"> |
@@ -2836,6 +2941,13 @@ | |||
2836 | <context context-type="linenumber">289</context> | 2941 | <context context-type="linenumber">289</context> |
2837 | </context-group> | 2942 | </context-group> |
2838 | </trans-unit> | 2943 | </trans-unit> |
2944 | <trans-unit id="6284468333579755406" datatype="html"> | ||
2945 | <source>Edit custom configuration</source> | ||
2946 | <context-group purpose="location"> | ||
2947 | <context context-type="sourcefile">../app/+admin/config/config.routes.ts</context> | ||
2948 | <context context-type="linenumber">26</context> | ||
2949 | </context-group> | ||
2950 | </trans-unit> | ||
2839 | <trans-unit id="43f1cc191ebc0b8ce89f6916aa634f5a57158798" datatype="html"> | 2951 | <trans-unit id="43f1cc191ebc0b8ce89f6916aa634f5a57158798" datatype="html"> |
2840 | <source>Jobs</source> | 2952 | <source>Jobs</source> |
2841 | <context-group purpose="location"> | 2953 | <context-group purpose="location"> |
@@ -3216,6 +3328,27 @@ | |||
3216 | <context context-type="linenumber">64</context> | 3328 | <context context-type="linenumber">64</context> |
3217 | </context-group> | 3329 | </context-group> |
3218 | </trans-unit> | 3330 | </trans-unit> |
3331 | <trans-unit id="2338185419645468935" datatype="html"> | ||
3332 | <source>List installed plugins</source> | ||
3333 | <context-group purpose="location"> | ||
3334 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3335 | <context context-type="linenumber">28</context> | ||
3336 | </context-group> | ||
3337 | </trans-unit> | ||
3338 | <trans-unit id="8897412584195581488" datatype="html"> | ||
3339 | <source>Search plugins</source> | ||
3340 | <context-group purpose="location"> | ||
3341 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3342 | <context context-type="linenumber">37</context> | ||
3343 | </context-group> | ||
3344 | </trans-unit> | ||
3345 | <trans-unit id="4994333937800672218" datatype="html"> | ||
3346 | <source>Show plugin</source> | ||
3347 | <context-group purpose="location"> | ||
3348 | <context context-type="sourcefile">../app/+admin/plugins/plugins.routes.ts</context> | ||
3349 | <context context-type="linenumber">46</context> | ||
3350 | </context-group> | ||
3351 | </trans-unit> | ||
3219 | <trans-unit id="047f50bc5b5d17b5bec0196355953e1a5c590ddb" datatype="html"> | 3352 | <trans-unit id="047f50bc5b5d17b5bec0196355953e1a5c590ddb" datatype="html"> |
3220 | <source>Update</source> | 3353 | <source>Update</source> |
3221 | <context-group purpose="location"> | 3354 | <context-group purpose="location"> |
@@ -3508,46 +3641,137 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</source> | |||
3508 | <context context-type="linenumber">6</context> | 3641 | <context context-type="linenumber">6</context> |
3509 | </context-group> | 3642 | </context-group> |
3510 | </trans-unit> | 3643 | </trans-unit> |
3511 | <trans-unit id="da44efc7b658c318651866454d258bbbe57ff21c" datatype="html"> | 3644 | <trans-unit id="4e5254dedf0c12ce7e7c2197384fceebe3b29a2b" datatype="html"> |
3512 | <source> Cancel </source> | 3645 | <source>Markdown compatible</source> |
3646 | <context-group purpose="location"> | ||
3647 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
3648 | <context context-type="linenumber">13</context> | ||
3649 | </context-group> | ||
3650 | </trans-unit> | ||
3651 | <trans-unit id="4739ffad85f09defefdb6e51b45f43b2ef7c4388" datatype="html"> | ||
3652 | <source>Markdown compatible that supports:</source> | ||
3653 | <context-group purpose="location"> | ||
3654 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
3655 | <context context-type="linenumber">15</context> | ||
3656 | </context-group> | ||
3657 | </trans-unit> | ||
3658 | <trans-unit id="9a53b17a021bb0677c156fd893461797fc497a10" datatype="html"> | ||
3659 | <source>Auto generated links</source> | ||
3660 | <context-group purpose="location"> | ||
3661 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
3662 | <context context-type="linenumber">18</context> | ||
3663 | </context-group> | ||
3664 | </trans-unit> | ||
3665 | <trans-unit id="664f99b8919d6dd2faa1c1f7c378aa86d1be5e8a" datatype="html"> | ||
3666 | <source>Break lines</source> | ||
3667 | <context-group purpose="location"> | ||
3668 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
3669 | <context context-type="linenumber">19</context> | ||
3670 | </context-group> | ||
3671 | </trans-unit> | ||
3672 | <trans-unit id="b15e7bec5c7833d2d9634946ccbed68967b1bee1" datatype="html"> | ||
3673 | <source>Lists</source> | ||
3674 | <context-group purpose="location"> | ||
3675 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
3676 | <context context-type="linenumber">20</context> | ||
3677 | </context-group> | ||
3678 | </trans-unit> | ||
3679 | <trans-unit id="ab4426b60f13c00b61d6b714d390dc629f314980" datatype="html"> | ||
3680 | <source>Emphasis</source> | ||
3513 | <context-group purpose="location"> | 3681 | <context-group purpose="location"> |
3514 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | 3682 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> |
3515 | <context context-type="linenumber">22</context> | 3683 | <context context-type="linenumber">22</context> |
3516 | </context-group> | 3684 | </context-group> |
3517 | </trans-unit> | 3685 | </trans-unit> |
3518 | <trans-unit id="8956c0f4c6974289fc63f1ab6b54f5b32ed65eeb" datatype="html"> | 3686 | <trans-unit id="4e13b179501d3d32721037e03b4c04acb9857c5f" datatype="html"> |
3519 | <source> Reply </source> | 3687 | <source>bold</source> |
3520 | <context-group purpose="location"> | 3688 | <context-group purpose="location"> |
3521 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | 3689 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> |
3522 | <context context-type="linenumber">25</context> | 3690 | <context context-type="linenumber">23</context> |
3691 | </context-group> | ||
3692 | </trans-unit> | ||
3693 | <trans-unit id="3c12190421fbb2756e6bbead923df9ec5de8ede2" datatype="html"> | ||
3694 | <source>italic</source> | ||
3695 | <context-group purpose="location"> | ||
3696 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
3697 | <context context-type="linenumber">23</context> | ||
3698 | </context-group> | ||
3699 | </trans-unit> | ||
3700 | <trans-unit id="adb4bbdcb961b8aac8298d6cac554d9b25636b7a" datatype="html"> | ||
3701 | <source>Emoji shortcuts</source> | ||
3702 | <context-group purpose="location"> | ||
3703 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
3704 | <context context-type="linenumber">26</context> | ||
3705 | </context-group> | ||
3706 | </trans-unit> | ||
3707 | <trans-unit id="b9809a21a8eb3c9db2a0282c5dd94bc221575c96" datatype="html"> | ||
3708 | <source>Emoji markup</source> | ||
3709 | <context-group purpose="location"> | ||
3710 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
3711 | <context context-type="linenumber">30</context> | ||
3712 | </context-group> | ||
3713 | </trans-unit> | ||
3714 | <trans-unit id="f37feb427aaa551edd1f22616be6464bc0d492de" datatype="html"> | ||
3715 | <source>See complete list</source> | ||
3716 | <context-group purpose="location"> | ||
3717 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
3718 | <context context-type="linenumber">32</context> | ||
3719 | </context-group> | ||
3720 | </trans-unit> | ||
3721 | <trans-unit id="da44efc7b658c318651866454d258bbbe57ff21c" datatype="html"> | ||
3722 | <source> Cancel </source> | ||
3723 | <context-group purpose="location"> | ||
3724 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
3725 | <context context-type="linenumber">46</context> | ||
3523 | </context-group> | 3726 | </context-group> |
3524 | </trans-unit> | 3727 | </trans-unit> |
3525 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135" datatype="html"> | 3728 | <trans-unit id="8b2bb53dfb5f059f2b68cc4ac00661a865909135" datatype="html"> |
3526 | <source>You are one step away from commenting</source> | 3729 | <source>You are one step away from commenting</source> |
3527 | <context-group purpose="location"> | 3730 | <context-group purpose="location"> |
3528 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | 3731 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> |
3529 | <context context-type="linenumber">31</context> | 3732 | <context context-type="linenumber">55</context> |
3530 | </context-group> | 3733 | </context-group> |
3531 | </trans-unit> | 3734 | </trans-unit> |
3532 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> | 3735 | <trans-unit id="2c6453cc150c9f652a7f1238d2f172e625f0f117" datatype="html"> |
3533 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> | 3736 | <source> You can comment using an account on any ActivityPub-compatible instance. On most platforms, you can find the video by typing its URL in the search bar and then comment it from within the software's interface. </source> |
3534 | <context-group purpose="location"> | 3737 | <context-group purpose="location"> |
3535 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | 3738 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> |
3536 | <context context-type="linenumber">36,39</context> | 3739 | <context context-type="linenumber">60,63</context> |
3537 | </context-group> | 3740 | </context-group> |
3538 | </trans-unit> | 3741 | </trans-unit> |
3539 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb" datatype="html"> | 3742 | <trans-unit id="968b02fbc645be799727de0d1ec3c6f9b11b20eb" datatype="html"> |
3540 | <source> If you have an account on Mastodon or Pleroma, you can open it directly in their interface: </source> | 3743 | <source> If you have an account on Mastodon or Pleroma, you can open it directly in their interface: </source> |
3541 | <context-group purpose="location"> | 3744 | <context-group purpose="location"> |
3542 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | 3745 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> |
3543 | <context context-type="linenumber">41,42</context> | 3746 | <context context-type="linenumber">65,66</context> |
3544 | </context-group> | 3747 | </context-group> |
3545 | </trans-unit> | 3748 | </trans-unit> |
3546 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> | 3749 | <trans-unit id="413bcc4a4c824366e17673f38cb2af4619e940e2" datatype="html"> |
3547 | <source>Login to comment</source> | 3750 | <source>Login to comment</source> |
3548 | <context-group purpose="location"> | 3751 | <context-group purpose="location"> |
3549 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | 3752 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> |
3550 | <context context-type="linenumber">52</context> | 3753 | <context context-type="linenumber">76</context> |
3754 | </context-group> | ||
3755 | </trans-unit> | ||
3756 | <trans-unit id="974170f455ff5a9034d5737e84b4194c0046fc6b" datatype="html"> | ||
3757 | <source>Markdown Emoji List</source> | ||
3758 | <context-group purpose="location"> | ||
3759 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.html</context> | ||
3760 | <context context-type="linenumber">84</context> | ||
3761 | </context-group> | ||
3762 | </trans-unit> | ||
3763 | <trans-unit id="2662644497259948010" datatype="html"> | ||
3764 | <source>Comment</source> | ||
3765 | <context-group purpose="location"> | ||
3766 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
3767 | <context context-type="linenumber">58</context> | ||
3768 | </context-group> | ||
3769 | </trans-unit> | ||
3770 | <trans-unit id="4502286564339177240" datatype="html"> | ||
3771 | <source>Reply</source> | ||
3772 | <context-group purpose="location"> | ||
3773 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment-add.component.ts</context> | ||
3774 | <context context-type="linenumber">60</context> | ||
3551 | </context-group> | 3775 | </context-group> |
3552 | </trans-unit> | 3776 | </trans-unit> |
3553 | <trans-unit id="71b6e75eb1d54bcd9a64b9af9b99121785a065d0" datatype="html"> | 3777 | <trans-unit id="71b6e75eb1d54bcd9a64b9af9b99121785a065d0" datatype="html"> |
@@ -3589,7 +3813,7 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</source> | |||
3589 | <source>Options</source> | 3813 | <source>Options</source> |
3590 | <context-group purpose="location"> | 3814 | <context-group purpose="location"> |
3591 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context> | 3815 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context> |
3592 | <context context-type="linenumber">49</context> | 3816 | <context context-type="linenumber">48</context> |
3593 | </context-group> | 3817 | </context-group> |
3594 | </trans-unit> | 3818 | </trans-unit> |
3595 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285" datatype="html"> | 3819 | <trans-unit id="a607fab03e11b0e07c1640e11a1b02d7af06b285" datatype="html"> |
@@ -3606,32 +3830,39 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</source> | |||
3606 | <context context-type="linenumber">44</context> | 3830 | <context context-type="linenumber">44</context> |
3607 | </context-group> | 3831 | </context-group> |
3608 | </trans-unit> | 3832 | </trans-unit> |
3609 | <trans-unit id="826b25211922a1b46436589233cb6f1a163d89b7" datatype="html"> | ||
3610 | <source>Delete</source> | ||
3611 | <context-group purpose="location"> | ||
3612 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context> | ||
3613 | <context context-type="linenumber">45</context> | ||
3614 | </context-group> | ||
3615 | </trans-unit> | ||
3616 | <trans-unit id="28df1b02fd88d2deb0212bc5d7ff34cf9492fa54" datatype="html"> | 3833 | <trans-unit id="28df1b02fd88d2deb0212bc5d7ff34cf9492fa54" datatype="html"> |
3617 | <source>Deleted</source> | 3834 | <source>Deleted</source> |
3618 | <context-group purpose="location"> | 3835 | <context-group purpose="location"> |
3619 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context> | 3836 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context> |
3620 | <context context-type="linenumber">56</context> | 3837 | <context context-type="linenumber">55</context> |
3621 | </context-group> | 3838 | </context-group> |
3622 | </trans-unit> | 3839 | </trans-unit> |
3623 | <trans-unit id="3dc4cf221502c170c7fcd4b2bffc9b3aa46b84bb" datatype="html"> | 3840 | <trans-unit id="3dc4cf221502c170c7fcd4b2bffc9b3aa46b84bb" datatype="html"> |
3624 | <source>This comment has been deleted</source> | 3841 | <source>This comment has been deleted</source> |
3625 | <context-group purpose="location"> | 3842 | <context-group purpose="location"> |
3626 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context> | 3843 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.html</context> |
3627 | <context context-type="linenumber">62</context> | 3844 | <context context-type="linenumber">61</context> |
3628 | </context-group> | 3845 | </context-group> |
3629 | </trans-unit> | 3846 | </trans-unit> |
3630 | <trans-unit id="5512208811126492983" datatype="html"> | 3847 | <trans-unit id="7008439939460403347" datatype="html"> |
3631 | <source>Report comment</source> | 3848 | <source>Report</source> |
3632 | <context-group purpose="location"> | 3849 | <context-group purpose="location"> |
3633 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> | 3850 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> |
3634 | <context context-type="linenumber">139</context> | 3851 | <context context-type="linenumber">171</context> |
3852 | </context-group> | ||
3853 | </trans-unit> | ||
3854 | <trans-unit id="4814285799071780083" datatype="html"> | ||
3855 | <source>Remove</source> | ||
3856 | <context-group purpose="location"> | ||
3857 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> | ||
3858 | <context context-type="linenumber">179</context> | ||
3859 | </context-group> | ||
3860 | </trans-unit> | ||
3861 | <trans-unit id="6871668720687277843" datatype="html"> | ||
3862 | <source>Remove & re-draft</source> | ||
3863 | <context-group purpose="location"> | ||
3864 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comment.component.ts</context> | ||
3865 | <context context-type="linenumber">187</context> | ||
3635 | </context-group> | 3866 | </context-group> |
3636 | </trans-unit> | 3867 | </trans-unit> |
3637 | <trans-unit id="38e66e2d779d6d819cd7703ab73ab1bab75f8614" datatype="html"> | 3868 | <trans-unit id="38e66e2d779d6d819cd7703ab73ab1bab75f8614" datatype="html"> |
@@ -4086,49 +4317,70 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</source> | |||
4086 | <source>No comments.</source> | 4317 | <source>No comments.</source> |
4087 | <context-group purpose="location"> | 4318 | <context-group purpose="location"> |
4088 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context> | 4319 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context> |
4089 | <context context-type="linenumber">32</context> | 4320 | <context context-type="linenumber">33</context> |
4090 | </context-group> | 4321 | </context-group> |
4091 | </trans-unit> | 4322 | </trans-unit> |
4092 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> | 4323 | <trans-unit id="ce6445567d33993fced14aae3456db909121d12e" datatype="html"> |
4093 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> | 4324 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> and others </source> |
4094 | <context-group purpose="location"> | 4325 | <context-group purpose="location"> |
4095 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context> | 4326 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context> |
4096 | <context context-type="linenumber">79,80</context> | 4327 | <context context-type="linenumber">84,85</context> |
4097 | </context-group> | 4328 | </context-group> |
4098 | </trans-unit> | 4329 | </trans-unit> |
4099 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> | 4330 | <trans-unit id="8487d97def3c5336b1cde21c7da14e61a9633061" datatype="html"> |
4100 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> | 4331 | <source> View <x id="INTERPOLATION"/> replies from <x id="INTERPOLATION_1"/> </source> |
4101 | <context-group purpose="location"> | 4332 | <context-group purpose="location"> |
4102 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context> | 4333 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context> |
4103 | <context context-type="linenumber">82,83</context> | 4334 | <context context-type="linenumber">87,88</context> |
4104 | </context-group> | 4335 | </context-group> |
4105 | </trans-unit> | 4336 | </trans-unit> |
4106 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> | 4337 | <trans-unit id="dce85627dad907cb2013d06f97f82ad7bf87b0a6" datatype="html"> |
4107 | <source>View <x id="INTERPOLATION"/> replies</source> | 4338 | <source>View <x id="INTERPOLATION"/> replies</source> |
4108 | <context-group purpose="location"> | 4339 | <context-group purpose="location"> |
4109 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context> | 4340 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context> |
4110 | <context context-type="linenumber">85</context> | 4341 | <context context-type="linenumber">90</context> |
4111 | </context-group> | 4342 | </context-group> |
4112 | </trans-unit> | 4343 | </trans-unit> |
4113 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828" datatype="html"> | 4344 | <trans-unit id="b7fccd922d6473725247ed85a9fdf96fe6794828" datatype="html"> |
4114 | <source> Comments are disabled. </source> | 4345 | <source> Comments are disabled. </source> |
4115 | <context-group purpose="location"> | 4346 | <context-group purpose="location"> |
4116 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context> | 4347 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.html</context> |
4117 | <context context-type="linenumber">96,97</context> | 4348 | <context context-type="linenumber">101,102</context> |
4349 | </context-group> | ||
4350 | </trans-unit> | ||
4351 | <trans-unit id="6747218355168080191" datatype="html"> | ||
4352 | <source>Do you really want to delete this comment?</source> | ||
4353 | <context-group purpose="location"> | ||
4354 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | ||
4355 | <context context-type="linenumber">166</context> | ||
4118 | </context-group> | 4356 | </context-group> |
4119 | </trans-unit> | 4357 | </trans-unit> |
4120 | <trans-unit id="3691787517663044217" datatype="html"> | 4358 | <trans-unit id="3691787517663044217" datatype="html"> |
4121 | <source> The deletion will be sent to remote instances so they can reflect the change.</source> | 4359 | <source> The deletion will be sent to remote instances so they can reflect the change.</source> |
4122 | <context-group purpose="location"> | 4360 | <context-group purpose="location"> |
4123 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | 4361 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> |
4124 | <context context-type="linenumber">163</context> | 4362 | <context context-type="linenumber">169</context> |
4125 | </context-group> | 4363 | </context-group> |
4126 | </trans-unit> | 4364 | </trans-unit> |
4127 | <trans-unit id="7321800851971795962" datatype="html"> | 4365 | <trans-unit id="7321800851971795962" datatype="html"> |
4128 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source> | 4366 | <source> It is a remote comment, so the deletion will only be effective on your instance.</source> |
4129 | <context-group purpose="location"> | 4367 | <context-group purpose="location"> |
4130 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | 4368 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> |
4131 | <context context-type="linenumber">165</context> | 4369 | <context context-type="linenumber">171</context> |
4370 | </context-group> | ||
4371 | </trans-unit> | ||
4372 | <trans-unit id="5964038603724691720" datatype="html"> | ||
4373 | <source>Delete and re-draft</source> | ||
4374 | <context-group purpose="location"> | ||
4375 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | ||
4376 | <context context-type="linenumber">197</context> | ||
4377 | </context-group> | ||
4378 | </trans-unit> | ||
4379 | <trans-unit id="7163633882758007711" datatype="html"> | ||
4380 | <source>Do you really want to delete and re-draft this comment?</source> | ||
4381 | <context-group purpose="location"> | ||
4382 | <context context-type="sourcefile">../app/+videos/+video-watch/comment/video-comments.component.ts</context> | ||
4383 | <context context-type="linenumber">197</context> | ||
4132 | </context-group> | 4384 | </context-group> |
4133 | </trans-unit> | 4385 | </trans-unit> |
4134 | <trans-unit id="6784913005965759008" datatype="html"> | 4386 | <trans-unit id="6784913005965759008" datatype="html"> |
@@ -4754,6 +5006,13 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</source> | |||
4754 | <context context-type="linenumber">48</context> | 5006 | <context context-type="linenumber">48</context> |
4755 | </context-group> | 5007 | </context-group> |
4756 | </trans-unit> | 5008 | </trans-unit> |
5009 | <trans-unit id="5512208811126492983" datatype="html"> | ||
5010 | <source>Report comment</source> | ||
5011 | <context-group purpose="location"> | ||
5012 | <context context-type="sourcefile">../app/shared/shared-moderation/report-modals/comment-report.component.ts</context> | ||
5013 | <context context-type="linenumber">51</context> | ||
5014 | </context-group> | ||
5015 | </trans-unit> | ||
4757 | <trans-unit id="6245265026120479954" datatype="html"> | 5016 | <trans-unit id="6245265026120479954" datatype="html"> |
4758 | <source>Comment reported.</source> | 5017 | <source>Comment reported.</source> |
4759 | <context-group purpose="location"> | 5018 | <context-group purpose="location"> |
@@ -5020,13 +5279,6 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</source> | |||
5020 | <context context-type="linenumber">274</context> | 5279 | <context context-type="linenumber">274</context> |
5021 | </context-group> | 5280 | </context-group> |
5022 | </trans-unit> | 5281 | </trans-unit> |
5023 | <trans-unit id="7008439939460403347" datatype="html"> | ||
5024 | <source>Report</source> | ||
5025 | <context-group purpose="location"> | ||
5026 | <context context-type="sourcefile">../app/shared/shared-video-miniature/video-actions-dropdown.component.ts</context> | ||
5027 | <context context-type="linenumber">286</context> | ||
5028 | </context-group> | ||
5029 | </trans-unit> | ||
5030 | <trans-unit id="4903651219400691248" datatype="html"> | 5282 | <trans-unit id="4903651219400691248" datatype="html"> |
5031 | <source>Mute account</source> | 5283 | <source>Mute account</source> |
5032 | <context-group purpose="location"> | 5284 | <context-group purpose="location"> |
@@ -5825,13 +6077,6 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</source> | |||
5825 | <context context-type="linenumber">430</context> | 6077 | <context context-type="linenumber">430</context> |
5826 | </context-group> | 6078 | </context-group> |
5827 | </trans-unit> | 6079 | </trans-unit> |
5828 | <trans-unit id="6747218355168080191" datatype="html"> | ||
5829 | <source>Do you really want to delete this comment?</source> | ||
5830 | <context-group purpose="location"> | ||
5831 | <context context-type="sourcefile">../app/shared/shared-abuse-list/abuse-list-table.component.ts</context> | ||
5832 | <context context-type="linenumber">434</context> | ||
5833 | </context-group> | ||
5834 | </trans-unit> | ||
5835 | <trans-unit id="7837272126865175984" datatype="html"> | 6080 | <trans-unit id="7837272126865175984" datatype="html"> |
5836 | <source>Comment deleted.</source> | 6081 | <source>Comment deleted.</source> |
5837 | <context-group purpose="location"> | 6082 | <context-group purpose="location"> |
@@ -5944,6 +6189,13 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</source> | |||
5944 | <context context-type="linenumber">167</context> | 6189 | <context context-type="linenumber">167</context> |
5945 | </context-group> | 6190 | </context-group> |
5946 | </trans-unit> | 6191 | </trans-unit> |
6192 | <trans-unit id="826b25211922a1b46436589233cb6f1a163d89b7" datatype="html"> | ||
6193 | <source>Delete</source> | ||
6194 | <context-group purpose="location"> | ||
6195 | <context context-type="sourcefile">../app/+videos/+video-edit/shared/video-edit.component.html</context> | ||
6196 | <context context-type="linenumber">169</context> | ||
6197 | </context-group> | ||
6198 | </trans-unit> | ||
5947 | <trans-unit id="ca4588e185413b2fc77dbe35c861cc540b11b9ad" datatype="html"> | 6199 | <trans-unit id="ca4588e185413b2fc77dbe35c861cc540b11b9ad" datatype="html"> |
5948 | <source>Will be created on update</source> | 6200 | <source>Will be created on update</source> |
5949 | <context-group purpose="location"> | 6201 | <context-group purpose="location"> |
@@ -6544,6 +6796,13 @@ video size: <x id="PH"/>, used: <x id="PH_1"/>, quota: <x id="PH_2"/>)</source> | |||
6544 | <context context-type="linenumber">224,225</context> | 6796 | <context context-type="linenumber">224,225</context> |
6545 | </context-group> | 6797 | </context-group> |
6546 | </trans-unit> | 6798 | </trans-unit> |
6799 | <trans-unit id="2454050363478003966" datatype="html"> | ||
6800 | <source>Login</source> | ||
6801 | <context-group purpose="location"> | ||
6802 | <context context-type="sourcefile">../app/+login/login-routing.module.ts</context> | ||
6803 | <context context-type="linenumber">14</context> | ||
6804 | </context-group> | ||
6805 | </trans-unit> | ||
6547 | <trans-unit id="12910217fdcdbca64bee06f511639b653d5428ea" datatype="html"> | 6806 | <trans-unit id="12910217fdcdbca64bee06f511639b653d5428ea" datatype="html"> |
6548 | <source> Login </source> | 6807 | <source> Login </source> |
6549 | <context-group purpose="location"> | 6808 | <context-group purpose="location"> |
@@ -6724,28 +6983,28 @@ The link will expire within 1 hour.</source> | |||
6724 | <source>Only I can see this video</source> | 6983 | <source>Only I can see this video</source> |
6725 | <context-group purpose="location"> | 6984 | <context-group purpose="location"> |
6726 | <context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context> | 6985 | <context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context> |
6727 | <context context-type="linenumber">340</context> | 6986 | <context context-type="linenumber">341</context> |
6728 | </context-group> | 6987 | </context-group> |
6729 | </trans-unit> | 6988 | </trans-unit> |
6730 | <trans-unit id="6767380569816110388" datatype="html"> | 6989 | <trans-unit id="6767380569816110388" datatype="html"> |
6731 | <source>Only shareable via a private link</source> | 6990 | <source>Only shareable via a private link</source> |
6732 | <context-group purpose="location"> | 6991 | <context-group purpose="location"> |
6733 | <context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context> | 6992 | <context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context> |
6734 | <context context-type="linenumber">344</context> | 6993 | <context context-type="linenumber">345</context> |
6735 | </context-group> | 6994 | </context-group> |
6736 | </trans-unit> | 6995 | </trans-unit> |
6737 | <trans-unit id="6828965264297239528" datatype="html"> | 6996 | <trans-unit id="6828965264297239528" datatype="html"> |
6738 | <source>Anyone can see this video</source> | 6997 | <source>Anyone can see this video</source> |
6739 | <context-group purpose="location"> | 6998 | <context-group purpose="location"> |
6740 | <context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context> | 6999 | <context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context> |
6741 | <context context-type="linenumber">348</context> | 7000 | <context context-type="linenumber">349</context> |
6742 | </context-group> | 7001 | </context-group> |
6743 | </trans-unit> | 7002 | </trans-unit> |
6744 | <trans-unit id="1425933035739773115" datatype="html"> | 7003 | <trans-unit id="1425933035739773115" datatype="html"> |
6745 | <source>Only users of this instance can see this video</source> | 7004 | <source>Only users of this instance can see this video</source> |
6746 | <context-group purpose="location"> | 7005 | <context-group purpose="location"> |
6747 | <context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context> | 7006 | <context context-type="sourcefile">../app/shared/shared-main/video/video.service.ts</context> |
6748 | <context context-type="linenumber">352</context> | 7007 | <context context-type="linenumber">353</context> |
6749 | </context-group> | 7008 | </context-group> |
6750 | </trans-unit> | 7009 | </trans-unit> |
6751 | <trans-unit id="f4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8" datatype="html"> | 7010 | <trans-unit id="f4e529ae5ffd73001d1ff4bbdeeb0a72e342e5c8" datatype="html"> |
@@ -6944,53 +7203,53 @@ The link will expire within 1 hour.</source> | |||
6944 | <context context-type="linenumber">1</context> | 7203 | <context context-type="linenumber">1</context> |
6945 | </context-group> | 7204 | </context-group> |
6946 | </trans-unit> | 7205 | </trans-unit> |
6947 | <trans-unit id="9c71feb04c2beab559f79c41c6127815fb9c1a6f" datatype="html"> | 7206 | <trans-unit id="9082008222523034483" datatype="html"> |
6948 | <source>Get help</source> | 7207 | <source>Get help</source> |
6949 | <context-group purpose="location"> | 7208 | <context-group purpose="location"> |
6950 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.html</context> | 7209 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> |
6951 | <context context-type="linenumber">29</context> | 7210 | <context context-type="linenumber">16</context> |
6952 | </context-group> | 7211 | </context-group> |
6953 | </trans-unit> | 7212 | </trans-unit> |
6954 | <trans-unit id="8644431249513874405" datatype="html"> | 7213 | <trans-unit id="8644431249513874405" datatype="html"> |
6955 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source> | 7214 | <source><a href="https://en.wikipedia.org/wiki/Markdown#Example" target="_blank" rel="noopener noreferrer">Markdown</a> compatible that supports:</source> |
6956 | <context-group purpose="location"> | 7215 | <context-group purpose="location"> |
6957 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 7216 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> |
6958 | <context context-type="linenumber">71</context> | 7217 | <context context-type="linenumber">75</context> |
6959 | </context-group> | 7218 | </context-group> |
6960 | </trans-unit> | 7219 | </trans-unit> |
6961 | <trans-unit id="2516633974298697807" datatype="html"> | 7220 | <trans-unit id="2516633974298697807" datatype="html"> |
6962 | <source>Emphasis</source> | 7221 | <source>Emphasis</source> |
6963 | <context-group purpose="location"> | 7222 | <context-group purpose="location"> |
6964 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 7223 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> |
6965 | <context context-type="linenumber">77</context> | 7224 | <context context-type="linenumber">81</context> |
6966 | </context-group> | 7225 | </context-group> |
6967 | </trans-unit> | 7226 | </trans-unit> |
6968 | <trans-unit id="7565716024468232322" datatype="html"> | 7227 | <trans-unit id="7565716024468232322" datatype="html"> |
6969 | <source>Links</source> | 7228 | <source>Links</source> |
6970 | <context-group purpose="location"> | 7229 | <context-group purpose="location"> |
6971 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 7230 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> |
6972 | <context context-type="linenumber">78</context> | 7231 | <context context-type="linenumber">82</context> |
6973 | </context-group> | 7232 | </context-group> |
6974 | </trans-unit> | 7233 | </trans-unit> |
6975 | <trans-unit id="7838476952710404110" datatype="html"> | 7234 | <trans-unit id="7838476952710404110" datatype="html"> |
6976 | <source>New lines</source> | 7235 | <source>New lines</source> |
6977 | <context-group purpose="location"> | 7236 | <context-group purpose="location"> |
6978 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 7237 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> |
6979 | <context context-type="linenumber">79</context> | 7238 | <context context-type="linenumber">83</context> |
6980 | </context-group> | 7239 | </context-group> |
6981 | </trans-unit> | 7240 | </trans-unit> |
6982 | <trans-unit id="8756167649220050929" datatype="html"> | 7241 | <trans-unit id="8756167649220050929" datatype="html"> |
6983 | <source>Lists</source> | 7242 | <source>Lists</source> |
6984 | <context-group purpose="location"> | 7243 | <context-group purpose="location"> |
6985 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 7244 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> |
6986 | <context context-type="linenumber">80</context> | 7245 | <context context-type="linenumber">84</context> |
6987 | </context-group> | 7246 | </context-group> |
6988 | </trans-unit> | 7247 | </trans-unit> |
6989 | <trans-unit id="414887388288176527" datatype="html"> | 7248 | <trans-unit id="414887388288176527" datatype="html"> |
6990 | <source>Images</source> | 7249 | <source>Images</source> |
6991 | <context-group purpose="location"> | 7250 | <context-group purpose="location"> |
6992 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> | 7251 | <context context-type="sourcefile">../app/shared/shared-main/misc/help.component.ts</context> |
6993 | <context context-type="linenumber">81</context> | 7252 | <context context-type="linenumber">85</context> |
6994 | </context-group> | 7253 | </context-group> |
6995 | </trans-unit> | 7254 | </trans-unit> |
6996 | <trans-unit id="7365924714339585574" datatype="html"> | 7255 | <trans-unit id="7365924714339585574" datatype="html"> |
@@ -7445,21 +7704,21 @@ The link will expire within 1 hour.</source> | |||
7445 | <source>User</source> | 7704 | <source>User</source> |
7446 | <context-group purpose="location"> | 7705 | <context-group purpose="location"> |
7447 | <context context-type="sourcefile">../app/core/users/user.service.ts</context> | 7706 | <context context-type="sourcefile">../app/core/users/user.service.ts</context> |
7448 | <context context-type="linenumber">384</context> | 7707 | <context context-type="linenumber">382</context> |
7449 | </context-group> | 7708 | </context-group> |
7450 | </trans-unit> | 7709 | </trans-unit> |
7451 | <trans-unit id="2149300564474427551" datatype="html"> | 7710 | <trans-unit id="2149300564474427551" datatype="html"> |
7452 | <source>Administrator</source> | 7711 | <source>Administrator</source> |
7453 | <context-group purpose="location"> | 7712 | <context-group purpose="location"> |
7454 | <context context-type="sourcefile">../app/core/users/user.service.ts</context> | 7713 | <context context-type="sourcefile">../app/core/users/user.service.ts</context> |
7455 | <context context-type="linenumber">385</context> | 7714 | <context context-type="linenumber">383</context> |
7456 | </context-group> | 7715 | </context-group> |
7457 | </trans-unit> | 7716 | </trans-unit> |
7458 | <trans-unit id="4968151111061046122" datatype="html"> | 7717 | <trans-unit id="4968151111061046122" datatype="html"> |
7459 | <source>Moderator</source> | 7718 | <source>Moderator</source> |
7460 | <context-group purpose="location"> | 7719 | <context-group purpose="location"> |
7461 | <context context-type="sourcefile">../app/core/users/user.service.ts</context> | 7720 | <context context-type="sourcefile">../app/core/users/user.service.ts</context> |
7462 | <context context-type="linenumber">386</context> | 7721 | <context context-type="linenumber">384</context> |
7463 | </context-group> | 7722 | </context-group> |
7464 | </trans-unit> | 7723 | </trans-unit> |
7465 | <trans-unit id="f3e63578c50546530daf6050d2ba6f8226040f2c" datatype="html"> | 7724 | <trans-unit id="f3e63578c50546530daf6050d2ba6f8226040f2c" datatype="html"> |
@@ -7991,168 +8250,168 @@ The link will expire within 1 hour.</source> | |||
7991 | <source>Discover</source> | 8250 | <source>Discover</source> |
7992 | <context-group purpose="location"> | 8251 | <context-group purpose="location"> |
7993 | <context context-type="sourcefile">../app/menu/menu.component.html</context> | 8252 | <context context-type="sourcefile">../app/menu/menu.component.html</context> |
7994 | <context context-type="linenumber">111</context> | 8253 | <context context-type="linenumber">117</context> |
7995 | </context-group> | 8254 | </context-group> |
7996 | </trans-unit> | 8255 | </trans-unit> |
7997 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807" datatype="html"> | 8256 | <trans-unit id="b6b7986bc3721ac483baf20bc9a320529075c807" datatype="html"> |
7998 | <source>Trending</source> | 8257 | <source>Trending</source> |
7999 | <context-group purpose="location"> | 8258 | <context-group purpose="location"> |
8000 | <context context-type="sourcefile">../app/menu/menu.component.html</context> | 8259 | <context context-type="sourcefile">../app/menu/menu.component.html</context> |
8001 | <context context-type="linenumber">116</context> | 8260 | <context context-type="linenumber">122</context> |
8002 | </context-group> | 8261 | </context-group> |
8003 | </trans-unit> | 8262 | </trans-unit> |
8004 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> | 8263 | <trans-unit id="9d9983bd6d0817a5b1bb7650034a2f9a5f4b7bac" datatype="html"> |
8005 | <source>Most liked</source> | 8264 | <source>Most liked</source> |
8006 | <context-group purpose="location"> | 8265 | <context-group purpose="location"> |
8007 | <context context-type="sourcefile">../app/menu/menu.component.html</context> | 8266 | <context context-type="sourcefile">../app/menu/menu.component.html</context> |
8008 | <context context-type="linenumber">121</context> | 8267 | <context context-type="linenumber">127</context> |
8009 | </context-group> | 8268 | </context-group> |
8010 | </trans-unit> | 8269 | </trans-unit> |
8011 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1" datatype="html"> | 8270 | <trans-unit id="8d20c5f5dd30acbe71316544dab774393fd9c3c1" datatype="html"> |
8012 | <source>Recently added</source> | 8271 | <source>Recently added</source> |
8013 | <context-group purpose="location"> | 8272 | <context-group purpose="location"> |
8014 | <context context-type="sourcefile">../app/menu/menu.component.html</context> | 8273 | <context context-type="sourcefile">../app/menu/menu.component.html</context> |
8015 | <context context-type="linenumber">126</context> | 8274 | <context context-type="linenumber">132</context> |
8016 | </context-group> | 8275 | </context-group> |
8017 | </trans-unit> | 8276 | </trans-unit> |
8018 | <trans-unit id="34746fb1c7f3d2194d99652bdff89e6e14c9c4f4" datatype="html"> | 8277 | <trans-unit id="34746fb1c7f3d2194d99652bdff89e6e14c9c4f4" datatype="html"> |
8019 | <source>Contact</source> | 8278 | <source>Contact</source> |
8020 | <context-group purpose="location"> | 8279 | <context-group purpose="location"> |
8021 | <context context-type="sourcefile">../app/menu/menu.component.html</context> | 8280 | <context context-type="sourcefile">../app/menu/menu.component.html</context> |
8022 | <context context-type="linenumber">160</context> | 8281 | <context context-type="linenumber">166</context> |
8023 | </context-group> | 8282 | </context-group> |
8024 | </trans-unit> | 8283 | </trans-unit> |
8025 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> | 8284 | <trans-unit id="0530eaf7a05c66b3167da49a57e5af4326f3af15" datatype="html"> |
8026 | <source>Get help using PeerTube</source> | 8285 | <source>Get help using PeerTube</source> |
8027 | <context-group purpose="location"> | 8286 | <context-group purpose="location"> |
8028 | <context context-type="sourcefile">../app/menu/menu.component.html</context> | 8287 | <context context-type="sourcefile">../app/menu/menu.component.html</context> |
8029 | <context context-type="linenumber">161</context> | 8288 | <context context-type="linenumber">167</context> |
8030 | </context-group> | 8289 | </context-group> |
8031 | </trans-unit> | 8290 | </trans-unit> |
8032 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> | 8291 | <trans-unit id="85b79c9064aed1ead31ace985f31aa1363f6bdaf" datatype="html"> |
8033 | <source>Help</source> | 8292 | <source>Help</source> |
8034 | <context-group purpose="location"> | 8293 | <context-group purpose="location"> |
8035 | <context context-type="sourcefile">../app/menu/menu.component.html</context> | 8294 | <context context-type="sourcefile">../app/menu/menu.component.html</context> |
8036 | <context context-type="linenumber">162,161</context> | 8295 | <context context-type="linenumber">168,167</context> |
8037 | </context-group> | 8296 | </context-group> |
8038 | </trans-unit> | 8297 | </trans-unit> |
8039 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> | 8298 | <trans-unit id="a2892dc0bd40629b160c490cdd4aff82204bbec6" datatype="html"> |
8040 | <source>Frequently asked questions about PeerTube</source> | 8299 | <source>Frequently asked questions about PeerTube</source> |
8041 | <context-group purpose="location"> | 8300 | <context-group purpose="location"> |
8042 | <context context-type="sourcefile">../app/menu/menu.component.html</context> | 8301 | <context context-type="sourcefile">../app/menu/menu.component.html</context> |
8043 | <context context-type="linenumber">162</context> | 8302 | <context context-type="linenumber">168</context> |
8044 | </context-group> | 8303 | </context-group> |
8045 | </trans-unit> | 8304 | </trans-unit> |
8046 | <trans-unit id="4b6dbf2d92858e82bcf6ae5dbc8dfb4b29d82ad0" datatype="html"> | 8305 | <trans-unit id="4b6dbf2d92858e82bcf6ae5dbc8dfb4b29d82ad0" datatype="html"> |
8047 | <source>FAQ</source> | 8306 | <source>FAQ</source> |
8048 | <context-group purpose="location"> | 8307 | <context-group purpose="location"> |
8049 | <context context-type="sourcefile">../app/menu/menu.component.html</context> | 8308 | <context context-type="sourcefile">../app/menu/menu.component.html</context> |
8050 | <context context-type="linenumber">163,162</context> | 8309 | <context context-type="linenumber">169,168</context> |
8051 | </context-group> | 8310 | </context-group> |
8052 | </trans-unit> | 8311 | </trans-unit> |
8053 | <trans-unit id="299f97b8ee9c62d45f2cc01961aa1e5101d6d05a" datatype="html"> | 8312 | <trans-unit id="299f97b8ee9c62d45f2cc01961aa1e5101d6d05a" datatype="html"> |
8054 | <source>Stats</source> | 8313 | <source>Stats</source> |
8055 | <context-group purpose="location"> | 8314 | <context-group purpose="location"> |
8056 | <context context-type="sourcefile">../app/menu/menu.component.html</context> | 8315 | <context context-type="sourcefile">../app/menu/menu.component.html</context> |
8057 | <context context-type="linenumber">164,163</context> | 8316 | <context context-type="linenumber">170,169</context> |
8058 | </context-group> | 8317 | </context-group> |
8059 | </trans-unit> | 8318 | </trans-unit> |
8060 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> | 8319 | <trans-unit id="fd91a5f2ef27c48b6908d9016fb6de2a224e8559" datatype="html"> |
8061 | <source>API documentation</source> | 8320 | <source>API documentation</source> |
8062 | <context-group purpose="location"> | 8321 | <context-group purpose="location"> |
8063 | <context context-type="sourcefile">../app/menu/menu.component.html</context> | 8322 | <context context-type="sourcefile">../app/menu/menu.component.html</context> |
8064 | <context context-type="linenumber">164</context> | 8323 | <context context-type="linenumber">170</context> |
8065 | </context-group> | 8324 | </context-group> |
8066 | </trans-unit> | 8325 | </trans-unit> |
8067 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> | 8326 | <trans-unit id="e351b40b3869a5c7d19c3d4918cb1ac7aaab95c4" datatype="html"> |
8068 | <source>API</source> | 8327 | <source>API</source> |
8069 | <context-group purpose="location"> | 8328 | <context-group purpose="location"> |
8070 | <context context-type="sourcefile">../app/menu/menu.component.html</context> | 8329 | <context context-type="sourcefile">../app/menu/menu.component.html</context> |
8071 | <context context-type="linenumber">165,164</context> | 8330 | <context context-type="linenumber">171,170</context> |
8072 | </context-group> | 8331 | </context-group> |
8073 | </trans-unit> | 8332 | </trans-unit> |
8074 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> | 8333 | <trans-unit id="d3381fff430c3687ae1c6302af99d88baa4f480b" datatype="html"> |
8075 | <source>Shortcuts</source> | 8334 | <source>Shortcuts</source> |
8076 | <context-group purpose="location"> | 8335 | <context-group purpose="location"> |
8077 | <context context-type="sourcefile">../app/menu/menu.component.html</context> | 8336 | <context context-type="sourcefile">../app/menu/menu.component.html</context> |
8078 | <context context-type="linenumber">165</context> | 8337 | <context context-type="linenumber">171</context> |
8079 | </context-group> | 8338 | </context-group> |
8080 | </trans-unit> | 8339 | </trans-unit> |
8081 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> | 8340 | <trans-unit id="900ca8b77fca5b6232cf1d526830ccc29569a984" datatype="html"> |
8082 | <source>powered by PeerTube - CopyLeft 2015-2020</source> | 8341 | <source>powered by PeerTube - CopyLeft 2015-2020</source> |
8083 | <context-group purpose="location"> | 8342 | <context-group purpose="location"> |
8084 | <context context-type="sourcefile">../app/menu/menu.component.html</context> | 8343 | <context context-type="sourcefile">../app/menu/menu.component.html</context> |
8085 | <context context-type="linenumber">170</context> | 8344 | <context context-type="linenumber">176</context> |
8086 | </context-group> | 8345 | </context-group> |
8087 | </trans-unit> | 8346 | </trans-unit> |
8088 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> | 8347 | <trans-unit id="f8e6eaa974acec3b80e5c77ec0dc4ff80939964d" datatype="html"> |
8089 | <source>powered by PeerTube</source> | 8348 | <source>powered by PeerTube</source> |
8090 | <context-group purpose="location"> | 8349 | <context-group purpose="location"> |
8091 | <context context-type="sourcefile">../app/menu/menu.component.html</context> | 8350 | <context context-type="sourcefile">../app/menu/menu.component.html</context> |
8092 | <context context-type="linenumber">171</context> | 8351 | <context context-type="linenumber">177</context> |
8093 | </context-group> | 8352 | </context-group> |
8094 | </trans-unit> | 8353 | </trans-unit> |
8095 | <trans-unit id="1eecebc91b4c671d43617b559cf3933275492931" datatype="html"> | 8354 | <trans-unit id="1eecebc91b4c671d43617b559cf3933275492931" datatype="html"> |
8096 | <source>Account settings</source> | 8355 | <source>Account settings</source> |
8097 | <context-group purpose="location"> | 8356 | <context-group purpose="location"> |
8098 | <context context-type="sourcefile">../app/menu/menu.component.html</context> | 8357 | <context context-type="sourcefile">../app/menu/menu.component.html</context> |
8099 | <context context-type="linenumber">25</context> | 8358 | <context context-type="linenumber">26</context> |
8100 | </context-group> | 8359 | </context-group> |
8101 | </trans-unit> | 8360 | </trans-unit> |
8102 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> | 8361 | <trans-unit id="7c55f3a275f9e86fc95243e2fd1f17156a4e97f0" datatype="html"> |
8103 | <source>Channels settings</source> | 8362 | <source>Channels settings</source> |
8104 | <context-group purpose="location"> | 8363 | <context-group purpose="location"> |
8105 | <context context-type="sourcefile">../app/menu/menu.component.html</context> | 8364 | <context context-type="sourcefile">../app/menu/menu.component.html</context> |
8106 | <context context-type="linenumber">29</context> | 8365 | <context context-type="linenumber">31</context> |
8107 | </context-group> | 8366 | </context-group> |
8108 | </trans-unit> | 8367 | </trans-unit> |
8109 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> | 8368 | <trans-unit id="c43efa2dff95b97be0c36a65d2ada4cd594e010f" datatype="html"> |
8110 | <source>Interface:</source> | 8369 | <source>Interface:</source> |
8111 | <context-group purpose="location"> | 8370 | <context-group purpose="location"> |
8112 | <context context-type="sourcefile">../app/menu/menu.component.html</context> | 8371 | <context context-type="sourcefile">../app/menu/menu.component.html</context> |
8113 | <context context-type="linenumber">36</context> | 8372 | <context context-type="linenumber">38</context> |
8114 | </context-group> | 8373 | </context-group> |
8115 | </trans-unit> | 8374 | </trans-unit> |
8116 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> | 8375 | <trans-unit id="a9ada5fec7ddf53a031711b025014495372627de" datatype="html"> |
8117 | <source>Videos:</source> | 8376 | <source>Videos:</source> |
8118 | <context-group purpose="location"> | 8377 | <context-group purpose="location"> |
8119 | <context context-type="sourcefile">../app/menu/menu.component.html</context> | 8378 | <context context-type="sourcefile">../app/menu/menu.component.html</context> |
8120 | <context context-type="linenumber">42</context> | 8379 | <context context-type="linenumber">45</context> |
8121 | </context-group> | 8380 | </context-group> |
8122 | </trans-unit> | 8381 | </trans-unit> |
8123 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> | 8382 | <trans-unit id="9fe1faff741de7a4d50e520d2161209997f8224c" datatype="html"> |
8124 | <source>Sensitive:</source> | 8383 | <source>Sensitive:</source> |
8125 | <context-group purpose="location"> | 8384 | <context-group purpose="location"> |
8126 | <context context-type="sourcefile">../app/menu/menu.component.html</context> | 8385 | <context context-type="sourcefile">../app/menu/menu.component.html</context> |
8127 | <context context-type="linenumber">49</context> | 8386 | <context context-type="linenumber">54</context> |
8128 | </context-group> | 8387 | </context-group> |
8129 | </trans-unit> | 8388 | </trans-unit> |
8130 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> | 8389 | <trans-unit id="ee5ad4d7fed0e8fc44fa9c2d7be9265295108411" datatype="html"> |
8131 | <source>Help share videos</source> | 8390 | <source>Help share videos</source> |
8132 | <context-group purpose="location"> | 8391 | <context-group purpose="location"> |
8133 | <context context-type="sourcefile">../app/menu/menu.component.html</context> | 8392 | <context context-type="sourcefile">../app/menu/menu.component.html</context> |
8134 | <context context-type="linenumber">55</context> | 8393 | <context context-type="linenumber">60</context> |
8135 | </context-group> | 8394 | </context-group> |
8136 | </trans-unit> | 8395 | </trans-unit> |
8137 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> | 8396 | <trans-unit id="cb17d0eefd7d4fc2633ffd351eae187a2c7d4b57" datatype="html"> |
8138 | <source>More account settings</source> | 8397 | <source>More account settings</source> |
8139 | <context-group purpose="location"> | 8398 | <context-group purpose="location"> |
8140 | <context context-type="sourcefile">../app/menu/menu.component.html</context> | 8399 | <context context-type="sourcefile">../app/menu/menu.component.html</context> |
8141 | <context context-type="linenumber">60</context> | 8400 | <context context-type="linenumber">66</context> |
8142 | </context-group> | 8401 | </context-group> |
8143 | </trans-unit> | 8402 | </trans-unit> |
8144 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> | 8403 | <trans-unit id="d2dcb25a3b90ccb169effc066d36335363546d17" datatype="html"> |
8145 | <source>Keyboard shortcuts</source> | 8404 | <source>Keyboard shortcuts</source> |
8146 | <context-group purpose="location"> | 8405 | <context-group purpose="location"> |
8147 | <context context-type="sourcefile">../app/menu/menu.component.html</context> | 8406 | <context context-type="sourcefile">../app/menu/menu.component.html</context> |
8148 | <context context-type="linenumber">66</context> | 8407 | <context context-type="linenumber">72</context> |
8149 | </context-group> | 8408 | </context-group> |
8150 | </trans-unit> | 8409 | </trans-unit> |
8151 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344" datatype="html"> | 8410 | <trans-unit id="3fdc751b264ca9998e1542fcf5794e274cd56344" datatype="html"> |
8152 | <source>Log out</source> | 8411 | <source>Log out</source> |
8153 | <context-group purpose="location"> | 8412 | <context-group purpose="location"> |
8154 | <context context-type="sourcefile">../app/menu/menu.component.html</context> | 8413 | <context context-type="sourcefile">../app/menu/menu.component.html</context> |
8155 | <context context-type="linenumber">70</context> | 8414 | <context context-type="linenumber">76</context> |
8156 | </context-group> | 8415 | </context-group> |
8157 | </trans-unit> | 8416 | </trans-unit> |
8158 | <trans-unit id="608d7164ed2d996dc827b17cd7b6f5915c617be4" datatype="html"> | 8417 | <trans-unit id="608d7164ed2d996dc827b17cd7b6f5915c617be4" datatype="html"> |
@@ -8166,91 +8425,91 @@ The link will expire within 1 hour.</source> | |||
8166 | <source>Create an account</source> | 8425 | <source>Create an account</source> |
8167 | <context-group purpose="location"> | 8426 | <context-group purpose="location"> |
8168 | <context context-type="sourcefile">../app/menu/menu.component.html</context> | 8427 | <context context-type="sourcefile">../app/menu/menu.component.html</context> |
8169 | <context context-type="linenumber">78</context> | 8428 | <context context-type="linenumber">84</context> |
8170 | </context-group> | 8429 | </context-group> |
8171 | </trans-unit> | 8430 | </trans-unit> |
8172 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> | 8431 | <trans-unit id="c3346a45c43ae8e5021086880268979b8d2266f3" datatype="html"> |
8173 | <source>MY LIBRARY</source> | 8432 | <source>MY LIBRARY</source> |
8174 | <context-group purpose="location"> | 8433 | <context-group purpose="location"> |
8175 | <context context-type="sourcefile">../app/menu/menu.component.html</context> | 8434 | <context context-type="sourcefile">../app/menu/menu.component.html</context> |
8176 | <context context-type="linenumber">82</context> | 8435 | <context context-type="linenumber">88</context> |
8177 | </context-group> | 8436 | </context-group> |
8178 | </trans-unit> | 8437 | </trans-unit> |
8179 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> | 8438 | <trans-unit id="47546e45bbb476baaaad38244db444c427ddc502" datatype="html"> |
8180 | <source>Playlists</source> | 8439 | <source>Playlists</source> |
8181 | <context-group purpose="location"> | 8440 | <context-group purpose="location"> |
8182 | <context context-type="sourcefile">../app/menu/menu.component.html</context> | 8441 | <context context-type="sourcefile">../app/menu/menu.component.html</context> |
8183 | <context context-type="linenumber">91</context> | 8442 | <context context-type="linenumber">97</context> |
8184 | </context-group> | 8443 | </context-group> |
8185 | </trans-unit> | 8444 | </trans-unit> |
8186 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2" datatype="html"> | 8445 | <trans-unit id="357064ca9d9ac859eb618e28e8126fa32be049e2" datatype="html"> |
8187 | <source>Subscriptions</source> | 8446 | <source>Subscriptions</source> |
8188 | <context-group purpose="location"> | 8447 | <context-group purpose="location"> |
8189 | <context context-type="sourcefile">../app/menu/menu.component.html</context> | 8448 | <context context-type="sourcefile">../app/menu/menu.component.html</context> |
8190 | <context context-type="linenumber">96</context> | 8449 | <context context-type="linenumber">102</context> |
8191 | </context-group> | 8450 | </context-group> |
8192 | </trans-unit> | 8451 | </trans-unit> |
8193 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8" datatype="html"> | 8452 | <trans-unit id="efac3af0b32e953279c25b6519cae256811e0fe8" datatype="html"> |
8194 | <source>History</source> | 8453 | <source>History</source> |
8195 | <context-group purpose="location"> | 8454 | <context-group purpose="location"> |
8196 | <context context-type="sourcefile">../app/menu/menu.component.html</context> | 8455 | <context context-type="sourcefile">../app/menu/menu.component.html</context> |
8197 | <context context-type="linenumber">101</context> | 8456 | <context context-type="linenumber">107</context> |
8198 | </context-group> | 8457 | </context-group> |
8199 | </trans-unit> | 8458 | </trans-unit> |
8200 | <trans-unit id="a52dae09be10ca3a65da918533ced3d3f4992238" datatype="html"> | 8459 | <trans-unit id="a52dae09be10ca3a65da918533ced3d3f4992238" datatype="html"> |
8201 | <source>Videos</source> | 8460 | <source>Videos</source> |
8202 | <context-group purpose="location"> | 8461 | <context-group purpose="location"> |
8203 | <context context-type="sourcefile">../app/menu/menu.component.html</context> | 8462 | <context context-type="sourcefile">../app/menu/menu.component.html</context> |
8204 | <context context-type="linenumber">86</context> | 8463 | <context context-type="linenumber">92</context> |
8205 | </context-group> | 8464 | </context-group> |
8206 | </trans-unit> | 8465 | </trans-unit> |
8207 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919" datatype="html"> | 8466 | <trans-unit id="b7648e7aced164498aa843b5c4e8f2f1c36a7919" datatype="html"> |
8208 | <source>Administration</source> | 8467 | <source>Administration</source> |
8209 | <context-group purpose="location"> | 8468 | <context-group purpose="location"> |
8210 | <context context-type="sourcefile">../app/menu/menu.component.html</context> | 8469 | <context context-type="sourcefile">../app/menu/menu.component.html</context> |
8211 | <context context-type="linenumber">140</context> | 8470 | <context context-type="linenumber">146</context> |
8212 | </context-group> | 8471 | </context-group> |
8213 | </trans-unit> | 8472 | </trans-unit> |
8214 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> | 8473 | <trans-unit id="5a69be913ebcc70f300060cf1be0c7f8827159d6" datatype="html"> |
8215 | <source>Interface: <x id="INTERPOLATION"/></source> | 8474 | <source>Interface: <x id="INTERPOLATION"/></source> |
8216 | <context-group purpose="location"> | 8475 | <context-group purpose="location"> |
8217 | <context context-type="sourcefile">../app/menu/menu.component.html</context> | 8476 | <context context-type="sourcefile">../app/menu/menu.component.html</context> |
8218 | <context context-type="linenumber">156</context> | 8477 | <context context-type="linenumber">162</context> |
8219 | </context-group> | 8478 | </context-group> |
8220 | </trans-unit> | 8479 | </trans-unit> |
8221 | <trans-unit id="5633144232269377096" datatype="html"> | 8480 | <trans-unit id="5633144232269377096" datatype="html"> |
8222 | <source>hide</source> | 8481 | <source>hide</source> |
8223 | <context-group purpose="location"> | 8482 | <context-group purpose="location"> |
8224 | <context context-type="sourcefile">../app/menu/menu.component.ts</context> | 8483 | <context context-type="sourcefile">../app/menu/menu.component.ts</context> |
8225 | <context context-type="linenumber">118</context> | 8484 | <context context-type="linenumber">121</context> |
8226 | </context-group> | 8485 | </context-group> |
8227 | </trans-unit> | 8486 | </trans-unit> |
8228 | <trans-unit id="8603861867909474404" datatype="html"> | 8487 | <trans-unit id="8603861867909474404" datatype="html"> |
8229 | <source>blur</source> | 8488 | <source>blur</source> |
8230 | <context-group purpose="location"> | 8489 | <context-group purpose="location"> |
8231 | <context context-type="sourcefile">../app/menu/menu.component.ts</context> | 8490 | <context context-type="sourcefile">../app/menu/menu.component.ts</context> |
8232 | <context context-type="linenumber">121</context> | 8491 | <context context-type="linenumber">124</context> |
8233 | </context-group> | 8492 | </context-group> |
8234 | </trans-unit> | 8493 | </trans-unit> |
8235 | <trans-unit id="4534458451100881847" datatype="html"> | 8494 | <trans-unit id="4534458451100881847" datatype="html"> |
8236 | <source>display</source> | 8495 | <source>display</source> |
8237 | <context-group purpose="location"> | 8496 | <context-group purpose="location"> |
8238 | <context context-type="sourcefile">../app/menu/menu.component.ts</context> | 8497 | <context context-type="sourcefile">../app/menu/menu.component.ts</context> |
8239 | <context context-type="linenumber">124</context> | 8498 | <context context-type="linenumber">127</context> |
8240 | </context-group> | 8499 | </context-group> |
8241 | </trans-unit> | 8500 | </trans-unit> |
8242 | <trans-unit id="4467323362722952678" datatype="html"> | 8501 | <trans-unit id="4467323362722952678" datatype="html"> |
8243 | <source>Unknown</source> | 8502 | <source>Unknown</source> |
8244 | <context-group purpose="location"> | 8503 | <context-group purpose="location"> |
8245 | <context context-type="sourcefile">../app/menu/menu.component.ts</context> | 8504 | <context context-type="sourcefile">../app/menu/menu.component.ts</context> |
8246 | <context context-type="linenumber">190</context> | 8505 | <context context-type="linenumber">193</context> |
8247 | </context-group> | 8506 | </context-group> |
8248 | </trans-unit> | 8507 | </trans-unit> |
8249 | <trans-unit id="7939914198003891823" datatype="html"> | 8508 | <trans-unit id="7939914198003891823" datatype="html"> |
8250 | <source>any language</source> | 8509 | <source>any language</source> |
8251 | <context-group purpose="location"> | 8510 | <context-group purpose="location"> |
8252 | <context context-type="sourcefile">../app/menu/menu.component.ts</context> | 8511 | <context context-type="sourcefile">../app/menu/menu.component.ts</context> |
8253 | <context context-type="linenumber">202</context> | 8512 | <context context-type="linenumber">229</context> |
8254 | </context-group> | 8513 | </context-group> |
8255 | </trans-unit> | 8514 | </trans-unit> |
8256 | <trans-unit id="4670312387769733978" datatype="html"> | 8515 | <trans-unit id="4670312387769733978" datatype="html"> |
@@ -8650,7 +8909,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
8650 | <source>See all your notifications</source> | 8909 | <source>See all your notifications</source> |
8651 | <context-group purpose="location"> | 8910 | <context-group purpose="location"> |
8652 | <context context-type="sourcefile">../app/menu/avatar-notification.component.html</context> | 8911 | <context context-type="sourcefile">../app/menu/avatar-notification.component.html</context> |
8653 | <context context-type="linenumber">39</context> | 8912 | <context context-type="linenumber">40</context> |
8654 | </context-group> | 8913 | </context-group> |
8655 | </trans-unit> | 8914 | </trans-unit> |
8656 | <trans-unit id="4267638333776227701" datatype="html"> | 8915 | <trans-unit id="4267638333776227701" datatype="html"> |
@@ -9606,6 +9865,69 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9606 | <context context-type="linenumber">83</context> | 9865 | <context context-type="linenumber">83</context> |
9607 | </context-group> | 9866 | </context-group> |
9608 | </trans-unit> | 9867 | </trans-unit> |
9868 | <trans-unit id="4247400351982331798" datatype="html"> | ||
9869 | <source>Account settings</source> | ||
9870 | <context-group purpose="location"> | ||
9871 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
9872 | <context context-type="linenumber">37</context> | ||
9873 | </context-group> | ||
9874 | </trans-unit> | ||
9875 | <trans-unit id="154062590416726309" datatype="html"> | ||
9876 | <source>Account playlists</source> | ||
9877 | <context-group purpose="location"> | ||
9878 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
9879 | <context context-type="linenumber">55</context> | ||
9880 | </context-group> | ||
9881 | </trans-unit> | ||
9882 | <trans-unit id="6550287183367517925" datatype="html"> | ||
9883 | <source>Create new playlist</source> | ||
9884 | <context-group purpose="location"> | ||
9885 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
9886 | <context context-type="linenumber">64</context> | ||
9887 | </context-group> | ||
9888 | </trans-unit> | ||
9889 | <trans-unit id="2864486939135008600" datatype="html"> | ||
9890 | <source>Playlist elements</source> | ||
9891 | <context-group purpose="location"> | ||
9892 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
9893 | <context context-type="linenumber">73</context> | ||
9894 | </context-group> | ||
9895 | </trans-unit> | ||
9896 | <trans-unit id="8869957234869568361" datatype="html"> | ||
9897 | <source>Update playlist</source> | ||
9898 | <context-group purpose="location"> | ||
9899 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
9900 | <context context-type="linenumber">82</context> | ||
9901 | </context-group> | ||
9902 | </trans-unit> | ||
9903 | <trans-unit id="3410331549417637431" datatype="html"> | ||
9904 | <source>Account video imports</source> | ||
9905 | <context-group purpose="location"> | ||
9906 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
9907 | <context context-type="linenumber">105</context> | ||
9908 | </context-group> | ||
9909 | </trans-unit> | ||
9910 | <trans-unit id="4434998055872154420" datatype="html"> | ||
9911 | <source>Account subscriptions</source> | ||
9912 | <context-group purpose="location"> | ||
9913 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
9914 | <context context-type="linenumber">114</context> | ||
9915 | </context-group> | ||
9916 | </trans-unit> | ||
9917 | <trans-unit id="6019411775996586321" datatype="html"> | ||
9918 | <source>Videos history</source> | ||
9919 | <context-group purpose="location"> | ||
9920 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
9921 | <context context-type="linenumber">150</context> | ||
9922 | </context-group> | ||
9923 | </trans-unit> | ||
9924 | <trans-unit id="5851560788527570644" datatype="html"> | ||
9925 | <source>Notifications</source> | ||
9926 | <context-group purpose="location"> | ||
9927 | <context context-type="sourcefile">../app/+my-account/my-account-routing.module.ts</context> | ||
9928 | <context context-type="linenumber">163</context> | ||
9929 | </context-group> | ||
9930 | </trans-unit> | ||
9609 | <trans-unit id="4f953496ca94b4f83af049ff715172df2729fb79" datatype="html"> | 9931 | <trans-unit id="4f953496ca94b4f83af049ff715172df2729fb79" datatype="html"> |
9610 | <source>My history</source> | 9932 | <source>My history</source> |
9611 | <context-group purpose="location"> | 9933 | <context-group purpose="location"> |
@@ -9708,42 +10030,42 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9708 | <source>PROFILE SETTINGS</source> | 10030 | <source>PROFILE SETTINGS</source> |
9709 | <context-group purpose="location"> | 10031 | <context-group purpose="location"> |
9710 | <context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context> | 10032 | <context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context> |
9711 | <context context-type="linenumber">14</context> | 10033 | <context context-type="linenumber">12</context> |
9712 | </context-group> | 10034 | </context-group> |
9713 | </trans-unit> | 10035 | </trans-unit> |
9714 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> | 10036 | <trans-unit id="e09928fe11389fd1ea310890ba5dc9df05d53509" datatype="html"> |
9715 | <source>VIDEO SETTINGS</source> | 10037 | <source>VIDEO SETTINGS</source> |
9716 | <context-group purpose="location"> | 10038 | <context-group purpose="location"> |
9717 | <context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context> | 10039 | <context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context> |
9718 | <context context-type="linenumber">28</context> | 10040 | <context context-type="linenumber">26</context> |
9719 | </context-group> | 10041 | </context-group> |
9720 | </trans-unit> | 10042 | </trans-unit> |
9721 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> | 10043 | <trans-unit id="f70dbe547767b3a0f0006d44688beee60c884417" datatype="html"> |
9722 | <source>NOTIFICATIONS</source> | 10044 | <source>NOTIFICATIONS</source> |
9723 | <context-group purpose="location"> | 10045 | <context-group purpose="location"> |
9724 | <context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context> | 10046 | <context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context> |
9725 | <context context-type="linenumber">39</context> | 10047 | <context context-type="linenumber">37</context> |
9726 | </context-group> | 10048 | </context-group> |
9727 | </trans-unit> | 10049 | </trans-unit> |
9728 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> | 10050 | <trans-unit id="8e4cafda991c13b5103e45195f7f2488974a913e" datatype="html"> |
9729 | <source>INTERFACE</source> | 10051 | <source>INTERFACE</source> |
9730 | <context-group purpose="location"> | 10052 | <context-group purpose="location"> |
9731 | <context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context> | 10053 | <context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context> |
9732 | <context context-type="linenumber">49</context> | 10054 | <context context-type="linenumber">47</context> |
9733 | </context-group> | 10055 | </context-group> |
9734 | </trans-unit> | 10056 | </trans-unit> |
9735 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> | 10057 | <trans-unit id="d5e31741c591719630b5bba1ba38f8c1a04c10e3" datatype="html"> |
9736 | <source>EMAIL</source> | 10058 | <source>EMAIL</source> |
9737 | <context-group purpose="location"> | 10059 | <context-group purpose="location"> |
9738 | <context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context> | 10060 | <context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context> |
9739 | <context context-type="linenumber">69</context> | 10061 | <context context-type="linenumber">67</context> |
9740 | </context-group> | 10062 | </context-group> |
9741 | </trans-unit> | 10063 | </trans-unit> |
9742 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> | 10064 | <trans-unit id="ce43cc343ed3bd908e593db994ca3f6dbff079df" datatype="html"> |
9743 | <source>PASSWORD</source> | 10065 | <source>PASSWORD</source> |
9744 | <context-group purpose="location"> | 10066 | <context-group purpose="location"> |
9745 | <context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context> | 10067 | <context context-type="sourcefile">../app/+my-account/my-account-settings/my-account-settings.component.html</context> |
9746 | <context context-type="linenumber">59</context> | 10068 | <context context-type="linenumber">57</context> |
9747 | </context-group> | 10069 | </context-group> |
9748 | </trans-unit> | 10070 | </trans-unit> |
9749 | <trans-unit id="3525866160632851851" datatype="html"> | 10071 | <trans-unit id="3525866160632851851" datatype="html"> |
@@ -9978,13 +10300,6 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular | |||
9978 | <context context-type="linenumber">32,33</context> | 10300 | <context context-type="linenumber">32,33</context> |
9979 | </context-group> | 10301 | </context-group> |
9980 | </trans-unit> | 10302 | </trans-unit> |
9981 | <trans-unit id="8869957234869568361" datatype="html"> | ||
9982 | <source>Update playlist</source> | ||
9983 | <context-group purpose="location"> | ||
9984 | <context context-type="sourcefile">../app/+my-account/my-account-video-playlists/my-account-video-playlist-elements.component.ts</context> | ||
9985 | <context context-type="linenumber">48</context> | ||
9986 | </context-group> | ||
9987 | </trans-unit> | ||
9988 | <trans-unit id="104404386496394770" datatype="html"> | 10303 | <trans-unit id="104404386496394770" datatype="html"> |
9989 | <source>Delete playlist</source> | 10304 | <source>Delete playlist</source> |
9990 | <context-group purpose="location"> | 10305 | <context-group purpose="location"> |
@@ -10121,6 +10436,27 @@ channel with the same name (<x id="PH_2"/>)!</source> | |||
10121 | <context context-type="linenumber">144</context> | 10436 | <context context-type="linenumber">144</context> |
10122 | </context-group> | 10437 | </context-group> |
10123 | </trans-unit> | 10438 | </trans-unit> |
10439 | <trans-unit id="4707367314920217630" datatype="html"> | ||
10440 | <source>Create new video channel</source> | ||
10441 | <context-group purpose="location"> | ||
10442 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
10443 | <context context-type="linenumber">22</context> | ||
10444 | </context-group> | ||
10445 | </trans-unit> | ||
10446 | <trans-unit id="6059091237492573541" datatype="html"> | ||
10447 | <source>Update video channel</source> | ||
10448 | <context-group purpose="location"> | ||
10449 | <context context-type="sourcefile">../app/+my-account/+my-account-video-channels/my-account-video-channels-routing.module.ts</context> | ||
10450 | <context context-type="linenumber">31</context> | ||
10451 | </context-group> | ||
10452 | </trans-unit> | ||
10453 | <trans-unit id="6595008830732269870" datatype="html"> | ||
10454 | <source>Not found</source> | ||
10455 | <context-group purpose="location"> | ||
10456 | <context context-type="sourcefile">../app/+page-not-found/page-not-found-routing.module.ts</context> | ||
10457 | <context context-type="linenumber">13</context> | ||
10458 | </context-group> | ||
10459 | </trans-unit> | ||
10124 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> | 10460 | <trans-unit id="b925172fc8e9b9a7fc6b9f5d742993b77ffdda2c" datatype="html"> |
10125 | <source> Sorry, we couldn't find the page you were looking for. </source> | 10461 | <source> Sorry, we couldn't find the page you were looking for. </source> |
10126 | <context-group purpose="location"> | 10462 | <context-group purpose="location"> |
@@ -10583,6 +10919,13 @@ channel with the same name (<x id="PH_2"/>)!</source> | |||
10583 | <context context-type="linenumber">66,70</context> | 10919 | <context context-type="linenumber">66,70</context> |
10584 | </context-group> | 10920 | </context-group> |
10585 | </trans-unit> | 10921 | </trans-unit> |
10922 | <trans-unit id="3301086086650990787" datatype="html"> | ||
10923 | <source>Register</source> | ||
10924 | <context-group purpose="location"> | ||
10925 | <context context-type="sourcefile">../app/+signup/+register/register-routing.module.ts</context> | ||
10926 | <context context-type="linenumber">14</context> | ||
10927 | </context-group> | ||
10928 | </trans-unit> | ||
10586 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97" datatype="html"> | 10929 | <trans-unit id="2d02841904de7f5f60e2618670ac1059f3abec97" datatype="html"> |
10587 | <source> Request email for account verification </source> | 10930 | <source> Request email for account verification </source> |
10588 | <context-group purpose="location"> | 10931 | <context-group purpose="location"> |
@@ -10611,6 +10954,20 @@ channel with the same name (<x id="PH_2"/>)!</source> | |||
10611 | <context context-type="linenumber">45</context> | 10954 | <context context-type="linenumber">45</context> |
10612 | </context-group> | 10955 | </context-group> |
10613 | </trans-unit> | 10956 | </trans-unit> |
10957 | <trans-unit id="8231550792139699065" datatype="html"> | ||
10958 | <source>Verify account email</source> | ||
10959 | <context-group purpose="location"> | ||
10960 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
10961 | <context context-type="linenumber">17</context> | ||
10962 | </context-group> | ||
10963 | </trans-unit> | ||
10964 | <trans-unit id="4997281272800290390" datatype="html"> | ||
10965 | <source>Verify account ask send email</source> | ||
10966 | <context-group purpose="location"> | ||
10967 | <context context-type="sourcefile">../app/+signup/+verify-account/verify-account-routing.module.ts</context> | ||
10968 | <context context-type="linenumber">26</context> | ||
10969 | </context-group> | ||
10970 | </trans-unit> | ||
10614 | <trans-unit id="09a69cde5889927629e2ac9dc63a71b88252b530" datatype="html"> | 10971 | <trans-unit id="09a69cde5889927629e2ac9dc63a71b88252b530" datatype="html"> |
10615 | <source> Verify account email confirmation </source> | 10972 | <source> Verify account email confirmation </source> |
10616 | <context-group purpose="location"> | 10973 | <context-group purpose="location"> |
@@ -10632,6 +10989,27 @@ channel with the same name (<x id="PH_2"/>)!</source> | |||
10632 | <context context-type="linenumber">14</context> | 10989 | <context context-type="linenumber">14</context> |
10633 | </context-group> | 10990 | </context-group> |
10634 | </trans-unit> | 10991 | </trans-unit> |
10992 | <trans-unit id="9128669621822125729" datatype="html"> | ||
10993 | <source>Video channel videos</source> | ||
10994 | <context-group purpose="location"> | ||
10995 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
10996 | <context context-type="linenumber">25</context> | ||
10997 | </context-group> | ||
10998 | </trans-unit> | ||
10999 | <trans-unit id="3193822049276963401" datatype="html"> | ||
11000 | <source>Video channel playlists</source> | ||
11001 | <context-group purpose="location"> | ||
11002 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
11003 | <context context-type="linenumber">38</context> | ||
11004 | </context-group> | ||
11005 | </trans-unit> | ||
11006 | <trans-unit id="4723526509708949088" datatype="html"> | ||
11007 | <source>About video channel</source> | ||
11008 | <context-group purpose="location"> | ||
11009 | <context context-type="sourcefile">../app/+video-channels/video-channels-routing.module.ts</context> | ||
11010 | <context context-type="linenumber">47</context> | ||
11011 | </context-group> | ||
11012 | </trans-unit> | ||
10635 | <trans-unit id="4802465052975340965" datatype="html"> | 11013 | <trans-unit id="4802465052975340965" datatype="html"> |
10636 | <source>Published videos</source> | 11014 | <source>Published videos</source> |
10637 | <context-group purpose="location"> | 11015 | <context-group purpose="location"> |
@@ -10744,6 +11122,41 @@ channel with the same name (<x id="PH_2"/>)!</source> | |||
10744 | <context context-type="linenumber">36</context> | 11122 | <context context-type="linenumber">36</context> |
10745 | </context-group> | 11123 | </context-group> |
10746 | </trans-unit> | 11124 | </trans-unit> |
11125 | <trans-unit id="4668975178372693951" datatype="html"> | ||
11126 | <source>Discover videos</source> | ||
11127 | <context-group purpose="location"> | ||
11128 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
11129 | <context context-type="linenumber">23</context> | ||
11130 | </context-group> | ||
11131 | </trans-unit> | ||
11132 | <trans-unit id="8067135025051844577" datatype="html"> | ||
11133 | <source>Trending videos</source> | ||
11134 | <context-group purpose="location"> | ||
11135 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
11136 | <context context-type="linenumber">32</context> | ||
11137 | </context-group> | ||
11138 | </trans-unit> | ||
11139 | <trans-unit id="664221386829541948" datatype="html"> | ||
11140 | <source>Recently added videos</source> | ||
11141 | <context-group purpose="location"> | ||
11142 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
11143 | <context context-type="linenumber">58</context> | ||
11144 | </context-group> | ||
11145 | </trans-unit> | ||
11146 | <trans-unit id="8212906256415538361" datatype="html"> | ||
11147 | <source>Upload a video</source> | ||
11148 | <context-group purpose="location"> | ||
11149 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
11150 | <context context-type="linenumber">97</context> | ||
11151 | </context-group> | ||
11152 | </trans-unit> | ||
11153 | <trans-unit id="7590784934397800835" datatype="html"> | ||
11154 | <source>Edit a video</source> | ||
11155 | <context-group purpose="location"> | ||
11156 | <context context-type="sourcefile">../app/+videos/videos-routing.module.ts</context> | ||
11157 | <context context-type="linenumber">106</context> | ||
11158 | </context-group> | ||
11159 | </trans-unit> | ||
10747 | <trans-unit id="3432004930068835151" datatype="html"> | 11160 | <trans-unit id="3432004930068835151" datatype="html"> |
10748 | <source>Trending for the last 24 hours</source> | 11161 | <source>Trending for the last 24 hours</source> |
10749 | <context-group purpose="location"> | 11162 | <context-group purpose="location"> |
diff --git a/client/src/root-helpers/plugins.ts b/client/src/root-helpers/plugins.ts new file mode 100644 index 000000000..4bc2c8eb2 --- /dev/null +++ b/client/src/root-helpers/plugins.ts | |||
@@ -0,0 +1,114 @@ | |||
1 | import { RegisterClientHelpers } from 'src/types/register-client-option.model' | ||
2 | import { getHookType, internalRunHook } from '@shared/core-utils/plugins/hooks' | ||
3 | import { RegisterClientFormFieldOptions, RegisterClientVideoFieldOptions } from '@shared/models/plugins/register-client-form-field.model' | ||
4 | import { | ||
5 | ClientHookName, | ||
6 | clientHookObject, | ||
7 | ClientScript, | ||
8 | PluginType, | ||
9 | RegisterClientHookOptions, | ||
10 | ServerConfigPlugin | ||
11 | } from '../../../shared/models' | ||
12 | import { ClientScript as ClientScriptModule } from '../types/client-script.model' | ||
13 | import { importModule } from './utils' | ||
14 | |||
15 | interface HookStructValue extends RegisterClientHookOptions { | ||
16 | plugin: ServerConfigPlugin | ||
17 | clientScript: ClientScript | ||
18 | } | ||
19 | |||
20 | type Hooks = { [ name: string ]: HookStructValue[] } | ||
21 | |||
22 | type PluginInfo = { | ||
23 | plugin: ServerConfigPlugin | ||
24 | clientScript: ClientScript | ||
25 | pluginType: PluginType | ||
26 | isTheme: boolean | ||
27 | } | ||
28 | |||
29 | type FormFields = { | ||
30 | video: { | ||
31 | commonOptions: RegisterClientFormFieldOptions | ||
32 | videoFormOptions: RegisterClientVideoFieldOptions | ||
33 | }[] | ||
34 | } | ||
35 | |||
36 | async function runHook<T> (hooks: Hooks, hookName: ClientHookName, result?: T, params?: any) { | ||
37 | if (!hooks[hookName]) return result | ||
38 | |||
39 | const hookType = getHookType(hookName) | ||
40 | |||
41 | for (const hook of hooks[hookName]) { | ||
42 | console.log('Running hook %s of plugin %s.', hookName, hook.plugin.name) | ||
43 | |||
44 | result = await internalRunHook(hook.handler, hookType, result, params, err => { | ||
45 | console.error('Cannot run hook %s of script %s of plugin %s.', hookName, hook.clientScript.script, hook.plugin.name, err) | ||
46 | }) | ||
47 | } | ||
48 | |||
49 | return result | ||
50 | } | ||
51 | |||
52 | function loadPlugin (options: { | ||
53 | hooks: Hooks | ||
54 | pluginInfo: PluginInfo | ||
55 | peertubeHelpersFactory: (pluginInfo: PluginInfo) => RegisterClientHelpers | ||
56 | formFields?: FormFields | ||
57 | }) { | ||
58 | const { hooks, pluginInfo, peertubeHelpersFactory, formFields } = options | ||
59 | const { plugin, clientScript } = pluginInfo | ||
60 | |||
61 | const registerHook = (options: RegisterClientHookOptions) => { | ||
62 | if (clientHookObject[options.target] !== true) { | ||
63 | console.error('Unknown hook %s of plugin %s. Skipping.', options.target, plugin.name) | ||
64 | return | ||
65 | } | ||
66 | |||
67 | if (!hooks[options.target]) hooks[options.target] = [] | ||
68 | |||
69 | hooks[options.target].push({ | ||
70 | plugin, | ||
71 | clientScript, | ||
72 | target: options.target, | ||
73 | handler: options.handler, | ||
74 | priority: options.priority || 0 | ||
75 | }) | ||
76 | } | ||
77 | |||
78 | const registerVideoField = (commonOptions: RegisterClientFormFieldOptions, videoFormOptions: RegisterClientVideoFieldOptions) => { | ||
79 | if (!formFields) { | ||
80 | throw new Error('Video field registration is not supported') | ||
81 | } | ||
82 | |||
83 | formFields.video.push({ | ||
84 | commonOptions, | ||
85 | videoFormOptions | ||
86 | }) | ||
87 | } | ||
88 | |||
89 | const peertubeHelpers = peertubeHelpersFactory(pluginInfo) | ||
90 | |||
91 | console.log('Loading script %s of plugin %s.', clientScript.script, plugin.name) | ||
92 | |||
93 | return importModule(clientScript.script) | ||
94 | .then((script: ClientScriptModule) => script.register({ registerHook, registerVideoField, peertubeHelpers })) | ||
95 | .then(() => sortHooksByPriority(hooks)) | ||
96 | .catch(err => console.error('Cannot import or register plugin %s.', pluginInfo.plugin.name, err)) | ||
97 | } | ||
98 | |||
99 | export { | ||
100 | HookStructValue, | ||
101 | Hooks, | ||
102 | PluginInfo, | ||
103 | FormFields, | ||
104 | loadPlugin, | ||
105 | runHook | ||
106 | } | ||
107 | |||
108 | function sortHooksByPriority (hooks: Hooks) { | ||
109 | for (const hookName of Object.keys(hooks)) { | ||
110 | hooks[hookName].sort((a, b) => { | ||
111 | return b.priority - a.priority | ||
112 | }) | ||
113 | } | ||
114 | } | ||
diff --git a/client/src/root-helpers/utils.ts b/client/src/root-helpers/utils.ts index acfb565a3..6df151ad9 100644 --- a/client/src/root-helpers/utils.ts +++ b/client/src/root-helpers/utils.ts | |||
@@ -1,3 +1,5 @@ | |||
1 | import { environment } from '../environments/environment' | ||
2 | |||
1 | function objectToUrlEncoded (obj: any) { | 3 | function objectToUrlEncoded (obj: any) { |
2 | const str: string[] = [] | 4 | const str: string[] = [] |
3 | for (const key of Object.keys(obj)) { | 5 | for (const key of Object.keys(obj)) { |
@@ -7,6 +9,42 @@ function objectToUrlEncoded (obj: any) { | |||
7 | return str.join('&') | 9 | return str.join('&') |
8 | } | 10 | } |
9 | 11 | ||
12 | // Thanks: https://github.com/uupaa/dynamic-import-polyfill | ||
13 | function importModule (path: string) { | ||
14 | return new Promise((resolve, reject) => { | ||
15 | const vector = '$importModule$' + Math.random().toString(32).slice(2) | ||
16 | const script = document.createElement('script') | ||
17 | |||
18 | const destructor = () => { | ||
19 | delete window[ vector ] | ||
20 | script.onerror = null | ||
21 | script.onload = null | ||
22 | script.remove() | ||
23 | URL.revokeObjectURL(script.src) | ||
24 | script.src = '' | ||
25 | } | ||
26 | |||
27 | script.defer = true | ||
28 | script.type = 'module' | ||
29 | |||
30 | script.onerror = () => { | ||
31 | reject(new Error(`Failed to import: ${path}`)) | ||
32 | destructor() | ||
33 | } | ||
34 | script.onload = () => { | ||
35 | resolve(window[ vector ]) | ||
36 | destructor() | ||
37 | } | ||
38 | const absURL = (environment.apiUrl || window.location.origin) + path | ||
39 | const loader = `import * as m from "${absURL}"; window.${vector} = m;` // export Module | ||
40 | const blob = new Blob([ loader ], { type: 'text/javascript' }) | ||
41 | script.src = URL.createObjectURL(blob) | ||
42 | |||
43 | document.head.appendChild(script) | ||
44 | }) | ||
45 | } | ||
46 | |||
10 | export { | 47 | export { |
48 | importModule, | ||
11 | objectToUrlEncoded | 49 | objectToUrlEncoded |
12 | } | 50 | } |
diff --git a/client/src/standalone/videos/embed.ts b/client/src/standalone/videos/embed.ts index adba32a31..995e8c277 100644 --- a/client/src/standalone/videos/embed.ts +++ b/client/src/standalone/videos/embed.ts | |||
@@ -1,7 +1,5 @@ | |||
1 | import './embed.scss' | 1 | import './embed.scss' |
2 | import videojs from 'video.js' | 2 | import videojs from 'video.js' |
3 | import { objectToUrlEncoded, peertubeLocalStorage } from '@root-helpers/index' | ||
4 | import { Tokens } from '@root-helpers/users' | ||
5 | import { peertubeTranslate } from '../../../../shared/core-utils/i18n' | 3 | import { peertubeTranslate } from '../../../../shared/core-utils/i18n' |
6 | import { | 4 | import { |
7 | ResultList, | 5 | ResultList, |
@@ -11,12 +9,19 @@ import { | |||
11 | VideoDetails, | 9 | VideoDetails, |
12 | VideoPlaylist, | 10 | VideoPlaylist, |
13 | VideoPlaylistElement, | 11 | VideoPlaylistElement, |
14 | VideoStreamingPlaylistType | 12 | VideoStreamingPlaylistType, |
13 | PluginType, | ||
14 | ClientHookName | ||
15 | } from '../../../../shared/models' | 15 | } from '../../../../shared/models' |
16 | import { P2PMediaLoaderOptions, PeertubePlayerManagerOptions, PlayerMode } from '../../assets/player/peertube-player-manager' | 16 | import { P2PMediaLoaderOptions, PeertubePlayerManagerOptions, PlayerMode } from '../../assets/player/peertube-player-manager' |
17 | import { VideoJSCaption } from '../../assets/player/peertube-videojs-typings' | 17 | import { VideoJSCaption } from '../../assets/player/peertube-videojs-typings' |
18 | import { TranslationsManager } from '../../assets/player/translations-manager' | 18 | import { TranslationsManager } from '../../assets/player/translations-manager' |
19 | import { Hooks, loadPlugin, runHook } from '../../root-helpers/plugins' | ||
20 | import { Tokens } from '../../root-helpers/users' | ||
21 | import { peertubeLocalStorage } from '../../root-helpers/peertube-web-storage' | ||
22 | import { objectToUrlEncoded } from '../../root-helpers/utils' | ||
19 | import { PeerTubeEmbedApi } from './embed-api' | 23 | import { PeerTubeEmbedApi } from './embed-api' |
24 | import { RegisterClientHelpers } from '../../types/register-client-option.model' | ||
20 | 25 | ||
21 | type Translations = { [ id: string ]: string } | 26 | type Translations = { [ id: string ]: string } |
22 | 27 | ||
@@ -60,6 +65,9 @@ export class PeerTubeEmbed { | |||
60 | 65 | ||
61 | private wrapperElement: HTMLElement | 66 | private wrapperElement: HTMLElement |
62 | 67 | ||
68 | private peertubeHooks: Hooks = {} | ||
69 | private loadedScripts = new Set<string>() | ||
70 | |||
63 | static async main () { | 71 | static async main () { |
64 | const videoContainerId = 'video-wrapper' | 72 | const videoContainerId = 'video-wrapper' |
65 | const embed = new PeerTubeEmbed(videoContainerId) | 73 | const embed = new PeerTubeEmbed(videoContainerId) |
@@ -473,6 +481,8 @@ export class PeerTubeEmbed { | |||
473 | this.PeertubePlayerManagerModulePromise | 481 | this.PeertubePlayerManagerModulePromise |
474 | ]) | 482 | ]) |
475 | 483 | ||
484 | await this.ensurePluginsAreLoaded(config, serverTranslations) | ||
485 | |||
476 | const videoInfo: VideoDetails = videoInfoTmp | 486 | const videoInfo: VideoDetails = videoInfoTmp |
477 | 487 | ||
478 | const PeertubePlayerManager = PeertubePlayerManagerModule.PeertubePlayerManager | 488 | const PeertubePlayerManager = PeertubePlayerManagerModule.PeertubePlayerManager |
@@ -577,6 +587,8 @@ export class PeerTubeEmbed { | |||
577 | this.playNextVideo() | 587 | this.playNextVideo() |
578 | }) | 588 | }) |
579 | } | 589 | } |
590 | |||
591 | this.runHook('action:embed.player.loaded', undefined, { player: this.player, videojs, video: videoInfo }) | ||
580 | } | 592 | } |
581 | 593 | ||
582 | private async initCore () { | 594 | private async initCore () { |
@@ -714,6 +726,73 @@ export class PeerTubeEmbed { | |||
714 | private isPlaylistEmbed () { | 726 | private isPlaylistEmbed () { |
715 | return window.location.pathname.split('/')[1] === 'video-playlists' | 727 | return window.location.pathname.split('/')[1] === 'video-playlists' |
716 | } | 728 | } |
729 | |||
730 | private async ensurePluginsAreLoaded (config: ServerConfig, translations?: { [ id: string ]: string }) { | ||
731 | if (config.plugin.registered.length === 0) return | ||
732 | |||
733 | for (const plugin of config.plugin.registered) { | ||
734 | for (const key of Object.keys(plugin.clientScripts)) { | ||
735 | const clientScript = plugin.clientScripts[key] | ||
736 | |||
737 | if (clientScript.scopes.includes('embed') === false) continue | ||
738 | |||
739 | const script = `/plugins/${plugin.name}/${plugin.version}/client-scripts/${clientScript.script}` | ||
740 | |||
741 | if (this.loadedScripts.has(script)) continue | ||
742 | |||
743 | const pluginInfo = { | ||
744 | plugin, | ||
745 | clientScript: { | ||
746 | script, | ||
747 | scopes: clientScript.scopes | ||
748 | }, | ||
749 | pluginType: PluginType.PLUGIN, | ||
750 | isTheme: false | ||
751 | } | ||
752 | |||
753 | await loadPlugin({ | ||
754 | hooks: this.peertubeHooks, | ||
755 | pluginInfo, | ||
756 | peertubeHelpersFactory: _ => this.buildPeerTubeHelpers(translations) | ||
757 | }) | ||
758 | } | ||
759 | } | ||
760 | } | ||
761 | |||
762 | private buildPeerTubeHelpers (translations?: { [ id: string ]: string }): RegisterClientHelpers { | ||
763 | function unimplemented (): any { | ||
764 | throw new Error('This helper is not implemented in embed.') | ||
765 | } | ||
766 | |||
767 | return { | ||
768 | getBaseStaticRoute: unimplemented, | ||
769 | |||
770 | getSettings: unimplemented, | ||
771 | |||
772 | isLoggedIn: unimplemented, | ||
773 | |||
774 | notifier: { | ||
775 | info: unimplemented, | ||
776 | error: unimplemented, | ||
777 | success: unimplemented | ||
778 | }, | ||
779 | |||
780 | showModal: unimplemented, | ||
781 | |||
782 | markdownRenderer: { | ||
783 | textMarkdownToHTML: unimplemented, | ||
784 | enhancedMarkdownToHTML: unimplemented | ||
785 | }, | ||
786 | |||
787 | translate: (value: string) => { | ||
788 | return Promise.resolve(peertubeTranslate(value, translations)) | ||
789 | } | ||
790 | } | ||
791 | } | ||
792 | |||
793 | private runHook <T> (hookName: ClientHookName, result?: T, params?: any): Promise<T> { | ||
794 | return runHook(this.peertubeHooks, hookName, result, params) | ||
795 | } | ||
717 | } | 796 | } |
718 | 797 | ||
719 | PeerTubeEmbed.main() | 798 | PeerTubeEmbed.main() |
diff --git a/client/src/types/register-client-option.model.ts b/client/src/types/register-client-option.model.ts index dff00e9dd..e3c6d803d 100644 --- a/client/src/types/register-client-option.model.ts +++ b/client/src/types/register-client-option.model.ts | |||
@@ -1,8 +1,11 @@ | |||
1 | import { RegisterClientFormFieldOptions, RegisterClientVideoFieldOptions } from '@shared/models/plugins/register-client-form-field.model' | ||
1 | import { RegisterClientHookOptions } from '@shared/models/plugins/register-client-hook.model' | 2 | import { RegisterClientHookOptions } from '@shared/models/plugins/register-client-hook.model' |
2 | 3 | ||
3 | export type RegisterClientOptions = { | 4 | export type RegisterClientOptions = { |
4 | registerHook: (options: RegisterClientHookOptions) => void | 5 | registerHook: (options: RegisterClientHookOptions) => void |
5 | 6 | ||
7 | registerVideoField: (commonOptions: RegisterClientFormFieldOptions, videoFormOptions: RegisterClientVideoFieldOptions) => void | ||
8 | |||
6 | peertubeHelpers: RegisterClientHelpers | 9 | peertubeHelpers: RegisterClientHelpers |
7 | } | 10 | } |
8 | 11 | ||
diff --git a/server/controllers/activitypub/client.ts b/server/controllers/activitypub/client.ts index acce53713..1da44d096 100644 --- a/server/controllers/activitypub/client.ts +++ b/server/controllers/activitypub/client.ts | |||
@@ -159,7 +159,7 @@ activityPubClientRouter.get('/video-playlists/:playlistId', | |||
159 | asyncMiddleware(videoPlaylistsGetValidator('all')), | 159 | asyncMiddleware(videoPlaylistsGetValidator('all')), |
160 | asyncMiddleware(videoPlaylistController) | 160 | asyncMiddleware(videoPlaylistController) |
161 | ) | 161 | ) |
162 | activityPubClientRouter.get('/video-playlists/:playlistId/:videoId', | 162 | activityPubClientRouter.get('/video-playlists/:playlistId/videos/:playlistElementId', |
163 | executeIfActivityPub, | 163 | executeIfActivityPub, |
164 | asyncMiddleware(videoPlaylistElementAPGetValidator), | 164 | asyncMiddleware(videoPlaylistElementAPGetValidator), |
165 | videoPlaylistElementController | 165 | videoPlaylistElementController |
diff --git a/server/controllers/api/accounts.ts b/server/controllers/api/accounts.ts index b1c05c6c0..0a73dfcbf 100644 --- a/server/controllers/api/accounts.ts +++ b/server/controllers/api/accounts.ts | |||
@@ -1,5 +1,8 @@ | |||
1 | import * as express from 'express' | 1 | import * as express from 'express' |
2 | import { getServerActor } from '@server/models/application/application' | ||
3 | import { buildNSFWFilter, getCountVideos, isUserAbleToSearchRemoteURI } from '../../helpers/express-utils' | ||
2 | import { getFormattedObjects } from '../../helpers/utils' | 4 | import { getFormattedObjects } from '../../helpers/utils' |
5 | import { JobQueue } from '../../lib/job-queue' | ||
3 | import { | 6 | import { |
4 | asyncMiddleware, | 7 | asyncMiddleware, |
5 | authenticate, | 8 | authenticate, |
@@ -8,6 +11,7 @@ import { | |||
8 | paginationValidator, | 11 | paginationValidator, |
9 | setDefaultPagination, | 12 | setDefaultPagination, |
10 | setDefaultSort, | 13 | setDefaultSort, |
14 | setDefaultVideosSort, | ||
11 | videoPlaylistsSortValidator, | 15 | videoPlaylistsSortValidator, |
12 | videoRatesSortValidator, | 16 | videoRatesSortValidator, |
13 | videoRatingValidator | 17 | videoRatingValidator |
@@ -17,18 +21,15 @@ import { | |||
17 | accountsSortValidator, | 21 | accountsSortValidator, |
18 | ensureAuthUserOwnsAccountValidator, | 22 | ensureAuthUserOwnsAccountValidator, |
19 | videoChannelsSortValidator, | 23 | videoChannelsSortValidator, |
20 | videosSortValidator, | 24 | videoChannelStatsValidator, |
21 | videoChannelStatsValidator | 25 | videosSortValidator |
22 | } from '../../middlewares/validators' | 26 | } from '../../middlewares/validators' |
27 | import { commonVideoPlaylistFiltersValidator, videoPlaylistsSearchValidator } from '../../middlewares/validators/videos/video-playlists' | ||
23 | import { AccountModel } from '../../models/account/account' | 28 | import { AccountModel } from '../../models/account/account' |
24 | import { AccountVideoRateModel } from '../../models/account/account-video-rate' | 29 | import { AccountVideoRateModel } from '../../models/account/account-video-rate' |
25 | import { VideoModel } from '../../models/video/video' | 30 | import { VideoModel } from '../../models/video/video' |
26 | import { buildNSFWFilter, getCountVideos, isUserAbleToSearchRemoteURI } from '../../helpers/express-utils' | ||
27 | import { VideoChannelModel } from '../../models/video/video-channel' | 31 | import { VideoChannelModel } from '../../models/video/video-channel' |
28 | import { JobQueue } from '../../lib/job-queue' | ||
29 | import { VideoPlaylistModel } from '../../models/video/video-playlist' | 32 | import { VideoPlaylistModel } from '../../models/video/video-playlist' |
30 | import { commonVideoPlaylistFiltersValidator, videoPlaylistsSearchValidator } from '../../middlewares/validators/videos/video-playlists' | ||
31 | import { getServerActor } from '@server/models/application/application' | ||
32 | 33 | ||
33 | const accountsRouter = express.Router() | 34 | const accountsRouter = express.Router() |
34 | 35 | ||
@@ -49,7 +50,7 @@ accountsRouter.get('/:accountName/videos', | |||
49 | asyncMiddleware(accountNameWithHostGetValidator), | 50 | asyncMiddleware(accountNameWithHostGetValidator), |
50 | paginationValidator, | 51 | paginationValidator, |
51 | videosSortValidator, | 52 | videosSortValidator, |
52 | setDefaultSort, | 53 | setDefaultVideosSort, |
53 | setDefaultPagination, | 54 | setDefaultPagination, |
54 | optionalAuthenticate, | 55 | optionalAuthenticate, |
55 | commonVideosFiltersValidator, | 56 | commonVideosFiltersValidator, |
diff --git a/server/controllers/api/users/me.ts b/server/controllers/api/users/me.ts index 914c52e27..ba60a3d2a 100644 --- a/server/controllers/api/users/me.ts +++ b/server/controllers/api/users/me.ts | |||
@@ -17,6 +17,7 @@ import { | |||
17 | paginationValidator, | 17 | paginationValidator, |
18 | setDefaultPagination, | 18 | setDefaultPagination, |
19 | setDefaultSort, | 19 | setDefaultSort, |
20 | setDefaultVideosSort, | ||
20 | usersUpdateMeValidator, | 21 | usersUpdateMeValidator, |
21 | usersVideoRatingValidator | 22 | usersVideoRatingValidator |
22 | } from '../../../middlewares' | 23 | } from '../../../middlewares' |
@@ -60,7 +61,7 @@ meRouter.get('/me/videos', | |||
60 | authenticate, | 61 | authenticate, |
61 | paginationValidator, | 62 | paginationValidator, |
62 | videosSortValidator, | 63 | videosSortValidator, |
63 | setDefaultSort, | 64 | setDefaultVideosSort, |
64 | setDefaultPagination, | 65 | setDefaultPagination, |
65 | asyncMiddleware(getUserVideos) | 66 | asyncMiddleware(getUserVideos) |
66 | ) | 67 | ) |
diff --git a/server/controllers/api/users/my-subscriptions.ts b/server/controllers/api/users/my-subscriptions.ts index 8b88feaf3..b8c234eef 100644 --- a/server/controllers/api/users/my-subscriptions.ts +++ b/server/controllers/api/users/my-subscriptions.ts | |||
@@ -1,7 +1,11 @@ | |||
1 | import * as express from 'express' | ||
2 | import 'multer' | 1 | import 'multer' |
2 | import * as express from 'express' | ||
3 | import { VideoFilter } from '../../../../shared/models/videos/video-query.type' | ||
4 | import { buildNSFWFilter, getCountVideos } from '../../../helpers/express-utils' | ||
3 | import { getFormattedObjects } from '../../../helpers/utils' | 5 | import { getFormattedObjects } from '../../../helpers/utils' |
4 | import { WEBSERVER } from '../../../initializers/constants' | 6 | import { WEBSERVER } from '../../../initializers/constants' |
7 | import { sequelizeTypescript } from '../../../initializers/database' | ||
8 | import { JobQueue } from '../../../lib/job-queue' | ||
5 | import { | 9 | import { |
6 | asyncMiddleware, | 10 | asyncMiddleware, |
7 | asyncRetryTransactionMiddleware, | 11 | asyncRetryTransactionMiddleware, |
@@ -10,21 +14,18 @@ import { | |||
10 | paginationValidator, | 14 | paginationValidator, |
11 | setDefaultPagination, | 15 | setDefaultPagination, |
12 | setDefaultSort, | 16 | setDefaultSort, |
17 | setDefaultVideosSort, | ||
13 | userSubscriptionAddValidator, | 18 | userSubscriptionAddValidator, |
14 | userSubscriptionGetValidator | 19 | userSubscriptionGetValidator |
15 | } from '../../../middlewares' | 20 | } from '../../../middlewares' |
16 | import { | 21 | import { |
17 | areSubscriptionsExistValidator, | 22 | areSubscriptionsExistValidator, |
23 | userSubscriptionListValidator, | ||
18 | userSubscriptionsSortValidator, | 24 | userSubscriptionsSortValidator, |
19 | videosSortValidator, | 25 | videosSortValidator |
20 | userSubscriptionListValidator | ||
21 | } from '../../../middlewares/validators' | 26 | } from '../../../middlewares/validators' |
22 | import { VideoModel } from '../../../models/video/video' | ||
23 | import { buildNSFWFilter, getCountVideos } from '../../../helpers/express-utils' | ||
24 | import { VideoFilter } from '../../../../shared/models/videos/video-query.type' | ||
25 | import { ActorFollowModel } from '../../../models/activitypub/actor-follow' | 27 | import { ActorFollowModel } from '../../../models/activitypub/actor-follow' |
26 | import { JobQueue } from '../../../lib/job-queue' | 28 | import { VideoModel } from '../../../models/video/video' |
27 | import { sequelizeTypescript } from '../../../initializers/database' | ||
28 | 29 | ||
29 | const mySubscriptionsRouter = express.Router() | 30 | const mySubscriptionsRouter = express.Router() |
30 | 31 | ||
@@ -32,7 +33,7 @@ mySubscriptionsRouter.get('/me/subscriptions/videos', | |||
32 | authenticate, | 33 | authenticate, |
33 | paginationValidator, | 34 | paginationValidator, |
34 | videosSortValidator, | 35 | videosSortValidator, |
35 | setDefaultSort, | 36 | setDefaultVideosSort, |
36 | setDefaultPagination, | 37 | setDefaultPagination, |
37 | commonVideosFiltersValidator, | 38 | commonVideosFiltersValidator, |
38 | asyncMiddleware(getUserSubscriptionVideos) | 39 | asyncMiddleware(getUserSubscriptionVideos) |
diff --git a/server/controllers/api/video-channel.ts b/server/controllers/api/video-channel.ts index f705034fd..45c936978 100644 --- a/server/controllers/api/video-channel.ts +++ b/server/controllers/api/video-channel.ts | |||
@@ -1,5 +1,20 @@ | |||
1 | import * as express from 'express' | 1 | import * as express from 'express' |
2 | import { getServerActor } from '@server/models/application/application' | ||
3 | import { MChannelAccountDefault } from '@server/types/models' | ||
4 | import { VideoChannelCreate, VideoChannelUpdate } from '../../../shared' | ||
5 | import { auditLoggerFactory, getAuditIdFromRes, VideoChannelAuditView } from '../../helpers/audit-logger' | ||
6 | import { resetSequelizeInstance } from '../../helpers/database-utils' | ||
7 | import { buildNSFWFilter, createReqFiles, getCountVideos, isUserAbleToSearchRemoteURI } from '../../helpers/express-utils' | ||
8 | import { logger } from '../../helpers/logger' | ||
2 | import { getFormattedObjects } from '../../helpers/utils' | 9 | import { getFormattedObjects } from '../../helpers/utils' |
10 | import { CONFIG } from '../../initializers/config' | ||
11 | import { MIMETYPES } from '../../initializers/constants' | ||
12 | import { sequelizeTypescript } from '../../initializers/database' | ||
13 | import { setAsyncActorKeys } from '../../lib/activitypub/actor' | ||
14 | import { sendUpdateActor } from '../../lib/activitypub/send' | ||
15 | import { updateActorAvatarFile } from '../../lib/avatar' | ||
16 | import { JobQueue } from '../../lib/job-queue' | ||
17 | import { createLocalVideoChannel, federateAllVideosOfChannel } from '../../lib/video-channel' | ||
3 | import { | 18 | import { |
4 | asyncMiddleware, | 19 | asyncMiddleware, |
5 | asyncRetryTransactionMiddleware, | 20 | asyncRetryTransactionMiddleware, |
@@ -9,34 +24,20 @@ import { | |||
9 | paginationValidator, | 24 | paginationValidator, |
10 | setDefaultPagination, | 25 | setDefaultPagination, |
11 | setDefaultSort, | 26 | setDefaultSort, |
27 | setDefaultVideosSort, | ||
12 | videoChannelsAddValidator, | 28 | videoChannelsAddValidator, |
13 | videoChannelsRemoveValidator, | 29 | videoChannelsRemoveValidator, |
14 | videoChannelsSortValidator, | 30 | videoChannelsSortValidator, |
15 | videoChannelsUpdateValidator, | 31 | videoChannelsUpdateValidator, |
16 | videoPlaylistsSortValidator | 32 | videoPlaylistsSortValidator |
17 | } from '../../middlewares' | 33 | } from '../../middlewares' |
18 | import { VideoChannelModel } from '../../models/video/video-channel' | 34 | import { videoChannelsNameWithHostValidator, videoChannelsOwnSearchValidator, videosSortValidator } from '../../middlewares/validators' |
19 | import { videoChannelsNameWithHostValidator, videosSortValidator, videoChannelsOwnSearchValidator } from '../../middlewares/validators' | 35 | import { updateAvatarValidator } from '../../middlewares/validators/avatar' |
20 | import { sendUpdateActor } from '../../lib/activitypub/send' | 36 | import { commonVideoPlaylistFiltersValidator } from '../../middlewares/validators/videos/video-playlists' |
21 | import { VideoChannelCreate, VideoChannelUpdate } from '../../../shared' | ||
22 | import { createLocalVideoChannel, federateAllVideosOfChannel } from '../../lib/video-channel' | ||
23 | import { buildNSFWFilter, createReqFiles, getCountVideos, isUserAbleToSearchRemoteURI } from '../../helpers/express-utils' | ||
24 | import { setAsyncActorKeys } from '../../lib/activitypub/actor' | ||
25 | import { AccountModel } from '../../models/account/account' | 37 | import { AccountModel } from '../../models/account/account' |
26 | import { MIMETYPES } from '../../initializers/constants' | ||
27 | import { logger } from '../../helpers/logger' | ||
28 | import { VideoModel } from '../../models/video/video' | 38 | import { VideoModel } from '../../models/video/video' |
29 | import { updateAvatarValidator } from '../../middlewares/validators/avatar' | 39 | import { VideoChannelModel } from '../../models/video/video-channel' |
30 | import { updateActorAvatarFile } from '../../lib/avatar' | ||
31 | import { auditLoggerFactory, getAuditIdFromRes, VideoChannelAuditView } from '../../helpers/audit-logger' | ||
32 | import { resetSequelizeInstance } from '../../helpers/database-utils' | ||
33 | import { JobQueue } from '../../lib/job-queue' | ||
34 | import { VideoPlaylistModel } from '../../models/video/video-playlist' | 40 | import { VideoPlaylistModel } from '../../models/video/video-playlist' |
35 | import { commonVideoPlaylistFiltersValidator } from '../../middlewares/validators/videos/video-playlists' | ||
36 | import { CONFIG } from '../../initializers/config' | ||
37 | import { sequelizeTypescript } from '../../initializers/database' | ||
38 | import { MChannelAccountDefault } from '@server/types/models' | ||
39 | import { getServerActor } from '@server/models/application/application' | ||
40 | 41 | ||
41 | const auditLogger = auditLoggerFactory('channels') | 42 | const auditLogger = auditLoggerFactory('channels') |
42 | const reqAvatarFile = createReqFiles([ 'avatarfile' ], MIMETYPES.IMAGE.MIMETYPE_EXT, { avatarfile: CONFIG.STORAGE.TMP_DIR }) | 43 | const reqAvatarFile = createReqFiles([ 'avatarfile' ], MIMETYPES.IMAGE.MIMETYPE_EXT, { avatarfile: CONFIG.STORAGE.TMP_DIR }) |
@@ -98,7 +99,7 @@ videoChannelRouter.get('/:nameWithHost/videos', | |||
98 | asyncMiddleware(videoChannelsNameWithHostValidator), | 99 | asyncMiddleware(videoChannelsNameWithHostValidator), |
99 | paginationValidator, | 100 | paginationValidator, |
100 | videosSortValidator, | 101 | videosSortValidator, |
101 | setDefaultSort, | 102 | setDefaultVideosSort, |
102 | setDefaultPagination, | 103 | setDefaultPagination, |
103 | optionalAuthenticate, | 104 | optionalAuthenticate, |
104 | commonVideosFiltersValidator, | 105 | commonVideosFiltersValidator, |
diff --git a/server/controllers/api/video-playlist.ts b/server/controllers/api/video-playlist.ts index 88a2314fb..41a0e07ff 100644 --- a/server/controllers/api/video-playlist.ts +++ b/server/controllers/api/video-playlist.ts | |||
@@ -297,7 +297,6 @@ async function addVideoInPlaylist (req: express.Request, res: express.Response) | |||
297 | const position = await VideoPlaylistElementModel.getNextPositionOf(videoPlaylist.id, t) | 297 | const position = await VideoPlaylistElementModel.getNextPositionOf(videoPlaylist.id, t) |
298 | 298 | ||
299 | const playlistElement = await VideoPlaylistElementModel.create({ | 299 | const playlistElement = await VideoPlaylistElementModel.create({ |
300 | url: getVideoPlaylistElementActivityPubUrl(videoPlaylist, video), | ||
301 | position, | 300 | position, |
302 | startTimestamp: body.startTimestamp || null, | 301 | startTimestamp: body.startTimestamp || null, |
303 | stopTimestamp: body.stopTimestamp || null, | 302 | stopTimestamp: body.stopTimestamp || null, |
@@ -305,6 +304,9 @@ async function addVideoInPlaylist (req: express.Request, res: express.Response) | |||
305 | videoId: video.id | 304 | videoId: video.id |
306 | }, { transaction: t }) | 305 | }, { transaction: t }) |
307 | 306 | ||
307 | playlistElement.url = getVideoPlaylistElementActivityPubUrl(videoPlaylist, playlistElement) | ||
308 | await playlistElement.save({ transaction: t }) | ||
309 | |||
308 | videoPlaylist.changed('updatedAt', true) | 310 | videoPlaylist.changed('updatedAt', true) |
309 | await videoPlaylist.save({ transaction: t }) | 311 | await videoPlaylist.save({ transaction: t }) |
310 | 312 | ||
diff --git a/server/controllers/api/videos/index.ts b/server/controllers/api/videos/index.ts index 1dfd7c7a0..15b6f214f 100644 --- a/server/controllers/api/videos/index.ts +++ b/server/controllers/api/videos/index.ts | |||
@@ -1,11 +1,24 @@ | |||
1 | import * as express from 'express' | 1 | import * as express from 'express' |
2 | import { move } from 'fs-extra' | ||
2 | import { extname } from 'path' | 3 | import { extname } from 'path' |
4 | import toInt from 'validator/lib/toInt' | ||
5 | import { addOptimizeOrMergeAudioJob } from '@server/helpers/video' | ||
6 | import { createTorrentAndSetInfoHash } from '@server/helpers/webtorrent' | ||
7 | import { changeVideoChannelShare } from '@server/lib/activitypub/share' | ||
8 | import { getVideoActivityPubUrl } from '@server/lib/activitypub/url' | ||
9 | import { getVideoFilePath } from '@server/lib/video-paths' | ||
10 | import { getServerActor } from '@server/models/application/application' | ||
11 | import { MVideoDetails, MVideoFullLight } from '@server/types/models' | ||
3 | import { VideoCreate, VideoPrivacy, VideoState, VideoUpdate } from '../../../../shared' | 12 | import { VideoCreate, VideoPrivacy, VideoState, VideoUpdate } from '../../../../shared' |
13 | import { ThumbnailType } from '../../../../shared/models/videos/thumbnail.type' | ||
14 | import { VideoFilter } from '../../../../shared/models/videos/video-query.type' | ||
15 | import { auditLoggerFactory, getAuditIdFromRes, VideoAuditView } from '../../../helpers/audit-logger' | ||
16 | import { resetSequelizeInstance } from '../../../helpers/database-utils' | ||
17 | import { buildNSFWFilter, createReqFiles, getCountVideos } from '../../../helpers/express-utils' | ||
4 | import { getMetadataFromFile, getVideoFileFPS, getVideoFileResolution } from '../../../helpers/ffmpeg-utils' | 18 | import { getMetadataFromFile, getVideoFileFPS, getVideoFileResolution } from '../../../helpers/ffmpeg-utils' |
5 | import { logger } from '../../../helpers/logger' | 19 | import { logger } from '../../../helpers/logger' |
6 | import { auditLoggerFactory, getAuditIdFromRes, VideoAuditView } from '../../../helpers/audit-logger' | ||
7 | import { getFormattedObjects } from '../../../helpers/utils' | 20 | import { getFormattedObjects } from '../../../helpers/utils' |
8 | import { autoBlacklistVideoIfNeeded } from '../../../lib/video-blacklist' | 21 | import { CONFIG } from '../../../initializers/config' |
9 | import { | 22 | import { |
10 | DEFAULT_AUDIO_RESOLUTION, | 23 | DEFAULT_AUDIO_RESOLUTION, |
11 | MIMETYPES, | 24 | MIMETYPES, |
@@ -14,9 +27,15 @@ import { | |||
14 | VIDEO_LICENCES, | 27 | VIDEO_LICENCES, |
15 | VIDEO_PRIVACIES | 28 | VIDEO_PRIVACIES |
16 | } from '../../../initializers/constants' | 29 | } from '../../../initializers/constants' |
30 | import { sequelizeTypescript } from '../../../initializers/database' | ||
31 | import { sendView } from '../../../lib/activitypub/send/send-view' | ||
17 | import { federateVideoIfNeeded, fetchRemoteVideoDescription } from '../../../lib/activitypub/videos' | 32 | import { federateVideoIfNeeded, fetchRemoteVideoDescription } from '../../../lib/activitypub/videos' |
18 | import { JobQueue } from '../../../lib/job-queue' | 33 | import { JobQueue } from '../../../lib/job-queue' |
34 | import { Notifier } from '../../../lib/notifier' | ||
35 | import { Hooks } from '../../../lib/plugins/hooks' | ||
19 | import { Redis } from '../../../lib/redis' | 36 | import { Redis } from '../../../lib/redis' |
37 | import { createVideoMiniatureFromExisting, generateVideoMiniature } from '../../../lib/thumbnail' | ||
38 | import { autoBlacklistVideoIfNeeded } from '../../../lib/video-blacklist' | ||
20 | import { | 39 | import { |
21 | asyncMiddleware, | 40 | asyncMiddleware, |
22 | asyncRetryTransactionMiddleware, | 41 | asyncRetryTransactionMiddleware, |
@@ -26,7 +45,7 @@ import { | |||
26 | optionalAuthenticate, | 45 | optionalAuthenticate, |
27 | paginationValidator, | 46 | paginationValidator, |
28 | setDefaultPagination, | 47 | setDefaultPagination, |
29 | setDefaultSort, | 48 | setDefaultVideosSort, |
30 | videoFileMetadataGetValidator, | 49 | videoFileMetadataGetValidator, |
31 | videosAddValidator, | 50 | videosAddValidator, |
32 | videosCustomGetValidator, | 51 | videosCustomGetValidator, |
@@ -35,37 +54,18 @@ import { | |||
35 | videosSortValidator, | 54 | videosSortValidator, |
36 | videosUpdateValidator | 55 | videosUpdateValidator |
37 | } from '../../../middlewares' | 56 | } from '../../../middlewares' |
57 | import { ScheduleVideoUpdateModel } from '../../../models/video/schedule-video-update' | ||
38 | import { TagModel } from '../../../models/video/tag' | 58 | import { TagModel } from '../../../models/video/tag' |
39 | import { VideoModel } from '../../../models/video/video' | 59 | import { VideoModel } from '../../../models/video/video' |
40 | import { VideoFileModel } from '../../../models/video/video-file' | 60 | import { VideoFileModel } from '../../../models/video/video-file' |
41 | import { abuseVideoRouter } from './abuse' | 61 | import { abuseVideoRouter } from './abuse' |
42 | import { blacklistRouter } from './blacklist' | 62 | import { blacklistRouter } from './blacklist' |
43 | import { videoCommentRouter } from './comment' | ||
44 | import { rateVideoRouter } from './rate' | ||
45 | import { ownershipVideoRouter } from './ownership' | ||
46 | import { VideoFilter } from '../../../../shared/models/videos/video-query.type' | ||
47 | import { buildNSFWFilter, createReqFiles, getCountVideos } from '../../../helpers/express-utils' | ||
48 | import { ScheduleVideoUpdateModel } from '../../../models/video/schedule-video-update' | ||
49 | import { videoCaptionsRouter } from './captions' | 63 | import { videoCaptionsRouter } from './captions' |
64 | import { videoCommentRouter } from './comment' | ||
50 | import { videoImportsRouter } from './import' | 65 | import { videoImportsRouter } from './import' |
51 | import { resetSequelizeInstance } from '../../../helpers/database-utils' | 66 | import { ownershipVideoRouter } from './ownership' |
52 | import { move } from 'fs-extra' | 67 | import { rateVideoRouter } from './rate' |
53 | import { watchingRouter } from './watching' | 68 | import { watchingRouter } from './watching' |
54 | import { Notifier } from '../../../lib/notifier' | ||
55 | import { sendView } from '../../../lib/activitypub/send/send-view' | ||
56 | import { CONFIG } from '../../../initializers/config' | ||
57 | import { sequelizeTypescript } from '../../../initializers/database' | ||
58 | import { createVideoMiniatureFromExisting, generateVideoMiniature } from '../../../lib/thumbnail' | ||
59 | import { ThumbnailType } from '../../../../shared/models/videos/thumbnail.type' | ||
60 | import { Hooks } from '../../../lib/plugins/hooks' | ||
61 | import { MVideoDetails, MVideoFullLight } from '@server/types/models' | ||
62 | import { createTorrentAndSetInfoHash } from '@server/helpers/webtorrent' | ||
63 | import { getVideoFilePath } from '@server/lib/video-paths' | ||
64 | import toInt from 'validator/lib/toInt' | ||
65 | import { addOptimizeOrMergeAudioJob } from '@server/helpers/video' | ||
66 | import { getServerActor } from '@server/models/application/application' | ||
67 | import { changeVideoChannelShare } from '@server/lib/activitypub/share' | ||
68 | import { getVideoActivityPubUrl } from '@server/lib/activitypub/url' | ||
69 | 69 | ||
70 | const auditLogger = auditLoggerFactory('videos') | 70 | const auditLogger = auditLoggerFactory('videos') |
71 | const videosRouter = express.Router() | 71 | const videosRouter = express.Router() |
@@ -105,7 +105,7 @@ videosRouter.get('/privacies', listVideoPrivacies) | |||
105 | videosRouter.get('/', | 105 | videosRouter.get('/', |
106 | paginationValidator, | 106 | paginationValidator, |
107 | videosSortValidator, | 107 | videosSortValidator, |
108 | setDefaultSort, | 108 | setDefaultVideosSort, |
109 | setDefaultPagination, | 109 | setDefaultPagination, |
110 | optionalAuthenticate, | 110 | optionalAuthenticate, |
111 | commonVideosFiltersValidator, | 111 | commonVideosFiltersValidator, |
@@ -414,7 +414,7 @@ async function updateVideo (req: express.Request, res: express.Response) { | |||
414 | Notifier.Instance.notifyOnNewVideoIfNeeded(videoInstanceUpdated) | 414 | Notifier.Instance.notifyOnNewVideoIfNeeded(videoInstanceUpdated) |
415 | } | 415 | } |
416 | 416 | ||
417 | Hooks.runAction('action:api.video.updated', { video: videoInstanceUpdated }) | 417 | Hooks.runAction('action:api.video.updated', { video: videoInstanceUpdated, body: req.body }) |
418 | } catch (err) { | 418 | } catch (err) { |
419 | // Force fields we want to update | 419 | // Force fields we want to update |
420 | // If the transaction is retried, sequelize will think the object has not changed | 420 | // If the transaction is retried, sequelize will think the object has not changed |
diff --git a/server/controllers/feeds.ts b/server/controllers/feeds.ts index bfcd3fe36..f14c0d316 100644 --- a/server/controllers/feeds.ts +++ b/server/controllers/feeds.ts | |||
@@ -1,21 +1,21 @@ | |||
1 | import * as express from 'express' | 1 | import * as express from 'express' |
2 | import * as Feed from 'pfeed' | ||
3 | import { buildNSFWFilter } from '../helpers/express-utils' | ||
4 | import { CONFIG } from '../initializers/config' | ||
2 | import { FEEDS, ROUTE_CACHE_LIFETIME, THUMBNAILS_SIZE, WEBSERVER } from '../initializers/constants' | 5 | import { FEEDS, ROUTE_CACHE_LIFETIME, THUMBNAILS_SIZE, WEBSERVER } from '../initializers/constants' |
3 | import { | 6 | import { |
4 | asyncMiddleware, | 7 | asyncMiddleware, |
5 | commonVideosFiltersValidator, | 8 | commonVideosFiltersValidator, |
6 | setDefaultSort, | 9 | feedsFormatValidator, |
10 | setDefaultVideosSort, | ||
11 | setFeedFormatContentType, | ||
7 | videoCommentsFeedsValidator, | 12 | videoCommentsFeedsValidator, |
8 | videoFeedsValidator, | 13 | videoFeedsValidator, |
9 | videosSortValidator, | 14 | videosSortValidator |
10 | feedsFormatValidator, | ||
11 | setFeedFormatContentType | ||
12 | } from '../middlewares' | 15 | } from '../middlewares' |
13 | import { VideoModel } from '../models/video/video' | ||
14 | import * as Feed from 'pfeed' | ||
15 | import { cacheRoute } from '../middlewares/cache' | 16 | import { cacheRoute } from '../middlewares/cache' |
17 | import { VideoModel } from '../models/video/video' | ||
16 | import { VideoCommentModel } from '../models/video/video-comment' | 18 | import { VideoCommentModel } from '../models/video/video-comment' |
17 | import { buildNSFWFilter } from '../helpers/express-utils' | ||
18 | import { CONFIG } from '../initializers/config' | ||
19 | 19 | ||
20 | const feedsRouter = express.Router() | 20 | const feedsRouter = express.Router() |
21 | 21 | ||
@@ -34,7 +34,7 @@ feedsRouter.get('/feeds/video-comments.:format', | |||
34 | 34 | ||
35 | feedsRouter.get('/feeds/videos.:format', | 35 | feedsRouter.get('/feeds/videos.:format', |
36 | videosSortValidator, | 36 | videosSortValidator, |
37 | setDefaultSort, | 37 | setDefaultVideosSort, |
38 | feedsFormatValidator, | 38 | feedsFormatValidator, |
39 | setFeedFormatContentType, | 39 | setFeedFormatContentType, |
40 | asyncMiddleware(cacheRoute({ | 40 | asyncMiddleware(cacheRoute({ |
diff --git a/server/initializers/constants.ts b/server/initializers/constants.ts index 691d29283..c26c3a88c 100644 --- a/server/initializers/constants.ts +++ b/server/initializers/constants.ts | |||
@@ -23,7 +23,7 @@ import { CONFIG, registerConfigChangedHandler } from './config' | |||
23 | 23 | ||
24 | // --------------------------------------------------------------------------- | 24 | // --------------------------------------------------------------------------- |
25 | 25 | ||
26 | const LAST_MIGRATION_VERSION = 525 | 26 | const LAST_MIGRATION_VERSION = 530 |
27 | 27 | ||
28 | // --------------------------------------------------------------------------- | 28 | // --------------------------------------------------------------------------- |
29 | 29 | ||
@@ -417,7 +417,9 @@ const MIMETYPES = { | |||
417 | 'audio/x-ms-wma': '.wma', | 417 | 'audio/x-ms-wma': '.wma', |
418 | 'audio/wav': '.wav', | 418 | 'audio/wav': '.wav', |
419 | 'audio/x-flac': '.flac', | 419 | 'audio/x-flac': '.flac', |
420 | 'audio/flac': '.flac' | 420 | 'audio/flac': '.flac', |
421 | 'audio/aac': '.aac', | ||
422 | 'audio/ac3': '.ac3' | ||
421 | }, | 423 | }, |
422 | EXT_MIMETYPE: null as { [ id: string ]: string } | 424 | EXT_MIMETYPE: null as { [ id: string ]: string } |
423 | }, | 425 | }, |
@@ -841,7 +843,7 @@ function buildVideoMimetypeExt () { | |||
841 | 'video/x-matroska': '.mkv', | 843 | 'video/x-matroska': '.mkv', |
842 | 844 | ||
843 | // Developed by Apple | 845 | // Developed by Apple |
844 | 'video/quicktime': '.mov', // often used as output format by editing software | 846 | 'video/quicktime': [ '.mov', '.qt', '.mqv' ], // often used as output format by editing software |
845 | 'video/x-m4v': '.m4v', | 847 | 'video/x-m4v': '.m4v', |
846 | 'video/m4v': '.m4v', | 848 | 'video/m4v': '.m4v', |
847 | 849 | ||
@@ -856,8 +858,8 @@ function buildVideoMimetypeExt () { | |||
856 | 858 | ||
857 | // Developed by 3GPP | 859 | // Developed by 3GPP |
858 | // common video formats for cell phones | 860 | // common video formats for cell phones |
859 | 'video/3gpp': '.3gp', | 861 | 'video/3gpp': [ '.3gp', '.3gpp' ], |
860 | 'video/3gpp2': '.3g2', | 862 | 'video/3gpp2': [ '.3g2', '.3gpp2' ], |
861 | 863 | ||
862 | // Developed by FFmpeg/Mplayer | 864 | // Developed by FFmpeg/Mplayer |
863 | 'application/x-nut': '.nut', | 865 | 'application/x-nut': '.nut', |
@@ -870,7 +872,8 @@ function buildVideoMimetypeExt () { | |||
870 | // Old formats reliant on MPEG-1/MPEG-2 | 872 | // Old formats reliant on MPEG-1/MPEG-2 |
871 | 'video/mpv': '.mpv', | 873 | 'video/mpv': '.mpv', |
872 | 'video/mpeg2': '.m2v', | 874 | 'video/mpeg2': '.m2v', |
873 | 'video/mpeg': '.mpeg', | 875 | 'video/mpeg': [ '.m1v', '.mpg', '.mpe', '.mpeg', '.vob' ], |
876 | 'video/dvd': '.vob', | ||
874 | 877 | ||
875 | // Could be anything | 878 | // Could be anything |
876 | 'application/octet-stream': null, | 879 | 'application/octet-stream': null, |
diff --git a/server/initializers/migrations/0530-playlist-multiple-video.ts b/server/initializers/migrations/0530-playlist-multiple-video.ts new file mode 100644 index 000000000..51a8c06b0 --- /dev/null +++ b/server/initializers/migrations/0530-playlist-multiple-video.ts | |||
@@ -0,0 +1,46 @@ | |||
1 | import * as Sequelize from 'sequelize' | ||
2 | import { WEBSERVER } from '../constants' | ||
3 | |||
4 | async function up (utils: { | ||
5 | transaction: Sequelize.Transaction | ||
6 | queryInterface: Sequelize.QueryInterface | ||
7 | sequelize: Sequelize.Sequelize | ||
8 | }): Promise<void> { | ||
9 | { | ||
10 | const field = { | ||
11 | type: Sequelize.STRING, | ||
12 | allowNull: true | ||
13 | } | ||
14 | await utils.queryInterface.changeColumn('videoPlaylistElement', 'url', field) | ||
15 | } | ||
16 | |||
17 | { | ||
18 | await utils.sequelize.query('DROP INDEX IF EXISTS video_playlist_element_video_playlist_id_video_id;') | ||
19 | } | ||
20 | |||
21 | { | ||
22 | const selectPlaylistUUID = 'SELECT "uuid" FROM "videoPlaylist" WHERE "id" = "videoPlaylistElement"."videoPlaylistId"' | ||
23 | const url = `'${WEBSERVER.URL}' || '/video-playlists/' || (${selectPlaylistUUID}) || '/videos/' || "videoPlaylistElement"."id"` | ||
24 | |||
25 | const query = ` | ||
26 | UPDATE "videoPlaylistElement" SET "url" = ${url} WHERE id IN ( | ||
27 | SELECT "videoPlaylistElement"."id" FROM "videoPlaylistElement" | ||
28 | INNER JOIN "videoPlaylist" ON "videoPlaylist".id = "videoPlaylistElement"."videoPlaylistId" | ||
29 | INNER JOIN account ON account.id = "videoPlaylist"."ownerAccountId" | ||
30 | INNER JOIN actor ON actor.id = account."actorId" | ||
31 | WHERE actor."serverId" IS NULL | ||
32 | )` | ||
33 | |||
34 | await utils.sequelize.query(query) | ||
35 | } | ||
36 | |||
37 | } | ||
38 | |||
39 | function down (options) { | ||
40 | throw new Error('Not implemented.') | ||
41 | } | ||
42 | |||
43 | export { | ||
44 | up, | ||
45 | down | ||
46 | } | ||
diff --git a/server/lib/activitypub/url.ts b/server/lib/activitypub/url.ts index b54e038a4..58030be2c 100644 --- a/server/lib/activitypub/url.ts +++ b/server/lib/activitypub/url.ts | |||
@@ -8,7 +8,8 @@ import { | |||
8 | MVideoId, | 8 | MVideoId, |
9 | MVideoUrl, | 9 | MVideoUrl, |
10 | MVideoUUID, | 10 | MVideoUUID, |
11 | MAbuseId | 11 | MAbuseId, |
12 | MVideoPlaylistElement | ||
12 | } from '../../types/models' | 13 | } from '../../types/models' |
13 | import { MVideoPlaylist, MVideoPlaylistUUID } from '../../types/models/video/video-playlist' | 14 | import { MVideoPlaylist, MVideoPlaylistUUID } from '../../types/models/video/video-playlist' |
14 | import { MVideoFileVideoUUID } from '../../types/models/video/video-file' | 15 | import { MVideoFileVideoUUID } from '../../types/models/video/video-file' |
@@ -22,8 +23,8 @@ function getVideoPlaylistActivityPubUrl (videoPlaylist: MVideoPlaylist) { | |||
22 | return WEBSERVER.URL + '/video-playlists/' + videoPlaylist.uuid | 23 | return WEBSERVER.URL + '/video-playlists/' + videoPlaylist.uuid |
23 | } | 24 | } |
24 | 25 | ||
25 | function getVideoPlaylistElementActivityPubUrl (videoPlaylist: MVideoPlaylistUUID, video: MVideoUUID) { | 26 | function getVideoPlaylistElementActivityPubUrl (videoPlaylist: MVideoPlaylistUUID, videoPlaylistElement: MVideoPlaylistElement) { |
26 | return WEBSERVER.URL + '/video-playlists/' + videoPlaylist.uuid + '/' + video.uuid | 27 | return WEBSERVER.URL + '/video-playlists/' + videoPlaylist.uuid + '/videos/' + videoPlaylistElement.id |
27 | } | 28 | } |
28 | 29 | ||
29 | function getVideoCacheFileActivityPubUrl (videoFile: MVideoFileVideoUUID) { | 30 | function getVideoCacheFileActivityPubUrl (videoFile: MVideoFileVideoUUID) { |
diff --git a/server/middlewares/sort.ts b/server/middlewares/sort.ts index fcbb2902c..609046a46 100644 --- a/server/middlewares/sort.ts +++ b/server/middlewares/sort.ts | |||
@@ -2,6 +2,7 @@ import * as express from 'express' | |||
2 | import { SortType } from '../models/utils' | 2 | import { SortType } from '../models/utils' |
3 | 3 | ||
4 | const setDefaultSort = setDefaultSortFactory('-createdAt') | 4 | const setDefaultSort = setDefaultSortFactory('-createdAt') |
5 | const setDefaultVideosSort = setDefaultSortFactory('-publishedAt') | ||
5 | 6 | ||
6 | const setDefaultVideoRedundanciesSort = setDefaultSortFactory('name') | 7 | const setDefaultVideoRedundanciesSort = setDefaultSortFactory('name') |
7 | 8 | ||
@@ -33,6 +34,7 @@ function setBlacklistSort (req: express.Request, res: express.Response, next: ex | |||
33 | export { | 34 | export { |
34 | setDefaultSort, | 35 | setDefaultSort, |
35 | setDefaultSearchSort, | 36 | setDefaultSearchSort, |
37 | setDefaultVideosSort, | ||
36 | setDefaultVideoRedundanciesSort, | 38 | setDefaultVideoRedundanciesSort, |
37 | setBlacklistSort | 39 | setBlacklistSort |
38 | } | 40 | } |
diff --git a/server/middlewares/validators/videos/video-playlists.ts b/server/middlewares/validators/videos/video-playlists.ts index 07fd8533c..4647eae44 100644 --- a/server/middlewares/validators/videos/video-playlists.ts +++ b/server/middlewares/validators/videos/video-playlists.ts | |||
@@ -199,16 +199,6 @@ const videoPlaylistsAddVideoValidator = [ | |||
199 | if (!await doesVideoExist(req.body.videoId, res, 'only-video')) return | 199 | if (!await doesVideoExist(req.body.videoId, res, 'only-video')) return |
200 | 200 | ||
201 | const videoPlaylist = getPlaylist(res) | 201 | const videoPlaylist = getPlaylist(res) |
202 | const video = res.locals.onlyVideo | ||
203 | |||
204 | const videoPlaylistElement = await VideoPlaylistElementModel.loadByPlaylistAndVideo(videoPlaylist.id, video.id) | ||
205 | if (videoPlaylistElement) { | ||
206 | res.status(409) | ||
207 | .json({ error: 'This video in this playlist already exists' }) | ||
208 | .end() | ||
209 | |||
210 | return | ||
211 | } | ||
212 | 202 | ||
213 | if (!checkUserCanManageVideoPlaylist(res.locals.oauth.token.User, videoPlaylist, UserRight.UPDATE_ANY_VIDEO_PLAYLIST, res)) { | 203 | if (!checkUserCanManageVideoPlaylist(res.locals.oauth.token.User, videoPlaylist, UserRight.UPDATE_ANY_VIDEO_PLAYLIST, res)) { |
214 | return | 204 | return |
@@ -258,15 +248,18 @@ const videoPlaylistsUpdateOrRemoveVideoValidator = [ | |||
258 | const videoPlaylistElementAPGetValidator = [ | 248 | const videoPlaylistElementAPGetValidator = [ |
259 | param('playlistId') | 249 | param('playlistId') |
260 | .custom(isIdOrUUIDValid).withMessage('Should have a valid playlist id/uuid'), | 250 | .custom(isIdOrUUIDValid).withMessage('Should have a valid playlist id/uuid'), |
261 | param('videoId') | 251 | param('playlistElementId') |
262 | .custom(isIdOrUUIDValid).withMessage('Should have an video id/uuid'), | 252 | .custom(isIdValid).withMessage('Should have an playlist element id'), |
263 | 253 | ||
264 | async (req: express.Request, res: express.Response, next: express.NextFunction) => { | 254 | async (req: express.Request, res: express.Response, next: express.NextFunction) => { |
265 | logger.debug('Checking videoPlaylistElementAPGetValidator parameters', { parameters: req.params }) | 255 | logger.debug('Checking videoPlaylistElementAPGetValidator parameters', { parameters: req.params }) |
266 | 256 | ||
267 | if (areValidationErrors(req, res)) return | 257 | if (areValidationErrors(req, res)) return |
268 | 258 | ||
269 | const videoPlaylistElement = await VideoPlaylistElementModel.loadByPlaylistAndVideoForAP(req.params.playlistId, req.params.videoId) | 259 | const playlistElementId = parseInt(req.params.playlistElementId + '', 10) |
260 | const playlistId = req.params.playlistId | ||
261 | |||
262 | const videoPlaylistElement = await VideoPlaylistElementModel.loadByPlaylistAndElementIdForAP(playlistId, playlistElementId) | ||
270 | if (!videoPlaylistElement) { | 263 | if (!videoPlaylistElement) { |
271 | res.status(404) | 264 | res.status(404) |
272 | .json({ error: 'Video playlist element not found' }) | 265 | .json({ error: 'Video playlist element not found' }) |
diff --git a/server/models/utils.ts b/server/models/utils.ts index d706d9ea8..6e5522346 100644 --- a/server/models/utils.ts +++ b/server/models/utils.ts | |||
@@ -129,6 +129,30 @@ function buildBlockedAccountSQL (blockerIds: number[]) { | |||
129 | 'WHERE "serverBlocklist"."accountId" IN (' + blockerIdsString + ')' | 129 | 'WHERE "serverBlocklist"."accountId" IN (' + blockerIdsString + ')' |
130 | } | 130 | } |
131 | 131 | ||
132 | function buildBlockedAccountSQLOptimized (columnNameJoin: string, blockerIds: number[]) { | ||
133 | const blockerIdsString = blockerIds.join(', ') | ||
134 | |||
135 | return [ | ||
136 | literal( | ||
137 | `NOT EXISTS (` + | ||
138 | ` SELECT 1 FROM "accountBlocklist" ` + | ||
139 | ` WHERE "targetAccountId" = ${columnNameJoin} ` + | ||
140 | ` AND "accountId" IN (${blockerIdsString})` + | ||
141 | `)` | ||
142 | ), | ||
143 | |||
144 | literal( | ||
145 | `NOT EXISTS (` + | ||
146 | ` SELECT 1 FROM "account" ` + | ||
147 | ` INNER JOIN "actor" ON account."actorId" = actor.id ` + | ||
148 | ` INNER JOIN "serverBlocklist" ON "actor"."serverId" = "serverBlocklist"."targetServerId" ` + | ||
149 | ` WHERE "account"."id" = ${columnNameJoin} ` + | ||
150 | ` AND "serverBlocklist"."accountId" IN (${blockerIdsString})` + | ||
151 | `)` | ||
152 | ) | ||
153 | ] | ||
154 | } | ||
155 | |||
132 | function buildServerIdsFollowedBy (actorId: any) { | 156 | function buildServerIdsFollowedBy (actorId: any) { |
133 | const actorIdNumber = parseInt(actorId + '', 10) | 157 | const actorIdNumber = parseInt(actorId + '', 10) |
134 | 158 | ||
@@ -201,6 +225,7 @@ function searchAttribute (sourceField?: string, targetField?: string) { | |||
201 | 225 | ||
202 | export { | 226 | export { |
203 | buildBlockedAccountSQL, | 227 | buildBlockedAccountSQL, |
228 | buildBlockedAccountSQLOptimized, | ||
204 | buildLocalActorIdsIn, | 229 | buildLocalActorIdsIn, |
205 | SortType, | 230 | SortType, |
206 | buildLocalAccountIdsIn, | 231 | buildLocalAccountIdsIn, |
diff --git a/server/models/video/video-comment.ts b/server/models/video/video-comment.ts index 1d5c7280d..de27b3d87 100644 --- a/server/models/video/video-comment.ts +++ b/server/models/video/video-comment.ts | |||
@@ -1,6 +1,6 @@ | |||
1 | import * as Bluebird from 'bluebird' | 1 | import * as Bluebird from 'bluebird' |
2 | import { uniq } from 'lodash' | 2 | import { uniq } from 'lodash' |
3 | import { FindOptions, Op, Order, ScopeOptions, Sequelize, Transaction } from 'sequelize' | 3 | import { FindOptions, Op, Order, ScopeOptions, Sequelize, Transaction, WhereOptions } from 'sequelize' |
4 | import { | 4 | import { |
5 | AllowNull, | 5 | AllowNull, |
6 | BelongsTo, | 6 | BelongsTo, |
@@ -40,7 +40,7 @@ import { | |||
40 | import { VideoCommentAbuseModel } from '../abuse/video-comment-abuse' | 40 | import { VideoCommentAbuseModel } from '../abuse/video-comment-abuse' |
41 | import { AccountModel } from '../account/account' | 41 | import { AccountModel } from '../account/account' |
42 | import { ActorModel, unusedActorAttributesForAPI } from '../activitypub/actor' | 42 | import { ActorModel, unusedActorAttributesForAPI } from '../activitypub/actor' |
43 | import { buildBlockedAccountSQL, buildLocalAccountIdsIn, getCommentSort, throwIfNotValid } from '../utils' | 43 | import { buildBlockedAccountSQL, buildBlockedAccountSQLOptimized, buildLocalAccountIdsIn, getCommentSort, throwIfNotValid } from '../utils' |
44 | import { VideoModel } from './video' | 44 | import { VideoModel } from './video' |
45 | import { VideoChannelModel } from './video-channel' | 45 | import { VideoChannelModel } from './video-channel' |
46 | 46 | ||
@@ -460,19 +460,20 @@ export class VideoCommentModel extends Model<VideoCommentModel> { | |||
460 | const serverActor = await getServerActor() | 460 | const serverActor = await getServerActor() |
461 | const { start, count, videoId, accountId, videoChannelId } = parameters | 461 | const { start, count, videoId, accountId, videoChannelId } = parameters |
462 | 462 | ||
463 | const accountExclusion = { | 463 | const whereAnd: WhereOptions[] = buildBlockedAccountSQLOptimized( |
464 | [Op.notIn]: Sequelize.literal( | 464 | '"VideoCommentModel"."accountId"', |
465 | '(' + buildBlockedAccountSQL([ serverActor.Account.id, '"Video->VideoChannel"."accountId"' ]) + ')' | 465 | [ serverActor.Account.id, '"Video->VideoChannel"."accountId"' ] |
466 | ) | 466 | ) |
467 | |||
468 | if (accountId) { | ||
469 | whereAnd.push({ | ||
470 | [Op.eq]: accountId | ||
471 | }) | ||
472 | } | ||
473 | |||
474 | const accountWhere = { | ||
475 | [Op.and]: whereAnd | ||
467 | } | 476 | } |
468 | const accountWhere = accountId | ||
469 | ? { | ||
470 | [Op.and]: { | ||
471 | ...accountExclusion, | ||
472 | [Op.eq]: accountId | ||
473 | } | ||
474 | } | ||
475 | : accountExclusion | ||
476 | 477 | ||
477 | const videoChannelWhere = videoChannelId ? { id: videoChannelId } : undefined | 478 | const videoChannelWhere = videoChannelId ? { id: videoChannelId } : undefined |
478 | 479 | ||
diff --git a/server/models/video/video-format-utils.ts b/server/models/video/video-format-utils.ts index 9b6509dfd..7a17c839f 100644 --- a/server/models/video/video-format-utils.ts +++ b/server/models/video/video-format-utils.ts | |||
@@ -78,7 +78,10 @@ function videoModelToFormattedJSON (video: MVideoFormattable, options?: VideoFor | |||
78 | 78 | ||
79 | userHistory: userHistory ? { | 79 | userHistory: userHistory ? { |
80 | currentTime: userHistory.currentTime | 80 | currentTime: userHistory.currentTime |
81 | } : undefined | 81 | } : undefined, |
82 | |||
83 | // Can be added by external plugins | ||
84 | pluginData: (video as any).pluginData | ||
82 | } | 85 | } |
83 | 86 | ||
84 | if (options) { | 87 | if (options) { |
diff --git a/server/models/video/video-playlist-element.ts b/server/models/video/video-playlist-element.ts index ba92e129a..d357766e9 100644 --- a/server/models/video/video-playlist-element.ts +++ b/server/models/video/video-playlist-element.ts | |||
@@ -44,10 +44,6 @@ import { MUserAccountId } from '@server/types/models' | |||
44 | fields: [ 'videoId' ] | 44 | fields: [ 'videoId' ] |
45 | }, | 45 | }, |
46 | { | 46 | { |
47 | fields: [ 'videoPlaylistId', 'videoId' ], | ||
48 | unique: true | ||
49 | }, | ||
50 | { | ||
51 | fields: [ 'url' ], | 47 | fields: [ 'url' ], |
52 | unique: true | 48 | unique: true |
53 | } | 49 | } |
@@ -60,8 +56,8 @@ export class VideoPlaylistElementModel extends Model<VideoPlaylistElementModel> | |||
60 | @UpdatedAt | 56 | @UpdatedAt |
61 | updatedAt: Date | 57 | updatedAt: Date |
62 | 58 | ||
63 | @AllowNull(false) | 59 | @AllowNull(true) |
64 | @Is('VideoPlaylistUrl', value => throwIfNotValid(value, isActivityPubUrlValid, 'url')) | 60 | @Is('VideoPlaylistUrl', value => throwIfNotValid(value, isActivityPubUrlValid, 'url', true)) |
65 | @Column(DataType.STRING(CONSTRAINTS_FIELDS.VIDEO_PLAYLISTS.URL.max)) | 61 | @Column(DataType.STRING(CONSTRAINTS_FIELDS.VIDEO_PLAYLISTS.URL.max)) |
66 | url: string | 62 | url: string |
67 | 63 | ||
@@ -185,12 +181,11 @@ export class VideoPlaylistElementModel extends Model<VideoPlaylistElementModel> | |||
185 | return VideoPlaylistElementModel.findByPk(playlistElementId) | 181 | return VideoPlaylistElementModel.findByPk(playlistElementId) |
186 | } | 182 | } |
187 | 183 | ||
188 | static loadByPlaylistAndVideoForAP ( | 184 | static loadByPlaylistAndElementIdForAP ( |
189 | playlistId: number | string, | 185 | playlistId: number | string, |
190 | videoId: number | string | 186 | playlistElementId: number |
191 | ): Bluebird<MVideoPlaylistElementVideoUrlPlaylistPrivacy> { | 187 | ): Bluebird<MVideoPlaylistElementVideoUrlPlaylistPrivacy> { |
192 | const playlistWhere = validator.isUUID('' + playlistId) ? { uuid: playlistId } : { id: playlistId } | 188 | const playlistWhere = validator.isUUID('' + playlistId) ? { uuid: playlistId } : { id: playlistId } |
193 | const videoWhere = validator.isUUID('' + videoId) ? { uuid: videoId } : { id: videoId } | ||
194 | 189 | ||
195 | const query = { | 190 | const query = { |
196 | include: [ | 191 | include: [ |
@@ -201,10 +196,12 @@ export class VideoPlaylistElementModel extends Model<VideoPlaylistElementModel> | |||
201 | }, | 196 | }, |
202 | { | 197 | { |
203 | attributes: [ 'url' ], | 198 | attributes: [ 'url' ], |
204 | model: VideoModel.unscoped(), | 199 | model: VideoModel.unscoped() |
205 | where: videoWhere | ||
206 | } | 200 | } |
207 | ] | 201 | ], |
202 | where: { | ||
203 | id: playlistElementId | ||
204 | } | ||
208 | } | 205 | } |
209 | 206 | ||
210 | return VideoPlaylistElementModel.findOne(query) | 207 | return VideoPlaylistElementModel.findOne(query) |
diff --git a/server/tests/api/check-params/video-playlists.ts b/server/tests/api/check-params/video-playlists.ts index 46ec00d46..179ae9201 100644 --- a/server/tests/api/check-params/video-playlists.ts +++ b/server/tests/api/check-params/video-playlists.ts | |||
@@ -346,11 +346,6 @@ describe('Test video playlists API validator', function () { | |||
346 | const res = await addVideoInPlaylist(params) | 346 | const res = await addVideoInPlaylist(params) |
347 | playlistElementId = res.body.videoPlaylistElement.id | 347 | playlistElementId = res.body.videoPlaylistElement.id |
348 | }) | 348 | }) |
349 | |||
350 | it('Should fail if the video was already added in the playlist', async function () { | ||
351 | const params = getBase({}, { expectedStatus: 409 }) | ||
352 | await addVideoInPlaylist(params) | ||
353 | }) | ||
354 | }) | 349 | }) |
355 | 350 | ||
356 | describe('When updating an element in a playlist', function () { | 351 | describe('When updating an element in a playlist', function () { |
diff --git a/server/tests/api/notifications/user-notifications.ts b/server/tests/api/notifications/user-notifications.ts index af4ff42b0..edc95b069 100644 --- a/server/tests/api/notifications/user-notifications.ts +++ b/server/tests/api/notifications/user-notifications.ts | |||
@@ -65,7 +65,7 @@ describe('Test user notifications', function () { | |||
65 | }) | 65 | }) |
66 | 66 | ||
67 | it('Should not send notifications if the user does not follow the video publisher', async function () { | 67 | it('Should not send notifications if the user does not follow the video publisher', async function () { |
68 | this.timeout(10000) | 68 | this.timeout(30000) |
69 | 69 | ||
70 | await uploadRandomVideoOnServers(servers, 1) | 70 | await uploadRandomVideoOnServers(servers, 1) |
71 | 71 | ||
@@ -97,7 +97,7 @@ describe('Test user notifications', function () { | |||
97 | }) | 97 | }) |
98 | 98 | ||
99 | it('Should send a new video notification on a scheduled publication', async function () { | 99 | it('Should send a new video notification on a scheduled publication', async function () { |
100 | this.timeout(20000) | 100 | this.timeout(30000) |
101 | 101 | ||
102 | // In 2 seconds | 102 | // In 2 seconds |
103 | const updateAt = new Date(new Date().getTime() + 2000) | 103 | const updateAt = new Date(new Date().getTime() + 2000) |
@@ -136,7 +136,7 @@ describe('Test user notifications', function () { | |||
136 | }) | 136 | }) |
137 | 137 | ||
138 | it('Should not send a notification before the video is published', async function () { | 138 | it('Should not send a notification before the video is published', async function () { |
139 | this.timeout(20000) | 139 | this.timeout(30000) |
140 | 140 | ||
141 | const updateAt = new Date(new Date().getTime() + 1000000) | 141 | const updateAt = new Date(new Date().getTime() + 1000000) |
142 | 142 | ||
@@ -154,7 +154,7 @@ describe('Test user notifications', function () { | |||
154 | }) | 154 | }) |
155 | 155 | ||
156 | it('Should send a new video notification when a video becomes public', async function () { | 156 | it('Should send a new video notification when a video becomes public', async function () { |
157 | this.timeout(10000) | 157 | this.timeout(30000) |
158 | 158 | ||
159 | const data = { privacy: VideoPrivacy.PRIVATE } | 159 | const data = { privacy: VideoPrivacy.PRIVATE } |
160 | const { name, uuid } = await uploadRandomVideoOnServers(servers, 1, data) | 160 | const { name, uuid } = await uploadRandomVideoOnServers(servers, 1, data) |
@@ -168,7 +168,7 @@ describe('Test user notifications', function () { | |||
168 | }) | 168 | }) |
169 | 169 | ||
170 | it('Should send a new video notification when a remote video becomes public', async function () { | 170 | it('Should send a new video notification when a remote video becomes public', async function () { |
171 | this.timeout(20000) | 171 | this.timeout(30000) |
172 | 172 | ||
173 | const data = { privacy: VideoPrivacy.PRIVATE } | 173 | const data = { privacy: VideoPrivacy.PRIVATE } |
174 | const { name, uuid } = await uploadRandomVideoOnServers(servers, 2, data) | 174 | const { name, uuid } = await uploadRandomVideoOnServers(servers, 2, data) |
@@ -182,7 +182,7 @@ describe('Test user notifications', function () { | |||
182 | }) | 182 | }) |
183 | 183 | ||
184 | it('Should not send a new video notification when a video becomes unlisted', async function () { | 184 | it('Should not send a new video notification when a video becomes unlisted', async function () { |
185 | this.timeout(20000) | 185 | this.timeout(30000) |
186 | 186 | ||
187 | const data = { privacy: VideoPrivacy.PRIVATE } | 187 | const data = { privacy: VideoPrivacy.PRIVATE } |
188 | const { name, uuid } = await uploadRandomVideoOnServers(servers, 1, data) | 188 | const { name, uuid } = await uploadRandomVideoOnServers(servers, 1, data) |
@@ -193,7 +193,7 @@ describe('Test user notifications', function () { | |||
193 | }) | 193 | }) |
194 | 194 | ||
195 | it('Should not send a new video notification when a remote video becomes unlisted', async function () { | 195 | it('Should not send a new video notification when a remote video becomes unlisted', async function () { |
196 | this.timeout(20000) | 196 | this.timeout(30000) |
197 | 197 | ||
198 | const data = { privacy: VideoPrivacy.PRIVATE } | 198 | const data = { privacy: VideoPrivacy.PRIVATE } |
199 | const { name, uuid } = await uploadRandomVideoOnServers(servers, 2, data) | 199 | const { name, uuid } = await uploadRandomVideoOnServers(servers, 2, data) |
@@ -237,7 +237,7 @@ describe('Test user notifications', function () { | |||
237 | }) | 237 | }) |
238 | 238 | ||
239 | it('Should not send a notification if transcoding is not enabled', async function () { | 239 | it('Should not send a notification if transcoding is not enabled', async function () { |
240 | this.timeout(10000) | 240 | this.timeout(30000) |
241 | 241 | ||
242 | const { name, uuid } = await uploadRandomVideoOnServers(servers, 1) | 242 | const { name, uuid } = await uploadRandomVideoOnServers(servers, 1) |
243 | await waitJobs(servers) | 243 | await waitJobs(servers) |
@@ -416,7 +416,7 @@ describe('Test user notifications', function () { | |||
416 | }) | 416 | }) |
417 | 417 | ||
418 | it('Should notify when a local channel is following one of our channel', async function () { | 418 | it('Should notify when a local channel is following one of our channel', async function () { |
419 | this.timeout(10000) | 419 | this.timeout(30000) |
420 | 420 | ||
421 | await addUserSubscription(servers[0].url, servers[0].accessToken, 'user_1_channel@localhost:' + servers[0].port) | 421 | await addUserSubscription(servers[0].url, servers[0].accessToken, 'user_1_channel@localhost:' + servers[0].port) |
422 | await waitJobs(servers) | 422 | await waitJobs(servers) |
@@ -427,7 +427,7 @@ describe('Test user notifications', function () { | |||
427 | }) | 427 | }) |
428 | 428 | ||
429 | it('Should notify when a remote channel is following one of our channel', async function () { | 429 | it('Should notify when a remote channel is following one of our channel', async function () { |
430 | this.timeout(10000) | 430 | this.timeout(30000) |
431 | 431 | ||
432 | await addUserSubscription(servers[1].url, servers[1].accessToken, 'user_1_channel@localhost:' + servers[0].port) | 432 | await addUserSubscription(servers[1].url, servers[1].accessToken, 'user_1_channel@localhost:' + servers[0].port) |
433 | await waitJobs(servers) | 433 | await waitJobs(servers) |
@@ -439,7 +439,7 @@ describe('Test user notifications', function () { | |||
439 | 439 | ||
440 | // PeerTube does not support accout -> account follows | 440 | // PeerTube does not support accout -> account follows |
441 | // it('Should notify when a local account is following one of our channel', async function () { | 441 | // it('Should notify when a local account is following one of our channel', async function () { |
442 | // this.timeout(10000) | 442 | // this.timeout(30000) |
443 | // | 443 | // |
444 | // await addUserSubscription(servers[0].url, servers[0].accessToken, 'user_1@localhost:' + servers[0].port) | 444 | // await addUserSubscription(servers[0].url, servers[0].accessToken, 'user_1@localhost:' + servers[0].port) |
445 | // | 445 | // |
@@ -449,7 +449,7 @@ describe('Test user notifications', function () { | |||
449 | // }) | 449 | // }) |
450 | 450 | ||
451 | // it('Should notify when a remote account is following one of our channel', async function () { | 451 | // it('Should notify when a remote account is following one of our channel', async function () { |
452 | // this.timeout(10000) | 452 | // this.timeout(30000) |
453 | // | 453 | // |
454 | // await addUserSubscription(servers[1].url, servers[1].accessToken, 'user_1@localhost:' + servers[0].port) | 454 | // await addUserSubscription(servers[1].url, servers[1].accessToken, 'user_1@localhost:' + servers[0].port) |
455 | // | 455 | // |
diff --git a/server/tests/api/videos/video-playlists.ts b/server/tests/api/videos/video-playlists.ts index 52b32998d..0bfb5bcd4 100644 --- a/server/tests/api/videos/video-playlists.ts +++ b/server/tests/api/videos/video-playlists.ts | |||
@@ -552,6 +552,9 @@ describe('Test video playlists', function () { | |||
552 | { | 552 | { |
553 | const res = await addVideo({ videoId: nsfwVideoServer1, startTimestamp: 5 }) | 553 | const res = await addVideo({ videoId: nsfwVideoServer1, startTimestamp: 5 }) |
554 | playlistElementNSFW = res.body.videoPlaylistElement.id | 554 | playlistElementNSFW = res.body.videoPlaylistElement.id |
555 | |||
556 | await addVideo({ videoId: nsfwVideoServer1, startTimestamp: 4 }) | ||
557 | await addVideo({ videoId: nsfwVideoServer1 }) | ||
555 | } | 558 | } |
556 | 559 | ||
557 | await waitJobs(servers) | 560 | await waitJobs(servers) |
@@ -563,10 +566,10 @@ describe('Test video playlists', function () { | |||
563 | for (const server of servers) { | 566 | for (const server of servers) { |
564 | const res = await getPlaylistVideos(server.url, server.accessToken, playlistServer1UUID, 0, 10) | 567 | const res = await getPlaylistVideos(server.url, server.accessToken, playlistServer1UUID, 0, 10) |
565 | 568 | ||
566 | expect(res.body.total).to.equal(6) | 569 | expect(res.body.total).to.equal(8) |
567 | 570 | ||
568 | const videoElements: VideoPlaylistElement[] = res.body.data | 571 | const videoElements: VideoPlaylistElement[] = res.body.data |
569 | expect(videoElements).to.have.lengthOf(6) | 572 | expect(videoElements).to.have.lengthOf(8) |
570 | 573 | ||
571 | expect(videoElements[0].video.name).to.equal('video 0 server 1') | 574 | expect(videoElements[0].video.name).to.equal('video 0 server 1') |
572 | expect(videoElements[0].position).to.equal(1) | 575 | expect(videoElements[0].position).to.equal(1) |
@@ -598,6 +601,16 @@ describe('Test video playlists', function () { | |||
598 | expect(videoElements[5].startTimestamp).to.equal(5) | 601 | expect(videoElements[5].startTimestamp).to.equal(5) |
599 | expect(videoElements[5].stopTimestamp).to.be.null | 602 | expect(videoElements[5].stopTimestamp).to.be.null |
600 | 603 | ||
604 | expect(videoElements[6].video.name).to.equal('NSFW video') | ||
605 | expect(videoElements[6].position).to.equal(7) | ||
606 | expect(videoElements[6].startTimestamp).to.equal(4) | ||
607 | expect(videoElements[6].stopTimestamp).to.be.null | ||
608 | |||
609 | expect(videoElements[7].video.name).to.equal('NSFW video') | ||
610 | expect(videoElements[7].position).to.equal(8) | ||
611 | expect(videoElements[7].startTimestamp).to.be.null | ||
612 | expect(videoElements[7].stopTimestamp).to.be.null | ||
613 | |||
601 | const res3 = await getPlaylistVideos(server.url, server.accessToken, playlistServer1UUID, 0, 2) | 614 | const res3 = await getPlaylistVideos(server.url, server.accessToken, playlistServer1UUID, 0, 2) |
602 | expect(res3.body.data).to.have.lengthOf(2) | 615 | expect(res3.body.data).to.have.lengthOf(2) |
603 | } | 616 | } |
@@ -807,6 +820,8 @@ describe('Test video playlists', function () { | |||
807 | 'video 1 server 3', | 820 | 'video 1 server 3', |
808 | 'video 3 server 1', | 821 | 'video 3 server 1', |
809 | 'video 4 server 1', | 822 | 'video 4 server 1', |
823 | 'NSFW video', | ||
824 | 'NSFW video', | ||
810 | 'NSFW video' | 825 | 'NSFW video' |
811 | ]) | 826 | ]) |
812 | } | 827 | } |
@@ -836,6 +851,8 @@ describe('Test video playlists', function () { | |||
836 | 'video 2 server 3', | 851 | 'video 2 server 3', |
837 | 'video 1 server 3', | 852 | 'video 1 server 3', |
838 | 'video 4 server 1', | 853 | 'video 4 server 1', |
854 | 'NSFW video', | ||
855 | 'NSFW video', | ||
839 | 'NSFW video' | 856 | 'NSFW video' |
840 | ]) | 857 | ]) |
841 | } | 858 | } |
@@ -865,7 +882,9 @@ describe('Test video playlists', function () { | |||
865 | 'video 2 server 3', | 882 | 'video 2 server 3', |
866 | 'NSFW video', | 883 | 'NSFW video', |
867 | 'video 1 server 3', | 884 | 'video 1 server 3', |
868 | 'video 4 server 1' | 885 | 'video 4 server 1', |
886 | 'NSFW video', | ||
887 | 'NSFW video' | ||
869 | ]) | 888 | ]) |
870 | 889 | ||
871 | for (let i = 1; i <= elements.length; i++) { | 890 | for (let i = 1; i <= elements.length; i++) { |
@@ -1023,10 +1042,10 @@ describe('Test video playlists', function () { | |||
1023 | for (const server of servers) { | 1042 | for (const server of servers) { |
1024 | const res = await getPlaylistVideos(server.url, server.accessToken, playlistServer1UUID, 0, 10) | 1043 | const res = await getPlaylistVideos(server.url, server.accessToken, playlistServer1UUID, 0, 10) |
1025 | 1044 | ||
1026 | expect(res.body.total).to.equal(4) | 1045 | expect(res.body.total).to.equal(6) |
1027 | 1046 | ||
1028 | const elements: VideoPlaylistElement[] = res.body.data | 1047 | const elements: VideoPlaylistElement[] = res.body.data |
1029 | expect(elements).to.have.lengthOf(4) | 1048 | expect(elements).to.have.lengthOf(6) |
1030 | 1049 | ||
1031 | expect(elements[0].video.name).to.equal('video 0 server 1') | 1050 | expect(elements[0].video.name).to.equal('video 0 server 1') |
1032 | expect(elements[0].position).to.equal(1) | 1051 | expect(elements[0].position).to.equal(1) |
@@ -1039,6 +1058,12 @@ describe('Test video playlists', function () { | |||
1039 | 1058 | ||
1040 | expect(elements[3].video.name).to.equal('video 4 server 1') | 1059 | expect(elements[3].video.name).to.equal('video 4 server 1') |
1041 | expect(elements[3].position).to.equal(4) | 1060 | expect(elements[3].position).to.equal(4) |
1061 | |||
1062 | expect(elements[4].video.name).to.equal('NSFW video') | ||
1063 | expect(elements[4].position).to.equal(5) | ||
1064 | |||
1065 | expect(elements[5].video.name).to.equal('NSFW video') | ||
1066 | expect(elements[5].position).to.equal(6) | ||
1042 | } | 1067 | } |
1043 | }) | 1068 | }) |
1044 | 1069 | ||
diff --git a/shared/models/plugins/client-hook.model.ts b/shared/models/plugins/client-hook.model.ts index b53b8de99..7b7144676 100644 --- a/shared/models/plugins/client-hook.model.ts +++ b/shared/models/plugins/client-hook.model.ts | |||
@@ -70,6 +70,9 @@ export const clientActionHookObject = { | |||
70 | // Fired when a user click on 'View x replies' and they're loaded | 70 | // Fired when a user click on 'View x replies' and they're loaded |
71 | 'action:video-watch.video-thread-replies.loaded': true, | 71 | 'action:video-watch.video-thread-replies.loaded': true, |
72 | 72 | ||
73 | // Fired when the video edit page (upload, URL/torrent import, update) is being initialized | ||
74 | 'action:video-edit.init': true, | ||
75 | |||
73 | // Fired when the login page is being initialized | 76 | // Fired when the login page is being initialized |
74 | 'action:login.init': true, | 77 | 'action:login.init': true, |
75 | 78 | ||
@@ -80,7 +83,13 @@ export const clientActionHookObject = { | |||
80 | 'action:router.navigation-end': true, | 83 | 'action:router.navigation-end': true, |
81 | 84 | ||
82 | // Fired when the registration page is being initialized | 85 | // Fired when the registration page is being initialized |
83 | 'action:signup.register.init': true | 86 | 'action:signup.register.init': true, |
87 | |||
88 | // ####### Embed hooks ####### | ||
89 | // In embed scope, peertube helpers are not available | ||
90 | |||
91 | // Fired when the embed loaded the player | ||
92 | 'action:embed.player.loaded': true | ||
84 | } | 93 | } |
85 | 94 | ||
86 | export type ClientActionHookName = keyof typeof clientActionHookObject | 95 | export type ClientActionHookName = keyof typeof clientActionHookObject |
diff --git a/shared/models/plugins/index.ts b/shared/models/plugins/index.ts index 209fca791..83ed6f583 100644 --- a/shared/models/plugins/index.ts +++ b/shared/models/plugins/index.ts | |||
@@ -19,6 +19,7 @@ export * from './plugin-video-privacy-manager.model' | |||
19 | export * from './plugin.type' | 19 | export * from './plugin.type' |
20 | export * from './public-server.setting' | 20 | export * from './public-server.setting' |
21 | export * from './register-client-hook.model' | 21 | export * from './register-client-hook.model' |
22 | export * from './register-client-form-field.model' | ||
22 | export * from './register-server-hook.model' | 23 | export * from './register-server-hook.model' |
23 | export * from './register-server-setting.model' | 24 | export * from './register-server-setting.model' |
24 | export * from './server-hook.model' | 25 | export * from './server-hook.model' |
diff --git a/shared/models/plugins/plugin-client-scope.type.ts b/shared/models/plugins/plugin-client-scope.type.ts index d112434e8..e188ce100 100644 --- a/shared/models/plugins/plugin-client-scope.type.ts +++ b/shared/models/plugins/plugin-client-scope.type.ts | |||
@@ -1 +1 @@ | |||
export type PluginClientScope = 'common' | 'video-watch' | 'search' | 'signup' | 'login' | export type PluginClientScope = 'common' | 'video-watch' | 'search' | 'signup' | 'login' | 'embed' | 'video-edit' | ||
diff --git a/shared/models/plugins/register-client-form-field.model.ts b/shared/models/plugins/register-client-form-field.model.ts new file mode 100644 index 000000000..ec333e8d6 --- /dev/null +++ b/shared/models/plugins/register-client-form-field.model.ts | |||
@@ -0,0 +1,14 @@ | |||
1 | export interface RegisterClientFormFieldOptions { | ||
2 | name: string | ||
3 | label: string | ||
4 | type: 'input' | 'input-checkbox' | 'input-textarea' | 'markdown-text' | 'markdown-enhanced' | ||
5 | |||
6 | descriptionHTML?: string | ||
7 | |||
8 | // Default setting value | ||
9 | default?: string | boolean | ||
10 | } | ||
11 | |||
12 | export interface RegisterClientVideoFieldOptions { | ||
13 | type: 'import-url' | 'import-torrent' | 'update' | 'upload' | ||
14 | } | ||
diff --git a/shared/models/plugins/register-server-setting.model.ts b/shared/models/plugins/register-server-setting.model.ts index 920c3480f..6872dc53e 100644 --- a/shared/models/plugins/register-server-setting.model.ts +++ b/shared/models/plugins/register-server-setting.model.ts | |||
@@ -1,15 +1,10 @@ | |||
1 | export interface RegisterServerSettingOptions { | 1 | import { RegisterClientFormFieldOptions } from './register-client-form-field.model' |
2 | name: string | ||
3 | label: string | ||
4 | type: 'input' | 'input-checkbox' | 'input-textarea' | 'markdown-text' | 'markdown-enhanced' | ||
5 | 2 | ||
3 | export interface RegisterServerSettingOptions extends RegisterClientFormFieldOptions { | ||
6 | // If the setting is not private, anyone can view its value (client code included) | 4 | // If the setting is not private, anyone can view its value (client code included) |
7 | // If the setting is private, only server-side hooks can access it | 5 | // If the setting is private, only server-side hooks can access it |
8 | // Mainly used by the PeerTube client to get admin config | 6 | // Mainly used by the PeerTube client to get admin config |
9 | private: boolean | 7 | private: boolean |
10 | |||
11 | // Default setting value | ||
12 | default?: string | boolean | ||
13 | } | 8 | } |
14 | 9 | ||
15 | export interface RegisteredServerSettings { | 10 | export interface RegisteredServerSettings { |
diff --git a/shared/models/videos/video-update.model.ts b/shared/models/videos/video-update.model.ts index 4ef904156..86653b959 100644 --- a/shared/models/videos/video-update.model.ts +++ b/shared/models/videos/video-update.model.ts | |||
@@ -19,4 +19,6 @@ export interface VideoUpdate { | |||
19 | previewfile?: Blob | 19 | previewfile?: Blob |
20 | scheduleUpdate?: VideoScheduleUpdate | 20 | scheduleUpdate?: VideoScheduleUpdate |
21 | originallyPublishedAt?: Date | string | 21 | originallyPublishedAt?: Date | string |
22 | |||
23 | pluginData?: any | ||
22 | } | 24 | } |
diff --git a/shared/models/videos/video.model.ts b/shared/models/videos/video.model.ts index 557e66e09..158ee8f05 100644 --- a/shared/models/videos/video.model.ts +++ b/shared/models/videos/video.model.ts | |||
@@ -53,6 +53,8 @@ export interface Video { | |||
53 | userHistory?: { | 53 | userHistory?: { |
54 | currentTime: number | 54 | currentTime: number |
55 | } | 55 | } |
56 | |||
57 | pluginData?: any | ||
56 | } | 58 | } |
57 | 59 | ||
58 | export interface VideoDetails extends Video { | 60 | export interface VideoDetails extends Video { |
diff --git a/support/doc/plugins/guide.md b/support/doc/plugins/guide.md index 41d70c372..2bd3fb6d2 100644 --- a/support/doc/plugins/guide.md +++ b/support/doc/plugins/guide.md | |||
@@ -21,6 +21,7 @@ | |||
21 | - [Custom Modal](#custom-modal) | 21 | - [Custom Modal](#custom-modal) |
22 | - [Translate](#translate) | 22 | - [Translate](#translate) |
23 | - [Get public settings](#get-public-settings) | 23 | - [Get public settings](#get-public-settings) |
24 | - [Add custom fields to video form](#add-custom-fields-to-video-form) | ||
24 | - [Publishing](#publishing) | 25 | - [Publishing](#publishing) |
25 | - [Write a plugin/theme](#write-a-plugintheme) | 26 | - [Write a plugin/theme](#write-a-plugintheme) |
26 | - [Clone the quickstart repository](#clone-the-quickstart-repository) | 27 | - [Clone the quickstart repository](#clone-the-quickstart-repository) |
@@ -29,6 +30,7 @@ | |||
29 | - [Update package.json](#update-packagejson) | 30 | - [Update package.json](#update-packagejson) |
30 | - [Write code](#write-code) | 31 | - [Write code](#write-code) |
31 | - [Add translations](#add-translations) | 32 | - [Add translations](#add-translations) |
33 | - [Build your plugin](#build-your-plugin) | ||
32 | - [Test your plugin/theme](#test-your-plugintheme) | 34 | - [Test your plugin/theme](#test-your-plugintheme) |
33 | - [Publish](#publish) | 35 | - [Publish](#publish) |
34 | - [Plugin & Theme hooks/helpers API](#plugin--theme-hookshelpers-api) | 36 | - [Plugin & Theme hooks/helpers API](#plugin--theme-hookshelpers-api) |
@@ -379,6 +381,68 @@ peertubeHelpers.getSettings() | |||
379 | }) | 381 | }) |
380 | ``` | 382 | ``` |
381 | 383 | ||
384 | #### Add custom fields to video form | ||
385 | |||
386 | To add custom fields in the video form (in *Plugin settings* tab): | ||
387 | |||
388 | ```js | ||
389 | async function register ({ registerVideoField, peertubeHelpers }) { | ||
390 | const descriptionHTML = await peertubeHelpers.translate(descriptionSource) | ||
391 | const commonOptions = { | ||
392 | name: 'my-field-name, | ||
393 | label: 'My added field', | ||
394 | descriptionHTML: 'Optional description', | ||
395 | type: 'input-textarea', | ||
396 | default: '' | ||
397 | } | ||
398 | |||
399 | for (const type of [ 'upload', 'import-url', 'import-torrent', 'update' ]) { | ||
400 | registerVideoField(commonOptions, { type }) | ||
401 | } | ||
402 | } | ||
403 | ``` | ||
404 | |||
405 | PeerTube will send this field value in `body.pluginData['my-field-name']` and fetch it from `video.pluginData['my-field-name']`. | ||
406 | |||
407 | So for example, if you want to store an additional metadata for videos, register the following hooks in **server**: | ||
408 | |||
409 | ```js | ||
410 | async function register ({ | ||
411 | registerHook, | ||
412 | storageManager | ||
413 | }) { | ||
414 | const fieldName = 'my-field-name' | ||
415 | |||
416 | // Store data associated to this video | ||
417 | registerHook({ | ||
418 | target: 'action:api.video.updated', | ||
419 | handler: ({ video, body }) => { | ||
420 | if (!body.pluginData) return | ||
421 | |||
422 | const value = body.pluginData[fieldName] | ||
423 | if (!value) return | ||
424 | |||
425 | storageManager.storeData(fieldName + '-' + video.id, value) | ||
426 | } | ||
427 | }) | ||
428 | |||
429 | // Add your custom value to the video, so the client autofill your field using the previously stored value | ||
430 | registerHook({ | ||
431 | target: 'filter:api.video.get.result', | ||
432 | handler: async (video) => { | ||
433 | if (!video) return video | ||
434 | if (!video.pluginData) video.pluginData = {} | ||
435 | |||
436 | const result = await storageManager.getData(fieldName + '-' + video.id) | ||
437 | video.pluginData[fieldName] = result | ||
438 | |||
439 | return video | ||
440 | } | ||
441 | }) | ||
442 | } | ||
443 | |||
444 | ``` | ||
445 | |||
382 | 446 | ||
383 | ### Publishing | 447 | ### Publishing |
384 | 448 | ||
@@ -498,6 +562,31 @@ Translation files are just objects, with the english sentence as the key and the | |||
498 | } | 562 | } |
499 | ``` | 563 | ``` |
500 | 564 | ||
565 | ### Build your plugin | ||
566 | |||
567 | If you added client scripts, you'll need to build them using webpack. | ||
568 | |||
569 | Install webpack: | ||
570 | |||
571 | ``` | ||
572 | $ npm install | ||
573 | ``` | ||
574 | |||
575 | Add/update your files in the `clientFiles` array of `webpack.config.js`: | ||
576 | |||
577 | ``` | ||
578 | $ $EDITOR ./webpack.config.js | ||
579 | ``` | ||
580 | |||
581 | Build your client files: | ||
582 | |||
583 | ``` | ||
584 | $ npm run build | ||
585 | ``` | ||
586 | |||
587 | You built files are in the `dist/` directory. Check `package.json` to correctly point to them. | ||
588 | |||
589 | |||
501 | ### Test your plugin/theme | 590 | ### Test your plugin/theme |
502 | 591 | ||
503 | You'll need to have a local PeerTube instance: | 592 | You'll need to have a local PeerTube instance: |
diff --git a/support/doc/tools.md b/support/doc/tools.md index 1f1e52c36..04cf2b569 100644 --- a/support/doc/tools.md +++ b/support/doc/tools.md | |||
@@ -256,6 +256,7 @@ Or to transcode to a specific resolution: | |||
256 | ``` | 256 | ``` |
257 | $ sudo -u peertube NODE_CONFIG_DIR=/var/www/peertube/config NODE_ENV=production npm run create-transcoding-job -- -v [videoUUID] -r [resolution] | 257 | $ sudo -u peertube NODE_CONFIG_DIR=/var/www/peertube/config NODE_ENV=production npm run create-transcoding-job -- -v [videoUUID] -r [resolution] |
258 | ``` | 258 | ``` |
259 | The resolution should be an integer (`1080`, `720`, `480`, etc.) | ||
259 | 260 | ||
260 | To generate an HLS playlist for a video: | 261 | To generate an HLS playlist for a video: |
261 | 262 | ||